:root {
    --container-width: 1400px;
    --container-out: calc(calc(calc(100vw - var(--container-width)) / 2) + 4px);
    --container-col: calc(var(--container-width) / 12);
    --layout-padding: 65px;
}

* {
    font-family: 'Kanit', sans-serif;
    scroll-behavior: smooth;
    outline: 0 !important;
}

@media (max-width: 1400px) and (min-width: 1200px) {
    :root {
        --container-width: 1133px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    :root {
        --container-width: 953px;
    }
}

@media (min-width: 1399px) {
    :root {
        --container-width: 1400px;
    }

    .container {
        max-width: 1400px;
    }
}

.toggle-menu {
    display: none;
}

body {
    font-size: 16px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.menu-wrapper {
    display: none;
}

.main-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    transition: 300ms;
    padding-right: var(--layout-padding);
    z-index: 99;
    display: flex;
    justify-content: space-between;
    height: 140px;
}

.main-header .logo {
    width: 500px;
    background: #D9000D;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 300ms;
}

.main-header .logo img {
    max-width: 100%;
    width: 360px;
    transition: 300ms;
}

.main-header .actions {
    display: flex;
    align-items: center;
    column-gap: 10px;
    width: 300px;
    justify-content: flex-end;
}

.main-header .actions .languages {
    position: relative;
    font-size: 17px;
    color: #373737;
}

.main-header .actions .languages p {
    margin: 0;
}

.main-header .actions > a {
    background: #fff;
    padding: 12px 25px;
    font-size: 17px;
    text-transform: uppercase;
    color: #D9000D;
    transition: 300ms;
    display: inline-block;
}

.main-header .actions > a:Hover {
    background: #D9000D;
    color: #fff;
}

.main-header .actions .languages .active {
    background: #fff;
    padding: 12px 25px;
    font-size: 17px;
    text-transform: uppercase;
    color: #000;
    transition: 300ms;
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.main-header .actions .languages .active:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4px;
    height: 10px;
    width: 10px;
    background-image: url(../assets/images/icons/icon-dil-ok.svg);
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.main-header .actions .languages .list {
    position: absolute;
    right: 0;
    min-width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    margin: 0;
    padding: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
    list-style: none;
}

.main-header .actions .languages .list li {
    width: 100%;
}

.main-header .actions .languages .list a {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #373737;
    transition: 300ms;
}

.main-header .actions .languages .list a:Hover {
    color: #D9000D;
}

.main-header .actions .languages:Hover > .list {
    opacity: 1;
    visibility: visible;
    max-height: 100vh;
}

.main-header .menu {
    width: calc(100% - 800px);
    padding-left: 50px;
}

.main-header .menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    column-gap: 20px;
}

.main-header .menu > ul > li {
    position: relative;
}

.main-header .menu > ul > li > a {
    font-size: 17px;
    padding: 15px 20px 40px 20px;
    text-transform: uppercase;
    color: #fff;
    transition: 300ms;
    display: block;
    margin-bottom: -35px;
    white-space: nowrap;
}

.main-header .menu > ul > li > a:Hover {
    background: #fff;
    color: #000;
}

.main-sliders {
    position: relative;
    margin-top: 130px;
    z-index: 1;
}

.main-sliders .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-sliders img {
    height: 850px;
    width: calc(100% - calc(var(--layout-padding) * 2)) !important;
    object-fit: cover;
    margin-left: var(--layout-padding);
}

.main-sliders:Before {
    content: '';
    position: absolute;
    left: 0;
    top: -130px;
    width: 100%;
    height: calc(50% + 130px);
    z-index: -1;
    background-image: url(../assets/images/slider-background.jpg);
}

.slider-actions {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.slider-actions .phone {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    width: var(--layout-padding);
    display: flex;
    align-items: center;
    transform: rotate(180deg);
}

.slider-actions .phone a {
    font-weight: 600;
    font-size: 20px;
    color: #C5C5C5;
    transition: 300ms;
}

.slider-actions .phone a > span {
    font-weight: 300;
}

.slider-actions .phone a:Hover {
    color: #576475;
}

.slider-actions .socials nav {
    display: flex;
    width: var(--layout-padding);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 30px;
    font-size: 20px;
}

.slider-actions .socials nav a {
    color: #C5C5C5;
    transition: 300ms;
}

.slider-actions .socials nav a:Hover {
    color: #576475;
}

.main-sliders .owl-nav {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 11;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 calc(var(--layout-padding) * 2);
}

.red-arrow-left {
    position: relative;
    width: 42px;
    height: 22px;
    background-image: url(../assets/images/icons/icon-sol.svg);
    background-size: contain;
    background-repeat: no-repeat;
    border: 0;
    background-color: transparent;
    transition: 300ms;
}

.red-arrow-right {
    position: relative;
    width: 42px;
    height: 22px;
    background-image: url(../assets/images/icons/icon-sag.svg);
    background-size: contain;
    background-repeat: no-repeat;
    border: 0;
    background-color: transparent;
    transition: 300ms;
}

.main-sliders .owl-nav .red-arrow-left:Hover {
    transform: translateX(-10px);
}

.main-sliders .owl-nav .red-arrow-right:Hover {
    transform: translateX(10px);
}

.main-sliders .text-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.main-sliders .text-box .counter p {
    margin: 0;
    width: 76px;
    height: 76px;
    background: #D9000D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    font-weight: lighter;
}

.main-sliders .text-box .title {
    margin: 0;
    background: rgba(255, 255, 255, 0.8);
    min-width: 480px;
    min-height: 256px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    font-size: 40px;
    color: #D9000D;
    font-weight: 500;
    padding: 30px;
    position: relative;
}

.main-sliders .text-box .title u {
    display: block;
}

.main-sliders .text-box .title p {
    margin: 0;
}

.main-sliders .text-box .title:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 30px solid rgba(255, 255, 255, 0.8);
    border-right: 30px solid rgba(255, 255, 255, 0.8);
    border-bottom: 30px solid transparent;
    border-left: 30px solid transparent;
    top: 100%;
    right: 0;
}

.main-categories {
    margin-bottom: 50px;
}

.main-categories .owl-stage {
    padding-bottom: 50px;
}

.main-categories .owl-item:nth-child(4n+1) .category {
    background: #576475;
}

.main-categories .owl-item:nth-child(4n+2) .category {
    background: #677382;
}

.main-categories .owl-item:nth-child(4n+3) .category {
    background: #788390;
}

.main-categories .owl-item:nth-child(4n+4) .category {
    background: #89929E;
}

.main-categories .category {
    position: relative;
    display: flex;
    height: 540px;
    padding: 27px 30px;
}

.main-categories .category .icon {
    background: #D9000D;
    display: inline-block;
    width: 160px;
    height: 180px;
    text-align: center;
    padding-top: 20px;
    transition: 600ms;
    position: relative;
}

.main-categories .category .icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: inline-block;
}

