@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Teko:wght@400;500;600&display=swap');

:root {
    --theme-color: #0f1216;
    --theme-color2: #f27220;
    --title-color: #1F1F1F;
    --body-color: #5C6574;
    --light: #F8F8F8;
    --smoke-color: #E0E0E0;
    --smoke-color2: #F8F8F8;
    --smoke-color3: #EBEEFF;
    --smoke-color4: #F9F8FF;
    --black-color: #000000;
    --black-color2: #0A0A0A;
    --gray-color: #bdbdbd;
    --white-color: #ffffff;
    --light-color: #72849B;
    --yellow-color: #FFB539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --th-border-color: #E0E0E0;
    --title-font: "Urbanist", sans-serif;
    --body-font: "Jost", sans-serif;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1320px;
    --container-gutters: 24px;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s;
    --primary-color: #c8dc71;
    --gradient-color: linear-gradient(270deg, #ce6cec 0%, #dc717f 100%);
    --gradient-color-2: linear-gradient(270deg, #c8dc71 0%, #6cece1 100%);
    --radius: 8px;
}

body {
    font-family: var(--body-font);
    overflow-x: hidden;
}

.logo {
    width: 100%;
}

.bg-dark {
    background-color: var(--theme-color) !important;
}

a {
    color: var(--theme-color);
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-family: Urbanist;
    font-weight: 600 !important;
}

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

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    color: #fff !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 {
    font-weight: 500;
    transition: .5s;
    border: none;
}

.btn.btn-secondary {
    background-color: var(--theme-color2);
    border-radius: 5px;
    transition: 0.4s all ease-in-out;
    color: #fff !important;
}


.btn.btn-secondary:hover {
    border-radius: 5px;
    color: #fff !important;
}

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

.btn-outline-body {
    color: #777777 !important;
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF !important;
}

.header-top a {
    font-size: .875rem;
    color: #fff !important;
}

.header-top {
    height: 40px;
    background-color: transparent !important;
    display: flex;
    border-bottom: 1px solid #ffffff33;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 30;
}

.navbar-brand {
    position: relative;
    width: 22%;
    margin: 0;
    left: -6%;
}

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

.menu {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 0 30px 0 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    font-size: 1.125rem;
    color: var(--theme-color2);
    font-family: var(--body-font);
    font-weight: 500;
    text-transform: capitalize;
    outline: none;
    transition: 0.4s all ease-in-out;
}

.navbar .navbar-nav .nav-link:hover {
    color: #00b8f4;
}

.border-none {
    border: none;
}

.border {
    border: 5px solid var(--theme-color2) !important;
}

.main-slider {
    height: 100vh;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    justify-content: center;
}

.swiper {
    width: 100%;
}

.wrapper-slider .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    font-size: 1rem;
}

.wrapper-slider {
    position: relative;
    font-family: urbanist;
    width: 100%;
    margin: auto;
    color: #262626;
    background: black;
}

.wrapper-slider .item {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.wrapper-slider .item picture {
    display: block;
}

.wrapper-slider .item picture:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(10, 43, 80, 0.7);
    inset: 0;
    z-index: 1;
}

.wrapper-slider .item picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper-slider .parent-text {
    padding: 3rem 0;
    position: absolute;
    top: 60%;
    transform: translateY(-60%);
    z-index: 2;
    color: white;
}

