body {font-family: 'Poppins', sans-serif;background: #f9f9f9;line-height: normal;font-size: 16px;overflow-x: hidden;}
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #202020;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color1);
}

:root {
    --color1:#354040;
    --color2:#f9f9f9;
}

a {
    color: inherit;
    padding: 0;
    margin: 0;
    text-decoration: none;
    transition: all .3s ease;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* general */

section {
    padding:125px 0;
}

img {
    max-width: 100%;
}

.swiper-container {
    overflow: hidden;
}

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

.justify-center {
    justify-content: center;
}

.btn-area {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
}

.btn-blue {
    background:var(--color1);
    border-radius:7px;
    color: white;
    font-size: 15px;
    transition: all .3s ease;
}

.btn-blue:hover {
    background:#222;
    color:white;
}

.btn-blue i {
    margin-left: 5px;
}


.btn-light-blue {
    background: var(--color2);
    border-radius: 5px;
    color: white;
    font-size: 15px;
    border: solid 2px var(--color2);
}

.btn-light-blue:hover {
    background: none;
    color: var(--color2);
}

.btn-light-blue i {
    margin-left: 5px;
}

.modal-header {
    display: flex;
    align-items: center;
}

.modal-header .close {
    background: none;
    font-size: 42px;
    border: none;
    cursor: pointer;
}

.modal-header .modal-title {
    font-size: 18px;
    font-weight: 600;
}

.bg-box {
    box-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
    background: white;
    padding: 40px 30px;
}

.mt-50 {
    margin-top: -50px;
    position: relative;
    z-index: 99;
}


.detail-page {
    padding: 0 0 80px 0;
}

.list-page {
    padding: 80px 0;
}

@media (max-width:992px) {
    .detail-page {
        padding: 0 0 40px 0;
    }

    .list-page {
        padding: 40px 0;
    }
}

/* content-wrapper */

.content-wrapper {
    line-height: 1.6;
    word-wrap: break-word;
}

.content-wrapper::before,
.content-wrapper::after {
    content: "";
    clear: both;
    display: table;
}

.content-wrapper iframe {
    max-width: 100%;
}

.content-wrapper img {
    max-width: 100%;
    height: auto !important;
    margin: 10px 0px;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    color: #222;
    margin-bottom: 12px;
}

.content-wrapper p {
    margin-bottom: 10px;
}

.content-wrapper ul,
.content-wrapper ol {
    display: block;
    list-style: inherit;
    -webkit-margin-before: 1em;
    margin-block-start: 1em;
    -webkit-margin-after: 1em;
    margin-block-end: 1em;
    -webkit-margin-start: 0px;
    margin-inline-start: 0px;
    -webkit-margin-end: 0px;
    margin-inline-end: 0px;
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
}

.content-wrapper ol {
    list-style-type: decimal;
}

.content-wrapper table {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .content-wrapper table {
        display: block;
        border: none;
        overflow-x: scroll;
        height: 100% !important;
    }
}

@media (max-width: 991px) {
    .content-wrapper h2 {
        font-size: 22px;
    }
}

/* section top */

.section-top {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}

.section-title::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 7px;
    background: var(--color1);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-title::after {
    position: absolute;
    content: '';
    width: 35px;
    height: 2px;
    left: 50%;
    bottom: 2px;
    transform:
        translateX(-50%);
    background: var(--color2);
    border-radius: 3px;
}

.section-desc {
    color: #666;
    font-size: 15px;
}

/* swiper button area */

.section-bottom-area .buttons-area div {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--color1);
    color: white;
    font-size: 18px;
    margin-right: 15px;
    transition: all .3s ease;
    cursor: pointer;
}

.section-bottom-area .buttons-area {
    display: flex;
}

.section-bottom-area {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.section-bottom-area .buttons-area div:hover {
    background:#1d2c2c;
}


/* header top */

header {
    background: var(--color2);
}

.header-top-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 14px 0;
}

.header-contact {
    display: flex;
    margin-right: 15px;
    font-size: 14px;
}

.header-contact li:not(:last-child) {
    margin-right: 15px;
}

.header-contact li a i {
    font-size: 18px;
    margin-right: 8px;
    color: #333;
}

.header-contact li a {
    display: flex;
    align-items: center;
    color: #333;
}

.header-contact li a:hover {
    color: var(--color2);
}

.header-contact li a {
    padding: 10px 15px;
    border: solid 1px #d4d4d4;
    border-radius: 7px;
}

.header-btn {
    padding: 10px 15px;
    border: solid 1px #d4d4d4;
    border-radius: 7px;
    margin-right: 20px;
    font-size: 14px;
}

.header-btn:hover {
    color: var(--color2);
    cursor: pointer;
}



/* header nav */


.header-nav-area {
    display: flex;
    align-items: center;
}

.header-nav-area .logo {
    display: block;
    padding: 20px 20px;
    background: var(--color1);
    margin-right: 30px;
    position: absolute;
    bottom: -23px;
    z-index: 5;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 50%);
    border-radius: 7px;
    transition: all .3s ease;
}

.header-nav-area .logo img {
    max-width: 230px;
    transition: all .3s ease;
}

.header-nav-area .header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    font-size: 16px;
    color: white;
}

.header-nav-area .header-menu li:not(:first-child) {
    margin-left: 5px;
}

.header-nav-area .header-menu li a {
    display: block;
    padding: 25px 20px;
    font-size: 14px;
    font-weight: 500;
}

.header-nav-area .header-menu li a i {
    margin-left: 5px;
    margin-top: -5px;
}

.header-nav {
    position: relative;
    background: var(--color1);
    margin-top: 8px;
}

.header-nav-area .header-menu li a:hover {
    color: var(--color2);
}

.header-nav-area .dropdown {
    position: relative;
}

.header-nav-area .dropdown ul {
    position: absolute;
    top: 66px;
    left: 0;
    min-width: 200px;
    background: white;
    border: solid 2px var(--color1);
    color: var(--color1);
    z-index: 99;
    transition: all .3s ease;
    visibility: hidden;
    opacity: 0;
}

.header-nav-area .dropdown ul li a {
    padding: 15px 20px;
}

.header-nav .header-nav-area .header-menu li {
    margin-left: 0px;
    position: relative;
}