.main-categories .category .content {
    width: calc(100% - 160px);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.main-categories .category .content .title {
    text-orientation: mixed;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    transition: 500ms;
    font-size: 35px;
    font-weight: 500;
    margin: 0;
    display: flex;
    line-height: 1;
}

.main-categories .category:Hover .icon {
    height: calc(100% + 50px);
}

.main-categories .category:Hover .content .title {
    transform: rotate(180deg) scale(1.1);
}

.main-categories .owl-nav {
    position: absolute;
    left: -100px;
    top: 0;
    width: calc(100% + 200px);
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-about {
    position: relative;
}

.main-about .about-container {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    background-image: url(../assets/images/home/bizi-taniyin-background-pattern.png);
}

.main-about .about-container > div {
    width: 50%;
}

.main-about .about-container .media {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.main-about .about-container .media .socials {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.main-about .about-container .media .socials .man {
    width: 420px;
}

.main-about .about-container .media .socials .content {
    width: calc(100% - 420px);
    text-align: right;
    padding: 0 30px 30px 0;
}

.main-about .about-container .media .socials .content .title {
    font-size: 35px;
    font-weight: 500;
    color: #fff;
}


.main-about .about-container .media .socials nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
}

.main-about .about-container .media .socials nav a {
    color: #fff;
    transition: 300ms;
    display: block;
}

.main-about .about-container .media .socials:After {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 230px;
    width: 100%;
    background: #d9000d;
    z-index: -1;
}

.main-about .about-container .media .socials:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-right: 30px solid #d9000d;
    border-bottom: 30px solid #d9000d;
    border-left: 30px solid transparent;
    bottom: 230px;
    right: 0;
}

.main-about .about-container .media .socials nav a:Hover {
    color: #000;
}

.main-about .about-container .media .logo {
    position: absolute;
    right: -80px;
    max-width: 450px;
    top: 40px;
}

.main-about .about-container .media .read-more {
    position: absolute;
    right: 0;
    bottom: 55%;
    font-size: 17px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    transition: 300ms;
    z-index: 11;
}

.main-about .about-container .media .read-more:After {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../assets/images/icons/icon-button.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: -5px;
    margin-left: 10px;
    transition: 300ms;
    transform: scale(.6);
}

.main-about .about-container .media .read-more:Hover:After {
    transform: scale(1);
}

.main-about .text .text-content {
    background: #001270;
    color: #fff;
    padding: 44px 20px;
    font-size: 17px;
    width: calc(100% - 100px);
    margin-left: 100px;
    position: relative;
    height: 100%;
}

.main-about .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}

.main-about .text .text-content p {
    margin: 0;
}

.main-about .text .image {
    overflow: hidden;
    padding-right: 50px;
    z-index: 11;
    position: absolute;
    left: 0;
    bottom: 0;
    max-height: 400px;
}

.main-about .text .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 300ms;
}

.main-about .text .image:Hover img {
    transform: scale(1.1);
}

.main-about .section-header {
    text-align: right;
}

.main-about .section-header h2 {
    color: #fff;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #d9000d;
    font-size: 84px;
}

.fixed-bar .main-header {
    background: #373737;
    height: 100px;
}

.fixed-bar .main-header .menu > ul > li > a {
    padding: 15px 20px;
    margin-bottom: 0;
}

.fixed-bar .main-header .logo {
    height: 100px;
}

.main-stones {
    margin: 30px 0;
    position: relative;
}

.main-stones .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.main-stones .section-header h3 {
    font-size: 94px;
    font-weight: 600;
    color: #fff;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #707070;
}

.main-stones .milestone {
    text-align: center;
    position: relative;
}

.main-stones .milestone .year {
    background: #1BA083;
    display: inline-block;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    padding: 15px 30px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 -30px 0 30px #fff;
}


.main-stones .milestone .year:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid #1ba083;
    border-bottom: 10px solid #1ba083;
    border-left: 10px solid transparent;
    bottom: 0;
    left: -20px;
}


.main-stones .milestone .description {
    font-size: 15px;
    font-weight: lighter;
    color: #373737;
}


.main-stones .milestones-slider {
    position: relative;
}

.main-stones .milestones-slider:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 27px;
    background: url("data:image/svg+xml,%3csvg width='70%25' height='20%5' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%239672FF' stroke-width='4' stroke-dasharray='1%2c 15' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.main-stones .milestone:after {
    content: '';
    position: absolute;
    left: 60px;
    top: 23px;
    width: 11px;
    height: 11px;
    background: #1ba083;
    border-radius: 100%;
}

.main-stones .milestone:before {
    content: '';
    position: absolute;
    right: 60px;
    top: 23px;
    width: 11px;
    height: 11px;
    background: #1ba083;
    border-radius: 100%;
}


.main-stones .owl-nav {
    position: absolute;
    left: -100px;
    top: 0;
    width: calc(100% + 200px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: -1;
}

.main-stones .owl-nav .red-arrow-right:hover {
    transform: translateX(10px);
    filter: brightness(0);
}

.main-stones .owl-nav .red-arrow-left:hover {
    transform: translateX(-10px);
    filter: brightness(0);
}

.main-stones .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    column-gap: 20px;
    position: relative;
    z-index: 1;
}

.main-stones .owl-dots .owl-dot {
    height: 3px;
    width: 30px;
    background: #707070;
    transition: 300ms;
}

.main-stones .owl-dots .owl-dot.active {
    background: #d9000d;
}

.main-media .gallery {
    margin-left: var(--container-out);
    display: flex;
    justify-content: space-between;
    background-image: url(../assets/images/home/bizi-taniyin-background-pattern.png);
    position: relative;
}

.main-media .gallery .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
}

.main-media .gallery .section-header h4 {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 94px;

    color: #fff;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #d9000d;
}

.main-media .gallery .images {
    width: calc(100% - 200px);
    position: relative;
    padding-top: 50px;
    margin-bottom: -100px;
}

.main-media .gallery .images img {
    width: 100%;
    height: 665px;
    object-fit: cover;
}

.main-media .gallery .owl-nav {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 11;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}


.main-media .gallery .red-arrow-left:Hover {
    transform: translateX(-10px);
    filter: brightness(0) invert(1);
}

.main-media .gallery .red-arrow-right:Hover {
    transform: translateX(10px);
    filter: brightness(0) invert(1);
}

.main-media .media-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    padding: 160px 0 60px 0;
    column-gap: 30px;
}

.main-media .media-links .link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 90px;
    z-index: 1;
}

.main-media .media-links .link img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    background: #d9000d;
    padding: 20px;
}

.main-media .media-links .link span {
    width: calc(100% - 90px);
    padding-left: 20px;
    transition: 300ms;
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px;
}

.main-media .media-links .link span:After {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../assets/images/icons/icon-button.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: -5px;
    margin-left: 10px;
    transition: 300ms;
    transform: scale(.6);
    opacity: 0;
}

