@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.eot");
    src: url("../fonts/Poppins-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff"), url("../fonts/Poppins-Bold.ttf") format("truetype"), url("../fonts/Poppins-Bold.svg#Poppins-Bold") format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Medium.eot");
    src: url("../fonts/Poppins-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium.ttf") format("truetype"), url("../fonts/Poppins-Medium.svg#Poppins-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.eot");
    src: url("../fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.ttf") format("truetype"), url("../fonts/Poppins-Regular.svg#Poppins-Regular") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-SemiBold.eot");
    src: url("../fonts/Poppins-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff"), url("../fonts/Poppins-SemiBold.ttf") format("truetype"), url("../fonts/Poppins-SemiBold.svg#Poppins-SemiBold") format("svg");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --hamBg: red;
    /* --preloaderBg:  green; */

}


/*===========================================================
 Common CSS
============================================================*/

body {
    font-size: 17px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #000;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;

	overflow-x: hidden !important;
}

ul {
    padding: 0;
    margin: 0;
}


li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all .3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
	height: auto;
}

img.lazy {
    background-image: url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50px auto;
    height: auto;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid #fff;
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin-bottom: 10px;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

#npreOverlay {
    background: var(--preloaderBg);
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}



/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: #fff;
}


/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
    background-color: #f6f6f6;

    padding: 35px 0;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

}

.d-flex {
    display: flex;
    align-items: center;
}

.menu ul li {
    list-style: none;
    display: inline-block;
    margin-left: 45px;
}

.menu ul li a {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 1.76px;
    color: #000;
    text-decoration: none;
}

.menu ul li:hover > a,
.menu ul li.current-menu-item > a,
.menu ul li.current_page_item > a,
.menu ul li.current-menu-ancestor > a,
.menu ul li.current-page-ancestor > a {
    color: #10b59c;

}

.logo img {
    width: 200px;
}

.contact img {
    margin-right: 10px;
}

.contact {
    font-size: 16px;
    font-weight: bold !important;
    letter-spacing: 1.76px;
    text-align: center;
    color: #fff !important;

    width: 164px;
    line-height: 42px !important;
    border-radius: 6px;
    background-color: #65b2b6;
    display: flex;
    align-items: center;
    justify-content: center;

}

.contact:hover {
    background: #0996b5;
}


/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;

    padding-top: 100px;
    padding-bottom: 100px;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: #FFF;
    min-height: 100vh;

}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: #65b2b6;
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: #fff;
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
.hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: .8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}



/*===========================================================
 Hamberger
===========================================================*/


.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: #65b2b6;
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -o-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -o-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.menu ul li a {
    line-height: 42px;
}


.menu ul li .dropdown-menu li {
    display: block;
    margin-left: 0;


}

.menu ul li .dropdown-menu li a {
    padding: 10px 0;
    line-height: 1.2;
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.57 !important;
    letter-spacing: 1.54px;
    color: #000;
    border-bottom: .5px solid #65b2b6;
}

.menu ul li .dropdown-menu li a:hover {
    color: #0996b5;
}

.dropdown-menu li:last-child a {
    border-bottom: 0 !important;
}

.dropdown-menu {
    width: 184px;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 4px;
}

.dropdown a {
    position: relative;
}

.dropdown:hover::after,
.dropdown>a:hover::after {
    color: #10b59c;
    transform: rotate(-180deg);
}
.dropdown::after{
    display: inline-block;
    margin-left: .255em;
    vertical-align: middle;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    transition: .3s;
}


.container {
    max-width: 1170px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*===========================================================
 Header
===========================================================*/
.logo {
    max-width: 200px;
}




/*===========================================================
 Banner Area
===========================================================*/
.banner-area {
    margin-top: 100px;
}

.header-area + .maincontent {
    padding-top: 100px;
}

.footer-area .container,
.header-area .container,
.banner-area .container {
    max-width: 1340px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
    flex-direction: row-reverse;
}

.banner:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 88%;
    top: 6%;
    background: #f6f6f6;
    z-index: -1;
}