.header-nav .header-nav-area .header-menu>li:not(:last-child)::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 20px;
    background: #a09b9b;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header-nav .header-nav-area .header-menu .dropdown li:not(:last-child) {
    border-bottom: solid 1px #d4d4d4;
}

.header-nav-area .dropdown:hover .drop-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);

}


.header-nav-area .header-menu li a {
    display: flex;
    align-items: center;
}

.header-nav-area .header-menu li ul li a i {
    margin-left: 10px;
    display: flex;
    align-items: center;
    margin-top: 1px;
}

.dropdown-end {
    position: relative;
}

.header-nav-area .header-menu .dropdown .dropdown-end ul {
    position: absolute;
    left: calc(100% + 1px);
    top: -2px;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.header-nav-area .header-menu .dropdown .dropdown-end:hover ul {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}

.header-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 5px 0;
}

@media (max-width:992px) {
    .header-nav {
        display: none;
    }
}


.header-nav.fixed-header .header-nav-area .logo {
    padding: 0;
    background: none;
    position: relative;
    bottom: 0;
    box-shadow: none;
}

.header-nav.fixed-header .header-nav-area .logo img {
    max-width: 180px;
}


.header-nav.fixed-header {
    position: fixed;
    top: 0;
    margin: 0;
}

/* header-icons */

.header-icons i.fa-solid.fa-phone {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    background: var(--color2);
    justify-content: center;
    border-radius: 20px;
}

.header-icons i.fa-brands.fa-whatsapp {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    background: #25D366;
    justify-content: center;
    border-radius: 20px;
    font-size: 18px;
}

.header-icons {
    display: flex;
}

.header-icons a {
    margin: 0 5px;
}

/* lang menu */


.lang-menu {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.lang-menu li:not(:last-child) {
    margin-right: 10px;
}

.lang-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-menu a:hover {
    opacity: 0.7;
}

/* social media */

.social-media {
    display: flex;
    align-items: center;
}

.social-media li:not(:last-child) {
    margin-right: 15px;
}

.social-media li a i {
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    height: 38px;
    color: #333;
    border: solid 1px #d4d4d4;
}


.social-media li a:hover {
    opacity: 0.7;
}


/* header 2 */

.header-2 .header-top-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-2 .header-top-2 .logo img {
    max-width: 230px;
    margin-top: 12px;
}

.header-2 {
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 2;
box-shadow: 0px 1px 8px 8px rgba(0,0,0,0.12), 0 1px 20px rgba(0,0,0,0.24);
}

.header-2 .header-top-2 .right {
    display: flex;
}

/* header-nav-2 */


.header-nav-area-2 {
    display: flex;
    align-items: center;
}

.header-nav-area-2 .logo {
    display: block;
    padding: 20px 20px;
    background: var(--color1);
    margin-right: 30px;
    position: absolute;
    bottom: -23px;
    z-index: 5;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 50%);
    border-radius: 7px;
    transition: all .3s ease;
}

.header-nav-area-2 .logo img {
    max-width: 230px;
    transition: all .3s ease;
}

.header-nav-area-2 .header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 16px;
    color: var(--color1);
}

.header-nav-area-2 .header-menu li:not(:first-child) {
    margin-left: 5px;
}

.header-nav-area-2 .header-menu li a {
    display: block;
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.2px;
    font-weight:bold;
}

.header-nav-area-2 .header-menu li a .fa-home {
    font-size: 18px;
}


.header-nav-area-2 .header-menu li a:hover {
    color:#ccb487;
}

.header-nav-area-2 .dropdown {
    position: relative;
}

.header-nav-area-2 .dropdown ul {
    position: absolute;
    top: 40px;
    left: 0;
    min-width: 260px;
    background: white;
    border: solid 1px #d4d4d4;
    color: var(--color1);
    z-index: 99;
    transition: all .3s ease;
    visibility: hidden;
    opacity: 0;
}

.header-nav-area-2 .dropdown ul li a {
    padding: 15px 20px;
}

.header-nav-2 .header-nav-area-2 .header-menu li {
    margin-left: 0px;
    position: relative;
}


.header-nav-2 .header-nav-area-2 .header-menu>li:not(:nth-last-child(-n+2))::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 25px;
    background: var(--color1);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header-nav-2 .header-nav-area-2 .header-menu .dropdown li:not(:last-child) {
    border-bottom: solid 1px #d4d4d4;
}

.header-nav-area-2 .dropdown:hover .drop-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);

}


.header-nav-area-2 .header-menu li a {
    display: flex;
    align-items: center;
}

.header-nav-area-2 .header-menu li ul li a i {
    margin-left: 10px;
    display: flex;
    align-items: center;
    margin-top: 1px;
}

.dropdown-end {
    position: relative;
}

.header-nav-area-2 .header-menu .dropdown .dropdown-end ul {
    position: absolute;
    left: calc(100% + 0px);
    top: -1px;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.header-nav-area-2 .header-menu .dropdown .dropdown-end:hover ul {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}

.header-nav-2 {padding:14px 0;}

@media (max-width:992px) {
    .header-nav-2 {
        display: none;
    }
}


.header-nav-2.fixed-header .header-nav-area .logo {
    padding: 0;
    background: none;
    position: relative;
    bottom: 0;
    box-shadow: none;
}

.header-nav-2.fixed-header .header-nav-area .logo img {
    max-width: 180px;
}


.header-nav-2.fixed-header {
    position: fixed;
    top: 0;
    margin: 0;
}

/* slider */

.swiper-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.swiper-slider .swiper-slider-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    right: 10px;
    top: 50%;
    left: unset;
    width: auto;
    height: auto;
    bottom: unset;
    display: flex;
    flex-direction: column;
    align-items: end;
    transform: translateY(-50%);
    z-index: 99;
}

.swiper-slider .swiper-slider-pagination.swiper-pagination-bullets.swiper-pagination-horizontal span:not(:last-child) {
    margin-bottom: 10px;
}

.swiper-slider .swiper-slider-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
    width: 10px;
    border-radius: 5px;
    background: white;
    opacity: 0.5;
}