.main-media .media-links .link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #d9000d;
    z-index: -1;
    width: 90px;
    transition: 300ms;
}

.main-media .media-links .link:Hover:before {
    width: 100%;
}

.main-media .media-links .link:hover span:After {
    opacity: 1;
}

.main-media .gallery:After {
    content: '';
    position: absolute;
    left: calc(var(--container-out) * -1);
    bottom: -310px;
    height: 310px;
    background: #000;
    width: calc(100% + var(--container-out));
}

.footer-widgets {
    display: flex;
    justify-content: space-between;
}

.footer-widgets .widget {
    flex: 1;
    padding: 30px;
    height: 340px;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.footer-widgets .widget.offer {
    background-image: url(../assets/images/teklif-al-bg-image.jpg);
}

.footer-widgets .widget.contact {
    background-image: url(../assets/images/bize-yazin-bg-image.jpg);
}

.footer-widgets .widget.map {
    padding: 0;
}

.footer-widgets .widget .header {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    transition: 300ms;
}


.footer-widgets .widget.map .header {
    position: absolute;
    z-index: 11;
    padding: 30px;
    width: 100%;
}

.footer-widgets .widget .header p {
    background: #fff;
    display: flex;
    height: 72px;
    text-align: right;
    width: 215px;
    position: relative;
    padding-right: 15px;
    align-items: center;
    justify-content: flex-end;
    font-size: 30px;
    font-weight: 500;
}

.footer-widgets .widget.map iframe {
    width: 100%;
    height: 100%;
}

.footer-widgets .widget.offer .title {
    color: #344860;
}

.footer-widgets .widget.contact .title {
    color: #D9000D;
}

.footer-widgets .widget.map .title {
    color: #08986C;
}

.footer-widgets .widget .header .title:After {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid #fff;
    border-right: 10px solid #fff;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    bottom: -20px;
    right: 0;
}

.footer-widgets .widget .description {
    max-width: 70%;
    font-size: 15px;
    font-weight: lighter;
}

.footer-widgets .widget .details-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    transition: 300ms;
}

.footer-widgets .widget .details-btn:after {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../assets/images/icons/icon-button.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: -5px;
    margin-left: 10px;
    transition: 300ms;
    transform: scale(.6);
    filter: brightness(0) invert(1);
}

.footer-widgets .widget .details-btn:Hover:After {
    transform: scale(1);
}

.footer-widgets .widget:Hover .header {
    transform: translateY(15px);
}

.main-footer .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.main-footer .footer-container .logo {
    width: 550px;
    position: relative;
}

.main-footer .footer-container:Before {
    content: '';
    position: absolute;
    left: calc(calc(var(--container-out) * -1) + 80px);
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/images/footer-bg-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: .8;
    background-position: 70px;
}

.main-footer .footer-container .contacts {
    text-align: center;
    margin-top: 30px;
}

.main-footer .footer-container .contacts .phone {
    color: #576475;
    font-size: 30px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.main-footer .footer-container .contacts .phone > span {
    font-weight: lighter;
}

.main-footer .footer-container .contacts .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.main-footer .footer-container .contacts .socials a {
    color: #A9B3C1;
    transition: 300ms;
}

.main-footer .footer-container .contacts .socials a:Hover {
    color: #001270;
}

.main-footer .footer-container .menu {
    width: calc(100% - 550px);
}

.main-footer .footer-container .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 64px;
}

.main-footer .footer-container .menu ul > li > a {
    font-size: 17px;
    color: #161615;
    transition: 300ms;
    display: block;
}

.main-footer .footer-container .menu ul > li > a:Hover {
    color: #d9000d;
}

.main-footer .footer-container .menu > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 110px;
    justify-content: center;
    border-bottom: 1px solid #C2C2C2;
}

.main-footer .footer-container .menu .address {
    border: 0;
}

.main-footer .footer-container .menu .address p {
    font-size: 17px;
    margin: 0;
    font-weight: lighter;
    color: #161615;
}

.main-footer .footer-container .menu .address p a {
    color: #161615;
    transition: 300ms;
}

.main-footer .footer-container .menu .address p a:hover {
    color: #d9000d;
}

.main-footer .copyright {
    background: #D2D2D2;
    padding: 25px 0;
}

.main-footer .copyright .copyright-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #576475;
}

.main-footer .copyright .copyright-container p {
    margin: 0;
}

.main-footer .copyright .copyright-container .policy {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.main-footer .copyright .copyright-container .policy a {
    color: #d9000d;
    transition: 300ms;
}

.main-footer .copyright .copyright-container .policy a:Hover {
    color: #161615;
}

.main-footer .copyright .powered img {
    margin-right: 10px;
}

.main-footer .copyright .powered a {
    color: #707070;
    transition: 300ms;
}

.main-footer .copyright .powered a:Hover {
    color: #d9000d;
}

.main-footer {
    background-image: url(../assets/images/footer-bg-pattern.jpg);
    background-size: 31px;
}

.mega-menu {
    position: absolute;
    left: 0;
    top: 130px;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
}

.mega-menu .mega-menu-container {
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
    padding-bottom: 30px;
    background-image: url(../assets/images/export/menu-logo.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
}

.mega-menu .mega-menu-container > div {
    flex: 1;
}

.mega-menu .mega-menu-container .menu-title {
    padding: 30px 20px 12px 20px;
    border-bottom: 1px solid #C5C5C5;
    font-size: 17px;
    text-transform: uppercase;
    color: #d9000d;
    font-weight: 600;
}

.mega-menu .mega-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu .mega-menu-container ul > li > a {
    color: #373737;
    font-size: 17px;
    padding: 6px 20px;
    display: block;
    transition: 300ms;
}

.mega-menu .mega-menu-container a:Hover {
    color: #d9000d;
}

.mega-menu .mega-menu-container .sup-title {
    color: #373737;
    font-size: 17px;
    padding: 6px 20px;
    display: block;
    transition: 300ms;
    font-weight: 700;
}

.mega-menu .mega-menu-container .sup-title + ul {
    padding-left: 20px;
}

.open-mega-menu .mega-menu {
    opacity: 1;
    visibility: visible;
}

.page-header {
    background-image: url(../assets/images/about/hakkimizda/header-alt-pattern.png);
}

.page-header .breadcrumb {
    border-radius: 0;
    display: block;
    margin-bottom: 0;
    position: relative;
}

.page-header .breadcrumb:Before {
    content: '';
    display: block;
    width: 100%;
    height: 140px;
    background-image: url(../assets/images/slider-background.jpg);
}

.page-header .text-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 140px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: right;
    color: #fff;
}

.page-header .text-content h1 {
    font-size: 72px;
    font-weight: 600;
}

.page-header .text-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 17px;
    font-weight: lighter;
}

.page-header .text-content ul > li > a {
    color: #fff;
    font-weight: lighter;
    display: block;
    transition: 300ms;
}

.page-header .text-content ul > li:not(:last-child) > a:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin: 0 10px;
    color: #fff;
}

