body {
    font-family: 'Poppins', sans-serif;
    color: #555;
    font-size: 16px;
    font-weight: 400;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 999999;
}

#preload-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#preload-content img {
    margin-bottom: 20px;
    max-height: 130px;
}

.loader {
    position: absolute;
    top: 55%;
    left: 49%;
    border: 5px solid #ecebeb;
    border-top: 5px solid var(--color2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

a:hover {
    text-decoration: none;
    transition: all .3s ease;
}

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

.mobile-nav {
    display: none;
}

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

/* fly alert */

.fly-alert {
    position: fixed;
    top: 100px;
    right: 50px;
    z-index: 9999;
    margin: 0;
    font-size: 18px;
    display: inline-block;
    width: auto;
}

.alert-danger {
    background-color: red;
}

.alert-success {
    background-color: green;
}

.alert {
    font-weight: bold;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 4px;
}

/* mobil hemen ara */

.footer-sticky-bar {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--color2);
    z-index: 999;
    text-align: center;
}


.footer-sticky-bar a {
    color: white;
    width: 100%;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    padding: 5px 0;
    justify-content: center;
    align-items: center;
}

.footer-sticky-bar a i {
    position: relative;
    bottom: -1px;
    margin-right: 10px;
    font-size: 20px;
}


/*fixed header*/

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

.header-menu.fixed-header {
    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-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-menu.fixed-header .main-menu {
    display: flex;
    justify-content: space-between;
}

.header-menu.fixed-header .navigation {
    margin-left: 30px;
}

.p70 {
    padding: 70px 0;
}

.darkbg {
    background-color: #f2f3fa;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.darkbgpage {
    background-color: #f2f3fa;
}

.section-top-title {
    margin-bottom: 30px;
    position: relative;
}

.section-top-title .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color1);
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.section-top-title .section-title:after {
    content: "";
    position: absolute;
    background-color: var(--color2);
    width: 50%;
    height: 2px;
    left: 0;
    bottom: 0;
}

.section-top-title .section-title:before {
    content: "";
    position: absolute;
    background-color: var(--color2);
    width: 60px;
    height: 6px;
    left: 0;
    bottom: -2px;
}



.button1 a {
    background: var(--color2);
    color: white;
    border: none;
    position: relative;
    transition: 800ms ease all;
    outline: none;
    padding: 8px 50px;
    font-weight: 600;
    display: inline-block;
}

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

.button1 a:before,
.button1 a:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: var(--color2);
    transition: 400ms ease all;
}

.button1 a:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
}

.button1 a:hover:before,
.button1 a:hover:after {
    width: 100%;
    transition: 800ms ease all;
}

.area1 {
    justify-content: center;
}

.area2 {
    align-items: center;
}

.modal-title {
    font-size: 18px;
    color: var(--color1);
    font-weight: 700;
}

.modal-header .close {
    border: none;
    background-color: transparent;
    font-size: 35px;
    position: absolute;
    right: 10px;
    top: -3px;
    color: var(--color1);
    outline: none;
    font-weight: 700;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color1);
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 700;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}


#scroll-top {
    position: fixed;
    right: 0px;
    bottom: 60px;
    margin: 0;
    text-decoration: none;
    z-index: 9999999999999999;
}

#scroll-top button {
    width: 40px;
    height: 40px;
    outline: none;
    cursor: pointer;
    background-color: var(--color2);
    color: white;
    display: block;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    border: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#scroll-top button i {
    font-size: 20px;
}

/* header top */

.header-top .container {
    position: relative;
}