.swiper-slider .swiper-slider-pagination.swiper-pagination-bullets.swiper-pagination-horizontal span.swiper-pagination-bullet-active {
    width: 20px;
    background: white;
    opacity: 1;
}

.swiper-slider .nav-area {
    bottom: 0px;
}


.swiper-slider.mobile-slider-1 {
    display: none;
}

.swiper-slider-2.mobile-slider-2 {
    display: none;
}

.swiper-videos.mobile-videos {
    display: none;
}

/* slider-2 */

.swiper-slider-2 {
    padding: 0;
    position: relative;
}

.swiper-slider-2 .swiper-slide {
    position: relative;
}

.swiper-slider-2 .swiper-slide::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 27, 27, 0)), to(#1b1b1b));
}

.swiper-slider-2 .swiper-slide img {
    height: 550px;
    width: 100%;
    object-fit: cover;
}

.swiper-slider-2 .swiper-slide .slider-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    color: white;
    text-align: center;
}

.swiper-slider-2 .swiper-slide .slider-content .title {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 2px rgb(0 13 81);
}

.swiper-slider-2 .swiper-slide .slider-content .desc {
    font-size: 20px;
}

.swiper-slider-2 .btn-blue {
    margin-top: 25px;
}

.swiper-slider-2 .btn-blue:hover {
    color: white;
    border-color: white;
}

.swiper-slider-2 .swiper-slider-pagination-2.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    right: 10px;
    top: 50%;
    left: unset;
    width: auto;
    height: auto;
    bottom: unset;
    display: flex;
    flex-direction: column;
    align-items: end;
    transform: translateY(-50%);
    z-index: 99;
}

.swiper-slider-2 .swiper-slider-pagination-2.swiper-pagination-bullets.swiper-pagination-horizontal span:not(:last-child) {
    margin-bottom: 10px;
}

.swiper-slider-2 .swiper-slider-pagination-2.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
    width: 10px;
    border-radius: 5px;
    background: white;
    opacity: 0.5;
}

.swiper-slider-2 .swiper-slider-pagination-2.swiper-pagination-bullets.swiper-pagination-horizontal span.swiper-pagination-bullet-active {
    width: 20px;
    background: white;
    opacity: 1;
}

.nav-area {
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 75px;
    border-radius: 45px 45px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    color: white;
}

.nav-area div {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-area div img {
    margin: 0 10px;
}

.nav-area::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 45px 45px 0 0;
    background: var(--color1);
    opacity: 0.6;
    z-index: -1;
}

.nav-area .slider-button-prev,
.nav-area .slider-button-prev-2 {
    cursor: pointer;
}

.nav-area .slider-button-prev img,
.nav-area .slider-button-prev-2 img {
    margin-right: 30px;
}

.nav-area .slider-button-next,
.nav-area .slider-button-next-2 {
    cursor: pointer;
}

.nav-area .slider-button-next img,
.nav-area .slider-button-next-2 img {
    margin-left: 30px;
}


@media (max-width: 991px) {
    .nav-area {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0px 15px;
    }

    .nav-area .main-button-prev img {
        margin-right: 10px;
    }

    .nav-area .main-button-next img {
        margin-left: 10px;
    }
}

.main-mobile-slider {
    width: 100%;
}

.main-mobile-slider .swiper-slide {
    border-radius: 0px;
}

.main-mobile-slider .nav-area {
    background: none;
}

@media (min-width: 992px) {
    .main-mobile-slider {
        display: none;
    }
}

/* swiper video */

video {
    height: 550px;
    object-fit: cover;
    width: 100%;
}

.swiper-videos {
    padding: 0;
    position: relative;
}

.swiper-videos .nav-area {
    bottom: 5px;

}

@media (min-aspect-ratio: 16/9) {
    video {
        margin-left: 0;
    }
}

/* about-us */



.about-home-pictures {
    position: relative;
}

.about-home-pictures img {
    border-radius: 5px;
}

.about-home-pictures img:first-child {
    width: 100%;
}

.about-home-pictures img:nth-child(2) {
    position: absolute;
    right: 50px;
    bottom: -150px;
    max-width: 300px;
}

.about-home-pictures img:nth-child(3) {
    position: absolute;
    bottom: -230px;
    left: 50px;
    max-width: 250px;
    z-index: -1;
}

.about-home-pictures .vector {
    position: absolute;
    left: -40px;
    bottom: -60px;
    z-index: -1;
}

.about-content .sub-title {
    font-size: 17px;
    text-transform: uppercase;
    color: var(--color2);
    font-weight: 600;
    margin-bottom: 5px;
}

.about-content {
    padding: 30px 0;
}

.about-content .about-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 15px;
}

.about-content .about-desc {
    line-height: 22px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #666;
}

.about-icons-list li {
    display: flex;
    align-items: center;
    border: solid 1px #dddd;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px;
}


.about-icons-list li .icon {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-right: 20px;
    background: var(--color1);
    font-size: 24px;
    color: white;
    border-radius: 7px;
}

.about-icons-list li .right {
    width: 85%;
}

.about-icons-list li .right .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6px;
}

.about-icons-list li .right .desc {
    font-size: 14px;
    color: #666;
}

/* services */

.service-box {
    display: block;
    position: relative;
    transition: all .3s ease;
    margin-bottom: 30px;
}

.service-box img {
    border-radius: 5px;
}


.service-box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 27, 27, 0)), to(#1b1b1b));
    bottom: 0;
    border-radius: 5px;
    transition: all .3s ease;
}

.service-box .service-title {
    position: absolute;
    bottom: 25px;
    left: 30px;
    font-size: 22px;
    font-weight: bold;
    color: white;
}
@media(min-width:992px){
.service-box:hover::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 27, 27, 0)), to(var(--color1)));
    transition: all .3s ease;
}}

/* products */

.product-box {
    display: block;
    position: relative;
    transition: all .3s ease;
    margin-bottom: 30px;
}

.product-box img {
    border-radius: 5px;
}

.product-box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 27, 27, 0)), to(#1b1b1b));
    bottom: 0;
    border-radius: 5px;
    transition: all .3s ease;
}

.product-box .service-title {
    position: absolute;
    bottom: 25px;
    left: 30px;
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.product-box:hover::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 27, 27, 0)), to(var(--color1)));
    transition: all .3s ease;
}