.page-header .text-content ul > li > a:Hover {
    color: #000;
}

.page-header .header-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.page-header .header-meta .menu {
    background: #576475;
    min-width: 330px;
    margin-top: -90px;
    position: relative;
    z-index: 1;
}

.page-header .header-meta .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-header .header-meta .menu ul li > a {
    display: block;
    padding: 10px 20px;
    position: relative;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    transition: 300ms;
    z-index: 1;
}

.page-header .header-meta .menu ul li > a:Before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #d9000d 50%, rgba(217, 0, 13, 0.3) 50%);
    z-index: -1;
    transition: 300ms;
    width: 0;
}

.page-header .header-meta .menu ul li > a:Hover:Before {
    width: 100px;
}

.page-header .header-meta .text {
    padding-top: 70px;
    padding-bottom: 60px;
    text-align: right;
}

.page-header .header-meta .text .page-title {
    margin: 0;
    min-width: 330px;
    height: 86px;
    text-align: right;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    background: #D9000D;
    font-size: 35px;
    font-weight: 600;
    padding-right: 20px;
    color: #fff;
}

.page-header .header-meta .text .service-title {
    margin: 0;
    min-width: 370px;
    height: 86px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #001270;
    font-size: 35px;
    font-weight: 600;
    padding-right: 20px;
    color: #fff;
}

.about-content-1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: var(--container-out);
    position: relative;
}

.about-content-1:Before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 700px;
    background: #F1F1F1;
    z-index: -1;
}

.about-content-1 > .text {
    width: 450px;
    padding-top: 30px;
}

.about-content-1 > .text p {
    font-size: 20px;
    font-weight: lighter;
}

.about-content-1 > .text p b {
    font-size: 35px;
    font-weight: 600;
}

.about-content-1 > .image {
    width: calc(100% - 500px);
    overflow: hidden;
}

.about-content-1 > .image img {
    transition: 300ms;
}

.about-content-1 > .image:Hover > img {
    transform: scale(1.1);
}

.about-content-2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0 var(--container-out);
    color: #fff;
}

.about-content-2:Before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: calc(500px + var(--container-out));
    background: #1BA083;
    z-index: -1;
}

.about-content-2:After {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    background: #344860;
}

.about-content-2 > div {
    padding: 40px 0;
}

.about-content-2 > div p {
    font-size: 20px;
    font-weight: lighter;
}

.about-content-2 .mission {
    width: 450px;
}

.about-content-2 .vision {
    width: calc(100% - 500px);
    padding-left: 30px;
}

.about-content-2 > div h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content-3 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-right: var(--container-out);
}

.about-content-3 > .image {
    width: calc(500px + var(--container-out));
    overflow: hidden;
}

.about-content-3 > .image img {
    width: 100%;
    transition: 300ms;
}

.about-content-3 > .image img:Hover {
    transform: scale(1.1);
}


.about-content-3 > .text {
    width: calc(100% - calc(500px + var(--container-out)));
    padding-top: 80px;
    padding-left: 120px;
    position: relative;
    text-align: right;
    background-image: url(../assets/images/about/hakkimizda/group-349.png);
    background-repeat: no-repeat;
    background-position: center center;
}

.about-content-3 > .text > p {
    font-size: 35px;
}

.about-content-3 > .text > p > b {
    font-weight: 500;
}

.about-content-3 > .text .counters {
    display: inline-flex;
    flex-wrap: wrap;
    width: 450px;
    margin-top: 128px;
    background: #d9000d;
    position: relative;
    z-index: 1;
}

.about-content-3 > .text .counters:Before {
    content: '';
    position: absolute;
    left: -20%;
    top: -20%;
    width: 60%;
    aspect-ratio: 1;
    z-index: -1;
    background-image: url(../assets/images/about/hakkimizda/group-265.png);
    background-repeat: no-repeat;
}

.about-content-3 > .text .counters > div {
    width: 50%;
    text-align: center;
    padding: 40px 0;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    transition: 300ms;
    cursor: default;
    background: #d9000d;
}

.about-content-3 > .text .counters > div:Hover {
    background: #161615;
}

.about-content-3 > .text .counters > div p {
    margin: 0;
}

.about-content-3 > .text .counters > div .count {
    font-size: 40px;
    font-weight: 600;
    cursor: default;
    display: block;
    width: 100%;
}

.about-content-3 > .text .counters > div .title {
    font-size: 17px;
    font-weight: lighter;
    cursor: default;
}

.page {
    padding-bottom: 50px;
}

.milestones {
    position: relative;
}

.milestones .milestones-header {
    background: #fff;
    text-align: center;
    position: relative;
    padding: 40px 0;
}

.milestones .milestones-header:Before {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    background: #1ba083;
    left: calc(50% - 6px);
    bottom: -4px;
    border-radius: 100%;
}

.milestones:Before {
    content: '';
    position: absolute;
    left: calc(50% - 1.5px);
    width: 3px;
    height: 100%;
    background-image: url(../assets/images/export/lines.png);
    background-size: contain;
}

.milestones .milestone {
    width: 50%;
    position: relative;
    margin: 60px 0;
}

.milestones .milestone:nth-child(even) {
    margin-left: 50%;
}

.milestones .milestone:nth-child(odd) {
    text-align: right;
}

.milestones .milestone:nth-child(odd):before {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    background: #1ba083;
    right: -5px;
    top: 80px;
    border-radius: 100%;
}

.milestones .milestone:nth-child(even):after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    background: #1ba083;
    left: -5px;
    top: 80px;
    border-radius: 100%;
}

.milestones .milestone {
    position: relative;
    padding: 20px 40px;
}

.milestones .milestone .year {
    background: #1BA083;
    display: inline-block;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    padding: 15px 30px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 -30px 0 30px #fff;
    transition: 300ms;
}

.milestones .milestone:nth-child(even) .year:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid #1ba083;
    border-bottom: 10px solid #1ba083;
    border-left: 10px solid transparent;
    bottom: 0;
    left: -20px;
    transition: 300ms;
}

.milestones .milestone:nth-child(odd) .year:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #1ba083;
    border-left: 10px solid #1ba083;
    bottom: 0;
    right: -20px;
    transition: 300ms;
}

.milestones .milestone .description {
    font-size: 17px;
    font-weight: lighter;
    color: #373737;
}

.quality-items .item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}

.quality-items .item > div {
    width: 50%;
}

.quality-items .item .content {
    width: calc(100% - 700px);
    padding-left: 30px;
    padding-top: 50px;
}

.quality-items .item .content .title {
    font-size: 35px;
    font-weight: 500;
}

.quality-items .item .content p {
    font-size: 20px;
    font-weight: lighter;
}

.page-header .breadcrumb img {
    width: 100%;
}