.header-top .logo {
    position: absolute;
    left: 0;
    text-align: center;
    border-left: solid 1px #ecebeb;
    border-right: solid 1px #ecebeb;
    border-bottom: solid 1px #ecebeb;
    background-color: white;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.08);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.header-top .items {
    margin-left: 270px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-top .items .item {
    padding: 15px;
    border-right: 1px solid #ecebeb;
    display: flex;
    align-items: center;
}

.header-top .items .item i {
    color: var(--color2);
    font-size: 20px;
    margin-right: 10px;
}

.header-top .items .item a {
    color: var(--color1);
    font-weight: 500;
    font-size: 14px;
}

.header-top .items .item a:hover {
    color: var(--color2);
}

.header-top .social {
    border-right: 1px solid #ecebeb;
    padding: 15px;
}

.header-top .social ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-top .social ul li {
    margin: 0;
    padding: 0;
}

.header-top .social ul li a {
    color: var(--color2);
    font-size: 16px;
    margin-left: 5px;
    margin-right: 5px;
}

.header-top .social ul li a:hover {
    color: var(--color1);
}

.header-top .lang {
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.header-top .lang a {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

.header-top .lang img {
    max-height: 16px;
}

/* header menu*/

.header-menu {
    background-color: var(--color2);
}

.main-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin-left: 285px;
    list-style: none;
}

.main-menu .navigation>li {
    position: relative;
    float: left;
    padding: 20px 0px;
    margin-right: 30px;
    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: 500;
    opacity: 1;
    color: white;
    padding: 0;
    transition: all 300ms ease;
    font-size: 15px;
}

.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a {
    opacity: 0.8;
}

.main-menu .navigation>li>ul {
    position: absolute;
    left: 0px;
    top: 95%;
    min-width: 210px;
    padding: 0px 0px;
    z-index: 100;
    opacity: 1;
    margin-top: 1px;
    background: white;
    border: 1px solid #ecebeb;
    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 #ecebeb;
}

.main-menu .navigation>li>ul>li:hover {
    background: var(--color2);
    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: 500;
    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>ul>li:hover>a {
    color: white;
}

.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 #ecebeb;
    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 #ecebeb;
    white-space: nowrap;
}

.main-menu .navigation>li>ul>li>ul>li:hover {
    background: var(--color2);
    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: 500;
    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>ul>li>ul>li:hover>a {
    color: white;
}

.main-menu .navigation>li.dropdown:hover>ul {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    border: solid 3px var(--color2);
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    top: 96%;
    border-top: solid 3px var(--color2);
    border-bottom: solid 3px var(--color2);
    border-right: solid 3px var(--color2);
}

/* slider */

.owl-prev {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.owl-next {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.owl-prev i {
    color: white;
    font-size: 20px;
    background-color: var(--color2);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-next i {
    color: white;
    font-size: 20px;
    background-color: var(--color2);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-prev i:hover {
    opacity: 0.8;
    transition: all .3s ease;
}

.owl-next i:hover {
    opacity: 0.8;
    transition: all .3s ease;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    color: white;
    text-decoration: none;
}

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

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color1);
    width: 25px;
    height: 10px;
    border-radius: 0;
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--color2);
    width: 25px;
    height: 10px;
    border-radius: 0;
}

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

.owl-dot,
.owl-dot:active,
.owl-dot:focus {
    outline: none;
}

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

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

.owl-desk .owl-dots {
    bottom: -9%;
}

.slider-mobile {
    display: none;
}

.slider .slider-owl-1,
.slider-mobile .slider-owl-1,
.slider .swiper-wrapper,
.slider-mobile .swiper-wrapper {
    width: 100%;
}

.slider .swiper-slide,
.slider-mobile .swiper-slide {
    width: 100% !important;
}

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

/* Single-slide swiper: hide navigation/pagination, slide stays centered via swiper config */
.swiper-single .slider-nav-button,
.swiper-single + .slider-nav-button,
.swiper-single ~ .slider-nav-button,
.swiper-single .swiper-pagination {
    display: none !important;
}

/* about us home */

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

.about-us-home:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/pattern-1.png) left top no-repeat;
    z-index: -1;
}

.about-us-home:after {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/pattern-2.png) right top no-repeat;
    z-index: -1;
}

.video-box {
    position: relative;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.40);
    border-radius: 20px;
}

.video-box .image {
    position: relative;
    overflow: hidden;
    margin: 0px;
    border-radius: 20px;
}

.video-box .image img {
    position: relative;
    width: 100%;
}

.video-box .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    line-height: 80px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.video-box .overlay-box:hover {
    background: rgba(0, 0, 0, 0.45);
}