/* products detail */

.swiper-products-detail {
    position: relative;
}

.products-button-prev i {
    font-size: 36px;
}

.products-button-next i {
    font-size: 36px;
}

.swiper-products-detail img {
    border-radius: 7px;
    width: 100%;
}

.products-detail .top-text {
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.products-detail ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 17px;
    padding: 10px;
}

.products-detail .product-text {
    margin: 15px 0;
}

.products-detail ul li .name {
    width: 50%;
    font-weight: 600;
}

.products-detail ul li:nth-child(even) {
    background: #bfacac;
    border-radius: 7px;
}

.products-detail ul li:nth-child(odd) {
    background: #f1f1f1;
    border-radius: 7px;
}

.products-detail .top-text::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    background: var(--color1);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 7px;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
}

.tab {
    margin-top: 80px;
    border-radius: 7px;
    background: none;
}

.tabcontent {
    padding: 20px;
    border-radius: 7px;
    margin-top: 15px;
}

.buy-form {
    margin-top: 80px;
}

.buy-form .title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.buy-form .title::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    background: var(--color1);
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 7px;
}

@media (max-width:992px) {

    .product-page .bg-box .col-lg-6,
    .product-page .bg-box .col-lg-8,
    .product-page .bg-box .col-lg-12 {
        padding: 0;
    }

    .products-detail {
        margin-top: 40px;
    }

    .products-detail ul li .value {
        width: 50%;
    }

    .products-detail ul li {
        padding: 10px 0;
    }

    .tab {
        margin-top: 30px;
    }

    .tab button {
        padding: 10px;
        font-size: 14px;
    }

    .product-page .products-button-prev i {
        font-size: 26px;
    }

    .product-page .nav-area {
        justify-content: center;
    }

    .product-page .nav-area div {
        margin: 0 30px;
    }

    .product-page .products-button-next i {
        font-size: 26px;
    }
}

/* testimonials */

.testimonials {
    background: var(--color1);
    color: white;
    position: relative;
}

.testimonial-box .avatar {
    width: 60px;
    margin-top: -50px;
}

.testimonial-box .avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: solid 3px white;
}

.testimonials .section-desc {
    color: white;
}

.testimonials .testimonial-box {
    margin-bottom: 0;
    border: solid 2px white;
}

.testimonial-box {
    border: solid 2px var(--color1);
    padding: 15px 30px;
    border-radius: 7px;
    margin-bottom: 60px;
}

.swiper-testimonials {
    padding-top: 60px;
}

.testimonial-box .comment {
    margin-top: 12px;
    line-height: 20px;
    margin-bottom: 20px;
}

.testimonial-box .name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-box .job {
    font-size: 13px;
}

.testimonials .maps {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
}

.testimonials .section-bottom-area .buttons-area div {
    background: var(--color2);
}

.testimonials .section-title::before {
    background: var(--color2);
}

.testimonials .section-title::after {
    background: var(--color1);
}

/* blog */

.blog-box {
    margin-bottom: 30px;
    display: block;
    height: calc(100% - 30px);
    background: white;
}

.blog-box img {
    border-radius: 7px;
    width: 100%;
}

.blog-box .blog-infos {
    padding: 25px 15px;
    background: white;
    border-radius: 0 0 7px 7px;
    color: #333;
}

.blog-box .blog-infos .title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    border-radius: 5px;
    line-height: 1.667;
    padding-bottom: 15px;
}

.blog-box .blog-infos .desc {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-box .blog-infos .read-more {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    transition: all .3s ease;
}

.blog-box .blog-infos .read-more i {
    margin-left: 8px;
    margin-top: 2px;
}

.blog-box .picture {
    position: relative;
    overflow: hidden;
}

.blog-box .picture::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3));
    transform: skewX(-25deg);
    transition: all .5s ease;

}

.blog-box:hover .picture::before {
    left: 100%;
}

.blog-box:hover .read-more {
    transform: translateX(10px);
}

/* pagination */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination li {
    margin-bottom: 5px;
}

.pagination li a {
    display: inline-block;
    padding: 8px 15px;
    background: var(--color1);
    color: white;
    margin: 0 8px;
    border-radius: 3px;
}

.pagination li a:hover {
    color: var(--color2);
}

/* why-us */

.why-us-box {
    text-align: center;
    cursor: pointer;
    margin-bottom: 30px;
}

.why-us-box .icon {
    font-size: 50px;
    color: #d6d6d6;
    margin-bottom: 15px;
    transition: all .3s ease;
}

.why-us-box .title {
    text-transform: capitalize;
    font-weight: 700;
    color: #212121;
    font-size: 20px;
    margin-bottom: 15px;
}

.why-us-box .desc {
    color: #666;
    font-size: 15px;
}

.why-us-box:hover .icon {
    color: var(--color2);
}

/* teams */

.team-box {
    position: relative;
    transition: all .3s ease;
    margin-bottom: 30px;
    cursor: pointer;
}

.team-box img {
    border-radius: 7px;
    width: 100%;
}

.team-box .team-info {
    position: absolute;
    bottom: 0;
    color: white;
    width: -webkit-fill-available;
    left: 0;
    padding: 15px 5px;
}

.team-box .team-info .name {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 5px;
}

.team-box .team-info .job {
    font-size: 13px;
    position: relative;
    display: block;
    text-align: center;
}

.team-box .team-info::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    left: 0;
    bottom: 0;
    border-radius: 0 0 7px 7px;
}

.team-box .team-info ul {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    margin-top: 8px;
}

.team-box .team-info ul li {
    transition: all .3s ease;
}

.team-box .team-info ul li:not(:last-child) {
    margin-right: 10px;
}

.team-box .team-info ul li a:hover {
    color: var(--color2);
}

.team-box:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.team-box:hover .team-info ul li:not(:last-child) {
    margin-right: 15px;
}


.teams-modal .modal-dialog {
    max-width: 1000px;
}

.teams-modal .modal-dialog .teams-detail-area {
    display: flex;
}

.teams-modal .modal-dialog .teams-detail-area img {
    max-width: 250px;
    margin-right: 20px;
}