.galleries-container {
    display: grid;
    grid-template-areas:
    "squareOne squareTwo vertical"
    "bigSquare bigSquare vertical"
    "bigSquare bigSquare squareThree"
    "squareFour verticalTwo squareFive"
    "squareSix verticalTwo squareSeven";
    gap: 30px;
}

.galleries-container > a {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.galleries-container > a .zoom {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    background: #d9000d;
    background-image: url(../assets/images/icons/icon-buyut.svg);
    background-size: 40px auto;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 300ms;
    opacity: 0;
}

.galleries-container > a:Hover .zoom {
    opacity: 1;
}

.galleries-container > a .zoom:Hover {

    box-shadow: 0 0 0 30px #d9000d, 30px -30px 0 50px rgba(217, 0, 13, .5);
}

.galleries-container > a > img {
    max-width: 100%;
}

.galleries-container > a {
    position: relative;
}

.galleries-container > a:nth-child(1) {
    grid-area: squareOne;
}

.galleries-container > a:nth-child(2) {
    grid-area: squareTwo;
}

.galleries-container > a:nth-child(3) {
    grid-area: vertical;
}

.galleries-container > a:nth-child(4) {
    grid-area: bigSquare;
}

.galleries-container > a:nth-child(5) {
    grid-area: squareThree;
}

.galleries-container > a:nth-child(6) {
    grid-area: squareFour;
}

.galleries-container > a:nth-child(7) {
    grid-area: squareFive;
}

.galleries-container > a:nth-child(8) {
    grid-area: verticalTwo;
}

.galleries-container > a:nth-child(9) {
    grid-area: squareSix;
}

.galleries-container > a:nth-child(10) {
    grid-area: squareSeven;
}

.galleries-container {
    display: grid;
    grid-template-areas:
    "squareOne squareTwo vertical"
    "bigSquare bigSquare vertical"
    "bigSquare bigSquare squareThree"
    "squareFour verticalTwo squareFive"
    "squareSix verticalTwo squareSeven";
    gap: 30px;
}

.galleries-container > a {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.galleries-container > a .zoom {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    background: #d9000d;
    background-image: url(../assets/images/icons/icon-buyut.svg);
    background-size: 40px auto;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 300ms;
    opacity: 0;
}

.galleries-container > a:Hover .zoom {
    opacity: 1;
}

.galleries-container > a .zoom:Hover {
    box-shadow: 0 0 0 30px #d9000d, 30px -30px 0 50px rgba(217, 0, 13, .5);
}

.galleries-container > a > img {
    max-width: 100%;
}

.galleries-container > a {
    position: relative;
}

.galleries-container > a:nth-child(1) {
    grid-area: squareOne;
}

.galleries-container > a:nth-child(2) {
    grid-area: squareTwo;
}

.galleries-container > a:nth-child(3) {
    grid-area: vertical;
}

.galleries-container > a:nth-child(4) {
    grid-area: bigSquare;
}

.galleries-container > a:nth-child(5) {
    grid-area: squareThree;
}

.galleries-container > a:nth-child(6) {
    grid-area: squareFour;
}

.galleries-container > a:nth-child(7) {
    grid-area: squareFive;
}

.galleries-container > a:nth-child(8) {
    grid-area: verticalTwo;
}

.galleries-container > a:nth-child(9) {
    grid-area: squareSix;
}

.galleries-container > a:nth-child(10) {
    grid-area: squareSeven;
}

.documents-container {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.documents-container .document {
    width: calc(25% - 30px);
    background: #d9000d;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 230px;
    position: relative;
    z-index: 1;
}

.documents-container .document:Before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../assets/images/icons/icon-download.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: .1;
}

.documents-container .document .title {
    width: 100%;
    text-align: right;
    font-size: 17px;
    padding-right: 10px;
    border-right: 2px solid #fff;
}

.documents-container .document .download {
    width: 60px;
    height: 60px;
    background-image: url(../assets/images/icons/icon-buyut.svg);
    background-size: 40px auto;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 300ms;
    z-index: 1;
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #fff;
    display: fleX;
    align-items: center;
    justify-content: center;
}

.galleries-container > a:Hover .download {
    opacity: 1;
}

.documents-container .document .download:Hover {
    width: 100px;
    height: 100px;
    box-shadow: 15px -15px 0 15px rgba(255, 255, 255, 0.5)
}

.videos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.videos-container .video {
    width: calc(50% - 30px);
    position: relative;
}

.videos-container .video .image {
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.videos-container .video .image > a > img {
    height: 380px;
    width: 100%;
    object-fit: cover;
}

.videos-container .video .image .play-btn {
    position: absolute;
    left: calc(50% - 60px);
    bottom: calc(50% - 60px);
    width: 120px;
    height: 120px;
    background: #d9000d;
    transition: 300ms;
    transform: translateY(120%);
    opacity: 0;
}

.videos-container .video .image .play-btn img {
    position: absolute;
    bottom: 20px;
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
    transition: 300ms;
}

.videos-container .video .image .play-btn img:nth-child(2) {
    opacity: 0;
    margin-left: 2px;
    height: 75px;
}

.videos-container .video:Hover .image .play-btn {
    opacity: 1;
    transform: translateY(0);
}

.videos-container .video .image .play-btn:Hover > img:nth-child(1) {
    opacity: 0;
}

.videos-container .video .image .play-btn:Hover > img:nth-child(2) {
    opacity: 1;
}

.videos-container .video:Hover .image .play-btn:Hover {
    box-shadow: 0 0 0 40px rgba(217, 0, 13, 0.5);
}

.articles-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 30px;
}

.articles-container .article {
    width: calc(33.33% - 30px);
}

.articles-container .article .image {
    overflow: hidden;
}

.articles-container .article img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    transition: 300ms;
}

.articles-container .article .title {
    margin: 20px 0 0 0;
    font-size: 17px;
    display: block;
    color: #000;
    transition: 300ms;
}

.articles-container .article:Hover img {
    transform: scale(1.1);
}

.articles-container .article:hover .title {
    color: #d9000d;
}

.article-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.article-details > div {
    width: 50%;
}

.article-details > .content {
    padding-right: 50px;
}

.article-details .article-header {
    margin: 50px 0 30px 0;
}

.article-details .article-header .title {
    font-size: 35px;
    font-weight: 500;
    color: #d9000d;
}

.article-details .article-header .date {
    margin: 20px 0 0 0;
    padding-top: 20px;
    position: relative;
    color: #001270;
}

.article-details .article-header .date:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    height: 1px;
    width: 280px;
    background: #707070;
    max-width: 100%;
}

.article-details .article-body {
    font-size: 20px;
    font-weight: lighter;
}

.contact-details {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: -60px;
}

.contact-details .info {
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    color: #fff;
    padding: 70px 20px;
    text-align: right;
    font-size: 17px;
    font-weight: lighter;
    background: #161615 url(../assets/images/icons/icon-iletisim-bilgileri.svg) no-repeat left bottom;
}

.contact-details .info .text a {
    color: #fff;
    transition: 300ms;
    display: block;
}