.wrapper-slider .parent-text .info-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wrapper-slider .parent-text h2 {
    text-transform: capitalize;
    font-size: 7rem;
    color: #fff;
    font-family: jost;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wrapper-slider .parent-text p {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2rem;
    ;
}

.wrapper-slider .parent-text a {
    width: 100%;
    max-width: 12.2rem;
    background: transparent !important;
    border: 2px solid hsla(0, 0%, 100%, .3);
    font-size: 1rem;
    padding: 1rem;
    border-radius: 10px;
    color: #fff !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.wrapper-slider .parent-text a:hover {
    background: #ebebeb !important;
    color: #4c4c4c !important;
}

.wrapper-slider .swiper-pagination {
    width: 100%;
    bottom: 5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    padding-inline: 4rem;
}

.wrapper-slider .swiper-pagination .svg-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.wrapper-slider .swiper-pagination .svg-icon path {
    fill: white;
}

.wrapper-slider .swiper-pagination .swiper-pagination-bullet {
    color: white;
    opacity: 1;
    width: initial;
    height: initial;
    background: transparent;
}

.wrapper-slider .swiper-pagination .swiper-pagination-bullet button {
    background: transparent;
    border: 0;
    display: flex;
    cursor: pointer;
}

.wrapper-slider .swiper-pagination .bullet-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper-slider .swiper-pagination .icon {
    position: absolute;
    z-index: 1;
}

.percentage {
    --colorf3: #1c69d4;
    --color13: #1c69d4;
    width: 2.4rem;
    aspect-ratio: 1;
    mask: radial-gradient(transparent 55%, black 60% 100%);
    -webkit-mask: radial-gradient(transparent 55%, black 60% 100%);
    transition: opacity 0.6s ease;
    opacity: 0;
    background: conic-gradient(transparent 0, transparent var(--p), #c9d6d7 0),
        conic-gradient(var(--colorf3), #1c69d4, #1c69d4, #1c69d4, var(--colorf3)),
        conic-gradient(transparent, transparent 10%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.percentage.show {
    opacity: 1;
}

.about-img img {
    border-radius: 10px;
}

.percentage .number {
    width: 80%;
    aspect-ratio: 1;
    display: inherit;
    align-items: inherit;
    justify-content: inherit;
    background: white;
    border-radius: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    color: var(--color13);
}

.position-fixed {
    position: fixed;
    border-radius: 0 !important;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    left: 0;
    border-radius: 20px;
}

@media (max-width: 1400px) {
    .icerik p{
        font-size:1rem!important;
    }
    .team-style1__big-title{
        font-size:3rem!important;
    }
    .shapes2 {
        right: 15% !important;
    }

    .dropdown-item {
        font-size: .875rem !important;
    }

    .container-xl {
        max-width: 100% !important;
    }

    .right-area svg {
        display: none;
    }

    .right-area a {
        font-size: .875rem !important;
    }

    .language {
        font-size: .875rem !important;
    }

    .right-area .orange-btn {
        font-size: .875rem !important;
    }

    .navbar-brand {
        width: 25%;
        left: -3%;
    }

    .navbar .navbar-nav .nav-link {
        font-size: .8rem;
    }

    .logo {
        width: 75%;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        left: -20%;
    }

    .logo {
        width: 100% !important;
    }
}

@media (max-width: 991.98px) {
    .alt-icerik li:nth-child(3) ul {
        grid-template-columns: 1fr 1fr !important;
    }

    .shapes2 img {
        display: none
    }

    .logo {
        width: 50%;
    }

    .right-area {
        margin-top: 1rem;
    }

    .wrapper-slider .parent-text {
        padding: 1rem;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 1rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .collapse:not(.show) {
        margin: 1rem 0;
        transition: 0.4s all ease-in-out;
        display: block;
    }

    .navbar-brand {
        width: 75%;
        margin: 0;
    }

    .wrapper-slider .parent-text h2 {
        font-size: 2rem;
    }

    .wrapper-slider .parent-text p {
        font-size: 1rem;
    }

    .header-top {
        display: none
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

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

.breadcrumb-title h1 {
    margin-bottom: 0;
    font-size: 1rem;
    font-family: Jost;
}

.breadcrumb-title span {
    font-size: 1rem;
    margin: 0 .5rem;
    font-family: Jost;
}

.imglist img {
    width: 100%;
}

#iletisim * {
    font-family: Jost;
    font-size: 1rem;
    border-radius: 10px;
    ;
}

.bg-two {
    background-color: var(--theme-color2);
}

#iletisim i {
    font-size: 1.25rem;
    color: #fff;
}

.form-control {
    padding: 1rem;
}

.contact-form2 button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form2 button i {
    margin-left: .5rem
}

.mainpage-a {
    font-size: 1rem;
    font-family: Jost;
}

.breadcrumb-title span svg {
    color: #000;
}

.breadcrumb-title {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: -5%;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: .5rem 2rem;
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 13px 11px #00000026;
    font-family: Jost;
}

.title-hero-bg {
    position: relative;
    height: 35vh;
    display: flex;
    align-items: end;
}

.title-hero-bg a {
    color: var(--theme-color2)
}

.right-area svg {
    position: relative;
    bottom: 2px;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: space-between;
}

.nav-wrapper {
    margin-left: 1rem;
    margin-right: 1rem;
}

.right-area .orange-btn {
    font-size: 1.25rem;
}

.right-area a {
    font-size: 1.25rem;
}

.sl-nav a {
    font-size: 1rem;
}

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

@media (min-width: 992px) {
    .container-xl {
        max-width: 90%;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 75%;
        padding: 1rem;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        transition: 0.4s all ease-in-out;
    }

    .dropdown-item {
        transition: 0.4s all ease-in-out;
        font-weight: 500;
    }

    .dropdown-menu li {
        margin-bottom: 15px;
    }

    .dropdown-item:hover {
        background-color: var(--theme-color2);
        color: #fff;
    }

    .dropdown-menu li:last-child {
        margin-bottom: 0;
    }


    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

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

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

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

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


/*** Section Title ***/
.section-title {
    color: var(--theme-color2);
    font-weight: 600;
    font-size: 2.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.space-bottom {
    padding: 5rem 0;
    position: relative;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    border-radius: 10px;
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--theme-color2);
    z-index: -1;
}

.brand-swiper {
    border: 1px solid #ebebeb;
    border-radius: 10px;
}

.swiper-wrapper {
    height: auto !important;
    transition-timing-function: linear !important;
}

.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
    width: 100%;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover h3 {
    color: #fff;
}

.service-item:hover p {
    color: #fff;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 165px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

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


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777 !important;
    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;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--white-color) !important;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    color: #fff;
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.sl-nav {
    display: inline;
}

.sl-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: inline-block;
}

.sl-nav li {}

.sl-nav li ul {
    display: none;
    padding: 1rem;
}

.sl-nav li:hover ul {
    position: absolute;
    right: -15px;
    display: block;
    background: #fff;
    width: 3rem;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.language {
    color: var(--theme-color2);
    font-weight: 600;
    font-size: 1.25rem;
}

.language:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Free';
    border: none;
    font-size: .75rem;
    margin-left: .25rem;
}

.sl-nav li:hover .triangle {
    position: absolute;
    top: 15px;
    right: -10px;
    z-index: 10;
    height: 14px;
    overflow: hidden;
    width: 30px;
    background: transparent;
}

.sl-nav li:hover .triangle:after {
    content: "";
    display: block;
    z-index: 20;
    width: 15px;
    transform: rotate(45deg) translateY(0px) translatex(10px);
    height: 15px;
    background: #fff;
    border-radius: 2px 0px 0px 0px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.sl-nav li ul li {
    position: relative;
    text-align: left;
    background: transparent;
    z-index: 2;
    font-weight: 500;
    font-size: 13px;
    color: #3c3c3c;
    transition: 0.4s all ease-in-out;
}

.sl-nav li ul li a {
    display: block;
}

.sl-nav li ul .men:hover {
    padding-left: 20px;
    color: #1d79ec;
}

.sl-nav li ul .men:hover a:before {
    content: "-";
    position: absolute;
    left: 9%;
}

.amen {
    width: 185px !important;
}

.sl-nav li ul li span {
    padding-left: 5px;
    font-size: 12px;
    position: relative;
    bottom: 2px;
    font-weight: 600;
}

.sl-nav li ul li span:hover,
.sl-nav li ul li span.active {
    color: #146c78;
}

.sl-flag {
    display: inline-block;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    width: 15px;
    height: 15px;
    background: #aaa;
    border-radius: 50%;
    position: relative;
    top: -1px;
    overflow: hidden;
}

.text-primary {
    color: #fff;
}

.menu-area {
    position: absolute;
    width: 100%;
    top: 7.5%;
    background: transparent;
}

.nav-link a {
    color: var(--theme-color2);
}

.nav-link a:hover {
    color: #00b8f4;
}

.menu-item::after {
    content: '';
    position: relative;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: #00b8f4;
    transition: width 0.3s ease;
}

.menu-item:hover::after {
    width: 100%;
    display: block
}

.footer .btn-outline-body {
    color: #fff !important;
}

.footer p {
    color: #fff !important;
}

#egitimler {
    background-color: var(--theme-color2);
}

#windy-container {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

#windy {
    width: 100%;
    height: 100%;
}

.showcase-box {
    width: 100%;
    height: 70vh;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.container-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom;
    z-index: 1;
}

.content-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    width: 100%;
}

.service-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
}

.col-header {
    height: 90px;
    background-color: rgba(10, 35, 61, 0.95);
    display: flex;
    font-family: 'Urbanist';
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: white;
    transition: background-color 0.3s;
}

.col-header span {
    font-weight: bold;
    font-size: 1.5rem;
}

.col-header img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.col-body {
    flex: 1;
    background: rgba(13, 45, 77, 0.7);
    backdrop-filter: blur(5px);
    padding: 30px 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.service-col:hover .col-header,
.service-col.active .col-header {
    background-color: #f05a30;
    animation: kayis 1s;
}

.service-col:hover .col-body,
.service-col.active .col-body {
    opacity: 1;
}

.read-more-btn {
    background-color: #fff;
    color: var(--theme-color2);
    display: block;
    width: fit-content;
    position: relative;
    margin-top: 2rem;
    padding: 1rem 2rem;
    border-radius: 5px;
}

@media (max-width: 992px) {
    .content-overlay {
        flex-direction: column;
    }

    .showcase-box {
        height: auto;
    }

    .service-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .col-body {
        display: block;
        opacity: 1;
        background: rgba(13, 45, 77, 0.9);
    }
}

@keyframes kayis {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

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

.navbar-toggler svg path {
    stroke: #222;
}

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

    50% {
        transform: rotate(-45deg);
    }

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

.shapes {
    position: absolute;
    z-index: 1;
    right: -155px;
    top: 32%;
}

.shapes img {
    animation: donus 7s linear infinite;
}

.shapes2 {
    position: absolute;
    z-index: 1;
    opacity: .1;
    right: -5%;
    top: 150%;
    transform: translateY(-100%);
}

.shapes2 img {
    animation: donus 7s linear infinite;
    width: 200px;
}

.count_box * {
    font-family: urbanist;
    font-weight: bold !important;
    color: var(--theme-color2)
}

.count_box img {
    width: 290px !important;
    border-radius: 10px;
    transition: 0.4s all ease-in-out;
    margin: 2rem 0;
}

.count_box:hover img {
    opacity: 1;
}

#count .col-md-4:nth-child(2) .count_box {
    background: #f05a30
}

#count .col-md-4:nth-child(2) h4 {
    color: #fff
}

#count .col-md-4:nth-child(2) h3 {
    color: #fff
}

#count .col-md-4:nth-child(2) .timer {
    color: #fff
}

.count_box h3 {
    font-size: 6rem;
}

.count_box {
    padding: 3rem;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s all ease-in-out;
}

.count_box:hover {
    background-color: var(--theme-color2);
}

.count_box:hover * {
    color: #fff !important;
}

#filomuz {
    background-color: var(--theme-color2);
}