@media(max-width:992px) {
    .teams-modal .modal-dialog {
        max-width: 100%;
    }

    .teams-modal .modal-dialog .teams-detail-area {
        display: block;
    }
}

.teams-modal {
    z-index: 9999999;
}

.teams-modal .modal-header .close {
    z-index: 99999;
    right: unset;
    position: relative;
    top: unset;
    border: none;
    width: auto;
    height: auto;
    padding: 0;
}


/* parallax */

.parallax {
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    padding: 120px 0;
}

.parallax::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--color1);
    opacity: 0.5;
}

.parallax-content {
    text-align: center;
    position: relative;
    z-index: 99;
    color: white;
}

.parallax-content .title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.parallax-content .desc {
    margin-bottom: 20px;
    font-size: 15px;
}

/* counter */

.counter-box {
    text-align: center;
    padding: 25px 10px 35px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 7px;
    font-size: 15px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: solid 3px var(--color1);
    margin-top: 30px;
    margin-bottom: 30px;
}

.counter-box .number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color1);
    color: white;
    font-size: 19px;
    font-weight: bold;
    margin-top: -55px;
    margin-bottom: 20px;
}

.counter-box .title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
}

.counter-box .desc {
    color: #666;
    font-size: 14px;
}

/* seo text */

.seo-text-wrapper {
    max-height: 500px;
    overflow-y: auto;
}

.seo-text-wrapper::-webkit-scrollbar {
    width: 7px;
}

.seo-text-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.seo-text-wrapper::-webkit-scrollbar-thumb {
    background: #202020;
}

.seo-text-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--color1);
}

/* videos */

.video-box {
    display: block;
    position: relative;
    margin-bottom: 30px;
}

.video-box::before {
    position: absolute;
    animation: crescendo 1.5s alternate infinite ease-in;

    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-size: 60px;
    color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;

}

.video-box img {
    border-radius: 7px;
    width: 100%;
}

.video-box::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 27, 27, 0)), to(#1b1b1b));
    left: 0;
    bottom: 0;
    border-radius: 7px;
    opacity: 0;
    transition: all .3s ease;
}

.video-box:hover::after {
    opacity: 1;
}

.swiper-videos-area .video-box {
    margin-bottom: 0;
}

@keyframes crescendo {
    0% {
        transform: translate(-50%, -50%) scale(.8);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* picture gallery */



.picture-box {
    display: block;
    position: relative;
    margin-bottom: 30px;
}

.picture-box .icon {
    position: absolute;
    font-size: 48px;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    font-weight: 400;
}

.picture-box img {
    border-radius: 7px;height: 190px;
    width: 100%;
    object-fit: cover;
}

@media(min-width:992px){
.picture-box::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 27, 27, 0)), to(#1b1b1b));
    left: 0;
    border-radius: 7px;
    opacity: 0;
    transition: all .3s ease;
}}

.picture-box:hover::after {
    opacity: 1;
}

.swiper-pictures .picture-box {
    margin-bottom: 0;
}

.picture-box .title {
    position: absolute;
    bottom: 0;
    z-index: 99;
    color: white;
    text-align: center;
    width: 100%;
    padding: 10px;
    background: var(--color1);
    border-radius: 0 0 7px 7px;
    font-size: 17px;
}

/* faq */


.faq a {
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 2px solid #eee1ff;
}

.faq .hide {
    display: none;
}

.faq .item-container {
    text-align: left;
}

.faq .item-container .item {
    margin: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 5px;
    color: #333;
}

.faq .item-container .item .qus {
    cursor: pointer;
    position: relative;
    font-size: 18px;
    font-weight: 600;
}

.faq .item-container .item .qus::before {
    content: "";
    width: 2px;
    height: 16px;
    position: absolute;
    right: 7px;
    background: #000;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.faq .item-container .item .qus.active::before {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.faq .item-container .item .qus::after {
    content: "";
    width: 16px;
    height: 2px;
    position: absolute;
    right: 0;
    background: #000;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}

.faq .item-container .item .qus.active::after {
    -webkit-animation: circle 0.7s ease-in-out;
    animation: circle 0.7s ease-in-out;
}

.faq .item-container .item .ans {
    opacity: 0.7;
    padding-right: 5%;
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

.faq .menu p {
    cursor: pointer;
}

.faq-picture {
    position: relative;
}

.faq-picture img {
    border-radius: 7px;
}

.faq-picture .vector {
    position: absolute;
    right: -40px;
    bottom: -40px;
    z-index: -1;
}

.faq .section-bottom-area {
    justify-content: center;
}

.faq .section-bottom-area .btn-blue {
    margin-bottom: 10px;
    border-bottom: solid 2px #000d51;
}


@media (max-width: 767px) {
    .faq .item-container .item {
        font-size: 16px;
    }

    .faq .qus::before {
        height: 14px !important;
    }

    .faq .qus::after {
        width: 14px !important;
        right: 0.1% !important;
    }
}

@media screen and (max-width: 414px) {
    .faq .item-container .item {
        font-size: 15px;
    }

    .faq .qus::before {
        right: 6px !important;
    }
}

@-webkit-keyframes circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
    }
}

@keyframes circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
    }
}

/* references */

.swiper-references {
    padding: 5px 10px;
}

.ref-box {
    padding: 15px;
    background: white;
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    text-align: center;
    margin-bottom: 30px;
}

.references .section-bottom-area {
    justify-content: center;
}

.swiper-references .ref-box {
    margin-bottom: 0px;
}

/* cta */

.cta-area {
    padding: 60px;
    text-align: center;
    background: var(--color1);
    border-radius: 7px;
    color: white;
}

.cta-area .slogan {
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cta-area .text {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-area a {
    font-size: 26px;
    font-weight: 500;
    position: relative;
}

.cta-area a::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: var(--color2);
    top: 50%;
    left: -70px;
    transform: translateY(-50%);
}


.cta-area a::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: var(--color2);
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
}

.cta-area a:hover {
    color: var(--color2);
}


/* footer */


.footer-cta .footer-cta-area {
    background: var(--color1);
    padding: 30px 20px;
    border-radius: 7px;
    margin-bottom: -50px;
    position: relative;
    z-index: 9;
}