.banner-img {
    flex: 1;

    aspect-ratio: 615 / 414;
}

.banner-text {
    flex: 1;

    padding-left: 85px;
}

.banner-text h2 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.13;
    letter-spacing: 6.6px;
    color: #65b2b6;
    text-transform: uppercase;
}

.banner-text p {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 1.76px;
    color: #000;
    margin: 20px 0;
}

.banner-bttn a,
input.button {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1.76px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
    border-radius: 6px;
    background-color: #65b2b6;
    padding: 10px 20px;
    border: 0 !important;
}

.banner-bttn a:hover,
input.button:hover {
    background: #0996b5;


}


/*===========================================================

===========================================================*/

.member-slider-area {
    background-color: #f6f6f6;
    padding: 100px 0;
}

.member-slider-area .title {
    margin-bottom: 50px;
}

.slider-area {
    position: relative;
}
.slider-inner{
    margin: 0 -25px;
}
.single-slider{
    padding: 0 25px;
}
.slider-arrows {
    position: absolute;
    right: 0;
    top: 0;
}


.slider-arrows {
    display: flex;
}

.slick-arrow:hover svg path {
    fill: #0d6db5;
}

.slick-arrow:hover {
    background: #65b2b6;
}

.slick-arrow.slick-disabled svg path {
    /*fill: #fff;*/
}

.slick-arrow.slick-disabled {
    /*background: #cfcfcf;*/
}

.slick-arrow {
    transition: .6s;
    width: 53px;
    line-height: 53px;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    cursor: pointer;
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-track {
    display: flex;
    align-items: center;
}

.single-slider {}




/*===========================================================
Project  Area
===========================================================*/

.project-area {
    padding-top: 100px;
    padding-bottom: 80px;
}

.project-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.project-left {
    width: 50%;
}

.project-text {
    max-width: 485px;
    width: 100%;
}

.title {
  margin-bottom: 10px;
}

.title h2,
.vc_tta-panel-title {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 4.4px;
    color: #65b2b6;
    position: relative;
    text-transform: uppercase;
}

.vc_tta-panel-title {
  font-weight: bold !important;
  line-height: 1.4 !important;
}

.vc_tta-panel-title a {
  color: #65b2b6 !important;
}

.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel-heading .vc_tta-controls-icon::after,
.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel-heading .vc_tta-controls-icon::before {
  border-color: #65b2b6 !important;
}

.title h2:before {
    position: absolute;
    content: '';
    width: 65px;
    height: 1px;
    background-color: #65b2b6;
    left: -85px;
    top: 50%;
    transform: translateY(-50%);
}

.project-text p {
    font-size: 22px;
    font-weight: normal;
    line-height: 1.36;
    letter-spacing: 2.42px;
    color: #000;
    margin-top: 20px;
}

/* .project-right {
    width: 50%;
} */

.project-right ul {
    max-width: 505px;
    width: 100%;
    margin-left: auto;
    position: relative;

}

.project-right ul:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 98%;
    left: -58.5px;
    background: rgba(54, 32, 79, .1);
    top: 6px;
}

.project-right ul li {
    list-style: none;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 1.76px;
    color: #000;
    margin-bottom: 20px;
    position: relative;
}

.project-right ul li:before {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background-color: #56bcb5;
    left: -64px;
    border-radius: 50%;
    top: 6px;
}

/*===========================================================
 Questions Area
===========================================================*/

.questions-area {
    position: relative;
}

.questions-area:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: #f6f6f6;
}

