@import url(https://fonts.googleapis.com/css2?family=Nunito);
html {
    scroll-behavior: smooth;
}
body {
    font-family: Nunito, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #5a5872;
}
:root {
    --brand-color: #19d95e;
    --banner-overlay-color: #03100f8f;
    --desktop-title: calc(140% * 20px);
    --mobile-title: calc(140% * 16px);
    --desktop-subtitle: 18px;
    --mobile-subtitle: 14px;
    --desktop-body: 20px;
    --mobile-body: 16px;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.btn:focus {
    box-shadow: none !important;
}
button:focus {
    box-shadow: none !important;
}
a:focus,
button:focus,
input:focus,
textarea:focus {
    text-decoration: none;
    outline: 0;
}
a:focus,
a:hover {
    text-decoration: none;
}
a,
i,
span {
    display: inline-block;
    text-decoration: none;
}
img {
    vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: #2b2a3d;
    margin: 0;
}
h1 {
    font-size: 48px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
ol,
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #5a5872;
    margin: 0;
}
.text-dark {
    color: #000 !important;
}
.bg-cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.green-btn {
    position: relative;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
    border: 2px solid var(--brand-color);
    padding: 0 20px;
    font-size: 16px;
    line-height: 50px;
    height: 50px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    z-index: 1;
    transition: all 0.4s ease-out 0s;
    background-color: var(--brand-color);
    overflow: hidden;
}
.green-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    padding: 50%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
    transition: all 0.4s linear;
    transform: translate3d(-50%, -50%, 0) scale(0);
}
.green-btn:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}
.green-btn-outline {
    position: relative;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid var(--brand-color);
    padding: 0 20px;
    font-size: 16px;
    line-height: 50px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    background-color: transparent;
}
.green-btn-outline:hover {
    color: #fff;
    background-color: var(--brand-color);
}
.green-btn:hover {
    background-color: var(--brand-color);
    color: #fff;
}
.section-title .capsule {
    font-size: 13px;
    background: #aaffc98a;
    border-radius: 35px;
    padding: 5px 10px;
    font-weight: 600;
    color: #0a4845;
    margin-bottom: 6px;
}
.section-title .title {
    font-size: 30px;
    font-weight: 700;
}
.section-title .subtitle {
    margin-top: 5px;
    font-size: 15px;
    color: #9e9db3;
}
@media (max-width: 767px) {
    .section-title .title {
        font-size: 28px;
    }
}
#header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 70px;
    align-items: center;
    transition: all 0.3s ease-out;
    z-index: 99;
}
#header.navbar_fixed {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    box-shadow: 0 2px 10px rgb(141 133 133 / 17%);
    transition: all 0.3s ease-out;
}
#header .green-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: all 0.3s ease-out;
}
#header .logo img {
    max-height: 40px;
}
.nav-menu,
.nav-menu * {
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    position: relative;
    white-space: nowrap;
}
.nav-menu a {
    padding: 8px 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    outline: 0;
    border-radius: 5px;
}
#header.navbar_fixed .nav-menu a {
    color: #000;
}
.nav-menu a:hover {
    color: #004217;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
#header.navbar_fixed .nav-menu a:hover {
    color: #fff;
    background: var(--brand-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.nav-menu li .active {
    color: #fff;
    background: var(--brand-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
#header.navbar_fixed .nav-menu li .active {
    color: #fff;
    background: var(--brand-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.nav-menu > li {
    margin-left: 20px;
}
#mobile-nav-toggle {
    position: relative;
    z-index: 99;
    border: 0;
    background: 0 0;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: 0;
    cursor: pointer;
}
.hamburger {
    position: relative;
    height: 20px;
    width: 29px;
    margin: 0;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    cursor: pointer;
}
.hamburger span {
    position: absolute;
    display: block;
    height: 3px;
    width: 100%;
    background: #19d95e;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 9px;
    width: 70%;
    left: 10px;
}
.hamburger span:nth-child(3) {
    top: 18px;
}
.hamburger:hover span:nth-child(1) {
    top: -2px;
}
.hamburger:hover span:nth-child(3) {
    top: 20px;
}
.hamburger.crumble:hover {
    width: 35px;
}
.hamburger.crumble span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}
.hamburger.crumble span:nth-child(2) {
    opacity: 0;
}
.hamburger.crumble span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
}
@media only screen and (max-width: 991px) {
    #mobile-nav-toggle {
        display: inline;
    }
    #nav-menu-container {
        display: none;
    }
}
#mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    padding-top: 69px;
    overflow-y: auto;
    transition: .4s;
    background: #000000;
    transform: translateX(100%);
    z-index: 97;
}
#mobile-nav ul {
    padding-top: 30px;
    margin: 0;
    list-style: none;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    border-top: 1px solid #fefefe;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    #mobile-nav ul{
        max-width: 540px;
    }
}