.footer-cta .footer-cta-area ul {
    display: flex;
    align-items: center;
    color: white;
}

.footer-cta .footer-cta-area ul li {
    width: 33.3%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-cta .footer-cta-area ul li i {
    font-size: 40px;
    margin-right: 15px;
}

.footer-cta .footer-cta-area ul li .right .title {
    font-size: 16px;
    font-weight: 400;
}

.footer-cta .footer-cta-area ul li .right a {
    font-size: 22px;
    font-weight: 600;
}

.footer-cta .footer-cta-area ul li .right a:hover {
    color: var(--color2);
}


.footer-area {
    padding-top: 100px;
    padding-bottom: 50px;
    background: #222;
    color: white;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-title::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: var(--color2);
    bottom: 0;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-menu li {
    width: 50%;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.footer-menu li:hover {
    color: var(--color2);
}

.footer-menu li i {
    font-size: 9px;
    margin-right: 5px;
}

.footer-area .logo img {
    max-width: 250px;
}

.footer-area .logo {
    text-align: center;
    display: block;
}

.footer-area .social-media {
    justify-content: center;
    margin-top: 20px;
}

.footer-area .social-media li a i {
    color: white;
}

.footer-bottom {
    padding: 10px;
    text-align: center;
    background: black;
    color: white;
    font-size: 14px;
}

/* footer-2 */

.footer-2 {
    background: var(--color1);
    padding: 20px 0;
    color: white;
}

.footer-contact-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 30px 0;
    border-bottom: solid 1px #f4f4f469;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-contact-top .slogan {
    font-size: 26px;
    font-weight: bold;
}

.footer-2-left .logo img {
    max-width: 250px;
}

.footer-2-left .logo {
    display: block;
    margin-bottom: 15px;
}

.footer-2-left {
    color: white;
}

.footer-2-left .text {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-2 .social-media a i {
    color: white;
}

.footer-2 .btn-blue:hover {
    background: white;
}


.footer-contact-list .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

.footer-contact-list .title::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background:#ccb487;
    bottom: 0;
}

.footer-contact-list li {
    margin-bottom: 20px;
}

.footer-contact-list li a {
    display: flex;
    align-items: center;
}

.footer-contact-list li a i {
    width: 25px;
}

.footer-links-area .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}

.footer-links-area ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-links-area ul li {
    width: 50%;
    margin-top: 15px;
}

.footer-links-area .title::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background:#ccb487;
    bottom: 0;
}

.footer-copyright {
    margin-top: 30px;
    text-align: center;
    padding-top: 30px;
    border-top: solid 1px #f4f4f469;
}


/* sticky-bar */

.mobile-sticky-bar {
    padding: 10px;
    position: fixed;
    bottom: 0;
    z-index: 99;
    width: 100%;
    display: none;
}

.mobile-sticky-bar ul {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 7px;
    color: var(--color1);
    box-shadow: 0 0 9px 0 rgb(0 0 0 / 20%);
}

.mobile-sticky-bar ul i {
    font-size: 28px;
}