.contact-details .info .socials .title {
    font-size: 35px;
    font-weight: 300;
}

.contact-details .info .socials nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 35px;
}

.contact-details .info .socials nav a {
    color: #fff;
    transition: 300ms;
}

.contact-details .info .socials nav a:Hover,
.contact-details .info .text a:Hover {
    color: #d9000d;
}

.contact-details .info > div {
    width: 100%;
}

.contact-details .form {
    width: calc(100% - 450px);
    padding: 20px 15px;
    background-color: #1BA083;
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    color: #fff;
    justify-content: space-between;
    background-image: url(../assets/images/icons/icon-iletisim-formu.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
}
.contact-details .forms {
    width: calc(100%);
    padding: 20px 15px;
    background-color: #1BA083;
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    color: #fff;
    justify-content: space-between;
    background-image: url(../assets/images/icons/icon-iletisim-formu.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
}

.contact-details .form h2 {
    width: 100%;
    font-size: 35px;
    font-weight: 600;
}
.contact-details .form .input{ width: calc(50% - 10px);}
.contact-details .form input {
   width:100%;
   font-size: 15px;
   font-weight: 600;
   background: transparent;
   padding: 15px 0;
   border: 0;
   color: #fff;
   border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.contact-details .form .button input {
   border:none;
   text-align: right;
   width: 100%;
   text-transform: uppercase;
   font-size: 17px;
   font-weight: 500;
   display: inline-flex;
   align-items: center;
   justify-content: flex-end;
   cursor: pointer;
   user-select: none;
}

.contact-details .form input::placeholder,
.contact-details .form textarea::placeholder {
    color: #fff;
}

.contact-details .form textarea {
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    padding: 15px 0;
    border: 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    height: 250px;
}

.contact-details .form .button {
    text-align: right;
    width: 100%;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    user-select: none;
}

.contact-details .form .button > span:After {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../assets/images/icons/icon-button.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: -5px;
    margin-left: 10px;
    transition: 300ms;
    transform: scale(.6);
    filter: invert(1);
}

.contact-details .form .button:Hover span:After {
    transform: scale(1);
}

.map iframe {
    width: 100%;
    height: 600px;
}

.request-form {
    background: #161615;
    padding: 45px 15px;
    position: relative;
    margin-top: -60px;
    color: #fff;
}

.request-form .title {
    text-align: right;
    font-size: 72px;
    color: #fff;
    font-weight: 700;
}

.request-form-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 30px;
}

.request-form-body > div {
    width: calc(50% - 15px);
}

.request-form-body .button, .request-form-body .textarea {
    width: 100%;
}

.request-form-body input,
.request-form-body select,
.request-form-body textarea {
    border: 0;
    background: transparent;
    border-bottom: 1px solid #000;
    color: #000;
    padding: 20px;
    font-size: 15px;
    width: 100%;
    font-weight: 600;
}

.request-form .request-form-body select:focus option {
    color: #000;
}

.request-form-body input::placeholder,
.request-form-body textarea::placeholder {
    color: #000;
}

.request-form-body .mi-col {
    display: flex;
    column-gap: 30px;
}

.request-form-body textarea {
    height: 300px;
}

.request-form-body .button {
    text-align: right;
    width: 100%;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    user-select: none;
}

.request-form-body .button span:After {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../assets/images/icons/icon-button.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: -5px;
    margin-left: 10px;
    transition: 300ms;
    transform: scale(.6);
    filter: invert(1);
}

.request-form-body .button > span:Hover:After {
    transform: scale(1);
}

.request-form .request-form-body input,
.request-form .request-form-body select,
.request-form .request-form-body textarea {
    color: #fff;
    border-color: #D9000D;
}

.request-form .request-form-body input::placeholder,
.request-form .request-form-body textarea::placeholder {
    color: #fff;
}

.page-header .header-meta .menu ul li > ul > li > a {
    font-weight: 300;
    padding-left: 30px;
}

.page-content.services-page {
    margin-top: -220px;
    background: #ffff;
    position: relative;
}

.service-content-1 {
    text-align: right;
    font-size: 20px;
    padding-left: 450px;
    padding-top: 30px;
}

.service-content-1 b {
    font-weight: 500;
}

.service-content-2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
}

.service-content-2 > div {
    width: 50%;
    font-size: 20px;
    font-weighT: lighter;
}

.service-content-2 > .left {
    padding-top: 120px;
    text-align: right;
}

.service-content-2 .image {
    overflow: hidden;
    margin: 20px 0;
}

.service-content-2 .image img {
    width: 100%;
    transition: 300ms;
}

.service-content-2 .image:Hover img {
    transform: scale(1.1);
}

.service-content-3 {
    padding: 30px 0;
    font-size: 20px;
    font-weight: lighter;
}

.service-content-3 p:last-child {
    margin: 0;
}

.service-content-4 {
    background-image: url(../assets/images/services/group-468.jpg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20%;
    background-size: cover;
    background-position: center center;
    height: 230px;
    margin: 100px 0;
    padding-left: 100px;
}

.service-content-4 img {
    transition: 300ms;
}

.service-content-4 .button a {
    font-size: 17px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    transition: 300ms;
    z-index: 11;
}

.service-content-4 .button a:After {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../assets/images/icons/icon-button.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: -5px;
    margin-left: 10px;
    transition: 300ms;
    transform: scale(.6);
    filter: invert(1);
}

.service-content-4 .button a:Hover:After {
    transform: scale(1);
}

.single-page-body h3 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 40px;
}

.single-page-body {
    margin-top: 50px;
    font-size: 20px;
    font-weight: lighter;
}

.fixed-bar .mega-menu {
    top: 100px;
}

.service-content-3 .owl-nav {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    left: -100px;
    width: calc(100% + 200px);
}

.main-header .logo:Hover img {
    transform: scale(1.1);
}

.main-sliders .slider {
    position: relative;
}

.main-sliders .slider:after {
    content: '';
    position: absolute;
    left: calc(var(--layout-padding) + 50px);
    bottom: 40px;
    width: 220px;
    height: 220px;
    z-index: 1;
    background-image: url(../assets/images/home/slider-pattern.png);
}

.main-sliders .text-box:after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 220px;
    height: 220px;
    z-index: -1;
    background-image: url(../assets/images/home/slider-pattern.png);
}

.main-categories .category .icon .read-more {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 30px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    transition: 300ms;
    opacity: 0;
}

.main-categories .category .icon .read-more:After {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../assets/images/icons/icon-button.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: -5px;
    margin-left: 10px;
    transition: 300ms;
    transform: scale(.6);
    filter: invert(1);
}

.main-categories .category .icon .read-more:Hover:After {
    transform: scale(1);
}

.main-categories .category:Hover .icon .read-more {
    opacity: 1;
}

.milestones .milestone:Hover .year {
    background: #161615;
}

.milestones .milestone:nth-child(even):Hover .year:before {
    border-right: 10px solid #161615;
    border-bottom: 10px solid #161615;
}