.questions-inner {
    max-width: 1170px;
    border-radius: 6px;
    background-image: linear-gradient(80deg, #65b2b6 15%, rgba(88, 167, 185, 0.6) 45%, rgba(101, 178, 182, 0.7) 91%);
    text-align: center;
    margin: 0 auto;
    padding: 52px 0;
    position: relative;
}

.questions-inner h2 {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 4.4px;
    color: #fff;
}

.questions-inner p {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 1.76px;
    color: #fff;
    max-width: 610px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 20px;
}

.contact-bttn a {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1.76px;
    text-align: center;
    color: #65b2b6;
    width: 100%;
    line-height: 1.4;
    border-radius: 6px;
    background-color: #fff;
    text-decoration: none;
    display: inline;

    padding: 10px 20px;

}

.contact-bttn a:hover {
    background: #f0f0f0;
}

.contact-bttn a img {
    margin-right: 10px;
}


/*===========================================================
 Support Area
===========================================================*/

.support-area {
    padding: 100px 0;
}

.support {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;

}

.support-left {
    max-width: 238px;
    width: 100%;
}

.support-right {
    max-width: calc(100% - 238px);
    width: 100%;
    padding-left: 98px;
}

.support-right p {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: 1.76px;
    color: #000;
}




/*===========================================================
 Footer Area
===========================================================*/
.footer-area {
    background-image: linear-gradient(84deg, #65b2b6 14%, rgba(88, 167, 185, 0.6) 44%, rgba(101, 178, 182, 0.7) 91%);
}

.footer-top {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.footer-top > .footer-logo {
  flex: 2;
}

.footer-top > .menu-footer-menu,
.footer-top > .footer-top-right {
  flex: 1;

  max-width: max-content;
}

.footer-top > #menu-footer-menu {
  margin-right: 80px;
}

.footer-top ul li {
    list-style: none;
    display: block;
}

.footer-top ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.76px;
    color: #fff;
    text-decoration: none;
}

.footer-bottom ul li a:hover,
.footer-top a:hover,
.footer-top ul li a:hover {
    color: #000;
}

.footer-top-right a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    display: inline-block;

}

.footer-top-right a:hover svg path {
    fill: #000;
}

.footer-top-right a:last-child {
    margin-left: 40px;

}

.footer-top-right a img {
    margin-right: 5px;
}

.footer-logo img {
  width: 200px;
}

.footer-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #fff;
    padding-top: 10px;
    padding-bottom: 30px;

}

.footer-bottom p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
}

.footer-bottom ul {}

.footer-bottom ul li {
    list-style: none;
    display: inline-block;
}

.footer-bottom ul li a {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    margin-left: 38px;
    text-decoration: none;
}


/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 991px) {

    .mobile-logo img {
      width: 100%;
    }

    .contact-bttn a {
      display: inline-block;
      line-height: 1.4;
    }

    body.home .member-slider-area .arrow-left {
      display: none !important;
    }

    .menu ul li > a {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }

    .menu ul li:hover > a,
    .menu ul li.current-menu-item > a,
    .menu ul li.current_page_item > a,
    .menu ul li.current-menu-ancestor > a,
    .menu ul li.current-page-ancestor > a {
      background-color: #fff;
    }

    .menu ul li:hover > a.contact {
      color: #000 !important;
    }

    .dropdown:hover:after{
        transform: rotate(0);
    }
    .dropdown.active:after{
        transform: rotate(-180deg);
    }
    .dropdown::after {
        position: absolute;
        right: 0;
        top: 23px;
        border-top-color: #fff;
    }
    .header-area {
        display: none;
    }

    .mobile-logo {
        width: 200px;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;

    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;

    }

    .menu ul li a {
        color: #fff;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        line-height: 2;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .dropdown>a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        box-shadow: 0px 1px 3px #eee;
        padding: 0 15px;

        height: 90px;
    }
}

/*===========================================================
 Responsive
============================================================*/

@media (max-width: 1399px) {
    .banner-text {
        padding-left: 30px;
    }
}