.mobile-sticky-bar ul li a {
    padding: 15px;
    border: solid 1px #d4d4d4;
    border-radius: 7px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* header mobile */

.header-mobile {
    display: none;
}

/* back to up */


.back-to-top {
    position: fixed;
    bottom: 5px;
    right: 30px;
    z-index: 2020;
    background: var(--color1);
    border: solid 2px white;
    color: white;
    padding: 7px 9px;
    cursor: pointer;
    font-size: 0.85em;
    border-radius: 7px;
    transition: bottom 0.2s;
    transition: all 0.2s;
    text-align: center;
    box-shadow: 0 0 9px 0 rgb(0 0 0 / 20%);
    opacity: 0;
}

.opacity-up {
    opacity: 1;
}

.back-to-top-on {
    bottom: 30px;
    transition: all 0.2s;
}

.back-to-top i {
    font-size: 30px;
    display: block;
    text-align: center;
}

.back-to-top:hover,
.back-to-top:active {
    background: var(--color2);
    transition: all 0.2s;
}


/* mobile code */


@media(max-width:992px) {

    /* general */

    body {
        padding-top: 60px;
    }

    section {
        padding: 40px 0;
    }

    .mobile-direction {
        flex-direction: column-reverse;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .section-title::before {
        height: 5px;
        bottom: 5px;
    }

    .section-title::after {
        height: 1px;
        bottom: 7px;
    }


    .section-bottom-area {
        text-align: center;
        justify-content: space-around;
        margin-top: 20px;
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    .section-top {
        margin-bottom: 20px;
    }

    .section-bottom-area .buttons-area div:not(:first-child) {
        margin-right: 0;
    }

    .section-bottom-area .buttons-area {
        margin-bottom:0px;
    }

    /* mobile header modal menÃ¼ */

    .modal.left .modal-dialog {
        left: 0;
        transform: translate(-125%, 0);
        margin: 0;
        height: 100%;
    }

    .modal.left.fade.show .modal-dialog {
        transform: none;
    }

    div#leftPopup {
        width: 100%;
        min-height: 100vh;
        z-index: 999999999;
    }

    .left .modal-content {
        height: 100%;
        border: none;
        border-radius: 0;
        width: 80%;
    }


    #leftPopup .modal-header img {
        max-width: 167px;
    }

    #leftPopup .modal-header {
        text-align: center;
        justify-content: center;
    }

    .modal-header .close {
        position: absolute;
        right: -100px;
        top: -4px;
        color: #222;
        font-size: 60px;
        border: navajowhite;
        padding: 0;
        margin: 0;
        background: white;
        width: 100%;
        z-index: -2;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-right: 45px;
        height: 93px;
        border-bottom: 1px solid #dee2e6;
    }

    .modal-body .lang-menu {
        justify-content: center;
    }

    .mobile-nav-menu {
        padding-bottom: 20px;
    }

    .mobile-nav-menu ul li {
        list-style: none;
        border-bottom: solid 1px #ecebeb;
    }

    .sub-menu ul {
        background-color: white;
    }

    .mobile-nav-menu ul li .sub-menu-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mobile-nav-menu ul li i {
        font-size: 18px;
        color: var(--color1);
        padding: 10px 20px;
    }

    .mobile-nav-menu ul li a {
        color: var(--color1);
        font-weight: 500;
        font-size: 15px;
        padding: 10px 0px;
        display: block;
    }

    .mobile-nav-menu ul li ul {
        display: none;
        padding-left: 25px;
    }

    .mobile-nav-menu ul li ul li {
        border: none;
    }

    /*header*/

    .header-1 {
        display: none;
    }

    .header-2 {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    .header-mobile .header-mobile-area {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

    .header-mobile .header-mobile-area img {
        max-width: 145px;
    }

    .header-mobile {
        background: var(--color1);
        color: white;
        position: fixed;
        top: 0;
        z-index: 9999;
        width: 100%;
    }

    .bars {
        padding: 10px;
    }

    /* sliders */

    .swiper-slider {
        display: none;
    }

    .swiper-slider-2 {
        display: none;
    }

    .swiper-videos {
        display: none;
    }

    .swiper-slider.mobile-slider-1 {
        display: block;
    }

    .swiper-slider-2.mobile-slider-2 {
        display: block;
    }

    .swiper-videos.mobile-videos {
        display: block;
    }

    .mobile-slider-2 .swiper-slide .slider-content .title {
        font-size: 26px;
    }

    .mobile-slider-2 .swiper-slide .slider-content .desc {
        font-size: 16px;
    }

    .swiper-slider-2 .swiper-slide .slider-content .container {
        padding: 0;
    }

    .nav-area {
        height: 60px;
    }

    .mobile-slider-1 .swiper-slide img {
        width: 100%;
    }


    .swiper-slider-2 .swiper-slide .slider-content {
        padding: 0 15px;
        width: 90%;
        padding: 0 20px;
    }

    /* about us */

    .about-us {
        padding-bottom: 250px;
    }

    .about-content .about-title {
        font-size: 26px;
    }

    .about-content .sub-title {
        font-size: 16px;
    }


    .about-icons-list li .right {
        width: 75%;
    }

    .about-icons-list li {
        padding: 10px 5px;
    }

    .about-home-pictures img:nth-child(2) {
        max-width: 200px;
    }

    /* service */

    .service-bottom-area {
        flex-wrap: wrap;
        flex-direction: column;
    }

    /* testimonials */


    .testimonial-box {
        padding: 10px 20px;
    }

    /* video-box */

    .video-box::before {
        font-size: 48px;
    }

    /* cta */

    .cta-area .slogan {
        font-size: 28px;
    }

    .cta-area {
        padding: 30px 15px;
    }

    .cta-area .text {
        font-size: 15px;
    }

    .cta-area a {
        font-size: 18px;
    }

    .cta-area a::before {
        width: 30px;
        left: -40px;
    }

    .cta-area a::after {
        width: 30px;
        right: -40px;
    }

    /* faq */

    .faq-picture .vector {
        right: -5px;
        max-width: 69px;
    }

    /* footer */

    .footer-cta .footer-cta-area ul li {
        width: 100%;
        margin-bottom: 30px;
        justify-content: flex-start;
    }

    .footer-cta .footer-cta-area ul {
        flex-wrap: wrap;
    }

    .footer-cta .footer-cta-area ul li .right .title {
        margin-bottom: 8px;
    }

    .footer-cta .footer-cta-area ul li .right a {
        font-size: 18px;
    }

    .footer-cta .footer-cta-area ul li i {
        font-size: 32px;
    }

    .footer-cta .footer-cta-area ul li:last-child {
        margin: 0;
    }

    .footer-area .row .col-lg-4:nth-child(2) {
        order: 1;
        margin-bottom: 30px;
    }

    .footer-area .row {
        flex-direction: column-reverse;
    }

    .footer-menu {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 14px;
        padding-bottom: 140px;
    }

    /* footer-2 */

    .footer-contact-top {
        justify-content: center;
        text-align: center;
    }

    .footer-contact-top .slogan {
        font-size: 26px;
        margin-bottom: 25px;
    }



    .footer-2 {
        padding: 20px 0 130px 0;
    }

    /* sticky-bar */
    .mobile-sticky-bar {
        display: block;
    }

    /* back-to-top */

    .back-to-top {
        bottom: 110px;
        right: 20px;
        padding: 5px;
        font-size: 13px;
        z-index: 5;
    }
}




/* breadcrumb */


.breadcrumb {
    padding: 35px 0 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center;
    position: relative;
}

.breadcrumb::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: black;
    left: 0;
    top: 0;
    opacity: 0.5;
}

.breadcrumb .breadcrumb-area {
    position: relative;
    z-index: 9;
    color: white;
}

.breadcrumb .breadcrumb-area ul {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-wrap: wrap;
}

.breadcrumb .breadcrumb-area h1 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: bold;
}

.breadcrumb .breadcrumb-area ul li {
    margin: 0 5px;
}

.breadcrumb .breadcrumb-area ul li a {
    position: relative;
}

.breadcrumb .breadcrumb-area ul li a:hover {
    color: var(--color2);
}

/* sidebar */

.sidebar-widget {
    position: sticky;
    top: 85px;
}

.sidebar-widget .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    padding-bottom: 8px;
    position: relative;
    color: var(--color1);
}

.sidebar-widget .title::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background: var(--color1);
    bottom: 3px;
}

.sidebar-widget ul li {
    margin-bottom: 10px;
}

.sidebar-widget ul li a {
    display: flex;
    align-items: center;
    font-size: 15px;
}

.sidebar-widget ul li a i {
    margin-right: 8px;
}

.sidebar-widget ul li a:hover {
    transform: translateX(5px);
}

@media(max-width:992px) {
    .sidebar-widget {
        margin-top: 30px;
    }
}

/* contact-page */


.contact-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color1);
    margin-bottom: 30px;
    padding-bottom: 7px;
    position: relative;
}

.contact-title::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: var(--color2);
    bottom: 0;
}

.contact-page-info {
    font-size: 18px;
    height: calc(100%);
}

.contact-page-info .contact-list {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: solid 1px #d4d4d4;
}

.contact-page-info .contact-list li {
    margin-bottom: 40px;
}

.contact-page-info .contact-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-page-info .contact-list li a i {
    font-size: 26px;
    display: inline-block;
    min-width: 40px;
}

