/* General */
body {
    font-family: 'Titillium Web', sans-serif;
    font-size: 17px;
    font-weight: normal;
    color: var(--color1);
    background-color: white;
}

p {
    line-height: 24px;
}

a {
    color: inherit;
    transition: all .3s ease;
}

a:hover {
    text-decoration: none;
    color: inherit;
    color: var(--color2);
}

.img-fluid {
    max-width: 100%;
}

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

.fix1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p70 {
    padding: 70px 0;
}

.mt50 {
    margin-top: 50px;
}

.lightbg {
    background-color: var(--color7);
}

.section-title1 {
    font-weight: bold;
    font-size: 30px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
}

.section-title1:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 5px;
    background-color: var(--color2);
}

.section-title2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: var(--color1);
}

.section-title2:before {
    position: absolute;
    content: '';
    width: 90px;
    height: 5px;
    background-color: var(--color2);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-desc {
    font-family: 'Montserrat', sans-serif;
    line-height: 20px;
    text-align: center;
    color: var(--color6);
    margin-bottom: 40px;
}

.button1 a {
    background-color: var(--color9);
    color: white;
    font-weight: 600;
    padding: 7px 30px;
    font-size: 15px;
    border-radius: 5px;
    white-space: nowrap;
}

.button1 a:hover {
    background-color: var(--color1);
}

.button2 {
    margin-top: 15px;
}

.button2 a {
    position: relative;
    background-color: var(--color1);
    color: white;
    font-size: 18px;
    padding-left: 20px;
    font-weight: 500;
    padding: 10px 45px 10px 20px;
    display: inline-block;
}

.button2 a:before {
    position: absolute;
    content: '';
    background-color: var(--color2);
    width: 35px;
    height: 4px;
    left: 90%;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease;
}

.button2 a:hover:before {
    width: 100px;
}

.button2 a:hover {
    background-color: var(--color2);
}

.button2 a:hover:before {
    background-color: var(--color1);
}

.button-3 div,
.button-3 a {
    width: 155px;
    height: 40px;
    border: 1px solid white;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}

.button-3 {
    display: flex;
    justify-content: center;
}

.button-3 div:hover,
.button-3 a:hover {
    border: 1px solid var(--color2);
    background-color: var(--color2);
    color: white;
}

.button4 {
    text-align: center;
    margin-top: 15px;
}

.button4 a {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color1);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 45px 10px 20px;
    display: inline-block;
}

.button4 a:before {
    position: absolute;
    content: '';
    background-color: var(--color2);
    width: 35px;
    height: 4px;
    left: 90%;
    transition: all .3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.button4 a:hover:before {
    width: 100px;
}

.button4 a:hover {
    background-color: var(--color2);
    color: var(--color1);
}

.button4 a:hover:before {
    background-color: var(--color1);
}

.button5 {
    text-align: center;
    margin-top: 15px;
}

.button5 a {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color2);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 45px 10px 20px;
    display: inline-block;
}