.video-box span {
    position: relative;
    width: 80px;
    height: 80px;
    top: 43%;
    z-index: 99;
    color: white;
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    padding-left: 4px;
    padding-top: 3px;
    background-color: var(--color2);
    display: inline-block;
    margin-top: -40px;
    transition: all 900ms ease;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.video-box:hover span {
    transform: rotate(360deg);
}

.about-us-home .text {
    margin-left: 20px;
}

.about-us-home .text .desc {
    margin-bottom: 25px;
}

/* services home */

.general-box-area {
    display: flex;
    justify-content: center;
}

.general-box-area>* {
    margin-bottom: 40px;
}

.general-box-area .col {
    height: 100%;
    padding-bottom: 10px;
}

.general-box-area .owl-carousel .owl-stage {
    display: flex;
}

.general-box {
    position: relative;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.general-box .picture {
    position: relative;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.40);
    border-radius: 20px;
    margin-bottom: 5px;
}

.general-box .picture .image {
    position: relative;
    overflow: hidden;
    margin: 0px;
    border-radius: 20px;
}

.general-box .picture .image img {
    position: relative;
    width: 100%;
}

.general-box .picture .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    line-height: 80px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.general-box .picture .overlay-box:hover {
    background: rgba(0, 0, 0, 0.45);
}

.general-box .picture span {
    position: relative;
    opacity: 0;
}

.general-box .picture:hover span {
    transform: rotate(360deg);
    width: 65px;
    height: 65px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    color: white;
    font-size: 25px;
    border-radius: 50%;
    background-color: var(--color2);
    display: inline-block;
    transition: all 300ms ease;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.general-box .picture:hover span i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 0;
}

.general-box .title {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
}

.general-box .title a {
    color: var(--color1);
    font-size: 18px;
    font-weight: 600;
}

.general-box .title a:hover {
    color: var(--color2);
}

.general-box .desc {
    text-align: center;
    font-size: 15px;
    margin-bottom: 10px;
}

.general-box .read-more {
    text-align: center;
}

.general-box .read-more a {
    color: var(--color1);
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
}

.general-box .read-more a:hover {
    color: var(--color2);
}

.general-box:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 0px;
    height: 4px;
    background-color: var(--color2);
    transition: all 1000ms ease;
}

.general-box:after {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    width: 0px;
    height: 4px;
    background-color: var(--color2);
    transition: all 1000ms ease;
}

.general-box:hover::before,
.general-box:hover::after {
    width: 100%;
}

.services-home .button1 {
    text-align: center;
}

/* why us home*/

.why-us-home {
    position: relative;
}

.why-us-home:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: white;
    right: 0;
}

.why-us-home .section-top-title {
    margin-right: 80px;
}

.why-us-box {
    display: flex;
    margin-bottom: 50px;
}

.why-us-box .icon {
    display: flex;
    justify-content: center;
    margin-left: -45px;
    margin-right: 20px;
}

.why-us-box .icon i {
    color: white;
    border-radius: 50%;
    font-size: 40px;
    font-weight: 900;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to left, var(--color2) 0%, var(--color1) 100%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.why-us-box .item {
    margin-top: 5px;
}

.why-us-box .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color1);
}

/* product home */

.product-home .button1 {
    text-align: center;
    margin-top: 15px;
}

/* parallax slogan home */

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

.parallax-slogan-home:before {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--color2);
    opacity: 0.6;
    z-index: -1;
}

.parallax-slogan-home .section-top-title {
    text-align: center;
    color: white;
}

.parallax-slogan-home .section-top-title .section-title:before {
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
}

.parallax-slogan-home .section-top-title .section-title:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
}

.parallax-slogan-home .section-top-title .section-title {
    color: white;
}

.parallax-slogan-home .button1 {
    text-align: center;
}

/* icons home */

.icons-home .section-top-title {
    margin-bottom: 70px;
}

.icon-box-area {
    display: flex;
    justify-content: center;
}

.icon-box-area>* {
    margin-bottom: 80px;
}

.icon-box {
    padding: 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    height: 100%;
}

.icon-box .icon {
    display: flex;
    justify-content: center;
    margin-top: -75px;
    margin-bottom: 10px;
}

.icon-box .icon i {
    color: white;
    border-radius: 50%;
    font-size: 40px;
    font-weight: 300;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to left, var(--color2) 0%, var(--color1) 100%);
}

.icon-box .title a {
    color: var(--color1);
}

.icon-box .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color1);
}

.icon-box .title a:hover {
    color: var(--color2);
}

.icon-box .desc {
    margin-bottom: 10px;
}

.icon-box .read-more {
    text-align: center;
}

.icon-box .read-more a {
    color: var(--color1);
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
}

.icon-box .read-more a:hover {
    color: var(--color2);
}

.icon-box:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 0px;
    height: 4px;
    background-color: var(--color2);
    transition: all 1000ms ease;
}

.icon-box:after {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    width: 0px;
    height: 4px;
    background-color: var(--color2);
    transition: all 1000ms ease;
}

.icon-box:hover::before,
.icon-box:hover::after {
    width: 100%;
}