.contact-page-info .contact-list li a:hover {
    color:#747474;
}

.contact-page-info .social-media li a {
    width: 40px;
    height: 40px;
}

.contact-page-info .social-media li a i {
    font-size: 18px;
}

.contact-form-area {
    position: relative;
    margin-top: 40px;
}



.contact-page .contact-maps iframe {
    width: 100%;
    display: block;
}

.check-form-content {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: auto;
    background: green;
    padding: 10px 20px;
    color: white;
}

@media (max-width: 991px) {
    .contact-page {
        margin-top: 40px;
    }

    .contact-page .contact-maps {
        margin-top: 60px;
    }

}

@media (max-width: 991px) {
    .contact-form-area {
        margin-top: 60px;
        margin-bottom: 20px;
    }
}

.contact-form .form-item {
    width: 100%;
    padding: 8px 15px;
    border: solid 1px #d6d6d6;
    margin-bottom: 15px;
    outline: none;
    border-radius: 10px;
}

.contact-form .form-group .text {
    margin-bottom: 5px;
    color: #828482;
}

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

.contact-form .recaptcha {
    display: inline-block;
}

.form-btn {
    padding: 15px 50px;
    background: var(--color1);
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    display: block;
}

.form-btn:hover {
    background: var(--color2);
}


.appointment-modal {
    z-index: 9999999;
}

/* error page */

.error-content-wrapper {
    text-align: center;
}

.error-content-wrapper .title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.error-content-wrapper .text {
    font-size: 18px;
    margin-bottom: 30px;
}

.error-content {
    margin-top: 30px;
    background: #a90202;
    color: white;
    padding: 15px;
}

.error-text-area {
    padding: 10px;
    background: #a90202;
    color: white;
    margin-bottom: 20px;
    font-size: 14px;
    width: auto;
    display: inline-block;
}


/* custom css */

.modal {
    padding: 0 !important;
}

.modal .modal-dialog {
    height: 100%;
}

.modal-content {
    background: white;
    height: auto !important;
}

div#leftPopup .modal-dialog {
    height: 100%;
}

#leftPopup .modal-content {
    height: 100% !important;
}

@media(max-width:992px) {
    .recaptcha .g-recaptcha {
        transform: scale(0.8);
        float: right;
    }

    .recaptcha {
        text-align: left;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        margin-left: 15px;
    }
}

/* Genel */
.title-h{font-size:2.9rem;font-weight:900;color: var(--color1);margin-top: -18px;}
.title-g{font-size:2.1rem;font-weight:900;}
.title-bred{font-size:1.8rem;font-weight:700;color:var(--color2);}
.button-h{display:flex;align-items: center;background:var(--color1);color:white;padding: 10px 20px;border-radius: 20px 20px 0 20PX;font-weight:bold;border: solid 1px #315050;transition: all .3s ease;}
.button-h:hover{background:#315050;color:#ccb487;border: solid 1px #ccb487;}
.yesil-c{color:var(--color1);}
.home-social .social-media li i{color:var(--color2);background:var(--color1);}
.web-design{font-size:14px;}
.m-a{margin: auto;}
.ort{display:flex;justify-content: center;}
.bg-bred{background-image: url(../gorsel/genel/bg-bredcrumb.jpg);background-position: center;background-repeat: no-repeat;}
.p-50{padding:50px 0}
.p-14{padding: 0 14px;}
.bred-list{display: flex;font-size: 15px;flex-wrap: wrap;color:var(--color2);margin-top: 20px;}
.oval-ozel{border-radius: 40px 40px 40px 0}
.bg-bunga{background:#ccb487;}
.p-r-8{padding-right:8px;}
.p-r-12{padding-right:12px;}
.oda-akt-back{background:var(--color1);padding: 20px;font-size:18px;font-weight:700;color:#ddd6d0;border-radius: 0 0 30px 0;}
.oda-akt-bord{border-radius: 30px 30px 0 0;box-shadow: 0 3px 12px 0px rgb(0 0 0 / 58%);}
.home-btn-1{width:100%;padding:20px;height:70px;background:#354040;border-radius:10px;color:white;display: flex;justify-content: center;align-items: center;}
.bg-home-sec{background:#e6e4e1;}
i.fa-solid.fa-angle-down{margin-left:12px;;}

/* lightbox */
.body-fixed {overflow: hidden;}
#lightboxOverlay {position: absolute;width: 100%;z-index: 0;}
.lb-dataContainer {z-index: 9999;}
.pm-5{padding: 5px 0;}
.p-menu-modal{padding: 0rem 1rem 1rem 1rem;}
.modal-open{overflow: hidden;}
.musaitlik {position: absolute;background: red;color: white;padding: 4px 10px;border-radius: 16px;float: right;z-index:98;margin:15px;}


/* Mobil */
@media(max-width: 991px){
.mob-giz{display:none;}
.mob-mt-40{margin-top:40px;}
.mob-p-70{padding:70px 0}
.h-360{height: 350px}
.home-360{height: 360px;border-radius:20px;box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);}
.solid-t{padding-top: 40px;border-top: solid 1px #f4f4f469;margin-top: 20px;}
.title-h{font-size:2.3rem;color: var(--color1);margin-top: -4px;}
.mob-sec-p{padding:20px 0 !important}
.mob-hero-p{padding:40px 0 20px !important}
.grid-5-2{width:50%;padding:10px}
}

/* Küçük PC */
@media(max-width: 1200px){
.header-2 .header-top-2 .logo img {max-width: 120px;}}


/* PC */
@media(min-width: 992px){
.pc-giz{display:none !important;}
.pc-pt-0{padding-top: 0px}
.pc-pt-30{padding-top: 30px}
.instagram img {transition: all .3s ease;}
.instagram img:hover {transform: scale(1.05);}
.pc-pr-20{padding-right:20px;}
.pc-pl-20{padding-left:20px;}
.pc-pr-40{padding-right:40px;}
.pc-pl-40{padding-left:40px;}
.pc-mb-40{margin-bottom: 40px;}
.h-360{height: 660px}
.home-360{height: 660px;border-radius:20px;box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);}
.pc-p-30{padding:30px}
.grid-5-2{width:20%;padding:20px}
}