<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary: #198788;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.text-primary {
    color: var(--primary) !important;
}
h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;

}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}


.social-icons {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    background: white;
    padding: 1% 3%;
    border-radius: 20px;
}

.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-container .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    text-decoration: none;
    margin-bottom: 5px;
}

.icon-container span {
    font-size: 14px;
    color: black; /* YazÄ± rengini beyaz yaptÄ±m; isterseniz deÄŸiÅŸtirebilirsiniz */
}

.social-icons .whatsapp {
    background-color: #25D366; /* WhatsApp Renk Kodu */
}

.social-icons .phone {
    background-color: #4CAF50; /* Telefon iÃ§in yeÅŸil bir ton */
}

.social-icons .facebook {
    background-color: #3b5998; /* Facebook Renk Kodu */
}

.social-icons .instagram {
    background: #833ab4;
    background: linear-gradient(
        to right,
        #833ab4,#fd1d1d,#fcb045
    );
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .social-icons {
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        gap: 20px;
        z-index: 10;
        background: white;
        padding: 2% 5%;
        border-radius: 20px;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--primary);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-list {
    margin-left: 5px;
    margin-right: 5px;
}
.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--primary);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 70px;
    bottom: -120px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -50px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    top: -28px;
    left: 0;
    transform: skewY(-3deg);
    background: var(--primary);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }

    #header-carousel .carousel-item {
            position: relative;
            min-height: 850px;
        }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #000000;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #000000;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/* Project # 01 */
.project-section {
    position: relative;
    z-index: 1;
}

.single-project-wrapper:hover .project-details {
    transition: all 0.4s;
    transform: translateY(0);
    bottom: 40px;
    opacity: 1;
}

.single-project-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

@media screen and (max-width:767px) {
    .single-project-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 5px;
        padding: 0!important;
    }
    .single-project-wrapper:nth-child(odd){
        margin-left: 2px;
    }
}

.single-project-wrapper:hover .project-bg {
    transform: scale(1.07);
}

.project-bg h4{
    font-weight: 400 !important;
    font-size: 16px !important;
}
.project-details {
    position: absolute;
    transition: all 0.4s;
    transform: translateY(100%);
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 20px 25px 15px;
    width: 80%;
    max-width: 80%;
    background-color: #fff;
    opacity: 0;
    text-align: center;
}
.project-details h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .project-details h4 {
        font-size: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .project-details h4 {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .project-details {
        width: 85%;
        max-width: 85%;
    }
}

.single-project-wrap:hover .project-details {
    transition: all 0.4s;
    transform: translateY(0);
    bottom: 40px;
    opacity: 1;
}

.single-project-wrap {
    position: relative;
}

.single-project-wrap:hover .project-bg {
    transform: scale(1.07);
}

.project-bg {
    transition: all 0.5s ease;
    transform: scale(1);
}

.mt-40 {
    margin-top: 40px;
}

* {box-sizing: border-box;}

.img-comp-container {
    position: relative;
    height: 200px; /*should be the same height as the images*/
}

.img-comp-img {
    position: absolute;
    width: auto;
    height: auto;
    overflow:hidden;
}

.img-comp-img img {
    display:block;
    vertical-align:middle;
}

.img-comp-slider {
    position: absolute;
    z-index:9;
    cursor: ew-resize;
    /*set the appearance of the slider:*/
    width: 40px;
    height: 40px;
    background-color: #2196F3;
    opacity: 0.7;
    border-radius: 50%;
}

.circle-img {
    width: 100px !important;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid var(--primary)
}
.district-name {
    text-align: center;
    margin-top: 10px;
}
.carousel-item {
    text-align: center;
}

/* fix blank or flashing items on carousel */
.area-slider .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}