@media (max-width: 1199px) {
    .banner-text h2 {
        font-size: 48px;
    }

    .banner-text {
        width: 38%;
        padding: 0 15px;
    }

    .banner-img {
        width: 62%;
    }

    .project-right ul li:before {
        left: -35px;
    }

    .project-right ul:before {
        left: -29.5px;
    }

    .title h2 {
        font-size: 30px;
        padding-left: 30px;
    }

    .project-text {
        max-width: 440px;
    }

    .project-text p {
        font-size: 20px;
    }

    .questions-inner h2 {
        font-size: 38px;
    }

    .title h2:before {
        width: 25px;
        left: 0;
    }

    .footer-top-left ul li {
        margin-left: 20px;
    }

    .footer-top-left ul {
        margin-left: 10px;
    }

    .footer-top-right a:last-child {
        margin-left: 20px;
    }

    .footer-bottom ul li a {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .footer-top-left ul{
        display: flex;
    }
    .menu ul li {
        margin-left: 0;
    }
    .footer-top-left ul li a{
        font-size: 14px;
    }
    .menu ul li:hover > a {
        color: #000;
    }

    .dropdown>a:hover::after {
        color: #000;
        transform: rotate(-180deg);
    }

    .contact {
        font-size: 16px;
        font-weight: bold !important;
        letter-spacing: 1.76px;
        text-align: center;
        color: #fff !important;
        width: 100%;
        line-height: 34px !important;
        border-radius: 6px;
        /*background-color: #000;*/
        border: 1px solid #fff !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .menu ul li .dropdown-menu li a:hover {
    color: #fff;
}

    .banner-area {
        margin-top: 70px;
    }

    .banner-text h2 {
        font-size: 40px;
        letter-spacing: 3.6px;
    }

    .banner-text p {
        margin: 10px 0;
    }

    .title h2 {
        font-size: 28px;
        padding-left: 30px;
    }

    .project-text p {
        font-size: 17px;
        line-height: 1.5;
    }

    .project-left {
        width: 45%;
    }

    .support-right {
        padding-left: 10px;
    }

    .support-area {
        padding: 70px 0;
    }

    .member-slider-area {
        padding: 80px 0;
    }

    .footer-top-left ul {
        margin-left: 0;
    }

    .footer-top-left ul li {
        display: block;
        margin: 5px 0;
        margin-left: 15px;
    }
    .footer-bottom ul li a{
        font-size: 15px;
    }
}
@media (max-width: 850px) {
    .footer-top-right a{
        display: block;
    }
    .footer-top-right a:last-child{
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .footer-top-left ul{
        gap: 10px;
    }
    .footer-top-left,
    .footer-top{
        flex-direction: column;
        align-items: flex-start;
    }
    .banner {
        flex-direction: row-reverse;
        display: block;
    }

    .banner-img {
        width: 100%;
    }

    .banner-text {
        width: 100%;
    }

    .banner:before {
        height: 100%;
        top: 0;
    }

    .banner-text {
        padding: 25px 15px;
    }

    .banner-text h2 {
        font-size: 34px;
        letter-spacing: 3.6px;
    }

    .banner-area {
        margin-top: 0px;
    }

    .project-inner {
        flex-direction: column;
    }

    .project-left {
        width: 100%;
    }

    .project-right ul {
        max-width: 100%;
    }

    .project-right {
        width: 100%;
        padding-left: 40px;
        padding-top: 30px;
    }

    .project-area {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .questions-inner h2 {
        font-size: 22px;
        letter-spacing: 2.4px;
    }

    .questions-inner {
        padding: 50px 15px;
    }

    .slick-arrow {
        width: 40px;
        height: 40px;
    }

    .support-area {
        padding: 60px 0;
    }

    .support {
        margin-top: 40px;
    }

    .footer-top-left ul li {
        display: block;
        margin: 5px 0;
    }

    .footer-top-right a {
        display: block;
        margin-top: 10px;
    }

    .footer-top-right a:last-child {
        margin-left: 0;
    }

    .project-text {
        max-width: 100%;
    }
}


@media (max-width: 575px) {


    .support-right {
        max-width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        padding: 20px 0;
        gap: 7px;
    }

    .footer-bottom ul li a {
        margin: 0 10px;
    }

    .banner-text h2 {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .title h2 {
        font-size: 27px;
        padding-left: 30px;
        letter-spacing: 2.5px;
    }

    .support {
        margin-top: 20px;
    }

    .support-area {
        padding: 50px 0;
    }
    .slider-inner {
    margin: 0;
}
.support-left {
    max-width: 100%;
    text-align: center;
}

}