.button5 a:before {
    position: absolute;
    content: '';
    background-color: var(--color4);
    width: 35px;
    height: 4px;
    left: 90%;
    transition: all .3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.button5 a:hover:before {
    width: 100px;
}

.button5 a:hover {
    background-color: var(--color4);
}

.button5 a:hover:before {
    background-color: var(--color2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 18px;
}

.mobile-nav {
    display: none;
}

.mobile-close-menu {
    display: none;
}

/* Fly Alert */
.fly-alert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1060;
}

.fly-alert .content {
    padding: 20px;
    background: rgb(255, 255, 255);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
    max-width: 500px;
    border-radius: 5px;
    margin: auto;
}

.fly-alert .icon {
    width: 80px;
    height: 80px;
    border: 4px solid;
    border-radius: 50%;
    margin: 20px 0 30px;
    box-sizing: content-box;
    cursor: default;
    font-size: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.fly-alert.success .icon {
    border-color: #a5dc86;
    color: #a5dc86;
}

.fly-alert.danger .icon {
    border-color: #f27474;
    color: #f27474;
}

.fly-alert .icon svg {
    overflow: visible;
    height: 60px;
}

.fly-alert .desc {
    color: #595959;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    margin: 0 0 .4em;
    word-wrap: break-word;
}

.fly-alert .btn {
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    margin: 15px 5px 0;
    padding: 10px 32px;
    background-color: rgb(48, 133, 214);
}

/* Fly Alert */
/* mobil sticky bar */
.mobile-sticky-bar {
    display: none;
}

/*fixed header*/
.fixed-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.5s;
    z-index: 999;
}

.header-logo-menu.fixed-header {
    position: sticky;
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    top: -1px;
}

.header-mobile.fixed-header {
    background-color: white;
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

/* header */
.header-top {
    position: relative;
    background-color: var(--color1);
    color: white;
}

/*.header-top:before {
    content: '';
    position: absolute;
    background-color: var(--color2);
    right: 0;
    width: 50%;
    height: 100%;
    top: 0;
}*/
.header-top .left {
    background-color: var(--color1);
    padding: 10px 0;
    color: var(--color5);
    font-size: 15px;
}

.header-top .left a:hover {
    color: white;
}

.header-top .left .top-menu a {
    margin-right: 20px;
}

.header-top .left .social-menu {
    margin-right: 20px;
}

.header-top .left .social-menu a {
    background-color: var(--color5);
    color: var(--color1);
    margin-left: 10px;
    min-width: 22px;
    min-height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.header-top .left .social-menu a:hover {
    opacity: 0.5;
}

.header-top .right {
    padding: 10px 0;
}

.header-top ul {
    display: flex;
}

.header-top .right {
    font-size: 15px;
}

.header-top .right .infos-menu {
    margin-left: 20px;
}

.header-top .right .infos-menu span {
    margin-right: 5px;
}

.header-top .right .infos-menu span i {
    margin-right: 5px;
}

.header-top .right a:hover {
    color: var(--color5);
}

.header-logo-menu {
    position: relative;
    background-color: #fff;
}

/*
.header-logo-menu:before {
    position: absolute;
    content: '';
    width: 32%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #F3F7F9;
}
*/
.main-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    list-style: none;
    width: 100%;
    text-transform: uppercase;
}

.main-menu .navigation>li {
    position: relative;
    float: left;
    padding: 30px 0px;
    margin-right: 20px;
    transition: all 300ms ease;
    white-space: nowrap;
}

.main-menu .navigation>li:last-child {
    margin-right: 0px;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-weight: 600;
    opacity: 1;
    padding: 0;
    transition: all 300ms ease;
    font-size: 15px;
}

.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a {
    color: var(--color2);
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 99%;
    min-width: 210px;
    padding: 0px 0px;
    z-index: 100;
    opacity: 1;
    margin-top: 1px;
    background: white;
    border: 1px solid #ededed;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 100ms ease;
    list-style: none;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ededed;
}

.main-menu .navigation>li>ul>li:hover {
    background: #ededed;
    transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>a {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    color: var(--color1);
    font-weight: 600;
    text-align: left;
    display: inline-block;
    transition: all 200ms ease;
    padding: 10px 30px 10px 10px;
    width: 100%;
}

.main-menu .navigation>li>ul>li:hover>a:before {
    width: 15px;
    opacity: 1;
}

.main-menu .navigation>li.dropdown>a:after {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f107";
    margin-left: 3px;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    position: absolute;
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f105";
    margin-left: 3px;
    right: 10px;
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    margin-top: -45px;
    min-width: 210px;
    padding: 0px 0px;
    z-index: 100;
    opacity: 1;
    background: white;
    border: 1px solid #ededed;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 100ms ease;
    list-style: none;
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ededed;
    white-space: nowrap;
}

.main-menu .navigation>li>ul>li>ul>li:hover {
    background: #ededed;
    transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    font-size: 15px;
    line-height: 24px;
    color: var(--color1);
    font-weight: 600;
    text-align: left;
    display: inline-block;
    transition: all 200ms ease;
    padding: 10px 30px 10px 10px;
    width: 100%;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a:before {
    width: 15px;
    opacity: 1;
}

.main-menu .navigation>li.dropdown:hover>ul {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    background-color: white;
    border: solid 1px #ededed;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    top: 99%;
    background-color: white;
}

/* slider */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev {
    left: 50px;
}

.swiper-button-next {
    right: 50px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-prev i,
.swiper-button-next i {
    color: white;
    font-size: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.swiper-button-prev i:hover,
.swiper-button-next i:hover {
    opacity: 0.8;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: none;
    color: white;
    text-decoration: none;
}

.swiper-pagination {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
    background: var(--color1);
    width: 25px;
    height: 10px;
    border-radius: 0;
}

.swiper-pagination-bullet {
    background: var(--color2);
    width: 25px;
    height: 10px;
    border-radius: 0;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: none;
}

.owl-desk .swiper-button-prev {
    left: -70px;
}

.owl-desk .swiper-button-next {
    right: -70px;
}

.owl-desk .swiper-pagination {
    bottom: -9%;
}

.sliderfix .swiper-button-prev {
    left: -50px;
}

.sliderfix .swiper-button-next {
    right: -50px;
}

.sliderfix .swiper-button-prev i,
.sliderfix .swiper-button-next i {
    color: #8A8A8A;
}

.slider-mobile {
    display: none;
}

.slider,
.slider-mobile {
    line-height: 0;
    font-size: 0;
}

.slider .swiper-wrapper,
.slider-mobile .swiper-wrapper {
    align-items: flex-start;
}

.slider .swiper-slide img,
.slider-mobile .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

/* about us */
.about-us {
    position: relative;
}

.about-us .left {
    padding-right: 0px;
}

.about-us .right {
    padding-left: 0px;
}

.about-us .about-media {
    position: relative;
    text-align: right;
    z-index: 20;
}

.about-us .about-media:before {
    position: absolute;
    content: '';
    width: 690px;
    height: 560px;
    border: 12px solid var(--color3);
    left: -25px;
    top: 25px;
    z-index: -10;
}

.about-us .about-media .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-left: 30px;
    font-size: 90px;
    color: white;
}

.about-us .about-media .video-play a {
    padding: 50px;
}

.about-us .about-media .video-play a:hover {
    color: var(--color2);
}

.about-us .about-media .slogan {
    position: absolute;
    bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 48px;
    color: white;
    padding-left: 30px;
    width: 100%;
    text-align: center;
}

.about-us .about-media .slogan .sloganx {
    position: relative;
}

.about-us .about-media .slogan .sloganx:before {
    content: '';
    position: absolute;
    width: 299px;
    height: 4px;
    background-color: var(--color2);
    right: 10%;
    top: 0;
}

.about-us .about-media .slogan .sloganx:after {
    content: '';
    position: absolute;
    width: 299px;
    height: 4px;
    background-color: var(--color2);
    left: 10%;
    bottom: 0;
}

.about-us .about-text {
    position: absolute;
    bottom: 0;
    background-color: white;
    padding: 40px 120px 40px 100px;
    z-index: 30;
}

.about-us .about-media:before {
    width: 460px;
    height: 330px;
    left: 40px;
    top: 40px
}

.about-us .about-media img {
    max-height: 400px;
    width: 385px;
    object-fit: cover;
}

.about-us .about-media .slogan {
    font-size: 24px;
}

.about-us .about-media .slogan .sloganx:before {
    width: 150px;
    top: -10px;
    right: 10px;
}

.about-us .about-media .slogan .sloganx:after {
    width: 150px;
    bottom: -10px;
    left: 50px;
}

.about-us .about-text {
    padding: 15px 40px 15px 60px;
    bottom: 45px;
}

/* services */
.general-box {
    margin-bottom: 30px;
}

.general-box .full-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.general-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-box .full-row {
    aspect-ratio: 350 / 262.5;
}

.product-box .full-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.general-box .text-area {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.general-box .overlay_hover {
    left: 0;
    padding: 20px 25px;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 100%;
    background: var(--boxOverlay);
    transition: all 300ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.general-box .overlay:hover .overlay_hover {
    top: 0;
}

.general-box .title {
    color: var(--color1);
    margin-top: 12px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
    line-height: 29px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.general-box > a {
    text-decoration: none;
}

.general-box img {
    width: 100%;
}

/* slogan */
.slogan-sec {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 480px;
    margin-bottom: 130px;
}

.slogan-box {
    position: relative;
    margin-top: 70px;
    background: var(--color4);
    box-shadow: 0px 4px 20px rgba(55, 55, 55, 0.2);
    color: white;
    padding: 60px;
    overflow: hidden;
    z-index: 1;
}

.slogan-box:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color2);
    left: 62%;
    top: -5%;
    z-index: -20;
    transform: rotate(125deg) skew(140deg);
}

.slogan-box .title {
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    font-size: 32px;
    line-height: 44px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.slogan-box .desc {
    margin-bottom: 30px;
}

.slogan-box .desc p {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.slogan-sec .button4 {
    text-align: left;
}

/* produtcts */
/* why us */
.why-us-box {
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(140, 140, 140, 0.25);
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: var(--color1);
    padding: 10px;
    height: 100%;
    display: grid;
    align-items: center;
    transition: all .3s ease;
}

.why-us-box:hover {
    background: var(--color2);
    box-shadow: 0px 4px 25px rgba(71, 71, 71, 0.8);
    color: white;
}

.why-us-box .icon {
    font-size: 50px;
}

/* blog */
/* faq */
.faq {
    background-color: var(--color2);
    margin-top: 100px;
    margin-bottom: 70px;
    position: relative;
}

.faq .picture {
    margin-top: -70px;
    margin-bottom: -70px;
}

.faq .section-title2 {
    margin-top: -70px;
    margin-bottom: 50px;
}

.accordion {
    font-family: 'Montserrat', sans-serif;
}

.accordion .sss-title {
    color: var(--color1);
    position: relative;
}

.accordion .sss-title.collapsed:after {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f067";
    color: var(--color2);
    right: 0;
    position: absolute;
}

.accordion .sss-title:after {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f068";
    color: var(--color2);
    right: 0;
    position: absolute;
}

.accordion .card {
    margin-bottom: 20px;
    border: none;
}

.accordion .card-header {
    background-color: white;
    padding: 10px 10px 5px 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0px 4px 15px rgba(111, 111, 111, 0.25);
}

.accordion .card-body {
    padding: 0px 10px 10px 10px;
    background-color: white;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

/* testimonials */
.testimonials {
    font-family: 'Montserrat', sans-serif;
}

.testimonials .section-title2 {
    margin-bottom: 40px;
}

.testimonials-box {
    margin-bottom: 40px;
}

.testimonials-box .quote {
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(130, 130, 130, 0.2);
    padding: 36px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    border-top: solid 5px var(--color2);
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    height: 100%;
}

.testimonials-box .quote:after {
    position: absolute;
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f0d7";
    bottom: -14px;
    left: 25px;
    color: white;
    font-weight: bold;
    font-size: 40px;
}

.testimonials-box .info {
    display: flex;
    align-items: center;
}

.testimonials-box .info .avatar img {
    width: 71px;
    height: 71px;
    border-radius: 50%;
    box-shadow: -2px 3px 0px 0px var(--color2);
}

.testimonials-box .info .name {
    margin-left: 15px;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
}

.testimonials-box .info .name span {
    display: block;
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
    color: var(--color2);
}

/* video */
.video-box {
    position: relative;
    transition: all .3s ease;
    margin-bottom: 30px;
}

.video-box i {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 62px;
    background: var(--boxOverlay);
    border-radius: 50%;
    transition: all .3s ease;
}

.video-box span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background: var(--boxOverlay);
    color: white;
    padding: 10px;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    transition: all .3s ease;
}

.video-box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .3s ease;
}

.video-box:hover::before{
    background: rgba(2, 10, 51, 0.3);
}

.video-box:hover i {
    font-size: 75px;
}

.video-box:hover span {
    background: rgba(2, 10, 51, 0.4);
}

/* gallery */
.gallery {
    background-position: left bottom;
    background-repeat: no-repeat;
    background-color: #ededed;
}

.gallery-box i {
 
    font-size: 15px;
    padding: 12px;
    border: solid 2px white;

    top: 80%;
    left: unset;
    right: 0px;
}

.gallery-box:hover i {
    font-size: 18px;
}

/* our team */
.our-team .swiper {
    overflow: hidden;
    padding-bottom: 55px;
}

.team-box {
    position: relative;
    border-bottom: solid 5px var(--color2);
    font-family: 'Montserrat', sans-serif;
}

.team-box .picture {
    position: relative;
    transition: all .3s ease;
}

.team-box:hover .picture:after {
    position: absolute;
    content: '';
    background: rgba(2, 10, 51, 0.6);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .3s ease;
}

.team-box .social {
    opacity: 1;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    transition: all .3s ease;
}

.team-box .social ul {
    display: flex;
    justify-content: space-evenly;
}

.team-box .social ul li a {
    color: #0b24a4;
    background-color: white;
    border-radius: 50%;
    border: solid 2px #0b24a6;
    width: 27px;
    height: 27px;
    display: inline-block;
    text-align: center;
}

.team-box .name {
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
    padding: 25px;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    transition: all .3s ease;
}

.team-box .name span {
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: var(--color2);
    display: block;
}

.team-box:hover .name {
    background: var(--color2);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
    color: white;
    bottom: -60px;
}

.team-box .name a {
    transition: all .0s ease;
}

.team-box:hover .name a {
    color: white;
    transition: all .0s ease;
}

.team-box:hover .name span {
    color: white;
}

/* instagram */
.instagram {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* our work */
.work-box {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.work-box .work-icon {
    background: var(--color2);
    color: white;
    min-width: 165px;
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

.work-box .work-text {
    height: 120px;
    width: 100%;
    background: var(--color4);
    color: white;
    text-align: center;
    padding-top: 23px;
}

.work-box .work-text .num {
    font-weight: bold;
    font-size: 30px;
    position: relative;
    display: inline-block;
}

.work-box .work-text .num:before {
    position: absolute;
    content: '+';
    left: -20px;
}

.work-box .work-text .text {
    display: block;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
}

/* referancs */
.ref-box {
    border: 2px solid var(--color8);
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    min-height: 100px;
}

/* footer */
.footer {
    font-family: 'Montserrat', sans-serif;
    margin-top: 90px;
    font-size: 14px;
}

.footer .container {
    position: relative;
}

.footer-top .row {
    color: white;
    position: absolute;
    width: 100%;
    top: -55px;
}

.footer-box {
    display: flex;
    align-items: center;
    padding: 20px 0px;
}

.footer-box .icon {
    font-size: 40px;
    margin-right: 15px;
}

.footer-box .info span {
    display: block;
    font-weight: bold;
    font-size: 1rem;
    line-height: 20px;
}

.footer-box .info a {
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 37px;
}

.footer-box .info a:hover {
    opacity: 0.8;
    color: white;
}

.footer-center {
    background: var(--color4);
    padding-top: 80px;
    padding-bottom: 40px;
    color: white;
}

.footer-center .footer-logo {
    margin-bottom: 20px;
    margin-top: 10px;
}

.footer-center .footer-social ul {
    display: flex;
}

.footer-center .footer-social ul li a {
    margin-right: 15px;
    background-color: #C0C3C0;
    color: var(--color4);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.footer-center .footer-social ul li a:hover {
    opacity: 0.8;
}

.footer-center .footer-desc {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Titillium Web', sans-serif;
}

.footer-center .footer-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.footer-center .footer-title:after {
    position: absolute;
    content: '';
    width: 90px;
    height: 5px;
    background: var(--color2);
    left: 0;
    bottom: 0;
}

.footer-center .footer-menu.fifty ul li {
    width: 50%;
    float: left;
}

.footer-center .footer-menu ul li {
    margin-bottom: 10px;
}

.footer-center .footer-menu ul li a {
    position: relative;
}

.footer-center .footer-menu ul li a:before {
    content: '\f105';
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin-right: 5px;
}

.footer-center .footer-menu ul li a:hover {
    color: white;
    opacity: 0.6;
}

.footer-bottom {
    background: var(--color2);
    color: white;
}

.footer-bottom .area {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
}

.footer-bottom .area a {
    color: white;
}

.footer-bottom .area a:hover {
    opacity: 0.7;
}

/* breadcrumb */
.bredcrumb1 {
    background-color: var(--color1);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.bredcrumb1 ul {
    display: flex;
    flex-wrap: wrap;
}

.bredcrumb1 ul li a:hover {
    opacity: 0.8;
    color: white;
}

.bredcrumb1 ul li a:after {
    margin-left: 10px;
    margin-right: 10px;
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f054";
    font-size: 10px;
}

/* sidebar page */
.page-title {
    background-color: #f3f7f9;
    padding: 10px 20px;
    width: 110%;
    margin-left: -20px;
    font-size: 28px;
    font-weight: bold;
}

.text-area img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.text-area a {
    font-weight: 700;
}

.text-area ul {
    padding: 0;
}

.text-area ul li {
    list-style: none;
    margin-bottom: 10px;
}

.text-area ul li:before {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    color: var(--color2);
    font-weight: 900;
    margin-right: 7px;
}

.sidebar-area {
    background-color: #f3f7f9;
    padding: 30px 40px;
    position: sticky;
    top: 120px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    color: var(--color1);
    position: relative;
    font-family: 'Montserrat', sans-serif;
    margin-top: -8px;
}

.sidebar-title:before {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    background-color: var(--color2);
    bottom: 0;
}

.sidebar-menu ul {
    padding: 0;
}

.sidebar-menu ul li {
    list-style: none;
    margin-bottom: 10px;
}

.sidebar-menu ul li:before {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    color: var(--color2);
    font-weight: 900;
    margin-right: 7px;
}

/* FORM */
.form-area input.form-control {
    width: 100%;
    background: white;
    border: solid 1px var(--color8);
    height: 40px;
    margin-bottom: 15px;
    padding: 0 10px;
    outline: none;
}

.form-area input[type="file"] {
    width: 100%;
    background: white;
    border: solid 1px var(--color8);
    margin-bottom: 15px;
    padding: 9px 10px;
    outline: none;
    height: 50px;
}

.form-area select.form-control {
    width: 100%;
    background: white;
    border: solid 1px var(--color8);
    height: 40px;
    margin-bottom: 15px;
    padding: 0 10px;
    outline: none;
}

.form-area textarea.form-control {
    background: white;
    border: solid 1px var(--color8);
    width: 100%;
    height: 160px;
    margin-bottom: 15px;
    padding: 10px 10px;
    outline: none;
}

.form-area .nobot {
    text-align: center;
    margin-bottom: 15px;
}

.form-area .nobot img {
    max-width: 100%;
}

.form-area .cbutton {
    text-align: center;
}

.form-area button.contact-button {
    background: var(--color2);
    color: white;
    border: none;
    padding: 10px 50px;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    outline: none;
    cursor: pointer;
}

.form-area button.contact-button:hover {
    background: var(--color1);
    outline: none;
    transition: all .3s ease;
}

/* referances page */
.referances-page .ref-box {
    margin-bottom: 30px;
    height: calc(100% - 30px);
    padding: 15px;
}

.ref-box img {
    max-height: 100px;
}


/* faq page */
.faq-page .accordion {
    font-family: inherit;
}

.faq-page .accordion .sss-title {
    font-weight: 700;
}

.faq-page .accordion .card {
    margin-left: -20px;
}

/* team page */
.team-page .team-box {
    margin-bottom: 70px;
}

/* team detail page */
.team-detail-page .team-detail-box {
    float: left;
    background-color: #f3f7f9;
    margin-right: 30px;
}

.team-detail-page .team-detail-box .social ul {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
}

/* bank number page */
.hesap-card {
    background-color: white;
    margin-bottom: 20px;
    padding: 10px;
}

.hesap-card .hesap-images {
    text-align: center;
    margin-bottom: 30px;
}

.hesap-card .hesap-images img {
    max-height: 100px;
}

.hesap-card .hesap-adi {
    display: flex;
    border-bottom: 1px solid #ddd
}

.hesap-card .hesap-title {
    font-weight: 700;
    margin-bottom: 9px;
    min-width: 140px;
    position: relative;
}

.hesap-card .hesap-title:after {
    content: ":";
    position: absolute;
    right: 0px;
    margin-right: 12px;
}

/* Contact Page */
.contact-page .full-contact {
    margin-bottom: 60px;
}

.contact-page .contact-infos {
    padding: 0 30px;
    height: 100%;
    border-right: solid 3px var(--color8);
}

.contact-page .contact-infos .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-page .contact-infos .infos {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: solid 1px var(--color8);
}

.contact-page .contact-infos .infos .icon {
    font-size: 40px;
    margin-right: 10px;
    min-width: 48px;
    text-align: center;
    color: var(--color2);
}

.contact-page .contact-infos .infos a {
    display: block;
}

.contact-page .maps {
    padding: 0;
    margin-bottom: -167px;
}

.contact-page .form-area {
    padding: 0 30px;
}

.form-area .title {
    margin-left: 1px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color1);
}

/* error page */
.error-area {
    text-align: center;
}

.error-area .desc {
    font-size: 30px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 992px),
(height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape),
(width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {
    .header-mobile {
        display: none;
    }
}

@media only screen and (max-width: 992px),
(height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape),
(width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: portrait) {

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

    .mobile-header-icons {
        display: flex;
    }

    .mobile-header-icons .i {
        font-size: 22px;
    }

    .mobile-header-icons a i {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background-color: #222;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
    }

    .mobile-header-icons a i.far.fa-map-marker-alt {
        margin-left: 15px;
        background-color: var(--color1);
    }

    .mobile-header-icons a i.fas.fa-phone {
        background-color: var(--color2);
    }

    .mobile-header-hamburger .hamburger-toggle {
        background: transparent;
        padding: 0px;
        margin: 0 10px;
        border: none;
        display: flex;
        align-items: center;
    }

    .mobile-header-hamburger .hamburger-toggle i {
        font-size: 30px;
        margin-left: 10px;
    }


    .mobile-nav {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 9999;
        width: 100%;
        -webkit-animation: fadeOutLeft 0.5s ease-in-out;
        animation: fadeOutLeft 0.5s ease-in-out;
    }

    .mobile-nav-content {
        padding-top: 20px;
        background: #222222;
        width: 100%;
        height: 100%;
        cursor: copy;
        overflow-y: scroll;
    }

    .mobile-nav-logo {
        padding-left: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -ms-flex-pack: distribute;
        justify-content: space-evenly;
        margin-bottom: 20px;
    }

    .mobile-nav-logo-content {
        position: relative;
    }

    .mobile-nav-logo-content i {
        display: block;
        margin: 0 auto 10px;
        max-width: 30px;
        line-height: 32px;
        font-size: 30px;
    }

    .mobile-nav-logo-content a {
        color: white;
        font-size: 14px;
        font-weight: 600;
    }

    .mobile-nav-logo>a {
        display: block;
        padding: 30px 60px;
    }

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

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

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

    .sub-menu ul {
        background-color: #28292a;
    }

    .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: 14px;
        fill: white;
        color: white;
    }

    .mobile-nav-menu ul li a {
        color: white;
        font-weight: 600;
        font-size: 14px;
    }

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

    .mobile-nav.open {
        display: block;
        -webkit-animation: fadeInLeft 0.5s;
        animation: fadeInLeft 0.5s;
        overflow-x: scroll;
    }

    .cta-link {
        line-height: 40px;
        -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
        display: block;
        color: #fff;
        border-radius: 3px;
        background: var(--color2);
        text-align: center;
        margin: 20px;
        margin-bottom: 10px;
    }

    .mobile-close-menu {
        position: fixed;
        top: 18px;
        right: 20px;
        display: none;
        z-index: 9999;
    }

    .mobile-close-menu i {
        color: #fff;
        font-size: 25px;
    }

    ul.mobile-menu-social {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;
        list-style: none;
    }

    ul.mobile-menu-social li+li {
        margin-left: 15px;
    }

    ul.mobile-menu-social li a {
        border: 1px solid white;
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        color: #fff;
        border-radius: 5px;
    }

    ul.mobile-menu-social li a i {
        font-size: 20px;
    }

    .mobile-nav-menu ul {
        padding: 0px;
    }

    .header-mobile {
        display: block;
    }

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

    .header-mobile .header-mobile-logo img {
        max-width: 240px;
    }

    /* footer sticky hemen ara */
    .footer-sticky-bar {
        display: block;
    }

    /* general */
    .p70 {
        padding: 40px 0;
    }

    .swiper-button-prev {
        left: 0px;
    }

    .swiper-button-next {
        right: 0px;
    }

    .sliderfix .swiper-button-prev {
        left: 0px;
    }

    .sliderfix .swiper-button-next {
        right: 0px;
    }

    .section-title1 {
        font-size: 22px;
    }

    .section-title2 {
        font-size: 22px;
    }

    .section-desc {
        font-size: 14px;
    }

    .button-3 div {
        font-size: 14px;
    }

    .button4 a {
        font-size: 14px;
    }

    .button4 a:before {
        width: 50px;
        right: -30px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 17px;
    }

    h5 {
        font-size: 17px;
    }

    h6 {
        font-size: 17px;
    }

    /* header */
    .header-top {
        display: none;
    }

    .header-logo-menu {
        display: none;
    }

    /* slider */
    .slider-mobile {
        display: block;
    }

    .slider {
        display: none;
    }

    /* about */


    .about-us .area {
        flex-direction: column-reverse;
    }

    .about-us .about-text {
        position: relative;
        padding: 0;
        background-color: var(--color7);
        margin-bottom: 30px;
        bottom: unset;
    }

    .about-us .about-media:before {
        display: none;
    }

    .about-us .right {
        padding-left: 15px;
    }

    .about-us .left {
        padding-right: 15px;
    }

    .about-us .about-media .slogan {
        padding-left: 0;
        font-size: 30px;
    }

    .about-us .about-media .slogan .sloganx:before {
        width: 130px;
    }

    .about-us .about-media .slogan .sloganx:after {
        width: 130px;
    }

    .about-us .about-media .video-play {
        padding-left: 0;
    }


    .about-us .about-media .slogan .sloganx:before {
        display: none;
    }

    .about-us .about-media .slogan .sloganx:after {
        display: none;
    }

    /* services */
    .general-box .title {
        font-size: 18px;
    }

    .general-box .overlay_hover {
        top: 100%;
    }

    /* slogan */
    .slogan-sec {
        height: auto;
        margin-bottom: 0;
    }

    .slogan-box {
        margin-top: 0;
        padding: 40px 20px;
    }

    .slogan-box:before {
        display: none;
    }

    .slogan-box .title {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .slogan-box .desc p {
        font-size: 14px;
    }

    /* why us */
    .why-us .col-6:nth-child(odd) {
        padding-right: 8px;
    }

    .why-us .col-6:nth-child(even) {
        padding-left: 8px;
    }

    .why-us-box {
        margin-bottom: 16px;
        font-size: 15px;
        height: calc(100% - 16px);
    }

    /* faq */
    .faq {
        margin-top: 0;
        margin-bottom: 0;
    }

    .faq .picture {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .faq .section-title2 {
        color: white;
    }

    .faq .section-title2:before {
        background-color: white;
    }

    .accordion .sss-title {
        font-size: 15px;
        font-weight: 600;
    }

    .accordion .card-body {
        font-size: 14px;
    }

    /* testimonials */
    .testimonials-box .quote {
        font-size: 14px;
    }

    .testimonials-box .info .name {
        font-size: 16px;
    }

    /* our work */
    .work-box {
        border-bottom: solid 10px white;
    }

    .work-box .work-text .num {
        font-size: 22px;
    }

    .work-box .work-text .num .text {
        font-size: 14px;
    }

    /* video box */

    .video-box {
        text-align: center;
    }

    .video-box:hover:before {
        display: none;
    }

    /* footer */
    .footer {
        margin-top: 0px;
        margin-bottom: 58px;
    }

    .footer-top .row {
        position: relative;
        top: 0;
        width: auto;
        background-color: var(--color2);
        background-image: none;
    }

    .footer-box .info a {
        font-size: 22px;
        line-height: 30px;
    }

    .footer-center {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-box .info a {
        font-size: 25px;
        line-height: 30px;
    }

    .footer-center {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-center .footer-logo {
        text-align: center;
    }

    .footer-center .footer-social {
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
    }

    .footer-center .footer-title {
        margin-top: 25px;
        font-size: 16px;
    }

    .footer-center .footer-menu ul li a {
        font-size: 14px;
    }

    .footer-center .footer-menu ul li {
        margin-bottom: 5px;
    }

    .footer-bottom {
        padding-bottom: 60px;
    }

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

    .footer-bottom .copy {
        margin-bottom: 15px;
    }




    /* breadcrumb */
    .bredcrumb1 ul {
        justify-content: center;
    }

    /* sidebar page */
    .page-title {
        width: 100%;
        margin-left: 0px;
        background-color: white;
        padding: 0;
    }

    .sidebar-area {
        padding: 0;
        margin-top: 40px;
        background-color: white;
    }

    /* faq page */
    .faq-page .accordion .card {
        margin-left: 0;
    }

    .faq-page .accordion .card-body {
        font-size: 16px;
        line-height: 24px;
    }

    .faq-page .accordion .sss-title {
        font-size: 17px;
    }

    /* team page */
    .team-box .picture {
        text-align: center;
    }

    .team-box .picture img {
        width: 100%;
    }

    /* team detail page */
    .team-detail-page .team-detail-box {
        margin-right: 0;
        float: none;
        text-align: center;
        margin-bottom: 30px;
    }

    /* contact page */
    .contact-page .contact-infos {
        padding: 0;
    }

    .contact-page .form-area {
        padding: 0px;
        margin-top: 20px;
    }

    .contact-page .maps {
        margin-bottom: -47px;
    }

    /* mobil sticky bar */
    .mobile-sticky-bar {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        z-index: 9999;
        background-color: var(--color2);
        color: white;
        box-shadow: 0px -10px 20px -12px rgba(0, 0, 0, 0.42), 0px -3px 20px 0px rgba(0, 0, 0, 0.12), 0px -8px 10px -5px rgba(0, 0, 0, 0.2);
    }

    .mobile-sticky-bar a {
        width: 100%;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 5px;
    }

    .mobile-sticky-bar i {
        margin-bottom: 5px;
        font-weight: 900;
    }

    .mobile-sticky-bar span {
        font-size: 13px;
    }

    .mobile-sticky-bar a+a {
        border-left: 1px solid #374aad;
    }
}

.general-box .title {
    line-height: 33px;
}

.why-us-box .icon i {
    font-weight: 600;
}

.work-box .work-icon i {
    font-weight: 900;
}

/** Content Wrapper */
.text-area {
    word-wrap: break-word;
}

.text-area iframe {
    max-width: 100%;
}

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

.text-area table {
    margin-bottom: 20px;
}

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

.leftImage {
    margin-right: 20px;
    margin-bottom: 20px;
}

.rightImage {
    margin-left: 20px;
    margin-bottom: 20px;
}

.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}

/** Content Wrapper */
.g-recaptcha {
    position: relative;
    display: flex;
    justify-content: center;
}

.fake_error {
    white-space: nowrap;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, .2) 0 5px 10px;
    background-color: #F44336;
    color: #fff;
    padding: 5px 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 15px);
    position: absolute;
    z-index: 99;
    font-weight: 500;
}

.fake_error:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: #F44336;
    border-width: 10px;
    margin-left: -10px
}

.contact-page .maps iframe {
    height: 450px;
    width: 100%;
}

.referance .swiper-wrapper {
    display: flex;
}

.referance .swiper-slide .col {
    height: 100%;
}

.referance .swiper-slide .ref-box {
    height: 100%
}

.logo {
    padding: 10px 0;
}


/* custom css */

.header-top .right .infos-menu {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.header-top .right .infos-menu ul li {
    margin-left: 20px;
}

.footer-sticky {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: var(--color2);
    position: fixed;
    z-index: 110;
    width: 100%;
    bottom: 0;
    padding: 0 0.5rem 1.15rem 0.5rem;
    border-top-left-radius: 2.15rem;
    border-top-right-radius: 2.15rem;
    border-top: 6px solid var(--color3);
}

.footer-sticky .sticky-box {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: default;
}

.footer-sticky .sticky-box .icon {
    height: 48px;
    width: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer-sticky .sticky-box .icon i {
    font-size: 24px;
    color: var(--color7);
}

.footer-sticky .sticky-box .icon--dark {
    display: none;
}

.footer-sticky .sticky-box .text {
    font-size: 10px;
    color: var(--color7);
    text-align: center;
}

.footer-sticky .sticky-box .text--dark {
    display: none;
}

.footer-sticky .sticky-box.active .icon--dark {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-sticky .sticky-box.active .icon--light {
    display: none;
}

.footer-sticky .sticky-box.active .text--dark {
    display: block;
}

.footer-sticky .sticky-box.active .text--light {
    display: none;
}

.footer-sticky .top-box {
    -webkit-transform: translateY(-1.5rem);
    transform: translateY(-1.5rem);
}

.footer-sticky .top-box .icon {
    background: var(--color1);
    border-radius: 50%;
    position: relative;
}

.footer-sticky .top-box .icon i {
    color: var(--color7);
}

.footer-sticky .top-box .icon::after {
    content: "";
    position: absolute;
    height: 56px;
    width: 56px;
    border: 1px solid var(--color1);
    border-radius: 50%;
    opacity: 0.75;
}

.footer-sticky .top-box .icon::before {
    content: "";
    position: absolute;
    height: 66px;
    width: 66px;
    border: 1px solid var(--color1);
    border-radius: 50%;
    opacity: 0.5;
}

.footer-sticky .top-box .text {
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
    text-align: center;
}

@media (max-width: 992px) {
    .footer-sticky {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 320px) {
    .footer-sticky .sticky-box .text {
        font-size: 10px;
    }
}

.picture-general-area {
    margin-bottom: 30px;
    display: inline-block;
}

.picture-general-area .gallery-box {
    margin: 0;
}

a.picture-general-area .picture-box-title {
    text-align: center;
    padding: 10px 0px;
    font-size: 18px;
    font-weight: 500;
}







/* custom */

@media (max-width:992px){
    .product-detail-page .sidebar-area {display: none;}

    .picture-general-area img {width: 100%;}

    .picture-general-area {width: 100%;}
}


/* custom */

.scroll-design {max-height: 400px;overflow-y: auto;width: 100%;}

.scroll-design::-webkit-scrollbar {
    width: 10px;
}
 
.scroll-design::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(102 102 102); 
    border-radius: 5px;
}
 
.scroll-design::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 50%); 
    background:#292d39;
}


.helezon-text {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

/* Gallery Area */
.gallery-area {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
    background: #fafafa;
}

.gallery-area-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--color2);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
}

.gallery-area-header i {
    font-size: 18px;
}

.gallery-area-body {
    padding: 20px;
    max-height: 520px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color2) #e0e0e0;
}

.gallery-area-body::-webkit-scrollbar {
    width: 6px;
}

.gallery-area-body::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 3px;
}

.gallery-area-body::-webkit-scrollbar-thumb {
    background: var(--color2);
    border-radius: 3px;
}

.gallery-grid {
    margin-top: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.gallery-grid .picture-general-area {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0;
    aspect-ratio: 4/3;
    background: #f0f0f0;
}
.gallery-grid .video-box {
    margin: 0;
    height: 100%;
}
.gallery-grid .picture-general-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.gallery-grid .picture-general-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .3s ease;
    pointer-events: none;
}
.gallery-grid .picture-general-area:hover::after {
    background: rgba(0,0,0,.3);
}
.gallery-grid .picture-general-area:hover img {
    transform: scale(1.06);
}
.gallery-grid .picture-box-title {
    text-align: center;
    padding: 8px 0 0;
    font-size: 14px;
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* Custom Lightbox */
#clb {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px 20px;
}
#clb.active { display: flex; }
.clb-close {
    position: absolute;
    top: 14px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    opacity: .75;
    transition: opacity .2s;
    padding: 0;
}
.clb-close:hover { opacity: 1; }
.clb-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex: 1;
    min-height: 0;
}
.clb-img {
    max-width: calc(100vw - 140px);
    max-height: calc(100vh - 220px);
    object-fit: contain;
    border-radius: 4px;
    display: block;
}
.clb-prev,
.clb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .8;
    transition: all .2s;
    padding: 0 0 2px 0;
    flex-shrink: 0;
}
.clb-prev:hover,
.clb-next:hover { opacity: 1; background: rgba(255,255,255,.3); }
.clb-prev { left: 8px; }
.clb-next { right: 8px; }
.clb-title {
    color: #fff;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    opacity: .85;
    min-height: 20px;
    flex-shrink: 0;
}
.clb-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    overflow-x: auto;
    max-width: 100%;
    padding: 4px 2px;
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.3) transparent;
}
.clb-thumb {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: .45;
    border: 2px solid transparent;
    transition: all .2s;
    flex-shrink: 0;
}
.clb-thumb:hover { opacity: .8; }
.clb-thumb.active {
    opacity: 1;
    border-color: var(--color2);
}