/*=== Typography ===*/
/*--  Poppins font  --*/
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Light.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/*--  Quicksand font  --*/
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/Quicksand-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/Quicksand-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/Quicksand-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/Quicksand-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/Quicksand-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/** Font Family **/
:root{
	--white-color: #ffffff;
	--text-white: var(--white-color);

	--poppins-font: "Poppins", sans-serif;
  
	--body-font: var(--poppins-font);
}


body {
  background-color: var(--text-white);
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  font-optical-sizing: auto;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-synthesis: none; /* Prevents browser from creating bold/italic versions */
  text-rendering: optimizeLegibility; /* For better readability */
}

p,
a,
.text {
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--text-font);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  text-align: justify;
}

.p-tb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.p-tb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.m-b-24{
  margin-bottom: 24px;

}
.m-b-30 {
    margin-bottom: 30px;
}

.mn-title {
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}
.mn-title h2 {
  margin-bottom: 0;
  padding: 0;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  color: #313b50;
  position: relative;
  display: inline;
  text-transform: capitalize;
  line-height: 1;
}
.mn-title h2 span {
  color: #3a4ee5;
}


@media (max-width: 991px) {
  .section-title h2 {
    font-size: 37px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 28px;
    line-height: 1.3;
  }
}
.section-title p {
  color: var(--text-color);
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  padding-top: 20px;
/*  max-width: 545px;*/
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .section-title p {
    padding-top: 15px;
  }
}
@media (max-width: 576px) {
  .section-title p {
    padding-top: 10px;
    font-size: 16px;
  }
}
.section-title.white h2 {
  color: var(--white-color);
}
.section-title.white p {
  color: #AAAAAA;
}
.section-title.two p {
  margin-left: 0;
}