@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: 'patrick_handregular';
    src: url('patrickhand-regular-webfont.woff2') format('woff2'),
         url('patrickhand-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


* {
  padding: 0;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
html, body {
    scroll-behavior: smooth;
}
body {
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'patrick_handregular';
  font-weight: 600;
  transition: all 0.3s;
  color: #2c2e35;
}
img {
  width: 100%;
  transition: all 0.3s;
}
a {
  transition: all 0.3s;
}
a:hover {
}
button {
    transition: all 0.3s;
}
section {
    position: relative;
    overflow: hidden;
}
p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #777;
    font-weight: 400;
    font-size: 15px;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
video {
    width: 100% !important;
}
.padding_section {
    padding: 110px 0;
}
.bgimage {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.heroSec.bgimage {
    background-position: bottom;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.btn {
    text-transform: capitalize;
    border-radius: 50px;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
    box-shadow: none;
}
.bg_btn {
    background-color: #ee3b00;
    border: 1px solid #ee3b00;
    padding: 8px 35px 9px;
    color: #fff;
    font-size: 18px;
}
.bg_btn:hover {
    background-color: transparent;
    color: #ee3b00;
}
.border_btn {
    background-color: transparent;
    border: 1px solid #ee3b00;
    padding: 8px 35px 9px;
    color: #ee3b00;
    font-size: 18px;
}
.border_btn:hover {
    background-color: #ee3b00;
    color: #fff;
}
.section-title h2 span {
    color: #9ccc56;
}
.section-title h2 {
    font-size: 38px;
    margin-top: 0px;
    margin-bottom: 20px;
}
.section-title p {
    margin-bottom: 0;
}
.topbaner .section-title p {
    margin-bottom: 0;
}
.topbaner .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}
.topbaner .section-title h2 {
    font-size: 36px;
    margin: 0;
}


/*---header-css-start---*/
.header_nav {
    transition: all 0.3s;
    position: relative;
    z-index: 999;
}
.header_nav.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}
.logo img {
    height: 100px;
}
.header_nav ul li.nav-item a.nav-link {
    padding: 8px 0;
    font-family: 'patrick_handregular';
    color: #2c2e35;
    font-size: 20px;
}
.header_nav ul li.nav-item a.nav-link.active {
    color: #ee3b00;
}
.header_nav ul li.nav-item a.nav-link:hover {
    padding: 8px 0;
    color: #ee3b00;
}
header.header_nav ul.navbar-nav {
    column-gap: 25px;
}
.header_nav ul li.nav-item a.nav-link.btn {
    padding: 8px 15px;
}
.header-social-icon {
    margin-left: 25px;
    display: flex;
    column-gap: 25px;
    align-items: center;
}
.header-social-icon a {
    font-size: 18px;
    color: #9ccc56;
}
/*---header-css-end---*/


.heroSec figure img {
    max-height: 500px;
    object-fit: contain;
}
.heroSec figure {
    position: relative;
}
.heroSec.bgimage {
}
.border_btn.playVideo {
    position: relative;
    padding: 10px 10px;
    width: 70px;
    height: 70px;
    margin-left: 50px;
    border-color: rgba(156, 204, 86);
    color: rgba(156, 204, 86);
    font-size: 24px;
}
.border_btn.playVideo:hover {
    background-color: rgba(156, 204, 86);
    color: #fff;
}
/*.playVideo:before {
     content: "";
    position: absolute;
    width: 150%;
    height: 146%;
    animation: pulsate1 2s;
    animation-iteration-count: infinite;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(156, 204, 86, 0.57);
    top: -23%;
    left: -25%;
    background: rgba(198, 16, 0, 0);
}*/

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}
.video_pop_box {
    position: relative;
    background-color: #000;
}
.video_pop_box .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #fff;
    background-size: 60%;
    border-radius: 50px;
}
.heroSec .section-title h2 {
    font-size: 72px;
    line-height: 72px;
}
.aboutSe figure img {
    max-height: 400px;
    object-fit: contain;
}
.signSec .section-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 45px;
}
.footer-logo a img {
    height: 130px;
    width: auto;
}
.features_list {
    display: flex;
    column-gap: 4%;
    row-gap: 30px;
    flex-wrap: wrap;
}
.features_list li {
    width: 48%;
    background-color: #fff;
    box-shadow: 0 0 15px #00000017;
    padding: 30px;
    border-radius: 15px;
}
.features_list li .featuresIcon {
    width: 90px;
    height: 90px;
    background-color: #ee3b000a;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s;
}
.features_list li:hover .featuresIcon {
    width: 100%;
}
.features_list li img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.features_list li h4 {
    font-size: 24px;
    margin-bottom: 20px;
}
.features_list li p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 0;
}
.footer-section {
    background-size: cover;
    padding: 110px 0 15px;
    background-position: top center;
}
.footer-social-icon {
    display: flex;
    justify-content: flex-end;
    column-gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
}
.footer-social-icon span {
    font-weight: 600;
    font-size: 24px;
    color: #2c2e35;
}
.footer-social-icon a {
    font-size: 18px;
    color: #9ccc56;
}
.copyright-area {
    padding-top: 35px;
    margin-top: 35px;
    border-top: 1px solid #2c2e3512;
}
.copyright-area p a {
    color: #ee3b00;
}
.copyright-area p {
    margin: 0;
}
.copyright-area .footer-menu ul {
    display: flex;
    justify-content: flex-end;
    column-gap: 25px;
}
.copyright-area .footer-menu ul li a {
    color: #2c2e35;
}
.about-page .features_list li {
    width: 30.6%;
}
.features_tabs .nav-link img {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 auto 20px;
    filter: grayscale(1);
}
.features_tabs .nav-link.active img {
    filter: grayscale(0);
}
.features_tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
}
.features_tabs .nav-link.active {
    border-bottom: 2px solid #9ccc56;
}
.features_tabs {
/*    justify-content: space-between;*/
    column-gap: 25px;
}
.features_content figure img {
    max-height: 300px;
    padding-left: 70px;
    object-fit: contain;
    object-position: right;
}
.features_tabs .nav-link {
    font-family: 'patrick_handregular';
    font-weight: 600;
    transition: all 0.3s;
    color: #2c2e35 !important;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
}
.signup_form {
    padding: 0px !important;
    /* background: #e9f4da; */
    text-align: center;
    max-width: 390px;
    margin: 0 0 0 auto;
}
.topbaner.padding_section {
    padding: 70px 0;
}
.signup_formSec .section-title h2 {
    font-size: 172px;
    margin-top: -27px;
    margin-bottom: 62px;
    line-height: 172px;
}
.signup_formSec .section-title {
    padding-right: 70px;
}
.signupuser svg {
    width: 130px;
    height: 130px;
    background-color: #fff;
    border-radius: 100px;
    padding: 13px;
    border: 1px solid #9ccc5638;
}
.signup-page {
    background-color: #9ccc561c;
}
.signup_form .form-group .form-control {
    background-color: #fff !important;
    border: 1px solid #9ccc5638;
}
.contact-col .form-group {
    margin-bottom: 20px;
}
.contact-col .form-group .form-control, .contact-col .form-group .form-select {
    min-height: 50px;
    border-radius: 5px;
    background-color: #fef5f2;
    border: none;
    line-height: 38px;
}
.contact-col .form-group label {
    font-family: 'patrick_handregular';
    font-size: 20px;
    letter-spacing: 2px;
}
.contact_dt0 {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
.contact_dt0 p {
    margin-bottom: 0;
}
.contact-col {
    padding-right: 70px;
}

.featuresSec table {
  width: 100% !important;
  border: none;
  background-color: #fff;
  box-shadow: 0 0 15px #00000017;
}
.featuresSec table tr:nth-child(2n) td {
  background-color: #dcedc278;
}
.featuresSec table tr td {
  padding: 8px 12px;
}





.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/*---responsive-css-start---*/
@media (min-width:320px) and (max-width:767px) {
    .header-social-icon {
        margin-left: 0;
        column-gap: 10px;
        margin-right: 55px;
    }
    .logo + .navbar-toggler {
        position: absolute;
        right: 15px;
        padding: 0;
        top: 25px;
    }
    .logo img {
        height: 70px;
        width: 60.55px !important;
    }
    header.header_nav .navbar-collapse {
        position: absolute;
        top: 86px;
        left: 0;
        width: 100%;
        padding: 0 15px 15px;
        background-color: #f4f9ec;
        box-shadow: 0 10px 12px #ee3b000d;
    }
    .padding_section {
        padding: 30px 0;
    }
    .heroSec .section-title h2 {
        font-size: 42px;
        line-height: 42px;
        text-align: center;
    }
    .heroSec .figcaption {
        text-align: center;
    }
    .heroSec .button-group {
        text-align: center;
    }
    .section-title h2 {
        margin-bottom: 10px;
        font-size: 28px;
        line-height: 30px;
    }
    .border_btn.playVideo {
        margin-left: 15px;
    }
    .aboutSe figure img {
        margin-bottom: 25px;
    }
    .aboutSe {
        text-align: center;
    }
    .featuresSec .col-xl-5.col-md-5.pe-5 {
        padding: 0 15px !important;
        text-align: center;
        margin-bottom: 25px;
    }
    .features_list {
        row-gap: 20px;
    }
    .features_list li {
        width: 100%;
        padding: 20px;
        text-align: center;
    }
    .features_list li .featuresIcon {
        margin: 0 auto 15px;
    }
    .signSec .section-title {
        margin-bottom: 30px;
    }
    .footer-section {
        padding: 30px 0 15px;
        background-position: left;
        text-align: center;
    }
    .copyright-area {
        padding-top: 15px;
        margin-top: 20px;
    }
    .footer-social-icon {
        justify-content: center;
    }
    .featuresSec .section-title {
        text-align: center;
    }
    .featuresSec .section-title + p {
        text-align: center;
    }
    .features_tabs {
        margin: 0 !important;
        column-gap: 2%;
    }
    .features_tabs .nav-item {
        width: 49%;
        display: flex;
        justify-content: center;
    }
    .features_tabs .nav-link img {
        width: 40px;
        height: 40px;
        margin: 0 auto 10px;
    }
    .features_tabs .nav-link {
        font-size: 16px;
    }
    .features_content h4.mb-4 {
        margin-bottom: 15px !important;
    }
    .features_content figure img {
        padding: 0;
        object-position: left;
    }
    .topbaner.padding_section {
        padding: 30px 0;
    }
    .topbaner .section-title h2 {
        font-size: 28px;
    }
    .contact-col {
        padding: 0 0 25px;
    }
    .copyright-area .footer-menu ul {
        justify-content: center;
    }
    .signup_formSec .section-title h2 {
        font-size: 52px;
        margin-top: 0;
        margin-bottom: 20px;
        line-height: 52px;
    }
    .signup_formSec .section-title {
        padding-right: 0;
        text-align: center;
        margin-bottom: 25px;
    }
}

@media (min-width:768px) and (max-width:991px) {
     
}

@media (min-width:768px) and (max-width:1023px) {

}
/*---responsive-css-end---*/
.invalid-feedbackes{
    margin-bottom: 15px;
    color: red;
}

 