/* blog home */

.blog-home .button1 {
    text-align: center;
    margin-top: 15px;
}

/* testimonials home */

.comment-box-area .col {
    height: 100%;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.comment-box .quote {
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
    background-color: var(--color2);
    color: white;
    height: 100%;
}

.comment-box .quote:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: -20px;
    border-top: 20px solid var(--color2);
    border-right: 20px solid transparent;
}

.comment-box .items {
    display: flex;
}

.comment-box .picture img {
    border-radius: 50%;
    min-width: 80px;
    min-height: 80px;
    max-height: 80px;
    max-width: 80px;
}

.comment-box .text {
    margin-left: 10px;
    margin-top: 5px;
}

.comment-box .text .name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color1);
}

.testimonials-home .button1 {
    text-align: center;
    margin-top: 35px;
}

/* home sss */

.sss-home .sss-title {
    color: var(--color1);
}

.sss-home .sss-title:before {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f107";
    margin-right: 10px;
}

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

.sss-home .card-header {
    background-color: white;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: solid 1px #ecebeb;
}

.sss-home .card-body {
    background-color: white;
    border: solid 1px #ecebeb;
    padding: 10px;
    line-height: 26px;
}

.sss-home .button1 {
    text-align: center;
}

/* video gallery home */

.video-box-area {
    display: flex;
    justify-content: center;
}

.video-box-area>* {
    margin-bottom: 40px;
}

.video-box-area .col {
    height: 100%;
    padding-bottom: 10px;
}

.video-box-area .owl-carousel .owl-stage {
    display: flex;
}

.video-box2 {
    position: relative;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.video-box2 .picture {
    position: relative;
    border-radius: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.40);
}

.video-box2 .image {
    position: relative;
    overflow: hidden;
    margin: 0px;
    border-radius: 20px;
}

.video-box2 .image img {
    position: relative;
    width: 100%;
}

.video-box2 .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    line-height: 80px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.video-box2 .overlay-box:hover {
    background: rgba(0, 0, 0, 0.45);
}

.video-box2 span {
    position: relative;
    width: 80px;
    height: 80px;
    top: 43%;
    z-index: 99;
    color: white;
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    padding-left: 4px;
    padding-top: 3px;
    background-color: var(--color2);
    display: inline-block;
    margin-top: -40px;
    transition: all 900ms ease;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.video-box2:hover span {
    transform: rotate(360deg);
}

.video-box2 .title {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
}

.video-box2 .title a {
    color: var(--color1);
    font-size: 18px;
    font-weight: 600;
}

.video-box2 .title a:hover {
    color: var(--color2);
}

.video-gallery-home .button1 {
    text-align: center;
}

/* gallery home */

.gallery-home .general-box {
    background-color: transparent;
    box-shadow: none;
}

.gallery-home .general-box:before {
    display: none;
}

.gallery-home .general-box:after {
    display: none;
}

.gallery-home .button1 {
    text-align: center;
}

/* our team home */

.our-team-box {
    border: solid 1px #ecebeb;
    background-color: white;
}

.our-team-box:hover {
    opacity: 0.8;
    transition: all .3s ease;
}

.our-team-box .picture {
    position: relative;
}

.our-team-box .picture .infos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    z-index: 1;
}

.our-team-box .picture .infos:before {
    background-color: var(--color2);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    opacity: 0.7;
    z-index: -1;
}

.our-team-box .picture .infos .name {
    font-size: 18px;
    font-weight: 700;
    padding: 0 10px;
    margin-top: 3px;
}

.our-team-box .picture .infos .name a {
    color: white;
}

.our-team-box .picture .infos .name a:hover {
    opacity: 0.8;
}


.our-team-box .picture .infos .job {
    font-size: 13px;
    margin-bottom: 10px;
    padding: 0 10px;
}

.our-team-home .button1 {
    margin-top: 30px;
    text-align: center;
}

/* instagram home */

.inst-item:hover {
    opacity: 0.8;
    transition: all .3s ease;
}

.instagram-home .button1 {
    margin-top: 30px;
    text-align: center;
}

.instagram-slider .inst-slide {
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
}

.instagram-slider .swiper-wrapper {
    z-index: 1;
}

.instagram-slider .owl-prev,
.instagram-slider .owl-next {
    z-index: 20;
}

.instagram-slider-wrap {
    position: relative;
    width: 100%;
}

.instagram-slider.swiper {
    padding-bottom: 40px;
}