.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.7) !important;
}

.title h2 {
    font-size: 2rem;
    font-weight: bold !important;
    text-align: center;
    margin-top: 3rem;
    color: #fff;
}

#filomuz li {
    list-style-type: none;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 1rem;
    padding-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

#filomuz li:last-child {
    border: none
}

#filomuz ul {
    display: flex;
    margin-bottom: 0;
    justify-content: center;
}

#filomuz li img {
    margin-right: .5rem;
}

.filo-img {
    width: 30%;
    position: relative;
    margin: auto;
    text-align: center;
    display: flex;
}

.filo-btn {
    background-color: #fff;
    color: var(--theme-color2);
    display: block;
    width: fit-content;
    position: relative;
    margin: auto;
    margin-top: 2rem;
    padding: 1rem 2rem;
    border-radius: 5px;
}

.footer {
    background-image: url(../img/footer-bg.png);
}

.opacity-bg {
    opacity: .3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#anaa:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: red;
}

.orange-btn {
    background: #f05a30;
    border: none;
    color: #fff;
    margin-left: .5rem;
    border-radius: 5px;
    padding: .5rem 1.5rem;
}

.imglist {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    padding: 1rem;
    justify-content: center;
    max-width: 200px;
    min-height: 200px;
}

.image img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

.alt-icerik {
    display: flex;
    margin-top: 3rem;
}

