/*common css start*/
:root{
    --primary-color: #000;
    --secondary-color: #fff;
    --header-box-shadow: rgb(237 237 237 / 39%) 0px 3px 8px;
    --link-bg: #fff;
    --link-color: #000;
    --fix-h-box-shadow: rgb(245 245 245 / 27%) 0px 3px 8px;
    --footer-bg:#0e0e0e;
    --details-bg: #fff;
}

.light-theme{
    --primary-color: #fff;
    --secondary-color: #000;    
    --header-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    --link-bg: #000;
    --link-color: #fff;
    --fix-h-box-shadow: rgb(8 7 7 / 27%) 0px 3px 8px;
    --footer-bg:#fff;
    --details-bg: #4e4c4c;
}

* {
    padding: 0;
    margin: 0;
}

button,
a {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    text-decoration: none;
}

ul li {
    list-style: none;
}

p {
    font-size: 14px;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Exo', sans-serif;
}

img {
    width: 100%;
}

a:hover {
    text-decoration: none;
}

body {
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

/*title css start*/
.section-title-outer {margin-bottom: 30px;}

.section-top-title {
    font-size: 13px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
/*Title css end*/

/*Banner section css start*/
.banner-section {
    padding: 200px 0 100px 0;
    background-image: url(../images/service-bg-1.jpg);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}

.banner-section img {
    height: 300px;
    object-fit: cover;
}

.banner-content-outer {
    position: relative;
    z-index: 11;
}

.banner-section:after {
    content: '';
    width: 100%;
    height: 100%;
    background: #41a268;
    opacity: 0.6;
    top: 0;
    position: absolute;
    z-index: 1;
}

.banner-content-outer .top-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
}

.banner-content-outer .title {
    font-size: 40px;
    color: #fff!important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}
/*Banner section css End*/

/*common css End*/


/*Header css start*/
.header-section {
   background: var(--primary-color);
   position: absolute;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 99;
}

.nav-items-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 80px;
    position: relative;
}

.header-brand-logo {
    display: inline-block;
}

.header-brand-logo img {
    max-width: 300px;
    height: 80px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 0;
    height: 100%;
}

.nav-list-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item-link {
    color: var(--secondary-color);
    font-size: 14px;
    padding: 0px 15px;
    cursor: pointer;
    font-weight: 600;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: 'Proza Libre', sans-serif;
}
.nav-item-link i {
    font-size: 14px;
    margin-left: 8px;
    margin-top: -2px;
    opacity: 0.8;
}

.nav-item-link:hover {
    color: #41a268;
}

.nav-item-link.get-call {
    background: #3db4f8;
    margin-left: 30px;
    padding: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.nav-item-link.get-call:hover {
    color: #fff;
}

.nav-item-submenu {
    position: absolute;
    top: 80px;
    background-color: var(--primary-color);
    left: 0;
    opacity: 0;
    transform: scaleY(0);
    visibility: hidden;
    width: 220px;
    z-index: 99;
    padding-left: 0;
    transition: all .4s ease;
    z-index: 99;
}

.nav-list-item.item-has-submenu:hover .nav-item-submenu {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    z-index: 99;
}

.nav-list-item.item-has-submenu {
    position: relative;
    z-index: 1;
}

.submenu-list-item-link {
    display: block;
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Proza Libre', sans-serif;
    color: var(--secondary-color);
}

.submenu-list-item-link:hover {
    background: #282828;
    color: #41a268;
}

/*small btn css*/
.nav-toggle-btn .btn-inner {
    width: 26px;
    border-bottom: 1px solid var(--secondary-color);
    position: relative;
    transition: all .4s ease;
}

.nav-toggle-btn {
    height: 30px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary-color);
    padding: 5px;
    border-radius: 5px;
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

.nav-toggle-btn .btn-inner:before {
    content: "";
    height: 1px;
    width: 26px;
    position: absolute;
    background: var(--secondary-color);
    top: -7px;
}

.nav-toggle-btn .btn-inner:after {
    content: "";
    height: 1px;
    width: 26px;
    position: absolute;
    background: var(--secondary-color);
    top: 7px;
}

/*fixed header*/
.fixed-header .header-section{
    position: fixed;
    box-shadow: var(--header-box-shadow);
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}
/*  Language select css  */
.language-select-list {
    padding-left: 0;
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item #icon {
    width: 30px;
    cursor: pointer;
    margin-left: 10px;
}

.language-select-list .nav-item .nav-link {
    border: 1px solid var(--secondary-color);
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    border-radius: 10px;
}

.dropdown-menu {
    top: 14px!important;
    position: absolute;
}

.dropdown-menu li {
    border-bottom: 1px solid #ddd;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}
/*  Language select css  */
/*Header css End*/

/*Home Slider css start*/
.home-section {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.home-section:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #41a268;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.6;
}

.home-item-wrap {
    position: relative;
}

.home-item-wrap .slide-video {
    height: 100%;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
}

.home-item-wrap .slide-video .video {
    min-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home-item-image {
    max-height: 750px;
    object-fit: cover;
}

.home-content-outer {
    padding: 90px;
}

.home__contact-form-title {
    text-align: center;
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
}

.home__contact-from-outer {
    background: rgb(0 0 0 / 60%);
    padding: 20px;
    border-radius: 10px;
}

.home__input-item-wrap {
    margin-bottom: 10px;
}

.home__input-item-wrap label {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #fff;
}

.home__info-outer {
    margin-bottom: 20px;
}

.home-content-top-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    letter-spacing: 6px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
}

.home-content-top-main-title {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #fff;
}

.home-content-bottom-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.home-content-bottom-text {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.7;
    color: #fff;
}

.home-content-bottom-number {
    font-size: 25px;
    font-weight: 600;
    color: #41a268;
    display: inline-block;
    font-family: "Exo", sans-serif;
    background: #fff;
    padding: 6px 15px;
    border-radius: 5px;
}

.home-content-bottom-number:hover{
    color: #000;
}
/*Home Slider css End*/

/*Service section css start*/
.service-section {
    padding: 60px 0;
    background: var(--primary-color);
}

.service-section .section-title-outer {
    text-align: center;
}

.service-section .section-top-title {
    color: #fff;
}
.service-section .section-title {
    color: var(--secondary-color);
}

.service-items-wrapper {
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    align-items: stretch;
    border: 1px solid rgba(248, 250, 252, .08);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 20px;
}

.service-item-wrap {
    box-shadow: 13px 10px 22px 0px #00194c70;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.service-item-img {
    margin-bottom: 10px;
}

.service-item-img img {
    max-width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
}

.service-item-title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-item-des {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    font-weight: 400;
}
.service-info-list {
    padding-left: 0;
    margin-bottom: 20px;
}

.service-info-list-item {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 6px;
    transition: all .5s ease;
}

.service-info-list-item i {
    margin-right: 5px;
    color: #40a86b;
    transition: all .3s ease;
}

.service-info-list-item:hover i {
    transform: rotate(-45deg);
}

.service-item-btn {
    color: #fff;
    display: inline-block;
    font-weight: 500;
    border-radius: 4px;
    border: 2px solid #40a86b;
    padding: 7px 20px;
    position: relative;
    overflow: hidden;
    font-size: 18px;
    text-transform: capitalize;
    z-index: 1;
}

.service-item-btn:before{
    position: absolute;
    content: "";
    z-index: -1;
    background-color: #40a86b;
    left: -5px;
    right: -5px;
    bottom: -3px;
    height: 110%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.service-item-btn:hover{
    color: #40a86b;
}

.service-item-btn:hover::before{
    height: 0;
}
/*Service section css end*/

/* About section css start*/
.about-section{
    padding: 40px 0;
    background: var(--primary-color);
}
.about-items-wrapper {
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.about-item-left {
    width: 60%;
    padding: 20px;
}

.about-item-right {
    width: 40%;
    padding: 20px;
}

.about-item-left .section-title-outer {
    text-align: left;
    margin-bottom: 16px;
}

.about-item-left .section-top-title {
    color: #000;
}

.about-item-left .section-title {
    color: #000;
}

.about-item-image{
    border-radius: 5px;
    width: 40%;
    float: right;
    margin-left: 10px;
    margin-bottom: 10px;
}

.about-items-wrapper.reverse .about-item-image {
    margin-left: unset;
    margin-right: 10px;
    float: left;
}

.about-content-outer {
    padding: 15px;
    font-size: 15px;
    font-weight: 400;
    color: #000;
}

.about-content-outer p,.about-content-inner {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    line-height: 1.7;
}

.about-content-outer p img {
    width: 100%;
    margin-top: 20px;
}
/* About section css End */

/*Category Details css start*/
.category-details-section {
    padding: 40px 0;
    background: var(--primary-color);
}

.category-details-section-title-outer {
    text-align: center;
    margin-bottom: 50px;
}

.category-details-section-top-title {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    color: var(--secondary-color);
}

.category-details-section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.category-details-section-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--secondary-color);
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
}

.category-details-section-contact-link {
    display: inline-block;
    color: #3db4f8;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    /* border-color: #481c96; */
    padding-bottom: 5px;
    text-transform: uppercase;
}

.category-details-items-wrapper {
    /* display: flex; */
    margin-top: 20px;
}

.category-details-item-left {
    /* padding: 70px 50px; */
    /* width: calc( 100% / 2 ); */
}

.category-details-item-right {
    /* width: calc( 100% / 2 ); */
}

.category-details-item-text-outer p,.category-details-item-text, .category-details-item-text-outer {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.category-details-item-image {
    width: 40%;
    float: right;
    margin-left: 10px;
    margin-bottom: 10px;
}
.category-details-item-right-res-none {
    display: none;
}

.category-details-items-outer {
    box-shadow: rgb(0 0 0 / 38%) 0px 3px 8px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
}
/*Category Details css End*/

/* All project css start */
.gallery-section {
    padding: 40px 0;
    background-color: var(--primary-color);
}

.gallery-item-wrap {
    position: relative;
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
}

.gallery-item-wrap .gallery-item {
    border-radius: 10px;
}

.gallery-item-wrap i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    background: #0009;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
}

.gallery-item-wrap .item-name {
    position: absolute;
    bottom: -30px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    width: 100%;
    text-align: center;
}

.gallery-item-wrap:hover i {
    opacity: 1;
    visibility: visible;
}

.gallery-item-wrap:hover .item-name {
    visibility: visible;
    opacity: 1;
    bottom: 30px;
    text-align: center;
}
/* All project css End */

/* Company details page css start */
.company-details-section {
    padding: 50px 0;
    background: var(--primary-color);
}

.company-details-top-title {
    font-size: 18px;
    color: #3a3a3a;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.company-details-text {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: #7a7a7a;
}

.company-details-wrap {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
}

.company-details-wrap p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.company-details-wrap p img {
    margin-top: 20px;
    width: 100%;
}

.company-details-image {
    margin-bottom: 20px;
    height: 400px;
}

.company-details-title {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #000;
}

.team-section {
    padding: 40px 0;
    background: var(--primary-color);
}

.team-item-outer {
    box-shadow: 13px 10px 22px 0px #00194c70;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.team-member-name {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.team-member-position {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
}

.team-member-phone, .team-member-email {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

.team-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member-phone {
    margin-bottom: 4px;
}

.team-member-phone i, .team-member-email i {
    margin-right: 4px;
    color: #3c9e65;
}

.team-member-phone:hover, .team-member-email:hover {
    color: #3c9e65;
}
/* Company details page css End */

/*Service list page css start*/
.service-list-section {
    padding: 50px 0;
}

.service-list-top-content {
    text-align: center;
}

.service-list-top-content .title {
    font-size: 33px;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.service-list-top-content .title:after {
    content: '';
    position: absolute;
    width: 80px;
    bottom: 0;
    background: #ff5733;
    transition: all .5s ease;
    height: 3px;
    left: 50%;
    -moz-transform: translateX(-50%) skewX(-65deg);
    -webkit-transform: translateX(-50%) skewX(-65deg);
    -o-transform: translateX(-50%) skewX(-65deg);
    -ms-transform: translateX(-50%) skewX(-65deg);
    transform: translateX(-50%) skewX(-65deg);
}

.service-list-top-content .des {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 26px;
}

.service-list-item-outer {
    padding: 25px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    margin-bottom: 30px;
    border-radius: 10px;
    transition: all .3s ease;
}

.service-list-item-outer:hover {
    box-shadow: 0px 15px 35px rgb(255 49 88 / 30%);
    transform: translateY(-5px);
}

.service-list-item-content .description {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
}

.service-list-item-content .custom-title {
    font-size: 27px;
    text-transform: capitalize;
    color: #000;
    font-weight: 500;
}

.service-list-item-content .view-details-btn {
    padding: 10px 15px;
    display: inline-block;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    background: #FF5733;
    border-radius: 3px;
}

.service-list-item-content .view-details-btn.whatsapp {
    background: #075e54;
}

/*Service list page css End*/

/*Footer section css start*/
.footer-section {
    padding: 50px 0;
    background: var(--primary-color);
    box-shadow: var(--header-box-shadow);
    border-top: 1px solid var(--secondary-color);
}

/*.footer-sec-top {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.footer-section-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.footer-section:after {
    content: '';
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000000 100%);
    top: 0;
    left: 0;
    z-index: -1;
}

.footer-section-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.9;
    font-weight: 400;
    margin-bottom: 30px;
}

.footer-section-contact-link {
    display: inline-block;
    color: #3db4f8;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.footer-sec-bottom {
    text-align: center;
    margin-top: 50px;
}

.footer-sec-bottom .title {
    font-weight: 600;
    color: #ffffff;
    font-family: "Exo", Sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.footer-sec-bottom-number {
    font-size: 30px;
    font-weight: 600;
    color: #3db4f8;
    display: inline-block;
    font-family: "Exo", sans-serif;
}*/

/*2nd footer*/

  .footer-section {
      padding: 20px 0;
  }
  
  .footer-item-wrap .text {
      font-size: 18px;
      font-weight: 600;
      color: #253D4E;
  }
  
  .footer-item-wrap .footer-logo-inner {
      display: inline-block;
      margin-bottom: 15px;
  }
  
  .footer-logo-inner img {
      width: 100%;
      max-width: 100px;
  }
  
  .footer-contact-info .footer-item {
      margin-bottom: 10px;
  }
  
  .footer-contact-info .footer-item .item-link {
      color: var(--secondary-color);
      font-size: 16px;
      margin-bottom: 0;
  }
  
  .footer-contact-info .footer-item .item-link i {
      font-size: 16px;
      color: #40a86b;
      margin-right: 9px;
  }
  
  .footer-contact-info .footer-item .item-link strong {
      font-size: 14px;
  }
  
  .footer-item-wrap .footer-item-title {
      position: relative;
      padding-bottom: 10px;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--secondary-color);
  }
  
  .footer-item-wrap .footer-item-title:after {
      content: "";
      width: 80px;
      height: 2px;
      position: absolute;
      bottom: 0;
      left: 0;
      background-color: #BCE3C9;
  }
  
  .footer-item-wrap .footer-service-list {
      padding-left: 0;
  }
  
  .footer-service-list-item {
      margin-bottom: 12px;
  }
  
  .footer-service-list-link {font-size: 15px;color: var(--secondary-color);display: block;font-weight: 600;transition: all .3s ease;}
  
  .footer-service-list-link:hover {
      color: #40a86b;
      padding-left: 5px;
  }
  
  .footer-item-wrap .install-app-wrap {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
  }
  
  .footer-bottom {
      border-top: 1px solid #40a86b;
      padding: 20px;
      margin-top: 20px;
      text-align: center;
  }
  
  .footer-bottom-left .text {
      font-size: 14px;
      line-height: 24px;
      color: var(--secondary-color);
      font-weight: 500;
      margin-bottom: 0;
  }
  
  .footer-bottom-left .text .text-brand {
      color: #40a86b;
  }

/*Footer section css End*/

/*Contact section css start*/
.contact-section-wrapper {
    padding: 40px 0;
    background: var(--primary-color);
}

.contact-info-item {
    text-align: center;
    box-shadow: 13px 10px 22px 0px #00194c70;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    height: 234px;
}


.contact-info-icon {
    display: inline-block;
    padding: 20px 30px;
    background: #40a86b;
    margin-bottom: 20px;
    border-radius: 3px;
}

.contact-info-icon i {
    font-size: 30px;
    color: #fff;
}

.contact-info-item .title {
    font-size: 20px;
    text-transform: capitalize;
    color: #000;
    font-weight: 500;
}

.contact-info-item a {
    color: #000;
    font-size: 16px;
    display: inline-block;
}

.contact-info-item a:hover,
.contact-info-item p:hover {
    color: #3db4f8;
}

.contact-info-item p {
    color: #000;
    font-size: 16px;
    margin-bottom: 0;
}

.contact-form-wrapper {margin-top: 30px;}

.contact-form {
    box-shadow: rgb(0 0 0 / 38%) 0px 3px 8px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
}

.contact-form label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 3px;
}

.contact-form input {
    margin-bottom: 20px;
    height: 50px;
}

.contact-form input:focus {
    box-shadow: none;
    border-color: #ddd;
}

.contact-submit-btn-outer {
    margin-top: 20px;
}

.contact-submit-btn-inner {
    width: 100%;
    padding: 10px 0;
    border: none;
    background: #40a86b;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 5px;
}
.contact-info-wrapper {
    width: calc(100% / 2);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 50px 0;
}

.contact-info-wrapper:after {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, #000000 100%);
    top: 0;
    position: absolute;
    z-index: -1;
}

.contact-info-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}
.contact-form-title {
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-form-des {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--secondary-color);
}
/*Contact section css End*/

 /*Thank you page css start*/
  @keyframes confetti-slow {
      0% {
          transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
     }
      100% {
          transform: translate3d(25px, 105vh, 0) rotateX(360deg) rotateY(180deg);
     }
  }
  @keyframes confetti-medium {
      0% {
          transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
     }
      100% {
          transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(360deg);
     }
  }
  @keyframes confetti-fast {
      0% {
          transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
     }
      100% {
          transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg);
     }
  }
  .confetti-container {
      perspective: 700px;
      position: absolute;
      overflow: hidden;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
  }
  .confetti {
      position: absolute;
      z-index: 1;
      top: -10px;
      border-radius: 0%;
  }
  .confetti--animation-slow {
      animation: confetti-slow 2.25s linear 1 forwards;
  }
  .confetti--animation-medium {
      animation: confetti-medium 1.75s linear 1 forwards;
  }
  .confetti--animation-fast {
      animation: confetti-fast 1.25s linear 1 forwards;
  }
  /* Checkmark */
  .checkmark-circle {
      width: 150px;
      height: 150px;
      position: relative;
      display: inline-block;
      vertical-align: top;
      margin-left: auto;
      margin-right: auto;
  }
  .checkmark-circle .background {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: #3BB77E;
      position: absolute;
  }
  .checkmark-circle .checkmark {
      border-radius: 5px;
  }
  .checkmark-circle .checkmark.draw:after {
      -webkit-animation-delay: 100ms;
      -moz-animation-delay: 100ms;
      animation-delay: 100ms;
      -webkit-animation-duration: 3s;
      -moz-animation-duration: 3s;
      animation-duration: 3s;
      -webkit-animation-timing-function: ease;
      -moz-animation-timing-function: ease;
      animation-timing-function: ease;
      -webkit-animation-name: checkmark;
      -moz-animation-name: checkmark;
      animation-name: checkmark;
      -webkit-transform: scaleX(-1) rotate(135deg);
      -moz-transform: scaleX(-1) rotate(135deg);
      -ms-transform: scaleX(-1) rotate(135deg);
      -o-transform: scaleX(-1) rotate(135deg);
      transform: scaleX(-1) rotate(135deg);
      -webkit-animation-fill-mode: forwards;
      -moz-animation-fill-mode: forwards;
      animation-fill-mode: forwards;
  }
  .checkmark-circle .checkmark:after {
      opacity: 1;
      height: 75px;
      width: 37.5px;
      -webkit-transform-origin: left top;
      -moz-transform-origin: left top;
      -ms-transform-origin: left top;
      -o-transform-origin: left top;
      transform-origin: left top;
      border-right: 15px solid white;
      border-top: 15px solid white;
      border-radius: 2.5px !important;
      content: '';
      left: 37px;
      top: 80px;
      position: absolute;
  }
  @-webkit-keyframes checkmark {
      0% {
          height: 0;
          width: 0;
          opacity: 1;
     }
      20% {
          height: 0;
          width: 37.5px;
          opacity: 1;
     }
      40% {
          height: 75px;
          width: 37.5px;
          opacity: 1;
     }
      100% {
          height: 75px;
          width: 37.5px;
          opacity: 1;
     }
  }
  @-moz-keyframes checkmark {
      0% {
          height: 0;
          width: 0;
          opacity: 1;
     }
      20% {
          height: 0;
          width: 37.5px;
          opacity: 1;
     }
      40% {
          height: 75px;
          width: 37.5px;
          opacity: 1;
     }
      100% {
          height: 75px;
          width: 37.5px;
          opacity: 1;
     }
  }
  @keyframes checkmark {
      0% {
          height: 0;
          width: 0;
          opacity: 1;
     }
      20% {
          height: 0;
          width: 37.5px;
          opacity: 1;
     }
      40% {
          height: 75px;
          width: 37.5px;
          opacity: 1;
     }
      100% {
          height: 75px;
          width: 37.5px;
          opacity: 1;
     }
  }
  .thank-you-message {
     font-size: 20px;
     font-weight: 600;
     line-height: 28px;
     color: #3BB77E;
  }
  
  .thank-you-btn-inner {
     background: #3BB77E;
     padding: 10px 20px;
     display: inline-block;
     font-size: 18px;
     font-weight: 700;
     color: #fff;
     border-radius: 5px;
     border: 1px solid #3BB77E;
  }
  
  .thank-you-btn-inner:hover {
     background: transparent;
     color: #3BB77E;
  }
  /*Thank you page css End*/