.instagram-home .instagram-slider-wrap .swiper-pagination {
    bottom: 5px !important;
}

/* referance home */

.referance-home .owl-desk .owl-dots {
    bottom: -20%;
}

.ref-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    height: 150px;
    background-color: white;
    border: solid 1px #ecebeb;
}

.ref-box:hover {
    opacity: 0.8;
    transition: all .3s ease;
}

.ref-box img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    max-height: 100%;
}

.referance-home .button1 {
    text-align: center;
    margin-top: 40px;
}

/* cta */

.cta {
    background-color: var(--color3);
}

.cta .items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.cta .items .left {
    color: white;
    font-size: 25px;
    font-weight: 700;
}

/* footer */

.footer {
    background-color: var(--color2);
    padding: 40px 0;
    color: white;
    position: relative;
}

.footer .left .logo {
    margin-bottom: 15px;
    text-align: center;
}

.footer .left .desc {
    text-align: justify;
}

.footer .footer-title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 33px;
    padding-bottom: 7px;
}

.footer .footer-title:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 6px;
    background-color: white;
    bottom: 0;
}

.footer .footer-title:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: white;
    bottom: 2px;
    left: 0;
}

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

.footer .center ul li {
    width: 50%;
    float: left;
    margin-bottom: 10px;
}

.footer .center ul li a {
    position: relative;
    color: white;
    display: inline-block;
    padding-left: 12px;
}

.footer .center ul li a:hover {
    opacity: 0.7;
}

.footer .center ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 24%;
    font-size: 8px;
}

.footer .right ul .hl {
    width: 30%;
    float: left;
    font-weight: 700;
}

.footer .right ul .text {
    width: 70%;
    float: left;
    margin-bottom: 10px;
}

.footer .right ul li a {
    color: white;
}

.footer .right ul li a:hover {
    opacity: 0.7;
}

.footer-end .end-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-end {
    background-color: var(--color3);
    color: white;
    padding: 10px 0;
}

.footer-end a {
    color: white;
}

.footer-end a:hover {
    opacity: 1;
}

.footer-end .agency-link {
    color: #fff;
}

.footer-end .agency-link .agency-brand {
    color: var(--color2);
}

/* breadcrumb */

.bredcrumb1 {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}

.bredcrumb1:before {
    background-color: black;
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.7;
}

.bredcrumb1 .title {
    text-align: left;
    color: white;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 16px #000000;
}

.bredcrumb1 ul {
    display: flex;
    margin: 0px;
    padding: 0px;
    color: white;
    padding-left: 15px;
    position: absolute;
    bottom: 60px;
}

.bredcrumb1 ul li {
    list-style: none;
    font-size: 14px;
}

.bredcrumb1 ul li a {
    color: white;
    font-size: 14px;
}

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

.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;
}

/* text area */

.text-area-box {
    padding: 40px;
    border: solid 1px #ecebeb;
    background-color: white;
    margin-top: -40px;
    margin-bottom: 50px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.seo-text-area-box {
    padding: 40px;
    border: solid 1px #ecebeb;
    background-color: white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.text-area img {
    max-width: 100%;
    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";
    font-weight: 900;
    color: var(--color2);
    font-weight: 700;
    margin-right: 7px;
}

/* sidebar area */

.sidebar-area {
    position: sticky;
    top: 90px;
    background-color: white;
    padding: 40px;
    border: solid 1px #ecebeb;
    margin-top: -40px;
    margin-bottom: 50px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 2px;
    color: var(--color1);
    position: relative;
}

.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";
    font-weight: 900;
    color: var(--color2);
    font-weight: 700;
    margin-right: 7px;
}

.sidebar-menu ul li a {
    color: var(--color1);
}

.sidebar-menu ul li a:hover {
    color: var(--color2);
}

.sidebar-iletisim-alani .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 2px;
    color: var(--color1);
    position: relative;
}

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

.sidebar-iletisim-alani a {
    display: block;
    margin-bottom: 10px;
    color: var(--color1);
}


.sidebar-iletisim-alani a :hover {
    color: var(--color2);
}

.sidebar-iletisim-alani i {
    width: 20px;
    text-align: center;
}

/* FORM */
.form-area {
    background: white;
    height: 100%;
}

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

.form-area input.form-control {
    width: 100%;
    background: white;
    border: solid 1px #ecebeb;
    height: 40px;
    margin-bottom: 15px;
    padding: 0 10px;
    outline: none;
}

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

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

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