.milestones .milestone:nth-child(odd):Hover .year:before {
    border-bottom: 10px solid #161615;
    border-left: 10px solid #161615;
}

.service-content-4:Hover img {
    transform: rotate(-25deg);
}

.owl-carousel .red-arrow-right:Hover {
    filter: grayscale(1);
    transform: translateX(10px);
}

.owl-carousel .red-arrow-left:Hover {
    filter: grayscale(1);
    transform: translateX(-10px);
}

@media (min-width: 1400px) and (max-width: 1700px) {
    .main-sliders .owl-nav {
        padding: 0 30px;
    }
}

@media (max-width: 1600px) {
    .main-stones .owl-nav,
    .main-categories .owl-nav {
        left: 0;
        width: 100%;
        z-index: 1;
        pointer-events: none;
    }

    .main-sliders .text-box:after {
        right: -30px;
    }
}

@media (max-width: 1500px) {
    .main-sliders .owl-nav {
        padding: 130px 30px 0 30px;
        align-items: flex-start;
    }

    .main-header .menu {
        padding-left: 20px;
        width: calc(100% - 500px);
    }

    .main-header .menu > ul > li > a {
        padding: 15px 10px 40px 10px;
    }

    .fixed-bar .main-header .menu > ul > li > a {
        padding: 15px 10px;
    }

    .main-header .logo {
        width: 300px;
        padding: 0 20px;
    }

    .main-footer .footer-container .logo {
        width: 300px;
    }

    .main-footer .footer-container .menu {
        width: calc(100% - 300px);
        padding-left: 30px;
    }

    .main-footer .footer-container .menu ul {
        column-gap: 20px;
    }

    .service-content-3 .owl-nav {
        left: 0;
        width: 100%;
    }
}

@media (max-width: 1400px) {
    .main-stones .milestone:after {
        left: 32px;
    }

    .main-stones .milestone:before {
        right: 28px;
    }
}

@media (max-width: 1200px) {
    .main-about .about-container .media .socials .man {
        width: 320px;
    }

    .main-about .about-container .media .socials .content {
        width: calc(100% - 320px);
    }

    .main-about .about-container .media .socials .content .title {
        font-size: 25px;
    }

    .main-about .about-container .media .socials:After {
        height: 180px;
    }

    .main-about .about-container .media .socials:before {
        bottom: 180px;
    }

    .fixed-bar .main-header .menu > ul > li > a {
        font-size: 14px;
        padding: 15px 5px;
    }

    .main-sliders .text-box:after {
        right: -30px;
    }
}