/* end fix */
.area-slider .owl-nav &gt; div {
    margin-top: -50px;
    position: absolute;
    top: 50%;
    color: #198788;
}
.area-slider .owl-nav {
    z-index: 10;
    position: relative;
}
.area-slider &gt; .owl-nav .owl-prev, .owl-nav .owl-next {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.area-slider &gt; .owl-nav i {
    font-size: 52px;
}

.area-slider &gt; .owl-nav .owl-prev {
    left: -30px;
}

.area-slider &gt; .owl-nav .owl-next {
    right: -30px;
}


.pagination__item {
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    font-size: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    margin: 0 5px;
    transition: 0.2s ease-in-out;
}
.pagination__item.is-current, .pagination__item:hover {
    background-color: #fff;
}
.container {
    position: relative;
    margin: 0 auto;
}
@media (max-width: 699px) {
    .container {
        padding-right: 40px;
        padding-left: 40px;
    }
}
@media (min-width: 700px) and (max-width: 1599px) {
    .container {
        padding-right: 7.5rem;
        padding-left: 7.5rem;
        max-width: 140rem;
    }
}
@media (min-width: 1600px) {
    .container {
        padding-right: 9.5625rem;
        padding-left: 9.5625rem;
        max-width: 144.125rem;
    }
}
.background-absolute {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
}
.slideshow {
    position: relative;
    color: #fff;
    background-color: #1e1e22;
    overflow: hidden;
    height: 100vh;
    min-height: 400px;
}
.slideshow__slide {
    visibility: hidden;
    transition: visibility 0s 1.7s;
}
.slideshow__slide.is-current {
    visibility: visible;
    transition-delay: 0s;
}
@media (max-width: 699px) {
    .slideshow .slideshow__slide {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}
@media (min-width: 700px) {
    .slideshow .slideshow__slide {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}
.slideshow__slide-background-load-wrap {
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate3d(0, 100%, 0);
    overflow: hidden;
}
.is-loaded .slideshow__slide-background-load-wrap {
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
}
.slideshow__slide.is-prev .slideshow__slide-background-parallax, .slideshow__slide.is-next .slideshow__slide-background-parallax {
    transform: none !important;
}
.slideshow__slide.is-prev-section .slideshow__slide-background-parallax, .slideshow__slide.is-next-section .slideshow__slide-background-parallax {
    transform: none !important;
}
.slideshow__slide-background-load {
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate3d(0, -50%, 0);
}
.is-loaded .slideshow__slide-background-load {
    transform: translate3d(0, 0, 0);
}
.slideshow__slide-background-wrap {
    transition: -webkit-transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, -webkit-transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slideshow__slide.is-prev .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}
.slideshow__slide.is-next .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.slideshow__slide.is-prev-section .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    transition: none;
}
.slideshow__slide.is-next-section .slideshow__slide-background-wrap {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    transition: none;
}
.slideshow__slide-background {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
    transform: scale(1);
    overflow: hidden;
}
.slideshow__slide.is-prev .slideshow__slide-background, .slideshow__slide.is-next .slideshow__slide-background {
    transform: scale(0.5);
    transition-delay: 0s;
}
.slideshow__slide.is-prev-section .slideshow__slide-background, .slideshow__slide.is-next-section .slideshow__slide-background {
    transform: scale(0.5);
    transition-delay: 0s;
    transition: none;
}
.slideshow__slide-image-wrap {
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
    transform: translate3d(0, 0, 0);
}
.slideshow__slide.is-prev .slideshow__slide-image-wrap {
    transform: translate3d(0, 50%, 0);
}
.slideshow__slide-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
    transform: scale(1);
}
.slideshow__slide.is-prev .slideshow__slide-image, .slideshow__slide.is-next .slideshow__slide-image {
    transform: scale(1.25);
    transition-delay: 0s;
}
.slideshow__slide.is-prev-section .slideshow__slide-image, .slideshow__slide.is-next-section .slideshow__slide-image {
    transform: scale(1.25);
    transition-delay: 0s;
    transition: none;
}
.slideshow__slide-image::before, .slideshow__slide-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.35;
}
.slideshow__slide-image::before {
    background-color: #1e1e22;
}
.slideshow__slide-image::after {
    background: linear-gradient(to bottom, transparent 0%, #1e1e22 100%);
}
.slideshow__slide.is-prev .slideshow_container, .slideshow__slide.is-next .slideshow_container {
    transform: none !important;
}
.slideshow__slide.is-prev-section .slideshow_container, .slideshow__slide.is-next-section .slideshow_container {
    transform: none !important;
}
.slideshow__slide-caption-text {
    position: relative;
    height: 100%;
    padding-top: 33vh;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transform: translate3d(0, 0, 0);
}
.slideshow__slide.is-prev .slideshow__slide-caption-text {
    transform: translate3d(0, -100%, 0);
}
.slideshow__slide.is-next .slideshow__slide-caption-text {
    transform: translate3d(0, 100%, 0);
}
.slideshow__slide.is-prev-section .slideshow__slide-caption-text {
    transform: translate3d(0, -100%, 0);
    transition: none;
}
.slideshow__slide.is-next-section .slideshow__slide-caption-text {
    transform: translate3d(0, 100%, 0);
    transition: none;
}
.slideshow__slide-caption {
    position: relative;
    height: 100%;
    transform: translate3d(0, 100%, 0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.is-loaded .slideshow__slide-caption {
    transform: translate3d(0, 0, 0);
}
.slideshow__slide-caption-title {
    line-height: 1;
}
@media (max-height: 500px) {
    .slideshow__slide-caption-title {
        margin-bottom: 0 !important;
    }
}
@media (max-width: 699px) {
    .slideshow__slide-caption-title {
        font-size: 40px;
        margin-bottom: 150px;
    }
    .slideshow.-full .slideshow__slide-caption-title {
        margin-bottom: 30px;
    }
}
@media (min-width: 700px) {
    .slideshow__slide-caption-title {
        font-size: 5.625rem;
        margin-bottom: 1.25rem;
    }
}
@media (min-width: 700px) and (max-width: 749px) {
    .slideshow__slide-caption-title {
        font-size: 4.375rem;
    }
}
@media (min-width: 1600px) {
    .slideshow__slide-caption-title {
        font-size: 6.25rem;
    }
}
.slideshow__slide-caption-title.-full {
    width: 100%;
}
.slideshow__slide-caption-subtitle {
    display: inline-block;
    padding: 1.875rem 0;
}
.slideshow__slide-caption-subtitle.-load {
    transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    -webkit-transform: translate3d(0, 3.75rem, 0);
    transform: translate3d(0, 3.75rem, 0);
}
.is-loaded .slideshow__slide-caption-subtitle.-load {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
body[data-route-option="prev-section"] .slideshow__slide-caption-subtitle.-load, body[data-route-option="next-section"] .slideshow__slide-caption-subtitle.-load {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slideshow__slide-caption-subtitle-label {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    display: inline-block;
}
.o-hsub.-link:hover .slideshow__slide-caption-subtitle-label, .o-hsub-wrap:hover .slideshow__slide-caption-subtitle-label {
    transform: translateX(20px);
}
/* OLD */
.c-header-home_heading {
    line-height: 1;
}
@media (max-height: 500px) {
    .c-header-home_heading {
        margin-bottom: 0 !important;
    }
}
@media (max-width: 699px) {
    .c-header-home_heading {
        font-size: 40px;
        margin-bottom: 150px;
    }
    .c-header-home.-full .c-header-home_heading {
        margin-bottom: 30px;
    }
}
@media (min-width: 700px) {
    .c-header-home_heading {
        font-size: 5.625rem;
        margin-bottom: 1.25rem;
    }
}
@media (min-width: 700px) and (max-width: 749px) {
    .c-header-home_heading {
        font-size: 4.375rem;
    }
}
@media (min-width: 1600px) {
    .c-header-home_heading {
        font-size: 6.25rem;
    }
}
.c-header-home_heading.-full {
    width: 100%;
}
.c-header-home_subheading {
    display: inline-block;
    padding: 1.875rem 0;
}
.c-header-home_subheading.-load {
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transform: translate3d(0, 3.75rem, 0);
}
.is-loaded .c-header-home_subheading.-load {
    transform: translate3d(0, 0, 0);
}
body[data-route-option="prev-section"] .c-header-home_subheading.-load, body[data-route-option="next-section"] .c-header-home_subheading.-load {
    transform: translate3d(0, 0, 0);
}
.c-header-home_footer {
    z-index: 3;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

}
.c-header-home_controls, .c-header-home_buttons {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
    transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
@media (max-width: 699px) {
    .c-header-home_controls, .c-header-home_buttons {
        padding-bottom: 40px;
    }
}
@media (min-width: 700px) {
    .c-header-home_controls, .c-header-home_buttons {
        padding-bottom: 5.625rem;
    }
}
@media (min-width: 700px) and (max-width: 749px) {
    .c-header-home_controls, .c-header-home_buttons {
        padding-bottom: 3.75rem;
    }
}
.is-loaded .c-header-home_controls, .is-loaded .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
body[data-route-option="prev-section"] .c-header-home_controls, body[data-route-option="prev-section"] .c-header-home_buttons, body[data-route-option="next-section"] .c-header-home_controls, body[data-route-option="next-section"] .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.c-header-home_controls {
    transition-delay: 0.65s;
}
@media (min-width: 700px) {
    .c-header-home_controls {
        float: left;
    }
}
.c-header-home_buttons {
    transition-delay: 0.75s;
}
@media (max-width: 699px) {
    .c-header-home_buttons {
        margin-left: -20px;
        margin-right: -20px;
    }
}
@media (min-width: 1000px) {
    .c-header-home_buttons {
        float: right;
    }
}
@media (max-width: 699px) {
    .c-header-home_button {
        width: 50% !important;
    }
}
@media (min-width: 700px) {
    .c-header-home_button {
        width: 15.625rem;
    }
}
button, .c-header-filters_button, .o-button {
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    background: none;
    color: inherit;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    font: inherit;
    line-height: normal;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
button:hover, .c-header-filters_button:hover, .o-button:hover {
    text-decoration: none;
}
@media (min-width: 1200px) {
    body {
        height: 100%;
    }
}
@media (min-width: 1200px) {
    .o-scroll {
        height: 100%;
    }
}
::-moz-selection {
    background: #0084c0;
    color: #fff;
}
::selection {
    background: #0084c0;
    color: #fff;
}
img, svg {
    max-width: 100%;
}
a, .o-link {
    color: #1a0dab;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover, .o-link:hover {
    color: #13097c;
}
a.-normal, .o-link.-normal {
    color: currentColor;
    text-decoration: none;
}
a.-normal:hover, .o-link.-normal:hover {
    text-decoration: underline;
}
a.-blue:hover, .o-link.-blue:hover {
    text-decoration: none;
    color: #0084c0;
}
a.-hover, .o-link.-hover {
    position: relative;
    text-decoration: none;
    color: #fff;
}
a.-hover::after, .o-link.-hover::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    border-bottom: 1px solid;
    transform: scaleX(0);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center left;
}
a.-hover:hover::after, .o-link.-hover:hover::after {
    transform: scaleX(1);
}
p {
    margin: 0;
}
.o-wrap {
    overflow: hidden;
}
.o-page.-anim {
    transform: translate3d(0, 9.375rem, 0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.is-loaded .o-page.-anim {
    transform: translate3d(0, 0, 0);
}
.o-barba, .o-barba_container {
    height: 100%;
}
strong {
    font-weight: 700;
}
.js-parallax {
    transform: translateZ(0);
    will-change: transform;
}
.scroll-content {
    overflow: hidden;
}
.o-blockquote.-nomargin {
    margin: 0;
}
.o-action-link {
    display: block;
    padding-top: 12.8125rem;
    padding-bottom: 7.5rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
}
@media (max-width: 699px) {
    .o-action-link {
        font-size: 40px;
        padding-top: 120px;
    }
}
@media (max-width: 1199px) {
    .o-action-link {
        color: #1e1e22;
    }
}
@media (min-width: 700px) {
    .o-action-link {
        font-size: 5.625rem;
    }
}
@media (min-width: 1200px) {
    .o-action-link {
        color: #fff;
    }
}
.o-action-link:hover {
    color: #fff;
}
.o-action-link_label {
    display: inline-block;
    position: relative;
}
.o-action-link_label::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 0.1875rem solid;
    transform: scaleX(0);
    transform-origin: center left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.o-action-link:hover .o-action-link_label::after {
    transform: scaleX(1);
}
.o-h, .o-h1, .o-h2, .o-h3, .o-h4, .o-h5, .o-h6 {
    font-weight: 700;
    margin-top: 0;
    line-height: 1.1;
}
@media (max-width: 699px) {
     .o-h1 {
        font-size: 26px;
    }
}
@media (min-width: 700px) {
     .o-h1 {
        font-size: 60px;
    }
}
@media (min-width: 1600px) {
     .o-h1 {
        font-size: 4.375rem;
    }
}
@media (max-width: 1599px) {
    .o-h2 {
        font-size: 1.5625rem;
    }
}
@media (min-width: 1600px) {
    .o-h2 {
        font-size: 2.25rem;
    }
}
 .o-h3 {
    font-size: 1.5625rem;
}
 .o-h4 {
    font-size: 1rem;
}
 .o-h6 {
    font-size: 0.6875rem;
}
.o-hsub {
    font-size: 0.75rem;
    padding: 1.25rem 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}
.o-hsub::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    border-bottom: 1px solid;
    width: 1.5rem;
    background-color: #1e1e22;
    margin-right: 1.125rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center left;
}
.o-hsub.-link {
    color: #fff;
    text-decoration: none;
}
.o-hsub.-link:hover::before, .o-hsub-wrap:hover .o-hsub.-link::before {
    transform: scaleX(1.5);
}
.o-hsub.-link.-dark {
    color: #1e1e22;
}
.o-hsub.-link.-dark:hover {
    color: #1e1e22;
}
.o-hsub.-h {
    vertical-align: middle;
}
@media (max-width: 699px) {
    .o-hsub.-h {
        display: block;
        margin-top: 20px;
    }
}
@media (min-width: 700px) {
    .o-hsub.-h {
        margin-left: 2.5rem;
    }
}
.o-hsub_label {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    display: inline-block;
}
.o-hsub.-link:hover .o-hsub_label, .o-hsub-wrap:hover .o-hsub_label {
    transform: translateX(20px);
}
.is-loaded .o-loader {
    visibility: hidden;
    transition-delay: 0.6s;
}
.o-container {
    position: relative;
    margin: 0 auto;
}
@media (max-width: 699px) {
    .o-container {
        padding-right: 40px;
        padding-left: 40px;
    }
    .o-container.-small {
        padding-right: 20px;
        padding-left: 20px;
    }
}
@media (min-width: 700px) and (max-width: 1599px) {
    .o-container {
        padding-right: 7.5rem;
        padding-left: 7.5rem;
        max-width: 140rem;
    }
}
@media (min-width: 1600px) {
    .o-container {
        padding-right: 9.5625rem;
        padding-left: 9.5625rem;
        max-width: 144.125rem;
    }
}
.o-section {
    position: relative;
}
.o-section.-offset {
    margin-top: -9.375rem;
    background-color: #f6f6f6;
}
.o-section.-padding {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}
.o-section.-padding-top {
    padding-top: 7.5rem;
}
@media (max-width: 699px) {
    .o-section.-bottom {
        padding-bottom: 60px;
    }
}
@media (min-width: 700px) {
    .o-section.-bottom {
        padding-bottom: 7.5rem;
    }
}
.o-section.-left {
    margin-right: 15rem;
}
.o-section.-right {
    margin-left: 15rem;
}
.o-section.-left-large {
    margin-right: 22.5rem;
}
.o-section.-right.-padding {
    padding-left: 9.5625rem;
}
.o-section_image {
    position: relative;
    overflow: hidden;
}
.o-section_image.-small {
    padding-bottom: 57.144%;
}
.o-section_image.-large {
    padding-bottom: 55%;
}
.o-section_image.-padding-left {
    margin-left: 7.5rem;
}
.o-section_image.-left {
    margin-right: 15rem;
}
@media (max-width: 1599px) {
    .o-section_image.-left {
        margin-left: -7.5rem;
    }
}
@media (min-width: 1600px) {
    .o-section_image.-left {
        margin-left: -9.5625rem;
    }
}
.o-section_image.-right {
    margin-left: 15rem;
}
@media (max-width: 1599px) {
    .o-section_image.-right {
        margin-right: -7.5rem;
    }
}
@media (min-width: 1600px) {
    .o-section_image.-right {
        margin-right: -9.5625rem;
    }
}
.o-section_image img {
    width: 100%;
}
.o-grid {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
}
.o-grid.-margin {
    margin-left: -3.75rem;
}
.o-grid_item {
    display: inline-block;
    padding-left: 0;
    width: 100%;
    vertical-align: top;
    font-size: 1rem;
}
@media (max-width: 699px) {
    .o-grid_item.-button {
        width: 100%;
    }
}
@media (min-width: 700px) and (max-width: 999px) {
    .o-grid_item.-button {
        margin-bottom: 60px;
    }
}
@media (min-width: 1000px) {
    .o-grid_item.-button {
        width: 18.75rem;
    }
}
@media (max-width: 699px) {
    .o-grid_item.-button-content {
        margin-bottom: 30px;
    }
}
@media (min-width: 700px) and (max-width: 999px) {
    .o-grid_item.-button-content {
        margin-bottom: 60px;
    }
}
@media (min-width: 1000px) {
    .o-grid_item.-button-content {
        width: calc(100% - 18.75rem);
    }
}
.o-grid.-margin .o-grid_item {
    padding-left: 3.75rem;
}
@media (min-width: 700px) {
    .o-grid_item.-half {
        width: 50%;
    }
}
@media (min-width: 700px) and (max-width: 1199px) {
    .o-grid_item.-half.-large {
        width: 100%;
    }
}
@media (min-width: 700px) and (max-width: 999px) {
    .o-grid_item.-half.-medium {
        width: 100%;
    }
}
@media (min-width: 700px) and (max-width: 1199px) {
    .o-grid_item.-third {
        width: 50%;
    }
}
@media (min-width: 1200px) {
    .o-grid_item.-third {
        width: 33.3333333333%;
    }
}
.o-form {
    padding-bottom: 11.25rem;
}
@media (max-width: 699px) {
    .o-form_item {
        margin-bottom: 35px;
    }
}
@media (min-width: 700px) {
    .o-form_item {
        margin-bottom: 2.9375rem;
    }
}
.o-form_fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}
@media (max-width: 699px) {
    .o-form_fieldset {
        margin-bottom: 20px;
    }
}
@media (min-width: 700px) {
    .o-form_fieldset {
        margin-bottom: 3.75rem;
    }
}
.o-form_button {
    text-align: right;
}
.o-label {
    display: block;
    height: 100%;
    color: #b3b3b3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.875rem;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 699px) {
    .o-label {
        font-size: 9px;
    }
}
@media (min-width: 700px) {
    .o-label {
        font-size: 0.5625rem;
    }
}
.o-input-wrap .o-label {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.o-input:focus ~ .o-label, .o-select:focus ~ .o-label, .o-textarea:focus ~ .o-label, .o-label.is-active {
    -webkit-transform: translateY(-1.875rem);
    -ms-transform: translateY(-1.875rem);
    transform: translateY(-1.875rem);
}
.o-input.has-error ~ .o-label, .has-error.o-select ~ .o-label, .has-error.o-textarea ~ .o-label {
    color: #cc3d3d;
}
.o-input-wrap {
    position: relative;
}
.o-input, .o-select, .o-textarea {
    padding: 0.875rem;
    background-color: transparent;
    border-bottom: 1px solid #b3b3b3;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 699px) {
    .o-input, .o-select, .o-textarea {
        font-size: 14px;
    }
}
@media (min-width: 700px) {
    .o-input, .o-select, .o-textarea {
        font-size: 0.875rem;
    }
}
.o-input::-webkit-input-placeholder, .o-select::-webkit-input-placeholder, .o-textarea::-webkit-input-placeholder {
    color: #b3b3b3;
}
.o-input:-ms-input-placeholder, .o-select:-ms-input-placeholder, .o-textarea:-ms-input-placeholder {
    color: #b3b3b3;
}
.o-input::placeholder, .o-select::placeholder, .o-textarea::placeholder {
    color: #b3b3b3;
}
.o-input.-search, .-search.o-select, .-search.o-textarea {
    background-color: transparent;
    color: #fff;
    font-weight: 700;
    border-bottom: none;
}
@media (max-width: 699px) {
    .o-input.-search, .-search.o-select, .-search.o-textarea {
        font-size: 26px;
    }
}
@media (min-width: 700px) {
    .o-input.-search, .-search.o-select, .-search.o-textarea {
        font-size: 3.75rem;
    }
}
.o-input.-search::-webkit-input-placeholder, .-search.o-select::-webkit-input-placeholder, .-search.o-textarea::-webkit-input-placeholder {
    color: #000;
}
.o-input.-search:-ms-input-placeholder, .-search.o-select:-ms-input-placeholder, .-search.o-textarea:-ms-input-placeholder {
    color: #000;
}
.o-input.-search::placeholder, .-search.o-select::placeholder, .-search.o-textarea::placeholder {
    color: #000;
}
.-mobile .o-input.-search, .-mobile .-search.o-select, .-mobile .-search.o-textarea {
    font-size: 26px;
    padding: 0;
}
.o-input.-search.-light, .-search.-light.o-select, .-search.-light.o-textarea {
    color: #1e1e22;
}
.o-input.-search.-light::-webkit-input-placeholder, .-search.-light.o-select::-webkit-input-placeholder, .-search.-light.o-textarea::-webkit-input-placeholder {
    color: #b3b3b3;
}
.o-input.-search.-light:-ms-input-placeholder, .-search.-light.o-select:-ms-input-placeholder, .-search.-light.o-textarea:-ms-input-placeholder {
    color: #b3b3b3;
}
.o-input.-search.-light::placeholder, .-search.-light.o-select::placeholder, .-search.-light.o-textarea::placeholder {
    color: #b3b3b3;
}
.o-input.has-error, .has-error.o-select, .has-error.o-textarea {
    border-color: #cc3d3d;
}
.o-input:focus, .o-select:focus, .o-textarea:focus {
    outline: none;
}
.o-input-line {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #1e1e22;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}
.o-input:focus ~ .o-input-line, .o-select:focus ~ .o-input-line, .o-textarea:focus ~ .o-input-line {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.o-input-lines::before, .o-input-lines::after {
    content: "";
    position: absolute;
    bottom: 0;
    border-right: 1px solid #b3b3b3;
    height: 0.375rem;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.o-input.has-error ~ .o-input-lines::before, .has-error.o-select ~ .o-input-lines::before, .has-error.o-textarea ~ .o-input-lines::before, .o-input.has-error ~ .o-input-lines::after, .has-error.o-select ~ .o-input-lines::after, .has-error.o-textarea ~ .o-input-lines::after {
    border-color: #cc3d3d;
}
.o-input-lines::before {
    left: 0;
    transition-delay: 0.3s;
}
.o-input-lines::after {
    right: 0;
}
.o-input:focus ~ .o-input-lines::before, .o-select:focus ~ .o-input-lines::before, .o-textarea:focus ~ .o-input-lines::before, .o-input:focus ~ .o-input-lines::after, .o-select:focus ~ .o-input-lines::after, .o-textarea:focus ~ .o-input-lines::after {
    border-color: #1e1e22;
}
.o-input:focus ~ .o-input-lines::before, .o-select:focus ~ .o-input-lines::before, .o-textarea:focus ~ .o-input-lines::before {
    transition-delay: 0s;
}
.o-input:focus ~ .o-input-lines::after, .o-select:focus ~ .o-input-lines::after, .o-textarea:focus ~ .o-input-lines::after {
    transition-delay: 0.3s;
}
.o-checkbox, .o-radio {
    position: absolute;
    width: 0;
    opacity: 0;
}
.o-checkbox:checked + .o-checkbox-label::after, .o-radio:checked + .o-checkbox-label::after, .o-checkbox:checked + .o-radio-label::after, .o-radio:checked + .o-radio-label::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.o-checkbox-label, .o-radio-label {
    position: relative;
    display: inline-block;
    margin-right: 0.5em;
    line-height: 1.4;
    margin-right: 4.0625rem;
    cursor: pointer;
    padding-top: 0.125rem;
}
@media (max-width: 699px) {
    .o-checkbox-label, .o-radio-label {
        font-size: 12px;
        padding-left: 27px;
    }
}
@media (min-width: 700px) {
    .o-checkbox-label, .o-radio-label {
        font-size: 0.875rem;
        padding-left: 1.1875rem;
    }
}
.o-checkbox-label.-uppsercase, .-uppsercase.o-radio-label {
    text-transform: uppercase;
}
.o-checkbox-label::before, .o-radio-label::before, .o-checkbox-label::after, .o-radio-label::after {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    padding: 0;
    content: "";
    border: 1px solid;
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 699px) {
    .o-checkbox-label::before, .o-radio-label::before, .o-checkbox-label::after, .o-radio-label::after {
        width: 12px;
        height: 12px;
        margin-top: -6px;
    }
}
@media (min-width: 700px) {
    .o-checkbox-label::before, .o-radio-label::before, .o-checkbox-label::after, .o-radio-label::after {
        margin-top: -0.28125rem;
        width: 0.5625rem;
        height: 0.5625rem;
    }
}
.o-checkbox-label::after, .o-radio-label::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #1e1e22 transparent transparent transparent;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 699px) {
    .o-checkbox-label::after, .o-radio-label::after {
        border-width: 12px 12px 0 0;
    }
}
@media (min-width: 700px) {
    .o-checkbox-label::after, .o-radio-label::after {
        border-width: 0.5625rem 0.5625rem 0 0;
    }
}
.o-checkbox-label.has-error::before, .has-error.o-radio-label::before {
    border-color: #cc3d3d;
}
.o-checkbox-label_text {
    display: inline-block;
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.o-checkbox-label:hover .o-checkbox-label_text, .o-radio-label:hover .o-checkbox-label_text {
    -webkit-transform: translateX(0.3125rem);
    -ms-transform: translateX(0.3125rem);
    transform: translateX(0.3125rem);
}
.o-radio-label::before, .o-radio-label::after {
    border-radius: 50%;
    width: 12px;
    height: 12px;
}
.o-radio-label::after {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E");
    background-size: 6px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}
.o-radio:checked + .o-radio-label::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.o-select {
    position: relative;
    z-index: 1;
    padding-right: 2.5rem;
}
.o-select:focus {
    border-bottom-color: #1e1e22;
}
.o-select-wrap {
    position: relative;
}
.o-select-wrap::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23b3b3b3%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E");
    background-position: center;
    background-size: 10px;
    background-repeat: no-repeat;
    content: "";
    pointer-events: none;
}
.o-textarea-wrap {
    position: relative;
}
.o-textarea {
    min-height: 9.375rem;
}
.o-button {
    position: relative;
    display: inline-block;
    text-align: center;
    border: 1px solid #1e1e22;
    white-space: nowrap;
    font-size: 0;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}
.o-button:before {
    display: inline-block;
    height: 100%;
    content: "";
    vertical-align: middle;
}
.o-button &gt; * {
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    font-size: 1rem;
}
@media (max-width: 699px) {
    .o-button {
        height: 60px;
        padding: 0 20px;
    }
}
@media (min-width: 700px) {
    .o-button {
        height: 3.75rem;
        padding: 0 1.875rem;
    }
}
.o-button::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1e1e22;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s, -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}
.o-button:hover {
    color: #fff;
    transition-delay: 0s;
}
.o-button:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    transition-delay: 0s;
}
@media (min-width: 1200px) {
    .o-button.-anim {
        border-color: transparent;
    }
}
.o-button.-left::after {
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
}
.o-button.-white {
    border-color: #fff;
}
.o-button.-white::after {
    background-color: #fff;
}
.o-button.-white:hover {
    color: #000;
}
@media (max-width: 699px) {
    .o-button.-width {
        width: 100%;
    }
}
@media (min-width: 700px) {
    .o-button.-width {
        width: 15rem;
    }
}
.o-button.-form {
    width: 11.25rem;
}
.o-button.-form:focus {
    color: #fff;
    transition-delay: 0s;
}
.o-button.-form:focus::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    transition-delay: 0s;
}
.o-button.-square {
    padding: 0;
}
@media (max-width: 699px) {
    .o-button.-square {
        width: 60px;
    }
}
@media (min-width: 700px) {
    .o-button.-square {
        width: 3.75rem;
    }
}
.o-button-group .o-button + .o-button {
    border-left: none;
}
@media (max-width: 699px) {
    .o-button.-padding {
        padding: 1.25rem;
    }
}
@media (min-width: 700px) {
    .o-button.-padding {
        padding: 1.25rem 2.5rem;
    }
}
.o-button_label {
    display: inline-block;
    position: relative;
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    line-height: 1.4;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    font-size: 0.75rem;
}
.o-button:hover .o-button_label {
    -webkit-transform: translateX(0.5rem);
    -ms-transform: translateX(0.5rem);
    transform: translateX(0.5rem);
    transition-delay: 0.075s;
}
.o-button.-left:hover .o-button_label {
    -webkit-transform: translateX(-0.5rem);
    -ms-transform: translateX(-0.5rem);
    transform: translateX(-0.5rem);
}
.o-button.-square:hover .o-button_label {
    -webkit-transform: translateX(0.375rem);
    -ms-transform: translateX(0.375rem);
    transform: translateX(0.375rem);
}
.o-button.-left.-square:hover .o-button_label {
    -webkit-transform: translateX(-0.375rem);
    -ms-transform: translateX(-0.375rem);
    transform: translateX(-0.375rem);
}
.o-button-group {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
}
.o-button_icon {
    position: relative;
    width: 1.1875rem;
    height: 1.1875rem;
    fill: #1e1e22;
    transition: fill 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.075s;
}
.o-button.-white .o-button_icon {
    fill: #fff;
}
.o-button:hover .o-button_icon {
    fill: #f6f6f6;
    transition-delay: 0s;
}
.o-button.-white:hover .o-button_icon {
    fill: #1e1e22;
}
.o-button_line::before, .o-button_line::after {
    content: "";
    position: absolute;
    background-color: #1e1e22;
}
.is-mobile .o-button_line::before, .is-mobile .o-button_line::after {
    display: none;
}
.o-button_line::before {
    width: 1px;
    top: 0;
    bottom: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    transition: -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.o-button_line::after {
    height: 1px;
    right: 0;
    left: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.o-button_line:first-of-type::before {
    left: 0;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}
.o-button_line:first-of-type::after {
    top: 0;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
}
.o-button_line:last-of-type::before {
    right: 0;
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
}
.o-button_line:last-of-type::after {
    bottom: 0;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
}
.o-button.is-inview .o-button_line::before {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.o-button.is-inview .o-button_line::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.o-button.is-inview .o-button_line:first-of-type::before {
    transition-delay: 1.15s;
}
.o-button.is-inview .o-button_line:first-of-type::after {
    transition-delay: 0.1s;
}
.o-button.is-inview .o-button_line:last-of-type::before {
    transition-delay: 0.55s;
}
.o-button.is-inview .o-button_line:last-of-type::after {
    transition-delay: 0.7s;
}
.c-header-home_footer {
    z-index: 3;
    position: absolute;
    right: 0;
    bottom: 16%;
    left: 0;
    display: none;
}
.c-header-home_controls, .c-header-home_buttons {
    margin-left: 0;
    letter-spacing: normal;
    font-size: 0;
    transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
@media (max-width: 699px) {
    .c-header-home_controls, .c-header-home_buttons {
        padding-bottom: 40px;
    }
    .c-header-home_footer {
        display: flex;
        margin-bottom: 16%;
        display:none;
    }
}
@media (min-width: 700px) {
    .c-header-home_controls, .c-header-home_buttons {
        padding-bottom: 5.625rem;
    }
}
@media (min-width: 700px) and (max-width: 749px) {
    .c-header-home_controls, .c-header-home_buttons {
        padding-bottom: 3.75rem;
    }
}
.is-loaded .c-header-home_controls, .is-loaded .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
body[data-route-option="prev-section"] .c-header-home_controls, body[data-route-option="prev-section"] .c-header-home_buttons, body[data-route-option="next-section"] .c-header-home_controls, body[data-route-option="next-section"] .c-header-home_buttons {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.c-header-home_controls {
    transition-delay: 0.65s;
}
@media (min-width: 700px) {
    .c-header-home_controls {
        float: left;
    }
}
.c-header-home_buttons {
    transition-delay: 0.75s;
}
@media (max-width: 699px) {
    .c-header-home_buttons {
        margin-left: -20px;
        margin-right: -20px;
    }
}
@media (min-width: 1000px) {
    .c-header-home_buttons {
        float: right;
    }
}
@media (max-width: 699px) {
    .c-header-home_button {
        width: 50% !important;
    }
}
@media (min-width: 700px) {
    .c-header-home_button {
        width: 15.625rem;
    }
}

/* Blog */

.single-blog-item {
    margin-bottom: 30px;
}
.single-blog-item:hover h4 {
    color: #0B0D26;
}

.blog-content {
    background: #fff;
    padding: 25px 25px 50px;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
}

.blog-img {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    transform: scale(1, 1);
}
.blog-img img {
    width: 100%;
    height: 280px;
    transition: all 0.35s ease-in-out;
}
.blog-img img:hover {
    transform: scale(1.07);
}

.blog-meta {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    margin: 20px 0;
}
@media (max-width: 767px) {
    .blog-meta {
        margin: 0;
    }
}

.blog-title h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}

.blog-info {
    font-size: 16px;
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.blog-carousel .owl-dots button.owl-dot span {
    width: 10px;
    height: 10px;
    background: #ddd;
    margin-right: 10px;
    margin-top: 20px;
}

.blog-carousel .owl-dots button.owl-dot.active span {
    width: 35px;
    height: 10px;
    background: var(--primary);
}

.blog-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

/* Blog Page  */
.blog-page .single-blog-item {
    margin-top: 0;
    max-width: calc(100% - 30px);
    margin-bottom: 60px;
}

.blog-page .blog-content {
    padding: 0 0 20px;
}

.blog-page .blog-content h3 a {
    font-size: 35px;
    font-weight: 500;
}

.blog-page .single-blog-item .blog-thumb img {
    margin-top: 0;
    margin-bottom: 30px;
}

.single-blog-item:hover .read_more_link .link_text {
    opacity: 1;
    text-indent: 0;
    margin-right: 6px;
    visibility: visible;
    transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
}


.pagination {
    margin-top: 5%;

}

.page-link {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.page-item:first-child .page-link {
    display: inline-flex;
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 0;
}

.page-link,
.page-link.active {
    border-radius: 0;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    border-color: #ddd;
    color: #212531;
}
.page-link:hover,
.page-link.active:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Blog Details  */
.blog-meta-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
@media (max-width: 767px) {
    .blog-meta-wrap {
        flex-direction: column;
    }
}
.blog-meta-wrap .blog-meta p {
    font-size: 16px;
    margin: 0;
    margin-right: 15px;
}
@media (max-width: 767px) {
    .blog-meta-wrap .blog-meta p {
        margin-top: 10px;
    }
}
.blog-meta-wrap .blog-meta p i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--primary);
}

.blog-content-wrap {
    max-width: calc(100% - 15px);
}
@media (max-width: 767px) {
    .blog-content-wrap {
        max-width: calc(100% - 0px);
    }
}
.blog-content-wrap h2 {
    font-size: 36px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-content-wrap h2 {
        font-size: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-content-wrap h2 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .blog-content-wrap h2 {
        font-size: 24px;
    }
}
.blog-content-wrap p {
    text-align: justify;
}
.blog-content-wrap .social-icon i {
    font-size: 18px;
    color: #fff;
    margin-right: 10px;
    background: #212531;
    border-color: #212531;
    border-radius: 50%;
    padding: 10px;
}
.blog-content-wrap .social-icon i:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.blog-quote-wrap {
    background: #eee;
    padding: 40px 50px;
    display: flex;
    align-items: start;
    justify-content: space-around;
    height: 250px;
    margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-quote-wrap {
        padding: 40px 35px;
    }
}
@media (max-width: 767px) {
    .blog-quote-wrap {
        flex-direction: column;
        padding: 30px;
        height: auto;
    }
}
.blog-quote-wrap .quote-icon {
    width: 100px;
}
.blog-quote-wrap .quote-icon i {
    font-size: 45px;
}
.blog-quote-wrap .blog-quote-text {
    padding-left: 50px;
}
@media (max-width: 767px) {
    .blog-quote-wrap .blog-quote-text {
        padding-left: 0;
    }
}
.blog-quote-wrap .blog-quote-text p {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}
@media (max-width: 767px) {
    .blog-quote-wrap .blog-quote-text p {
        margin-top: 20px;
        font-size: 17px;
    }
}
.blog-quote-wrap h6.blog-author {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-left: 80px;
    margin-top: 30px;
}
@media (max-width: 767px) {
    .blog-quote-wrap h6.blog-author {
        padding-left: 0px;
    }
}
.blog-quote-wrap h6.blog-author:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 60px;
    height: 2px;
    background: #061815;
    margin-top: -1px;
}
@media (max-width: 767px) {
    .blog-quote-wrap h6.blog-author:before {
        display: none;
    }
}
.blog-quote-wrap h6.blog-author span {
    font-weight: 400;
}
.blog-quote-wrap h2 {
    margin: 30px 0;
}

@media (max-width: 767px) {
    .blog-tag-wrap {
        margin-bottom: 20px;
    }
}

.blog-tag-wrap span {
    background: #fff;
    padding: 10px 16px;
    margin-left: 15px;
}



.pagination-wrap a {
    font-size: 16px;
    color: #061815;
    display: flex;
    align-items: center;
}

.pagination-wrap a i {
    font-size: 25px;
    margin-right: 15px;
}

.commetns-section-wrap {
    margin-top: 5%;
}

.single-comments-wrap {
    background: #eee;
    padding: 35px 25px;
    margin: 35px 0px;
    position: relative;
}
.single-comments-wrap .single-comments-inner {
    display: flex;
}
@media (max-width: 767px) {
    .single-comments-wrap .single-comments-inner {
        flex-direction: column;
    }
}
.single-comments-wrap .single-comments-inner .comments-autor-thumb {
    flex: 0 0 130px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-comments-wrap .single-comments-inner .comments-autor-thumb {
        flex: 0 0 140px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-comments-wrap .single-comments-inner .comments-autor-thumb {
        flex: 0 0 140px;
    }
}
.single-comments-wrap .single-comments-inner .comments-content {
    padding-left: 25px;
}
@media (max-width: 767px) {
    .single-comments-wrap .single-comments-inner .comments-content {
        padding-left: 0;
        margin-top: 20px;
    }
}
.single-comments-wrap .single-comments-inner .comments-content h6 {
    font-size: 20px;
}
.single-comments-wrap .single-comments-inner .comments-content p.comments-date {
    font-size: 16px;
    color: #171717;
    font-weight: 500;
    text-decoration: underline;
    margin: 14px 0;
}
.single-comments-wrap a.reply-btn {
    background: #0B0D26;
    color: #fff;
    padding: 6px 15px;
    position: absolute;
    top: 35px;
    right: 55px;
    font-size: 16px;
}
@media (max-width: 767px) {
    .single-comments-wrap a.reply-btn {
        right: 25px;
    }
}
.single-comments-wrap a.reply-btn:hover {
    background: #212531;
    color: #fff;
}

.comments-form-wrap {
    background: #fff;
    padding: 35px;
}
.comments-form-wrap h3 {
    margin: 0 0 30px;
}
.comments-form-wrap .comments-form input,
.comments-form-wrap .comments-form textarea {
    border: none;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}
.comments-form-wrap .comments-form textarea {
    height: 130px;
}

.blog-sidebar {
    position: sticky;
    top: 150px;
}

.blog-sidebar h5 {
    font-size: 24px;
    margin-bottom: 25px;
}

.search-bar-wrap {
    padding: 35px;
}
.search-bar-wrap input {
    border: none;
    background: #fff;
    padding: 15px;
    border-radius: 0;
}
.search-bar-wrap i {
    font-size: 18px;
    background: #171717;
    border: 0;
    padding: 15px;
    color: #fff;
    display: flex;
    align-items: center;
}
.search-bar-wrap i:hover {
    cursor: pointer;
}

.blog-category {
    border: 1px solid #eee;
    margin: 30px 0;
    padding: 35px;
}

.blog-category ul li {
    display: block;
}

.blog-category ul li a {
    font-size: 17px;
    font-weight: 500;
    color: #061815;
    margin-bottom: 25px;
}
.blog-category ul li a:hover {
    color: var(--primary);
}

.blog-category ul li i {
    margin-right: 15px;
}

.recent-post-wrap {
    margin: 30px 0;
    border: 1px solid #eee;
    padding: 30px;
}
@media (max-width: 767px) {
    .recent-post-wrap {
        padding: 30px;
    }
}

.single-recent-post {
    padding: 25px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.recent-post-thumbs {
    flex: 0 0 100px;
}

.recent-post-content {
    padding-left: 15px;
}
.recent-post-content p {
    color: #212531;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .recent-post-content p {
        margin: 0;
    }
}
@media (max-width: 767px) {
    .recent-post-content p {
        margin: 0;
        font-size: 16px;
    }
}
.recent-post-content a h6 {
    font-size: 18px;
    color: #061815;
}
@media (max-width: 767px) {
    .recent-post-content a h6 {
        font-size: 16px;
        line-height: 20px;
    }
}
.recent-post-content a h6:hover {
    color: #212531;
}

.popular-tag-wrap {
    border: 1px solid #eee;
    margin: 30px 0;
    padding: 35px;
}
.popular-tag-wrap span {
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #eee;
    color: #061815;
    padding: 10px 15px !important;
    margin: 5px !important;
}
.popular-tag-wrap span:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    cursor: pointer;
}

.single-feature-wrap {
    background: #fff;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-top: -120px;
    position: relative;
    z-index: 9;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-feature-wrap {
        padding: 20px;
    }
}
@media (max-width: 767px) {
    .single-feature-wrap {
        margin-top: 60px;
    }
}

.single-feature-wrap h5 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-feature-wrap h5 {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .single-feature-wrap h5 {
        font-size: 20px;
    }
}

.feature-icon {
    position: relative;
}

.feature-icon:after {
    position: absolute;
    content: "";
    top: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: rgba(254, 87, 79, 0.3490196078);
}

/* Blog Breadcrumb AlanÄ± */

/* Breadcrumb Section  */


.breadcrumb-area {
    height: 300px;
    background-size: cover;
    background-position: center bottom;
    background-color: #ddd;
    background-image: var(--blog_bg);

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.breadcrumb-area .breadcrumb-title {
    position: relative;
    z-index: 999;
    margin-top: 60px;
}
.breadcrumb-area .breadcrumb-title h1 {
    font-size: 55px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-area .breadcrumb-title h1 {
        font-size: 50px;
    }
}
@media only screen and (min-width: 540px) and (max-width: 767px) {
    .breadcrumb-area .breadcrumb-title h1 {
        font-size: 35px;
    }
}
@media (max-width: 767px) {
    .breadcrumb-area .breadcrumb-title h1 {
        font-size: 40px;
    }
}
.breadcrumb-area .breadcrumb-icon i {
    font-size: 24px;
    color: #fff;
    margin-top: 30px;
}

.breadcrumb-area.white-bg {
    height: 300px;
}

.breadcrumb-area.white-bg .breadcrumb-icon i {
    color: inherit;
    font-weight: 600;
}


.pagination-wrap {
    padding: 35px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}

.pagination-wrap a {
    font-size: 16px;
    font-weight: 600;
    color: #061815;
    display: flex;
    align-items: center;
}

.pagination-wrap a i {
    font-size: 25px;
    margin-right: 15px;
}

.section-padding {
    padding: 120px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-padding {
        padding: 100px 10px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-padding {
        padding: 90px 30px;
    }
}
@media (max-width: 767px) {
    .section-padding {
        padding: 70px 10px;
    }
}


.overlay, .overlay-5, .overlay-4, .overlay-3, .overlay-2 {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.1;
    top: 0;
    left: 0;
    z-index: -1;
}

.overlay-2 {
    opacity: 0.2;
}

.overlay-3 {
    opacity: 0.3;
}

.overlay-4 {
    opacity: 0.4;
}

.overlay-5 {
    opacity: 0.5;
}

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

.single-recent-post {
    width: 100%; /* GeniÅŸliÄŸi ayarlayarak iki div'in eÅŸit olmasÄ±nÄ± saÄŸlÄ±yoruz */
    display: flex;
    align-items: center;
}

.single-recent-post .recent-post-thumbs {
    margin-right: 10px;
}

.single-recent-post h6 {
    margin: 0;
    font-size: 16px;
}

.single-recent-post p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Project Slider */

#sync1 .item{
    background: var(--primary);
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}
#sync2 .item{
    background: #C9C9C9;
    padding: 10px 0px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

#sync2 .item {
    cursor: pointer;
    display: inline-block;
    margin-right: 5px; /* Thumbnail'ler arasÄ±nda boÅŸluk bÄ±rakmak iÃ§in */
    white-space: nowrap;
}

#sync2 .owl-item {
    margin: 2px;
    width: 196px !important;
}

#sync2 .owl-item.active .item {
    border: 2px solid #000; /* Aktif thumbnail'i vurgulamak iÃ§in */
}

#sync2 {
    white-space: nowrap;
    overflow-x: auto; /* EÄŸer Ã§ok fazla thumbnail varsa yatay kaydÄ±rma eklemek iÃ§in */
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 9999 !important;

}

.owl-nav .fa-regular {
    background: transparent;
    border: none;
    font-size: 50px;
    color: var(--primary); /* Ä°kon rengi */
    cursor: pointer;
    pointer-events: all; /* Bu satÄ±r, tÄ±klanabilir alanÄ± sadece ikonlarla sÄ±nÄ±rlamak iÃ§in kullanÄ±lÄ±r. */
}


.pt-120 {
    padding-top: 7.5rem;
}

@media (max-width: 1399px) {
    .pt-120 {
        padding-top: 6.25rem;
    }
}

@media (max-width: 991px) {
    .pt-120 {
        padding-top: 5rem;
    }
}

@media (max-width: 767px) {
    .pt-120 {
        padding-top: 4.375rem;
    }
}

@media (max-width: 575px) {
    .pt-120 {
        padding-top: 3.125rem;
    }
}

.pb-120 {
    padding-bottom: 7.5rem;
}

@media (max-width: 1399px) {
    .pb-120 {
        padding-bottom: 6.25rem;
    }
}

@media (max-width: 991px) {
    .pb-120 {
        padding-bottom: 5rem;
    }
}

@media (max-width: 767px) {
    .pb-120 {
        padding-bottom: 4.375rem;
    }
}

@media (max-width: 575px) {
    .pb-120 {
        padding-bottom: 3.125rem;
    }
}
.gallery-section {
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 210px;
    background-color: var(--dark-900);
}

.gallery-item {
    position: relative;
}

.gallery-item:hover .thumb img {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.gallery-item:hover .content {
    bottom: 1.875rem;
    opacity: 1;
}

.gallery-item .thumb {
    height: 34.0625rem;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

@media (max-width: 1399px) {
    .gallery-item .thumb {
        height: 27.8125rem;
    }
}

@media (max-width: 1199px) {
    .gallery-item .thumb {
        height: 22.125rem;
    }
}

@media (max-width: 991px) {
    .gallery-item .thumb {
        height: 15.625rem;
    }
}

.gallery-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery-item .content {
    position: absolute;
    bottom: 0.625rem;
    left: 1.875rem;
    width: calc(100% - 3.75rem);
    padding: 1.875rem;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9375rem;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1199px) {
    .gallery-item .content {
        left: 0.9375rem;
        width: calc(100% - 1.875rem);
        padding: 1.25rem;
    }
}

.gallery-item .content .gallery-item-btn {
    width: 3.125rem;
    height: 3.125rem;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item.style-md::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, #0B0D26, rgba(217, 217, 217, 0));
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.gallery-item.style-md:hover::before {
    opacity: 1;
}

.gallery-item.style-md .thumb {
    height: 23.75rem;
}

@media (max-width: 1399px) {
    .gallery-item.style-md .thumb {
        height: 19.375rem;
    }
}

@media (max-width: 1399px) {
    .gallery-item.style-md .thumb {
        height: 17.5rem;
    }
}

@media (max-width: 767px) {
    .gallery-item.style-md .thumb {
        height: 13.125rem;
    }
}

.gallery-item.style-md .content {
    z-index: 1;
    background-color: transparent;
    padding: 0;
}

.gallery-item.style-md .content p {
    color: #fff;
}

.gallery-item.style-md .content h3 a {
    color: #fff;
}

.gallery-item.style-md .content h3 a:hover {
    color: var(--primary);
}

.gallery-item.style-md .content .gallery-item-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.875rem;
}

#galleryTabContent .tab-pane.show .row div[class*=col-] {
    opacity: 1;
    transform: translateY(0);
}

#galleryTabContent .tab-pane .row div[class*=col-] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(1) {
    transition-delay: 0.1s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(2) {
    transition-delay: 0.2s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(3) {
    transition-delay: 0.3s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(4) {
    transition-delay: 0.4s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(5) {
    transition-delay: 0.5s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(6) {
    transition-delay: 0.6s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(7) {
    transition-delay: 0.7s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(8) {
    transition-delay: 0.8s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(9) {
    transition-delay: 0.9s;
}

#galleryTabContent .tab-pane .row div[class*=col-]:nth-child(10) {
    transition-delay: 0.1s;
}
/* HakkÄ±mÄ±zda */


.about-section-two {
    position: relative;
    z-index: 1;
}

.about-section-two .about-section-two-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about-two-item {
    padding-top: 2.1875rem;
    position: relative;
}

.about-two-item .icon {
    position: absolute;
    top: 0;
    inset-inline-start: 1.875rem;
    width: 3.75rem;
    height: 3.75rem;
    background-color: var(--primary);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-two-item .content {
    padding: 2.8125rem 1.875rem 1.875rem 1.875rem;
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.about-two-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3.125rem;
    margin-top: 2.5rem;
}

@media (max-width: 575px) {
    .about-two-bottom {
        gap: 1.25rem;
    }
}

.about-bottom-users {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem;
}

.social-icons-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white; /* or any background color you prefer */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1); /* optional shadow for better visibility */
    z-index: 1000; /* ensure it stays above other content */
    padding: 10px 0;
    height:90px;
}

.social-icons {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* for smooth scrolling on iOS */
    scrollbar-width: none; /* hide scrollbar on Firefox */
    -ms-overflow-style: none; /* hide scrollbar on IE/Edge */
    gap: 20px; /* space between icons */
    padding: 0 15px;
}

/* Hide scrollbar on Chrome/Safari */
.social-icons::-webkit-scrollbar {
    display: none;
}

.icon-container {
    flex: 0 0 auto; /* prevent icons from shrinking */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 60px; /* minimum width for each icon container */
}

/* Optional: Make it visible only on mobile devices */
@media screen and (min-width: 768px) {
    .social-icons-container {
        /* Original positioning for desktop */
        position: static;
        box-shadow: none;
    }

    .social-icons {
        overflow-x: visible;
        display: flex;
        align-items:center;
        height:90px;
    }
}

.blog-content-wrap h1,
.blog-content-wrap h2,
.blog-content-wrap h3,
.blog-content-wrap h4,
.blog-content-wrap h5,
.blog-content-wrap h6 {
    margin-top: 20px; /* Ãœst boÅŸluk */
    margin-bottom: 20px; /* Alt boÅŸluk */
}

.blog-content-wrap strong {
	color: var(--primary);
}

.blog-content-wrap p,
.blog-content-wrap li {
color: #000;
margin-top: 10px !important;
}

</pre></body></html>