.alt-icerik ul {
    padding-left: 0;
}

.alt-icerik li {
    list-style-type: none;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.alt-icerik li:nth-child(3) {
    align-items: self-start;
    margin-bottom: 0;
}

.alt-icerik li:nth-child(3) li {
    margin-bottom: 1rem;
    margin-right: 1rem;
    font-size: 1.05rem;
}

.alt-icerik li:nth-child(3) li:before {
    content: "✔";
    margin-right: .5rem;
    color: #4cbd4c;
}

.alt-icerik li:nth-child(3) ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.alt-img svg {
    width: 32px;
}

.alt-yazi {
    margin-left: .5rem;
    font-size: 1.25rem;
}

strong {
    color: #222;
    font-size: 1.25rem;
}

.icerik {
    position: relative;
}

@keyframes hareket {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.float-y {
    -webkit-animation-name: hareket;
    animation-name: hareket;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.shape1 {
    position: absolute;
    top: -65px;
    left: 30%;
    opacity: .07;
}

.icerik .image img {
    height: 100%;
}

.takimlarimiz {
    padding: 0
}

.takimlarimiz li {
    list-style-type: none;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.takimlarimiz li:before {
    content: "\F270";
    font-family: 'bootstrap-icons';
    margin-right: .5rem;
    color: #42c342;
}

.team-style1__big-title {
    position: absolute;
    top: 50%;
    left: 32px;
    color: transparent;
    -webkit-text-stroke: 1px rgb(0, 0, 0, 0.20);
    font-size: 5rem;
    line-height: 1.2;
    font-family: Urbanist;
    font-weight: 700;
    height: 80%;
    text-align: center;
    writing-mode: sideways-rl;
    transform: rotate(180deg);
}

.icerik p {
    font-size: 1.25rem;
}

.right-area .st0 {
    fill: #fff;
}