@media (max-width: 992px) {
    .main-header .menu {
        display: none;
    }

    .main-header .actions > a {
        display: none;
    }

    .main-header .toggle-menu {
        display: flex;
        width: 40px;
        height: 40px;
        order: 2;
        border: 0;
        background: #fff;
        transition: 300ms;
        align-items: center;
        justify-content: center;
    }

    .main-header .logo {
        order: 1;
        height: 100px;
        width: calc(100% - 140px);
        margin-top: 30px !important;
        position: relative;
        z-index: 9;
    }

    .main-header .actions {
        order: 0;
        width: 50px;
        column-gap: 0;
        justify-content: flex-start;
    }

    .main-header {
        height: 70px;
        padding: 0 15px;
        align-items: center;
        z-index: 999;
    }

    .main-header .actions .languages .active {
        font-size: 14px;
        width: 50px;
        padding: 0;
        display: flex;
        height: 50px;
        align-items: center;
        justify-content: center;
        padding-bottom: 10px;
    }

    .main-sliders {
        margin-top: 70px;
    }

    .main-sliders img {
        height: 600px;
        width: calc(100% - 30px) !important;
        margin-left: 15px;
    }

    .main-sliders .text-box .counter {
        display: none;
    }

    .main-sliders .text-box .title {
        min-width: unset;
        max-width: 100%;
        font-size: 20px;
        min-height: unset;
    }

    .slider-actions {
        display: none;
    }

    .main-sliders .owl-nav {
        padding: 0 30px;
        align-items: center;
    }

    .main-sliders .text-box {
        height: 100%;
        align-items: flex-end;
        justify-content: flex-end;
        padding-bottom: 20px;
        padding-right: 20px;
    }

    .main-sliders .content .container {
        height: 100%;
    }

    .main-sliders .text-box .title:after {
        top: -30px;
        border-top: 15px solid transparent;
        border-right: 15px solid rgba(255, 255, 255, 0.8);
        border-bottom: 15px solid rgba(255, 255, 255, 0.8);
        border-left: 15px solid transparent;
    }

    .main-categories .category .icon {
        width: 60px;
        height: 60px;
        padding-top: 11px;
    }

    .main-categories .category .icon img {
        width: 60px;
        height: 60px;
    }

    .main-categories .category .content {
        width: calc(100% - 60px);
    }

    .main-about .section-header h2 {
        font-size: 35px;
        text-align: center;
        margin-bottom: 30px;
    }

    .main-about .about-container {
        flex-direction: column-reverse;
    }

    .main-about .about-container > div {
        width: 100%;
    }

    .main-about .text .text-content {
        margin-left: 30px;
        width: calc(100% - 30px);
        font-size: 14px;
        padding-bottom: 140px;
        text-align: right;
    }

    .main-about .text .image {
        position: static;
        padding-right: 15px;
        margin-top: -120px;
    }

    .main-about .about-container .media .socials .man {
        width: 200px;
        margin-top: 90px;
    }

    .main-about .about-container .media .read-more {
        display: none;
    }

    .main-about .about-container .media .socials .content {
        width: calc(100% - 200px);
    }

    .main-about .about-container .media .logo {
        width: 80%;
        left: 10%;
    }

    .main-stones .section-header h3 {
        font-size: 35px;
    }

    .main-stones .owl-nav {
        pointer-events: unset;
        top: -62px;
        height: unset;
    }

    .main-media .media-links {
        flex-wrap: wrap;
        column-gap: 0;
        row-gap: 20px;
        padding-bottom: 30px;
        padding-top: 130px;
    }

    .main-media .media-links .link {
        flex: unset;
        width: 50%;
        height: 60px;
    }

    .main-media .media-links .link img {
        width: 40px;
        padding: 0;
        height: 40px;
    }

    .main-media .media-links .link:before {
        width: 40px;
    }

    .main-media .media-links .link span {
        width: calc(100% - 60px);
        font-size: 14px;
        padding-left: 5px;
    }

    .footer-widgets {
        flex-direction: column;
    }

    .footer-widgets .widget {
        width: 100%;
    }

    .footer-widgets .widget .header p {
        height: 40px;
        font-size: 20px;
        margin-bottom: 40px;
    }


    .fixed-bar .main-header {
        height: 70px;
    }

    .main-footer .footer-container {
        flex-direction: column;
        row-gap: 30px;
    }

    .main-footer .footer-container .logo {
        width: 100%;
        padding-top: 50px;
        margin-bottom: 30px
    }

    .main-footer .footer-container .menu {
        display: none;
    }

    .main-footer .copyright {
    }

    .main-footer .copyright .copyright-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .main-footer .copyright .copyright-container .policy {
        flex-direction: column;
    }

    .main-footer .copyright .copyright-container .policy p {
        margin: 20px 0;
    }

    .main-footer .footer-container:Before {
        left: 0;
        width: 100%;
    }

    .main-footer {
        background-size: 30px;
    }

    .main-categories .category .content .title {
        font-size: 16px;
    }

    .main-categories .category {
        height: 250px;
    }

    .main-categories .owl-nav {
        height: unset;
        top: unset;
        bottom: 0;
        pointer-events: unset;
    }

    .main-categories .category .icon img {
        width: 40px;
        height: 40px;
    }

    .menu-wrapper {
        position: fixed;
        top: 70px;
        background: rgba(255, 255, 255, .9);
        height: calc(100vh - 70px);
        display: block;
        z-index: 99;
        width: 100%;
        text-align: right;
        padding: 50px 20px 20px 20px;
        transition: 300ms;
        opacity: 0;
        visibility: hidden;
    }

    .menu-wrapper ul {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }

    .menu-wrapper ul > li > a {
        padding: 10px 0;
        display: block;
        font-weight: 500;
        color: #2f2f2f;
        font-size: 18px;
    }

    .menu-wrapper .offer-button a {
        color: #fff;
        padding: 12px 25px;
        font-size: 17px;
        text-transform: uppercase;
        background: #D9000D;
        transition: 300ms;
        display: inline-block;
        width: 70%;
        text-align: center;
        margin-bottom: 30px;
    }

    .menu-wrapper .phone a {
        margin-bottom: 20px;
        display: block;
    }

    .menu-wrapper .phone {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .menu-wrapper .phone a {
        font-weight: 600;
        font-size: 20px;
        color: #494949;
        transition: 300ms;
    }

    .menu-wrapper .phone a > span {
        font-weight: 300;
    }

    .menu-wrapper .socials nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        column-gap: 20px;
    }

    .menu-wrapper .socials nav a {
        color: #848484;
    }

    .open-menu .menu-wrapper {
        opacity: 1;
        visibility: visible;
    }

    .page-header .breadcrumb:Before {
        height: 70px;
    }

    .page-header .breadcrumb img {
        height: 300px;
        object-fit: cover;
        filter: brightness(.2);
    }

    .page-header .text-content {
        z-index: 1;
    }

    .page-header .text-content h1 {
        font-size: 25px;
    }

    .page-header .text-content ul > li > a {
        font-size: 14px;
    }

    .page-header .header-meta {
        flex-direction: column;
    }

    .page-header .header-meta .menu {
        width: 100%;
        min-width: unset;
        margin-top: 30px;
    }

    .page-header .header-meta .text {
        padding-top: 20px;
        width: 100%;
    }

    .page-header .header-meta .text .page-title {
        min-width: 70%;
        height: unset;
        padding: 15px;
        font-size: 16px;
    }

    .about-content-1 {
        flex-direction: column;
        padding: 0 15px;
    }

    .about-content-1 > .text {
        width: 100%;
    }


    .about-content-1 > .text p b {
        font-size: 20px;
    }

    .about-content-1 > .text p {
        font-size: 16px;
    }

    .about-content-1 > .image {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-content-2 {
        padding: 0;
        flex-direction: column;
    }

    .about-content-2 .mission {
        width: 100%;
        padding: 20px;
        background: #1BA083;
    }

    .about-content-2:Before {
        content: none;
    }

    .about-content-2 .vision {
        padding: 20px;
        width: 100%;
    }

    .about-content-3 {
        padding: 20px;
        padding-right: 20px;
        flex-direction: column;
    }

    .about-content-3 > .image {
        width: 100%;
    }

    .about-content-3 > .text {
        width: 100%;
        padding-top: 20px;
        padding-left: 0;
    }

    .about-content-3 > .text .counters:Before {
        content: none;
    }

    .about-content-3 > .text .counters {
        width: 100%;
        margin-top: 0;
    }

    .about-content-3 > .text > p {
        font-size: 25px;
        padding: 30px 0;
        text-align: center;
    }

    .article-details {
        flex-direction: column-reverse;
    }

    .article-details > .content {
        padding-right: 0;
    }

    .article-details > div {
        width: 100%;
    }

    .article-details .article-header .title {
        font-size: 25px;
    }

    .article-details .article-body {
        font-size: 16px;
    }

    .articles-container .article {
        width: 100%;
        margin: 15px 0;
    }

    .contact-details {
        flex-direction: column-reverse;
        margin-top: 0;
    }

    .contact-details .info {
        width: 100%;
    }

    .contact-details .info .socials .title {
        font-size: 20px;
        margin-top: 50px;
    }

    .contact-details .form {
        width: 100%;
    }

    .contact-details .form .input {
        width: 100%;
    }

    .documents-container .document {
        width: 100%;
        margin: 15px 0;
    }

    .galleries-container > a .zoom {
        width: 50px;
        height: 50px;
        background-size: 20px;
    }

    .single-page-body h3 {
        font-size: 20px;
    }

    .single-page-body {
        margin-top: 30px;
        font-size: 16px;
    }

    .request-form-body > div {
        width: 100%;
    }

    .quality-items .item {
        flex-direction: column;
    }

    .quality-items .item > div {
        width: 100%;
    }

    .quality-items .item .content {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .quality-items .item .content .title {
        font-size: 25px;
    }

    .quality-items .item .content p {
        font-size: 16px;
    }

    .service-content-1 {
        padding-left: 0;
        width: 100%;
        font-size: 16px;
    }

    .service-content-2 {
        flex-direction: column;
    }

    .service-content-2 > .left {
        padding-top: 0;
        width: 100%;
        font-size: 16px;
    }

    .service-content-2 > div {
        font-size: 16px;
        width: 100%;
    }

    .service-content-3 {
        font-size: 16px;
    }

    .service-content-4 {
        flex-direction: column;
        height: 300px;
        margin: 50px 0;
        padding-bottom: 30px;
    }

    .videos-container .video {
        width: 100%;
        margin: 15px 0;
    }

    .videos-container .video .image .play-btn {
        width: 80px;
        height: 80px;
        left: calc(50% - 40px);
        bottom: calc(50% - 40px);
    }

    .videos-container .video .image .play-btn img {
        width: 30px;
        bottom: 25px;
    }

    .videos-container .video .image .play-btn img:nth-child(2) {
        top: 1px;
    }

    .main-sliders .text-box:after {
        content: none;
    }

    .main-sliders .slider:after {
        content: none;
    }

    .service-content-4 .button a {
        color: #000;
        display: block;
    }

    .service-content-4 {
        margin-bottom: 150px;
    }
}