@media screen and (min-width: 576px) {
    #mobile-nav ul{
        max-width: 720px;
    }
}
#mobile-nav ul li {
    position: relative;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(100px);
    transition: all .4s ease-in-out;
}
#mobile-nav.active ul li:nth-child(1) {
    transition-delay: .3s;
    opacity: 1;
    transform: translate(0px, 0px);
}
#mobile-nav.active ul li:nth-child(2) {
    transition-delay: .4s;
    opacity: 1;
    transform: translate(0px, 0px);
}
#mobile-nav.active ul li:nth-child(3) {
    transition-delay: .5s;
    opacity: 1;
    transform: translate(0px, 0px);
}
#mobile-nav.active ul li:nth-child(4) {
    transition-delay: .6s;
    opacity: 1;
    transform: translate(0px, 0px);
}
#mobile-nav.active ul li:nth-child(5) {
    transition-delay: .7s;
    opacity: 1;
    transform: translate(0px, 0px);
}
#mobile-nav ul li a {
    position: relative;
    text-decoration: none;
    display: inline-block;
    outline: 0;
    font-size: 30px;
    color: #fff;
}
#mobile-nav ul li a.active{
    color: var(--brand-color);
}
#mobile-body-overlay {
    width: 100%;
    height: 100%;
    z-index: 96;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(4, 9, 30, 0.7);
    display: none;
}
.mobile-menu ul li a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 3px;
    position: relative;
    width: 100%;
    display: block;
    outline: 0;
}
.mobile-menu ul li a:hover {
    color: #19d95e;
}
.mobile-menu ul .active {
    color: #19d95e;
}
body.mobile-nav-active {
    overflow: hidden;
}
body.mobile-nav-active #mobile-nav {
    transform: translate(0px, 0px);
}
#banner .hero {
    position: relative;
    min-height: 100vh;
    z-index: 5;
}
#banner .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--banner-overlay-color);
    z-index: -1;
}
.banner-content .banner-title {
    font-size: 60px;
}
.banner-content .banner-text {
    font-size: 23px;
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .banner-content .banner-title {
        font-size: 40px;
    }
    .banner-content .banner-text {
        font-size: 16px;
    }
}
.banner-content .banner-btn {
    margin-top: 20px;
}
#hero2-section {
    margin: 80px 0;
}
#hero2-section p {
    margin-top: 20px;
    font-size: 18px;
}
#hero2-section a {
    margin-top: 20px;
}
.single-feature {
    text-align: center;
    margin: 10px 0;
    border-radius: 20px;
}
.single-feature .icon {
    display: inline-table;
    margin-top: 0;
    margin: 10px;
    margin-top: 16px;
    border-radius: 50%;
    text-align: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, #51e1dd 20%, #5558ed 100%);
}
.single-feature .icon i {
    font-size: 40px;
    color: #fff;
    text-align: center;
    width: auto;
    height: auto;
    line-height: 80px;
}
.single-feature .info {
    font-weight: 300;
    font-size: 16px;
    padding-left: 15px;
    padding-bottom: 15px;
}
.single-feature .info .info-title {
    font-weight: 600;
    margin: 20px 0 15px;
    font-size: 23px;
    letter-spacing: -0.5px;
}
.single-feature .info .decription {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 12px;
    font-weight: 300;
}
#about-us-section {
    margin: 70px 0;
}
.about-us-img img {
    margin-bottom: 20px;
}
.about-us-content h2 {
    font-size: 30px;
    font-weight: 700;
}
.about-us-content p {
    font-size: 18px;
}
#services-section {
    margin: 40px 0;
}
.single-service {
    position: relative;
    margin-bottom: 15px;
}
.single-service .service-img {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.single-service .service-img a img {
    transition: all 1s ease;
    width: 100%;
    border-radius: 15px !important;
}
.single-service .service-content .title a {
    color: #021817;
    font-weight: 500;
    font-size: 28px;
}
.single-service .title {
    margin-top: 13px;
}
.single-service .service-img:hover a img {
    transition: all 1s;
    transform: scale(1.1);
}
.portfolio-content .description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}
#cta-section {
    margin: 50px 0;
    position: relative;
    padding: 40px 0;
    background-image: url(img/cta.jpg);
}
#cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
}
.cta-content {
    position: relative;
}
.cta-content h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}
.cta-content p {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
    .cta-content h2 {
        font-size: 40px;
    }
}
#footer {
    padding: 60px 0 15px 0;
    background-color: #111414;
    color: #7c8d8d;
}
#footer hr {
    height: 2px;
    color: #7c8d8d;
}
.footer-header .logo img {
    max-height: 60px;
    margin-bottom: 20px;
}
.single-footer p {
    color: #7c8d8d;
}
.single-footer .title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #637070;
    margin-bottom: 10px;
}
.single-footer .list a {
    font-size: 20px;
    color: #7c8d8d;
    transition: 0.3s all ease;
}
.single-footer .list a:hover {
    color: var(--brand-color);
    padding-left: 15px;
}
.single-footer .contact-wrap {
    display: inline-flex;
}
.single-footer .contact-wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin-right: 7px;
    border: 1px solid #7c8d8d;
    transition: all 0.3s;
}
.single-footer .contact-wrap a:hover {
    background: var(--brand-color);
}
.footer-foot p {
    color: #7c8d8d;
}
@media screen and (max-width: 768px) {
    .footer-body {
        text-align: center;
    }
    .footer-body .single-footer:not(first-child) {
        margin-top: 15px;
    }
}
.sub .hero {
    position: relative;
    height: 400px;
    z-index: 5;
}
.sub .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--banner-overlay-color);
    z-index: -1;
}
.sub .hero .content {
    margin-bottom: 50px;
}
.sub .hero .content h1 {
    font-size: 50px;
    letter-spacing: 1px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .sub .hero {
        height: 350px;
    }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
    .sub .hero {
        height: 260px;
    }
}
@media screen and (max-width: 577px) {
    .sub .hero {
        height: 260px;
    }
}
@media screen and (max-width: 767px) {
    .column-reverse {
        flex-direction: column-reverse;
    }
}
#about-us-hero {
    margin: 50px 0;
}
.single-portfolio {
    position: relative;
    padding: 0;
    overflow: hidden;
}
.single-portfolio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(
        180deg,
        hsla(0, 0%, 100%, 0) 0,
        hsla(0, 0%, 100%, 0) 70%,
        hsla(0, 0%, 10%, 0.1) 75%,
        hsla(0, 0%, 10%, 0.2) 80%,
        hsla(0, 0%, 10%, 0.33) 85%,
        hsla(0, 0%, 10%, 0.64) 90%,
        hsla(0, 0%, 10%, 0.8) 95%,
        #191919 100%
    );
    background: -webkit-linear-gradient(
        180deg,
        hsla(0, 0%, 100%, 0) 0,
        hsla(0, 0%, 100%, 0) 70%,
        hsla(0, 0%, 10%, 0.1) 75%,
        hsla(0, 0%, 10%, 0.2) 80%,
        hsla(0, 0%, 10%, 0.33) 85%,
        hsla(0, 0%, 10%, 0.64) 90%,
        hsla(0, 0%, 10%, 0.8) 95%,
        #191919 100%
    );
    background: linear-gradient(
        180deg,
        hsla(0, 0%, 100%, 0) 0,
        hsla(0, 0%, 100%, 0) 70%,
        hsla(0, 0%, 10%, 0.1) 75%,
        hsla(0, 0%, 10%, 0.2) 80%,
        hsla(0, 0%, 10%, 0.33) 85%,
        hsla(0, 0%, 10%, 0.64) 90%,
        hsla(0, 0%, 10%, 0.8) 95%,
        #191919 100%
    );
    opacity: 0;
    z-index: 1;
    transition: all 1s;
}
.single-portfolio:hover::before {
    opacity: 1;
    visibility: visible;
}
.single-portfolio .portfolio-img {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 1s;
}
.single-portfolio:hover .portfolio-img {
    transform: scale(1.06);
    transition: all 1s;
}
.single-portfolio .porfoilio-content-container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    transition: 1s;
    z-index: 2;
}
.single-portfolio .porfoilio-content-container .porfolio-content {
    position: absolute;
    bottom: -40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    transition: all 1s;
}
.single-portfolio:hover .porfoilio-content-container .porfolio-content {
    bottom: 42px;
}
.single-portfolio .porfoilio-content-container .porfolio-content .description h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}
.single-portfolio .porfoilio-content-container .porfolio-content .description p {
    font-size: 16px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
}
.single-portfolio:hover .porfoilio-content-container .porfolio-content .description p {
    opacity: 1;
    visibility: visible;
}
.single-portfolio .porfoilio-content-container .porfolio-content > a {
    display: block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: 0 0;
    color: #fff;
    border: 1px solid #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
}
.single-portfolio:hover .porfoilio-content-container .porfolio-content a {
    opacity: 1;
    visibility: visible;
}
@media screen and (max-width: 767px) {
    .single-portfolio::before {
        opacity: 1;
        visibility: visible;
    }
    .single-portfolio .porfoilio-content-container .porfolio-content {
        bottom: 42px;
    }
    .single-portfolio .porfoilio-content-container .porfolio-content .description p {
        opacity: 1;
        visibility: visible;
    }
    .single-portfolio .porfoilio-content-container .porfolio-content a {
        opacity: 1;
        visibility: visible;
    }
}
#portfolio-overview {
    position: relative;
    margin: 40px 0;
}
#portfolio-overview .portfolio-img img {
    position: relative;
}
#portfolio-overview .portfolio-info {
    margin-top: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    padding: 20px;
    border-radius: 15px;
}
#portfolio-overview .portfolio-info h3 {
    position: relative;
    font-weight: 500;
    margin-bottom: 20px;
}
#portfolio-overview .portfolio-info h3:before {
    position: absolute;
    bottom: -10px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: silver;
}
#portfolio-overview .portfolio-info ul li {
    padding: 15px 0;
}
#portfolio-about {
    position: relative;
    margin: 40px 0;
}
.project-gallery {
    position: relative;
}
.project-gallery .single {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 1s;
}
.project-gallery .single img {
    transition: all 1s;
}
.project-gallery .single:hover img {
    transform: scale(1.2);
}
.project-gallery .single .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    z-index: 2;
}
.project-gallery .single:hover .hover {
    opacity: 1;
    visibility: visible;
}
.project-gallery .single .hover a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    background-color: var(--brand-color);
    text-align: center;
    border-radius: 50%;
    transition: all 0.5s;
}
.project-gallery .single:hover .hover a {
    margin-top: 0;
    background-color: #000;
}
.next-project h4,
.prev-project h4 {
    font-size: 20px;
    font-weight: 500;
}
.next-project h5,
.prev-project h5 {
    font-size: 17px;
    font-weight: 400;
}
.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
    position: fixed;
    z-index: 100;
    color: #fff;
    right: 20px;
    text-align: center;
    padding-right: 0;
    width: 100%;
    top: 20px;
    width: 30px;
    background: var(--brand-color);
    height: 30px;
    line-height: 30px;
}
img.mfp-img {
    -webkit-box-shadow: 0 2px 40px 8px rgba(15, 15, 15, 0.15);
    box-shadow: 0 2px 40px 8px rgba(15, 15, 15, 0.15);
}
button.mfp-arrow,
button.mfp-close {
    background: var(--brand-color);
}
.mfp-bg {
    background-color: #000;
}
#contact {
    margin: 40px 0;
}
.contact-form .form-control {
    background: #fff;
    border-radius: 5px;
    width: 100%;
    border: 1px solid transparent;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 0 1px;
    transition: all 0.3s ease-out 0s;
}
.contact-form .form-control:focus {
    border: 1px solid #6b6b6b;
}
.contact-form textarea.form-control {
    height: 150px;
    resize: none;
}
.contact-form .form-floating {
    margin-bottom: 1.5rem;
}
.contact-form #ContactForm label.error {
    position: relative;
    padding: 0;
    transform: unset !important;
    opacity: 1 !important;
    color: red;
}
@keyframes short-press {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}
.hide {
    display: none;
}
.send-btn {
    display: block;
    transition: all 0.3s ease;
}
.modal-header {
    border: none !important;
}
.modal-body {
    font-size: 24px;
}
.modal-body i {
    display: block;
    font-weight: 800;
    font-size: 60px;
    margin-bottom: 20px;
}
.modal-body i.la-check-circle {
    color: #0ee60e;
}
.modal-body i.la-exclamation-circle {
    color: red;
}
.send-btn.animated {
    animation: 0.75s short-press cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.send-btn > span {
    display: block;
    color: #fff;
    text-align: center;
}
.send-btn > span.initial-state {
    transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: 0.75s;
}
.send-btn.state-1 .initial-state {
    margin-top: -50px;
}
.send-btn.state-2 .initial-state {
    margin-top: -100px;
}
.left-wrapper .call-us,
.left-wrapper .email-us {
    padding: 25px 20px;
    border-radius: 5px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 0 1px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    height: 140px;
    transition: all 0.3s ease-out 0s;
}
.left-wrapper .call-us .icon,
.left-wrapper .email-us .icon {
    max-width: 54px;
    width: 100%;
    height: 54px;
    border-radius: 50%;
    background: var(--brand-color);
    color: #fff;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.left-wrapper .call-us .content .title,
.left-wrapper .call-us .icon,
.left-wrapper .email-us .content .title {
    font-weight: 600;
    font-size: 20px;
}
.accordion-button::after{
    content: "\f13a" !important;
    position: absolute;
    right: 35px;
    top: 10px;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 30px;
    background: none !important;
}
.accordion-button:not(.collapsed)::after{
    content: '\f057' !important;
    transform: rotate(0);
}
/* .accordion-header{
    background: #e7ffe9;
} */
.accordion-button:not(.collapsed){
    color: var(--brand-color);
    background: #003407;
}
.accordion-item{
    border-radius: 5px !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    margin-bottom: 15px;
    border: none !important;
}
.accordion-flush .accordion-item .accordion-button{
    width: 100%;
    font-weight: 700;
    font-size: 20px;
}
.accordion-body{
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .accordion-button::after{
        right: -20px;
    }

    .accordion-flush .accordion-item .accordion-button{
        width: 90%;
    }
    /* .accordion-header{
        background: #e7ffe9;
    } */
}