.form-area .nobot {
    display: flex;
    justify-content: 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);
    border-radius: 5px;
    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 */

.references-page .ref-box {
    margin-bottom: 30px;
}

/* testimonials page */

.testimonials-form {
    border: solid 1px #ecebeb;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.testimonials-form .slogan {
    font-weight: 700;
    color: var(--color1);
    font-size: 18px;
}

.testimonials-page .comment-box {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: solid 2px #ecebeb;
}

/* pagination */

.pagination-area {
    display: flex;
    justify-content: center;
}

.pagination-area ul.pagination {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.pagination-area li.page-item {
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-bottom: 10px;
}

.pagination-area li.page-item a {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--color2);
    background-color: white;
    border: 1px solid #ecebeb;
}

.pagination-area .page-item.active a {
    background-color: var(--color2);
    color: white;
}

/* our team page */

.our-team-box-2 {
    border-bottom: solid 2px #ecebeb;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

.our-team-box-2 .infos {
    display: flex;
}

.our-team-box-2 .infos .item1 {
    font-weight: 600;
    min-width: 130px;
    position: relative;
    color: var(--color1);
}

.our-team-box-2 .infos .item1:after {
    content: ":";
    position: absolute;
    right: 0;
    margin-right: 10px;
}

.our-team-box-2 .read-more {
    position: absolute;
    right: 10px;
    bottom: 0px;
}

.our-team-box-2 .read-more a {
    display: inline-block;
    padding: 10px;
    font-weight: 500;
    position: relative;
    color: var(--color2);
}

.our-team-box-2 .read-more a:hover {
    color: var(--color1);
}

.our-team-box-2 .read-more a:after {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    right: -5px;
    top: 11px;
    transition: all 0.4s ease-in-out;
}

.our-team-box-2 .read-more a:hover:after {
    right: -10px;
}

/* bank number page */

.hesap-card {
    background-color: white;
    margin-bottom: 20px;
    padding: 10px;
}

.hesap-card .hesap-images {
    text-align: center;
}

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

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

.hesap-card .hesap-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 9px;
    min-width: 155px;
    position: relative;
    color: var(--color1);
}

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

/* contact page */

