/* font-family*/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

/* font-family*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 1s all;
    font-family: "Space Grotesk", sans-serif;
}

:root {
    --color: #ffaa17;
    --color2: #089fac;
    --black: #0f0f0f;
    --white: #ffffff;
    --gray: #cacaca;
    --light: #cafff8;
    --dBlue: rgb(0, 43, 87);
    --grey: #f1f4f9;
}



/* Heading Tag  */
h1 {
    font-size: 60px !important;

}

h2 {
    font-size: 32px !important;

}

h3 {
    font-size: 25px !important;

}

h4 {
    font-size: 22px !important;
}

h5 {
    font-size: 19px !important;
}

h6 {
    font-size: 16px !important;
}

a {
    text-decoration: none !important;
    color: var(---color) !important;
}

ul {
    list-style: none;
}

/* //////////////////////////////Navbar section //////////////////////////// */

.navbar {
    height: auto;
    background-color: var(--black);
}

/* nav */

.navbar .navbar-brand {
    width: auto;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .navbar-brand img {
    width: 150px;
    height: 100px;
    object-fit: contain;
}

.navbar {
    position: relative !important;
    top: 0%;
    left: 0%;
    transition: top 1s ease-out 0s !important;
    width: 100% !important;
    z-index: 200;
    padding: 0 !important;
}

.navbar .container-fluid .home-menus {
    position: sticky !important;
    top: 0;
    background-color: var(--color);
    left: 0;
}

.wishlist-num {
    width: 15px;
    height: 15px;
    padding: 15%;
    position: absolute;
    display: flex;
    right: 0;
    top: 5px;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: var(--black);
    border-radius: 50%;
    background-color: var(--primary);
}

/* Remove border from toggler */
.navbar-toggler {
    border: 0 !important;
}

.nav-social-links {
    width: auto;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color2);
    border-radius: 50%;
    background-color: var(--white);
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.nav-social-links a:nth-child(1) i {
    color: #3b34ff;
}

.nav-social-links a:nth-child(3) i {
    color: var(--color);
}

.nav-social-links a:nth-child(4) i {
    color: var(--color);
}

.navbar .container {
    padding: 0% !important;
}


.navbar .collapse form {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-background {
    /* background-image: url(../images/png/P.jpg); */
    background-color: var(--white) !important;
    background-size: cover;
}

.navbar .navbar-nav {
    padding: 1%;
}

.navbar .navbar-nav .nav-item .nav-link{
    font-size: 16px;
    color: var(--white) !important;
    transition: 0.5s;
    font-weight: 500;
}

.navbar .navbar-nav .nav-item a {
    font-size: 16px;
    color: var(--black) !important;
    transition: 0.5s;
}

.navbar .navbar-nav .nav-item a:hover {
    color: var(--black);
}


.navbar .collapse form input {
    width: 50%;
    height: 50%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.nave-hide {
    width: 10%;
}

.nave-hidew {
    font-size: 20px;
    text-decoration: none !important;
}

.nave-hidew i {
    font-size: 20px;
    color: var(--color);
}

.nave-hidew .nav-contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.nave-hidew span {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.nave-hidew h6 {
    color: var(--color);
}

.navbar form button {
    width: 45px;
    height: 45px;
    color: var(--primary);
    border: 0.5px solid var(--light);
    border-radius: 50%;
    background: transparent;
    transition: 0.5s all ease;
}

.navbar .collapse form button:hover {
    background: var(--primary);
    color: var(--white);
}

.navbar .collapse .nave-hidew a {
    color: var(--blue);
}

.navbar .collapse .nave-hidew a:hover {
    color: var(--primary);
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Lines of the Toggler */
.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: var(--blue);
    display: block;
    transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar {
    margin: 5px auto;
}

/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}



/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}

/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
    background-color: var(--white);
}

.offcanvas-header {
    background-color: var(--white);
}

.offcanvas-header img {
    width: 30%;
}

.offcanvas-header .btn-close {
    color: var(--blue) !important;
}


.second-navbar .offcanvas-body {
    background-color: var(--color);
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    background: var(--color) !important;
    left: 0;
    z-index: 1030;
}

.second-navbar .navbar-nav .nav-item a {
    font-size: 15px;
    color: var(--white) !important;
}

.second-navbar .btn {
    position: relative;
}

.navbar .btn {
    position: relative;
}

.second-navbar .btn i {
    color: var(--white);
}



/*///////////////////////////////// Mega Menu ///////////// */


.navbar .dropdown-menu {
    background-color: var(--white) !important;
    width: 250px;
    padding: 0 !important;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block !important;
}

.navbar .dropdown-menu .dropdown-item {
    color: var(--black) !important;
    font-weight: 700;
    padding: 10px 20px !important;
    transition: 0.1s !important;

}


.navbar .ab .dropdown-item {
    color: var(--black) !important;
}

.navbar .dropdown-menu .dropdown-item:hover {
    border-left: 5px solid var(--color);

}

/*/////////////////////////// ACCORDATION ////////////////// */


.offcanvas-body .accordion {
    color: var(--white) !important;
    width: 100% !important;
    padding: 0 !important;
}

.offcanvas-body .accordion button {
    background-color: transparent;
    color: var(--white);
}

.offcanvas-body .accordion .accordion-item {
    background-color: var(--primary) !important;
}

.offcanvas-body .dropdown .dropdown-menu {
    background-color: var(--white) !important;
    border: none;
    text-transform: uppercase;
}

.offcanvas-body .dropdown .dropdown-menu .dropdown-item{
    color: var(--black) !important;
} 

/* -------------Navbar End------------------- */

/* ///////////Banner-Start///////////////////// */


/* Banner  */


/* ///////////Banner-Start///////////////////// */

.hero-section {
    background-image: url(https://html.dynamiclayers.net/te/buildex/assets/img/hero-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative
}

.hero-section:before {
    background-image: url(https://html.dynamiclayers.net/te/buildex/assets/img/square-pattern.png);
    -webkit-background-size: 20px;
    background-size: 20px;
    content: "";
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .8
}

.hero-img-wrap {
    width: 40%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0
}

.hero-bg-half {
    background-image: url(https://html.dynamiclayers.net/te/buildex/assets/img/hero-bg-half.jpg);
    clip-path: polygon(25% 0%,100% 0%,100% 100%,0% 100%);
    filter: grayscale(100%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.hero-shape {
    background-color: var(--primary-color);
    width: 150px;
    height: 90%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) skew(-14deg,0deg);
    position: relative
}

.hero-shape:before {
    background-image: url(../img/square-pattern.png);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.hero-men {
    background-image: url(../img/hero-men.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
    width: 500px;
    height: 570px;
    position: absolute;
    left: -110px;
    bottom: 0
}

.hero-content h4 {
    display: inline-block;
    color: var(--color);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 55px
}

.hero-content h4:before {
    background-color: var(--color);
    width: 50px;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.hero-content h1 {
    color: #fff;
    font-size: 62px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 68px
}

.hero-content h1 span {
    color: var(--color)
}

.hero-content p {
    color: #ddd
}

@media(max-width: 992px) {
    .hero-section {
        height:500px
    }

    .hero-img-wrap {
        display: none
    }

    .hero-content h1 {
        font-size: 52px
    }
}

@media(max-width: 767px) {
    .hero-section {
        height:400px
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 42px
    }
}


@media (max-width: 767px){
    .hero-section {
        height: 400px;
    }
}


@media (max-width: 992px){
    .hero-section {
        height: 500px;
    }
}

@media (max-width: 767px){
    .hero-content h1 {
        font-size: 32px !important;
        line-height: 42px !important;
    }
}

@media (max-width: 992px){
    .hero-content h1 {
        font-size: 52px;
    }
}



.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    height: 100% !important;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0 !important;
    position: relative !important;
}

.swiper-slide::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.671);
   
}


.banner-content{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 3;
    padding-left: 5%;
}

.banner-content h4{
    color: var(--color);
    text-align: start;
}

.banner-content h1{
    color: var(--white);
    text-align: start;
    font-size: 40px !important;
    font-weight: 900;
}

.banner-content h1 span{
    color: var(--color);
}


.banner-content p{
    color: var(--white);
    text-align: start;
}

@media screen and (max-width:600px) {
    
    .swiper-slide::before {
        width: 100%;
        height: 100%;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background: rgba(0, 0, 0, 0.747);
        
    }
    
    }

    @media screen and (max-width:1024px) {

        .banner-content h1{
            color: var(--white);
            text-align: start;
            font-size: 25px !important;
            font-weight: 900;
        }
    }

.swiper-pagination {
    opacity: 0;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

.hero-banner {
    width: 100%;
    height: auto;
    margin-bottom: 5%;
    position: relative;
}

.hero-banner-container {
    width: 100%;
    height: 600px;
    position: relative;

}

.swiper-button-next {
    color: var(--color) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--color) !important;
    font-size: 25px !important;
}

/* --//////Banner///////////---- */



/* ------//////////////Service Section/////////////---- */

.service-section {

    width: 100%;
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-color: #F1F4F8;
    position: relative;
}

.service-section::before {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    filter: contrast(2);
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../images/pics/service/1.png');
    z-index: 0;
}

.services {
    align-items: center;
}

.sevices-heading {
    align-items: center;
    text-align: center;
    padding-top: 50px;
}

.sevices-heading h4 {
    font-weight: 600;
    color: gray;
}

.sevices-heading h2 {
    font-weight: 700;
    color: var(--color);
    font-size: 40px !important;
    font-style: italic;
}

.sevices-heading h2 span {
    color: var(--dBlue);
    font-weight: 700;
    font-size: 40px !important;
    font-style: normal;
}

/* style3 */
.featured-icon-box.style3 {
    transition: .3s cubic-bezier(.24, .74, .58, 1);
    transform-origin: 0 0 0;
    position: relative;
}

.service-section .col-lg-4:hover:hover {
    transform: translateY(-10px);
}

.featured-icon-box.style3 .featured-content {
    padding: 65px 35px 40px;
    text-align: center;
    position: relative;
    margin: 50px 0 30px;
    z-index: 1;
    background-color: var(--white);
}


.ttm-icon_element-fill.ttm-icon_element-color-skincolor {
    background-color: var(--color);
    z-index: 9;
    position: relative;
}

.featured-icon-box.style3 .ttm-icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 50%;
}

.featured-icon-box.style3 .ttm-icon i {
    display: inline-block;
    font-size: 30px;
    line-height: 80px;
    color: #fff;
}

.service-section .col-lg-4:hover .style3 .ttm-icon i {
    transform: rotateY(360deg);
}

/* ------//////////////Service Section/////////////---- */


.ttm-row {
    padding: 50px 0;
}

.section-title .title-header:after {
    display: block;
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    left: 0;
    background-color: var(--color);
    top: 0;
}


/* post-2 */
.featured-imagebox-post.style2 {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
}

.featured-imagebox-post.style2:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.featured-imagebox-post.style2 .featured-content {
    background-color: var(--gray);
    padding: 40px 72px 30px;
}

.featured-imagebox-post.style2 .ttm-box-post-date i {
    margin-right: 5px;
}

.featured-imagebox-post.style2 .ttm-box-post-date {
    position: absolute;
    color: rgb(255, 255, 255);
    z-index: 1;
    right: 0;
    top: -35px;
    display: block;
    height: 35px;
    font-size: 14px;
    line-height: 30px;
    padding: 5px 16px;
}

.featured-imagebox-post.style2 .featured-desc p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-imagebox-post.style2 .featured-content .post-meta {
    padding-bottom: 5px;
}

.section-title h3 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 5px;
}

.section-title h3 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 5px;
}

.ttm-textcolor-skincolor {
    color: var(--color);
    font-size: 38px;
    line-height: 45px;
    text-transform: capitalize;
}

.section-title .title-header:after {
    display: block;
    content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    left: 0;
    background-color: var(--color);
    top: 0;
}

.section-title.style2 .title-header,
.section-title.style2 .title-desc {
    display: table-cell;
    vertical-align: middle;
}

.section-title.style2 .title-header {
    width: 49.5%;
    padding-right: 30px;
    padding-bottom: 0;
    position: relative;
}

.section-title .title-header {
    position: relative;
    padding-left: 28px;
    margin-bottom: 25px;
}

.featured-imagebox-post.style2 .featured-content {
    background-color: var(--grey);
    padding: 40px 72px 30px;
}

.featured-imagebox,
.featured-imagebox .featured-thumbnail {
    position: relative;
    overflow: hidden;
}

.featured-imagebox .featured-thumbnail img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.featured-imagebox:hover .featured-thumbnail img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
}


.featured-imagebox-post.style2 {
    transform: translateY(0);
    transition: 0.5s;
    overflow: hidden;
}



.featured-imagebox.featured-imagebox-post.style3 .featured-content {
    padding: 75px 15px 50px 40px;
    background-color: var(--grey);
}

.padding_top15 {
    padding-top: 15px;
}

.featured-imagebox {
    margin: 15px 0;
}

.section-title h2.title {
    font-weight: 800;
    font-size: 40px !important;
    line-height: 46px;
    text-transform: capitalize;
    color: var(--dBlue);
    margin-bottom: 15px;
}

.section-title.style2 .title-desc p {
    margin-bottom: 0;
    padding-bottom: 10px;
}

.ttm-btn.ttm-btn-style-border {
    background-color: transparent;
    border: 2px solid var(--dBlue) !important;
}

.ttm-btn {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: normal;
    padding: 15px 30px 15px 30px;
    background: transparent;
    border: 2px solid var(--dBlue);
    position: relative;
    text-transform: capitalize;
    font-weight: 700;
    overflow: hidden;
    z-index: 6;
    transition: all 0.5s ease 0s;
}

.float-end {
    float: right !important;
}

.ttm-btn.ttm-btn-shape-square {
    border-radius: 0;
}

.ttm-btn.ttm-btn-size-md {
    font-size: 14px;
    padding: 12px 30px 12px 30px;
}

@media (max-width: 991px) {

    .section-title.style2 .title-header,
    .section-title.style2 .title-desc {
        display: block;
    }
}

@media (max-width: 991px) {
    .section-title h2.title {
        font-size: 28px;
        line-height: 36px;
    }

    .section-title h2.title {
        font-weight: 700;
        font-size: 26px !important;
        line-height: 26px;
        text-transform: capitalize;
        color: var(--dBlue);
        margin-bottom: 15px;
    }

    .ttm-textcolor-skincolor {
        color: var(--color);
        font-size: 23px;
        line-height: 26px;
        text-transform: capitalize;
    }

    .section-title.style2 .title-header {
        width: 100%;
    }
}

@media (max-width: 767px) {
    a.float-end {
        float: none !important;
    }
}

.featured-imagebox.featured-imagebox-post.style3 {
    margin-bottom: 15px;
    display: flex;
}

.padding_left45 {
    padding-left: 45px;
}

.featured-imagebox {
    margin: 15px 0;
}


/* ///////////////////Footer //////////////////////// */



.after-footer {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1%;
}

.after-footer p {
    margin-bottom: 0;
}

.after-footer p a {
    text-decoration: none;
    color: var(--color2);
}


/* Testimonial Section  */

.testimonial-section {
    width: 100%;
    height: auto;
    margin-bottom: 5%;
    position: relative;
    background-color: var(--grey);
    padding: 3%;
}


.testimonial-title {
    margin-bottom: 5%;
}

.testimonial-title h2 {
    color: var(--dBlue);
}

.testimonial-title h2 span {
    color: var(--color);
}

.testimonial-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5%;
    border-radius: 30px;
    background-color: var(--white);
    margin-top: 3%;
}

.testimonial-content .testimonial-icons i {
    color: gold;
    filter: drop-shadow(0 0 1px var(--black));
}

.testimonial-client {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-client .testimonial-image {
    width: 30%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-client .testimonial-image img {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain;
    clip-path: polygon(50% 0, 100% 30%, 100% 70%, 50% 100%, 0 70%, 0 30%);
}

.testimonial-client i {
    font-size: 50px;
    color: var(--dBlue);
}

.testimonial-client .testimonial-image h3 {
    font-size: 20px !important;
    margin-bottom: 0;
    color: var(--color);
}

.testimonial-client .testimonial-image span {
    color: var(--gray);
    font-size: 15px !important;
}


/* faq  */

.home-faq-section {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 5%;
}

.home-faq-title {
    width: 100%;
    text-align: center;
}

.home-faq-title h4 {
    color: var(--color);
}


.home-faq-title h2 {
    color: var(--dBlue);
    font-weight: 900;
}

.question-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center !important;
    margin-top: 5%;
    position: relative;
    z-index: 2;
}

.question {
    border-bottom: 1px solid #fff;
    width: 70%;
    background-color: #e6f0f7;
    border-radius: 30px;
    margin-bottom: 3%;
    padding-top: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.question button {
    width: 100%;
    height: 100% !important;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center !important;
    padding: 10px 15px;
    text-align: start;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;

}

.question p {
    max-height: 0;
    opacity: 0;
    text-transform: initial;
    line-height: 1.5;
    overflow: hidden;
    color: var(--black);
    transition: all 0.6s ease;
}

.question .pa {
    max-height: 0;
    opacity: 0;
    font-weight: 500;
    text-transform: initial;
    line-height: 1.5;
    overflow: hidden;
    margin: 0;
    color: var(--color);
    transition: all 0.6s ease;
}

.d-arrow {
    transition: transform 0.5s ease-in;
    color: #0f0f0f;
}

/*add this class when click*/

.question p.show {
    max-height: 600px !important;
    opacity: 1;
    padding: 0px 15px 30px 15px;
}

.question .pa.show {
    max-height: 600px !important;
    opacity: 1;
    padding: 10px 15px 30px 55px;
}

.rotate {
    transform: rotate(315deg);
    transition: 0.5s !important;
}

.achi-ti {
    background-color: var(--color3);
    color: var(--white);
    padding: 0.5% 1%;
    border-radius: 20px;
}

@media screen and (max-width:768px) {
    .question {
        border-bottom: 1px solid #fff;
        width: 100%;
        background-color: #e6f0f7;
        border-radius: 30px;
        margin-bottom: 3%;
        padding-top: 10px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}



/* Footer  */

footer {
    width: 100%;
    height: auto;
    padding: 2%;

}

.footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2%;
}

.footer .footer-boxs {
    width: 22%;
    height: auto;
}

.footer-social-links {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.footer-social-links a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--l2);
    border-radius: 50%;
}

.footer .footer-boxs p {
    color: var(--black);
    font-size: 15px !important;
    font-weight: 500;
}

.footer .footer-boxs a {
    font-size: 15px !important;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;

}


.footer .footer-boxs h4 {
    margin-bottom: 5% !important;
    font-weight: 700;
    color: var(--color);
}

.footer .footer-boxs h4 span {
    color: var(--dBlue);
}

.footer .footer-boxs ul {
    padding-left: 0;
    list-style-type: none;
}


.footer .footer-boxs .footer-icon {
    width: 100%;
    margin-bottom: 3%;
    color: var(--c2);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer .footer-boxs ul li {
    margin-bottom: 3%;
    font-size: 15px !important;
    text-decoration: none;
    font-weight: 500;
}

.footer .footer-boxs .footer-email {
    width: 100%;
    height: auto;
    padding: 2%;
}


.footer .footer-boxs .footer-email form {
    width: 100%;
}

.footer .footer-boxs .footer-email form input {
    width: 100%;
    margin-bottom: 6%;
    border: 1px dotted var(--black);
    padding: 2%;
}





@media screen and (max-width:320px) {

    /* Footer  */

    footer {
        width: 100%;
        height: auto;
        padding: 2%;

    }

    .footer {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 2%;
    }

    .footer .footer-boxs {
        width: 100%;
        height: auto;
    }


}

@media screen and (min-width:321px) and (max-width:425px) {


    /* Footer  */

    footer {
        width: 100%;
        height: auto;
        padding: 2%;

    }

    .footer {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 2%;
    }

    .footer .footer-boxs {
        width: 100%;
        height: auto;
    }


}

@media screen and (min-width:426px) and (max-width:600px) {

    /* Footer  */

    footer {
        width: 100%;
        height: auto;
        padding: 2%;

    }

    .footer {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 2%;
    }

    .footer .footer-boxs {
        width: 100%;
        height: auto;
    }

}

@media screen and (min-width:601px) and (max-width:768px) {

    /* Footer  */

    footer {
        width: 100%;
        height: auto;
        padding: 2%;

    }

    .footer {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 2%;
    }

    .footer .footer-boxs {
        width: 100%;
        height: auto;
    }

}