/* General Style */
@import url("fonts/font-awesome/css/font-awesome.min.css");

/* font-family: 'Nunito Sans', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800&display=swap');
/* ------------------------------------------------------------------ 
    font-family: 'FuturaPT-Demi';
    font-family: 'FuturaPT-Medium';
------------------------------------------------------------------- */
@font-face {
    font-family: 'FuturaPT-Medium';
    src: url('fonts/futura-pt/FuturaPT-Medium.woff') format('woff2'),
        url('fonts/futura-pt/FuturaPT-Medium.woff2') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'FuturaPT-Demi';
    src: url('fonts/futura-pt/FuturaPT-Demi.woff2') format('woff2'),
        url('fonts/futura-pt/FuturaPT-Demi.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
html {
    overflow-x: hidden;
}
:root {
    --heading:'FuturaPT-Demi';
    --heading-medium:'FuturaPT-Medium';
    --paragraph: 'Nunito Sans', sans-serif;
    --purple:#a156d8;
    --green:#429f3c;
    --black:#333333;
    --blue:#2d395c;
    --lightgray2:#e1e1e1;
    --white: #ffffff;
}
body {
    margin: 0px;
    padding: 0px;
    background-color: var(--white);
    overflow: hidden;
    font-family:var(--paragraph);
    -ms-overflow-style: scrollbar;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--black);
}
p {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--black);
}
@media (max-width: 1600px) {
    body, p {
        font-size: 18px;
   }
}
@media (max-width: 1199px) {
    body, p {
        font-size: 16px;
        letter-spacing: 0.4px;
   }
}
@media (max-width: 767px) {
    body, p {
        font-size: 15px;
        letter-spacing: 0.3px;
   }
}
img {
    max-width: 100%;
    height: auto;
}
::selection {
    background: var(--black);
    color: var(--white);
}
::-moz-selection {
    background: var(--black);
    color: var(--white);
}
::-webkit-selection {
    background: var(--black);
    color: var(--white);
}
*, ::after, ::before {
    box-sizing: border-box;
}
/* --------------------------------------------------------------- Typography ------------------------------------------------------------------- */
b, strong {
    font-weight: 700;
}
a {
    color: var(--green);
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
    text-decoration: none;
    color: var(--black);
    outline: 0;
}
h1:not(.site-title):before, h2:before {
    display: none;
}
h1 {
    font-size: 58px;
    line-height: 1.3;
    font-weight: 700;
}
@media (max-width: 1600px) {
    h1 {
        font-size: 54px;
   }
}
@media (max-width: 1199px) {
    h1 {
        font-size: 48px;
   }
}
@media (max-width: 991px) {
    h1 {
        font-size: 40px;
   }
}
@media (max-width: 767px) {
    h1 {
        font-size: 36px;
        line-height: 1.2;
   }
}
@media (max-width: 575px) {
    h1 {
        font-size: 28px;
   }
}
h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
}
@media (max-width: 1600px) {
    h2 {
        font-size: 24px;
   }
}
@media (max-width: 1199px) {
    h2 {
        font-size: 20px;
   }
}
@media (max-width: 991px) {
    h2 {
        font-size: 22px;
   }
}
@media (max-width: 767px) {
    h2 {
        font-size: 20px;
   }
}
h3 {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 700;
}
@media (max-width: 1199px) {
    h3 {
        font-size: 24px;
   }
}
@media (max-width: 991px) {
    h3 {
        font-size: 22px;
   }
}
@media (max-width: 767px) {
    h3 {
        font-size: 21px;
   }
}
@media (max-width: 575px) {
    h3 {
        font-size: 20px;
   }
}
h4 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}
@media (max-width: 1199px) {
    h4 {
        font-size: 22px;
   }
}
@media (max-width: 991px) {
    h4 {
        font-size: 21px;
   }
}
@media (max-width: 767px) {
    h4 {
        font-size: 20px;
   }
}
@media (max-width: 575px) {
    h4 {
        font-size: 18px;
   }
}
h5 {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
}
@media (max-width: 1199px) {
    h5 {
        font-size: 21px;
   }
}
@media (max-width: 991px) {
    h5 {
        font-size: 20px;
   }
}
@media (max-width: 767px) {
    h5 {
        font-size: 18px;
   }
}
@media (max-width: 575px) {
    h5 {
        font-size: 16px;
   }
}
h1, h2, h3, h4, h5 {
    font-family: var(--heading);
    margin: 0 0 20px;
    text-transform: inherit;
}
p, ol, ul, blockquote {
    margin: 0 0 20px;
    padding: 0;
}
ol li, ul li {
    list-style-type: none;
}
@media (max-width: 767px) {
    h1, h2, h3, h4, h5, p, ol, ul, blockquote {
        margin: 0 0 15px;
   }
}
.white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white p, .white li, .white span {
    color: var(--white);
}
.white a {
    color: var(--white);
}
@media (min-width:1600px) {
    .container {
        max-width: 1400px;
   }
}
/* Forms */
input[type="color"], input[type="date"], input[type="datetime-local"], input[type="datetime"], input[type="month"], input[type="number"], input[type="time"], input[type="url"], input[type="week"], input[type="email"], input[type="search"], input[type="text"], input[type="password"], input[type="tel"], input[type="file"], textarea, select {
    font-family: var(--roboto);
    width: 100%;
    max-width: 100%;
    display: block;
    height: inherit;
    position: relative;
    z-index: 1;
    direction: ltr;
    border: none;
    margin: 0;
    padding: 20px 30px;
    background-color: var(--white);
    border-radius: 6px;
    color: var(--black);
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.6px;
    font-weight: 400;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
    color: var(--black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
    opacity: 0.8;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
    color: var(--black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
    opacity: 0.8;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
    color: var(--black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    text-transform: capitalize;
    opacity: 0.8;
}
input:focus, textarea:focus, select:focus {
    outline: none !important;
    border-color: var(--green);
}
.form_group {
    margin-bottom: 20px;
}
.form_group:last-child {
    margin-bottom: 0;
}
@media (max-width: 1600px) {
    input[type="color"], input[type="date"], input[type="datetime-local"], input[type="datetime"], input[type="month"], input[type="number"], input[type="time"], input[type="url"], input[type="week"], input[type="email"], input[type="search"], input[type="text"], input[type="password"], input[type="tel"], input[type="file"], textarea, select {
        padding: 11px 18px;
        font-size: 18px;
        line-height: 28px;
   }
    input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
        font-size: 17px;
   }
    input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
        font-size: 17px;
   }
    input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
        font-size: 17px;
   }
}
@media (max-width: 991px) {
    input[type="color"], input[type="date"], input[type="datetime-local"], input[type="datetime"], input[type="month"], input[type="number"], input[type="time"], input[type="url"], input[type="week"], input[type="email"], input[type="search"], input[type="text"], input[type="password"], input[type="tel"], input[type="file"], textarea, select {
        padding: 10px 16px;
        font-size: 16px;
        line-height: 26px;
   }
    input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
        font-size: 16px;
   }
    input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
        font-size: 16px;
   }
    input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
        font-size: 16px;
   }
}
/*Buttons*/
.btn_holder {
    margin-top: 40px;
    text-align: center;
}
input[type="submit"], button[type="submit"], .my_btn {
    font-family: var(--heading);
    position: relative;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 21px;
    line-height: 28px;
    font-weight: 600;
    color: var(--white) !important;
    text-align: center;
    display: inline-block;
    min-width: 220px;
    letter-spacing: 0.6px;
    border: none;
    opacity: 1;
    text-transform: capitalize;
    overflow: hidden;
    border-radius: 8px;
    background-image: linear-gradient(to right, #42891f 0%, #80bd65 50%, #42891f 100%);
    background-size: 300% 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none !important;
}
input[type="submit"]:hover, button[type="submit"]:hover, .my_btn:hover {
    background-position: 100% 0;
}
@media (max-width: 1600px) {
    input[type="submit"], button[type="submit"], .my_btn {
        padding: 11px 28px;
        font-size: 18px;
        line-height: 30px;
        min-width: 200px;
   }
}
@media (max-width: 991px) {
    input[type="submit"], button[type="submit"], .my_btn {
        padding: 10px 24px;
        font-size: 16px;
        line-height: 26px;
        min-width: 180px;
   }
    .btn_holder {
        margin-top: 30px;
   }
}
@media (max-width: 767px) {
    .btn_holder {
        margin-top: 20px;
   }
}
@media (max-width: 575px) {
    input[type="submit"], button[type="submit"], .my_btn {
        padding: 8px 12px;
        font-size: 15px;
        line-height: 24px;
        min-width: 150px;
        border-radius: 6px;
   }
}
/*  */
@media (min-width: 576px) {
    .container{
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container{
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container{
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container{
        max-width: 1140px;
    }
}
@media (min-width: 1600px) {
    .container{
        max-width: 1520px;
    }
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.row > div {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.row > div.three_col {
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.333%;
    max-width: 33.333%;
}
@media(min-width:1600px) {
    .extra_space {
        margin-right: -40px;
        margin-left: -40px;
    }
    .extra_space > div {
        padding-right: 40px;
        padding-left: 40px;
    }
}

/* Header */
.header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    display: block;
    background-color: var(--white);
    padding: 18px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header.sticky {
    padding: 12px 0;
    position: fixed;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}
.header .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header .logo a {
    display: block;
}
.footer_logo,
.header .logo img {
    width: 186px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header.sticky .logo img {
    width: 150px;
}
/*  */
.billboard {
    padding: 90px 0;
    margin-top: 114px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 270px;
}
.billboard:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    opacity: 0.5;
}
.billboard .container {
    position: relative;
    z-index: 2;
}
.billboard .caption img {
    height: 280px;
}
.sections {
    padding: 130px 0;
}
.sections_title {
    text-align: center;
    margin-bottom: 70px;
}
.sections_title h1 {
    margin-bottom: 0;
}
.sections_title p {
    color: var(--blue);
}
.dw_box {
    padding: 60px 40px;
    background-color: var(--white);
    box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.dw_box .fit_icon {
    width: 95px;
    height: 95px;
    background-color: #f4f6fe;
    border-radius: 6px;
    margin: 20px auto 60px;
}
.dw_box .fit_icon img {
    padding: 20px;
}
.dw_box .dw_text {
    margin-bottom: 20px;
} 
.dw_box .dw_text h2 {
    text-align: center;
    min-height: 66px;
    margin-bottom: 25px;
}
.dw_box .btn_holder {
    margin-top: auto;
}
/*  */
.cta_bar {
    background-color: var(--green);
    padding: 26px 0;
    text-align: center;
}
.cta_bar h2 {
    margin-bottom: 0;
    font-size: 36px;
    font-family: var(--heading-medium);
    font-weight: 500;
}
.cta_bar h2 a:hover {
    color: var(--purple);
}
.footer {
    background-color: #222222;
    padding: 100px 0 0;
}
.footer p,
.footer ul li {
    font-size: 17px;
    font-weight: 600;
}
.footer a:hover {
    color: var(--green);
}
.footer h3 {
    font-size: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.footer_logo {
    margin-bottom: 20px;
    display: inline-block;
}
.social_icons {
    margin-top: 30px;
}
.social_icons ul {
    display: flex;
    flex-wrap: wrap;
}
.social_icons ul li {
    margin-right: 15px;
}
.social_icons ul li a {
    color: var(--white);
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: block;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
}
.social_icons ul li a:hover {
    color: var(--white);
}
.social_icons ul li a:hover {
    background: var(--green);
}
.contact_ft ul li {
    padding-bottom: 25px;
    position: relative;
    padding-left: 34px;
    font-weight: 600;
}
.contact_ft ul li img {
    width: 22px;
    height: 25px;
    position: absolute;
    left: 0px;
    top: 0;
    filter: brightness(0) invert(1);
}
.quicklinks ul li {
    margin-bottom: 20px;
}
.copyrights {
    margin-top: 60px;
    padding: 19px 0;
    background-color: #181818;
    border-top: 1px solid #2b2b2b;
    text-align: center;
}
.copyrights p {
    margin-bottom: 0;
}
.copyrights p a {
    color: #65c75b;
}
.copyrights p a:hover {
    color: var(--purple);
}
@media(max-width:1600px){
    .billboard {
        padding: 60px 0;
        min-height: 300px;
    }
    .billboard .caption img {
        height: 200px;
    }
    .sections {
        padding: 100px 0;
    }
    .dw_box {
        padding: 40px 20px;
    }
    .dw_box .dw_text h2 {
        min-height: 53px;
        margin-bottom: 20px;
    }
    .dw_box .fit_icon {
        width: 85px;
        height: 85px;
        margin: 20px auto 45px;
    }
    .dw_box .fit_icon img {
        padding: 16px;
    }
    .cta_bar {
        padding: 20px 0;
    }
    .cta_bar h2 {
        font-size: 32px;
    }
    .footer {
        padding: 80px 0 0;
    }
    .footer p, .footer ul li {
        font-size: 16px;
    }
    .contact_ft ul li {
        padding-bottom: 20px;
        padding-left: 30px;
    }
    .contact_ft ul li img {
        width: 20px;
        height: 20px;
    }
    .copyrights {
        margin-top: 50px;
        padding: 16px 0;
    }
}
@media(max-width:1199px){
    .header {
        padding: 14px 0;
    }
    .footer_logo, .header .logo img {
        width: 150px;
    }
    .header.sticky .logo img {
        width: 120px;
    }
    .billboard {
        padding: 60px 0;
        margin-top: 92px;
        min-height: 250px;
    }
    .billboard .caption img {
        height: 150px;
    }
    .sections {
        padding: 80px 0;
    }
    .sections_title {
        margin-bottom: 50px;
    }
    .dw_box {
        padding: 30px 15px 40px;
    }
    .dw_box .dw_text h2 {
        min-height: 66px;
    }
    .cta_bar {
        padding: 15px 0;
    }
    .cta_bar h2 {
        font-size: 26px;
    }
    .footer {
        padding: 70px 0 0;
    }
    .footer h3 {
        margin-bottom: 20px;
    }
    .copyrights {
        margin-top: 40px;
    }
    .quicklinks ul li {
        margin-bottom: 14px;
    }
}
@media(max-width:991px){
    .header,
    .header.sticky {
        position: relative;
    }
    .footer_logo, .header .logo img,
    .header.sticky .logo img {
        width: 150px;
    }
    .header,
    .header.sticky {
        padding: 14px 0;
    }
    .sections {
        padding: 60px 0;
    }
    .row > div.three_col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
    .billboard .caption img {
        height: 120px;
    }
    .billboard {
        padding: 50px 0;
        margin-top: 0;
        min-height: 200px;
    }
    .dw_box {
        padding: 30px 30px 40px;
        height: auto;
    }
    .dw_box .dw_text h2 {
        min-height: inherit;
    }
    .dw_box .fit_icon {
        margin: 20px auto 35px;
    }
    .cta_bar h2 {
        font-size: 22px;
    }
    .footer p, .footer ul li {
        font-size: 15px;
    }
    .social_icons {
        margin-top: 20px;
    }
    .copyrights {
        margin-top: 20px;
    }
}
@media(max-width:575px){
    .footer_logo, .header .logo img, .header.sticky .logo img {
        width: 120px;
    }
    .dw_box {
        padding: 20px 20px 30px;
    }
    .dw_box .dw_text {
        margin-bottom: 10px;
    }
    .sections_title {
        margin-bottom: 30px;
    }
    .cta_bar h2 {
        font-size: 20px;
    }
    .row > div.three_col {
        margin-bottom: 15px;
    }
}