.contact-page .form-title {
    color: var(--color1);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-page .info-item {
    display: flex;
    align-items: center;
    color: var(--color1);
    margin-bottom: 30px;
}

.contact-page .info-item .icon {
    font-size: 40px;
    min-width: 70px;
    color: var(--color2);
    text-align: center;
}

.contact-page .info-item p {
    margin: 0;
    color: var(--color1);
    font-size: 17px;
}

.contact-page a {
    color: var(--color1);
    font-size: 17px;
}

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

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

.contact-page .contact-infos span {
    font-weight: 700;
    margin-right: 10px;
}

.contact-infos {
    height: 100%;
}

/* error page */

.error-area {
    text-align: center;
}

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

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

@media only screen and (min-width: 900px),
(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: 900px),
(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) {

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

    .mobile-header-icons a i {
        width: 33px;
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 19px;
        border-radius: 5px;
    }

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

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

    .mobile-header-hamburger .hamburger-toggle {
        background: transparent;
        padding: 0px;
        font-size: 32px;
        margin: 0 10px;
        border: none;
    }

    .mobile-nav {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        background: rgba(255, 255, 255, 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: white;
        width: 85%;
        height: 100%;
        cursor: copy;
        overflow-y: scroll;
        border-right: solid 5px #ecebeb;
    }

    .mobile-nav-logo {
        padding-left: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        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: var(--color1);
        font-size: 15px;
        font-weight: 700;
    }

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

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

    .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);
        margin-right: 10px;
        padding: 10px 20px;
    }

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

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

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

    .mobile-nav-login a {
        position: absolute;
        bottom: 0;
        left: 0;
        color: #b5bbc2;
        padding-left: 25px;
        padding-bottom: 20px;
        font-weight: 600;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mobile-nav-login a svg {
        font-size: 18px;
        margin-right: 5px;
    }

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

    .mobile-open-logo {
        text-align: center;
    }

    .mobile-open-logo img {
        max-height: 90px;
    }

    .cta-link {
        line-height: 45px;
        display: block;
        color: white;
        background: var(--color2);
        text-align: center;
        margin: 20px;
        font-weight: 600;
        font-size: 20px;
    }

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

    .mobile-close-menu i {
        color: black;
        font-size: 32px;
    }

    .mobile-lang {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .mobile-lang img {
        max-height: 25px;
        min-height: 25px;
    }

    .mobile-social {
        padding: 0px 5px 10px 5px;
        display: flex;
        justify-content: space-around;
        border-bottom: solid 1px #ecebeb;
        font-size: 25px;
    }

    .mobile-social a {
        color: var(--color2);
    }

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

    .header-mobile {
        display: block;
    }

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

    .header-mobile .header-mobile-logo img {
        max-width: 145px;
        max-height: 75px;
    }

    /* general */

    .fly-alert {
        top: 30px;
        left: 10px;
        right: 10px;
        font-size: 16px;
        text-align: center;
    }

    .footer-sticky-bar {
        display: block;
    }

    .p70 {
        padding: 40px 0;
    }

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

    .section-top-title .section-title {
        font-size: 22px;
    }

    .footer-sticky-bar {
        display: block;
    }

    #scroll-top button {
        width: 30px;
        height: 30px;
    }

    #scroll-top button i {
        font-size: 15px;
    }

    /* slider */

    .slider {
        display: none;
    }

    .owl-prev {
        left: 0px;
    }

    .owl-next {
        right: 0px;
    }

    .slider-mobile {
        display: block;
    }

    .owl-desk .owl-dots {
        display: none;
    }

    .owl-desk .owl-prev {
        left: 0px;
    }

    .owl-desk .owl-next {
        right: 0px;
    }

    /* header */

    .header-top {
        display: none;
    }

    .header-menu {
        display: none;
    }

    /* about us */

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

    .about-us-home:after {
        display: none;
    }

    .about-us-home .text {
        margin-bottom: 40px;
    }

    .about-us-home .button1 {
        text-align: center;
    }

    /* full width slogan home */

    .full-width-slogan-home .button1 {
        text-align: center;
    }

    /* why us home */

    .why-us-home .section-top-title {
        margin-left: 15px;
        margin-right: 15px;
    }

    .why-us-home:before {
        width: 100%;
    }

    .why-us-box {
        margin-top: -80px;
        margin-bottom: 120px;
        margin-right: 15px;
    }

    .why-us-box .icon {
        margin-left: 15px;
    }

    .why-us-box:last-child {
        margin-bottom: 0px;
    }

    /* product home */

    .product-home .button1 {
        margin-top: -15px;
    }

    /* blog home */

    .blog-home .button1 {
        margin-top: -30px;
    }

    /* testimonials home */

    .testimonials-home .owl-prev {
        top: 90%;
    }

    .testimonials-home .owl-next {
        top: 90%;
    }

    /* video gallery home */

    .video-gallery-home .button1 {
        margin-top: -25px;
    }

    /* galler home */

    .gallery-home .button1 {
        margin-top: -20px;
    }

    /* cta */

    .cta .items {
        display: block;
        text-align: center;
    }

    .cta .items .left {
        margin-bottom: 15px;
        font-size: 18px;
    }

    /* footer */

    .footer .left {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .footer-end .end-area {
        display: block;
        text-align: center;
        margin-bottom: 40px;
    }

    /* breadcrumb */

    .bredcrumb1 .title {
        text-align: center;
    }

    .bredcrumb1 ul {
        width: 100%;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    /* text area */

    .text-area-box {
        padding: 15px;
    }

    /* sidebar */

    .sidebar-area {
        padding: 15px;
    }

    .seo-text-area-box {
        padding: 15px;
    }

    /* referance page */

    .references-page .col-6:nth-child(odd) {
        padding-right: 8px;
    }

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

    /* testimonials page */

    .testimonials-form {
        display: block;
        text-align: center;
    }

    .testimonials-form .slogan {
        margin-bottom: 15px;
    }

    /* our team list page */

    .our-team-box-2 .picture {
        text-align: center;
        margin-bottom: 10px;
    }

    .our-team-box-2 .read-more {
        position: relative;
        text-align: center;
        width: 100%;
    }

    /* contact page */

    .contact-page .form-title {
        font-size: 22px;
    }

    .contact-page .info-item .icon {
        font-size: 25px;
        min-width: 40px;
    }

    .contact-page .maps {
        margin-top: 0px;
        margin-bottom: -10px;
    }

}

/* ipad */

@media (min-width: 768px) and (max-width: 770px) {

    .rotate {
        flex-direction: row;
    }

    .why-us-box {
        margin-top: 0;
        margin-bottom: 30px;
    }

}

/* ipad pro */

@media (min-width: 1024px) and (max-width: 1030px) {

    .rotate {
        flex-direction: row;
    }

    .why-us-box {
        margin-top: 0;
        margin-bottom: 30px;
    }

}

.video-box .image {
    border-radius: 0;
}

.general-box .picture {
    border-radius: 0;
}

.general-box .picture .image {
    border-radius: 0;
}

.general-box .picture .overlay-box {
    border-radius: 0;
}

.footer {
    background-color: #333;
}

.footer-end {
    background-color: black;
}

.cta {
    background-color: #0a0e7b;
}

.section-top-title .section-title {
    text-align: center;
}

.section-top-title .section-title:before {
    left: 50%;
    transform: translateX(-50%);
}

.section-top-title .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-desc {
    text-align: center;
}

.about-us-home .section-title {
    text-align: left;
}

.about-us-home .section-top-title .section-title:before {
    left: 0%;
    transform: translateX(0);
}

.about-us-home .section-top-title .section-title:after {
    left: 0;
    transform: translateX(0);
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.cta .button1 a {
    background: #333333;
}

.cta .button1 a:hover {
    color: white;
}

.product-detail .general-box {
    margin-bottom: 30px;
    background-color: transparent;
    box-shadow: none;
}

.product-detail .general-box .picture {
    box-shadow: none;
}

.product-detail .general-box .picture .image {
    border-radius: 0;
}

.product-detail .general-box .picture .overlay-box {
    border-radius: 0;
    height: 93%;
}

.product-detail .general-box:before {
    position: relative;
}

.product-detail .general-box:after {
    position: relative;
}

@media only screen and (max-width: 900px),
(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) {
    .owl-next {
        right: 10px;
        top: 90%;
    }

    .owl-prev {
        left: 10px;
        top: 90%;
    }

    .owl-theme .owl-dots .owl-dot {
        display: none;
    }
}

.footer .left .desc {
    font-size: 15px;
}

.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: calc(100% - 40px);
    margin-bottom: 20px;
    position: absolute;
    z-index: 9;
    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
}

.captcha-tooltip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    position: relative;
    margin-left: 12px;
    vertical-align: middle;
    background-color: #F44336;
    color: #fff;
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: rgba(0,0,0,.2) 0 4px 10px;
    animation: fadeInLeft .3s ease;
}

.captcha-tooltip:before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: solid transparent;
    border-width: 7px 8px 7px 0;
    border-right-color: #F44336;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-25%, 0, 0);
        transform: translate3d(-25%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-25%, 0, 0);
        transform: translate3d(-25%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-25%, 0, 0);
        transform: translate3d(-25%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-25%, 0, 0);
        transform: translate3d(-25%, 0, 0);
    }
}

body.native-lightbox-open {
    overflow: hidden;
}

.native-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
}

.native-lightbox.is-open {
    display: flex;
}

.native-lightbox-image {
    max-width: calc(100vw - 120px);
    max-height: calc(100vh - 80px);
    object-fit: contain;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.native-lightbox-close,
.native-lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
}

.native-lightbox-close {
    top: 18px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.native-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
}

.native-lightbox-prev {
    left: 20px;
}

.native-lightbox-next {
    right: 20px;
}

.swiper {
    overflow: hidden;
}

.slider-nav-button {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%);
    background-color: var(--color2);
    border-radius: 0;
    color: white;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.slider-nav-button::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
    display: block;
}

.slider-nav-prev::before {
    content: '\2039' !important;
}

.slider-nav-next::before {
    content: '\203A' !important;
}

.slider-nav-button:hover {
    opacity: 0.8;
    transition: all .3s ease;
}


.swiper-pagination {
    position: absolute;
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 0 !important;
    width: auto !important;
}

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

.swiper-pagination-bullet-active {
    background-color: var(--color1);
}

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

/* === Maintenance Mode === */
html.maintenance,
html.maintenance body,
html.maintenance .full-height {
    height: 100vh;
}

html.maintenance body {
    background-color: #fff;
    color: #636b6f;
    font-family: Raleway, sans-serif;
    font-weight: 100;
    margin: 0;
}

html.maintenance .flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

html.maintenance .position-ref {
    position: relative;
}

html.maintenance .content {
    text-align: center;
}

html.maintenance .title {
    font-size: 36px;
    padding: 20px;
}