﻿@font-face {
    font-family: 'DMSans-Bold';
    src: url('../fonts/DMSans-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'DMSans-ExtraBold';
    src: url('../fonts/DMSans-ExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'DMSans-Light';
    src: url('../fonts/DMSans-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'DMSans-ExtraLight';
    src: url('../fonts/DMSans-ExtraLight.ttf') format('truetype');
}

@font-face {
    font-family: 'DMSans-Medium';
    src: url('../fonts/DMSans-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'DMSans-Regular';
    src: url('../fonts/DMSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'DMSans-SemiBold';
    src: url('../fonts/DMSans-SemiBold.ttf') format('truetype');
}

:root {
    --whitecolor: #FFF;
    --whitecolor2: #F2F2F2;
    --blackcolor: #000;
    --bluecolor: #0086E7;
    --darkbluecolor: #0163AA;
    --dmbold: DMSans-Bold;
    --dmsemibold: DMSans-SemiBold;
    --dmebold: DMSans-ExtraBold;
    --dmlight: DMSans-Light;
    --dmelight: DMSans-ExtraLight;
    --dmmedium: DMSans-Medium;
    --dmregular: DMSans-Regular;
}

body {
    overflow-x: hidden;
}

body.passive {
    overflow: hidden;
}

body::-webkit-scrollbar {
    background: transparent;
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    background: var(--bluecolor);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/*-------------------------------Mycontainer----------------------------------------*/
.mycontainer {
    margin: 0 360px;
}

/*--------------------------------Header--------------------------------------------*/
header {
    position: fixed;
    width: 100%;
    height: 160px;
    z-index: 800;
    display: flex;
    align-items: center;
    transition: all ease 0.5s;
}

header.active {
    background: var(--bluecolor);
    height: 120px;
    transition: all ease 0.5s;
}

header .mycontainer {
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-logo img {
    width: 120px;
    transition: all ease 0.5s;
}

.header-menu ul,
.header-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.header-menu ul li,
.header-right ul li {
    padding: 0 15px;
    position: relative;
}

.header-menu ul li {
    height: 60px;
    display: flex;
    align-items: center;
}

.header-menu ul li a {
    text-decoration: none;
    font-family: var(--dmebold);
    font-size: 18px;
    color: var(--whitecolor);
    transition: all ease 0.5s;
}

.header-menu ul li a:hover {
    color: var(--blackcolor)
}

.header-menu-categories {
    position: absolute;
    top: 60px;
    left: 0;
    width: 250px;
    display: none;
    background: var(--bluecolor);
    box-shadow: 0 0 5px 4px #00000025;
}

.header-menu-categories ul {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.header-menu-categories ul li {
    margin-right: 0;
    height: auto !important;
    padding: 10px 0;
    padding-left: 20px;
}

.header-menu ul li:hover .header-menu-categories {
    display: flex;
}

.header-right ul li img {
    transition: all ease 0.5s;
}

.header-right ul li img:hover {
    filter: invert(1);
}

header.header2 .mega-menu-btn img {
    filter: invert(0) !important;
}

.header-right ul li button {
    background: transparent;
    border: none;
}

.mega-menu-btn img {
    width: 20px;
}

.search-index {
    position: absolute;
    top: 50px;
    right: 0;
    width: 350px;
    height: 50px;
    background: var(--darkbluecolor);
    border-radius: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    display: none;
    z-index: 50;
}

.search-index.active {
    display: flex;
}

.search-index input {
    background: transparent;
    border: none;
    padding-left: 15px;
    width: 225px;
    height: 30px;
    color: var(--bluecolor);
    outline: none !important;
}

.search-index input::placeholder {
    color: var(--bluecolor);
}

.search-index button {
    width: 50px;
    height: 30px;
    background: var(--whitecolor) !important;
    color: var(--blackcolor) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 15px;
}

.search-index span {
    color: var(--whitecolor);
    cursor: pointer;
}

header.header2 .header-logo img,
header.header2 .search-menu-btn img,
header.header2 .home-logo-mini img {
    filter: invert(1);
}

header.header2 .header-menu ul li a {
    display: none;
}

/*----------------------------Mega-Menu-------------------------------*/
.mega-menu {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background-image: url(../images/mega-menu-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 750;
    padding: 160px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.5s;
}

.mega-menu.active {
    left: 0;
}

.mega-menu .mycontainer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.mega-menu .mega-menu-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mega-menu .mega-menu-menu ul li {
    margin-bottom: 70px;
    display: inline-block;
    width: 250px;
}

.mega-menu .mega-menu-menu ul li:hover {
    width: auto;
}

.mega-menu .mega-menu-menu ul li a {
    text-decoration: none;
    color: var(--blackcolor);
    font-family: var(--dmbold);
    font-size: 22px;
    position: relative;
    transition: all ease 0.5s;
}

.mega-menu .mega-menu-menu ul li a::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--darkbluecolor);
    left: 0;
    top: calc(50% - 1.5px);
    opacity: 0;
    width: 0;
    transition: all ease 0.5s;
}

.mega-menu .mega-menu-menu ul li a:hover {
    padding-left: 35px;
    color: var(--darkbluecolor);
}

.mega-menu .mega-menu-menu ul li a:hover::before {
    opacity: 1;
    width: 30px;
}

.mega-menu .mega-menu-menu ul li a.active{
    padding-left: 35px;
    color: var(--darkbluecolor);
}
.mega-menu .mega-menu-menu ul li a.active::before{
    opacity: 1;
    width: 30px;
}

.mega-menu .mega-menu-menu ul li a i {
    margin-left: 10px;
    transition: all ease 0.5s;
}

.mega-menu .mega-menu-menu ul li a:hover i {
    transform: rotate(-90deg);
}

.mega-menu .mega-menu-menu ul li a.active i{
    transform: rotate(-90deg);
}

.mega-menu-categories {
    display: none;
    position: absolute;
    top: 0;
    left: 280px;
}
.mega-menu-categories.active{
    display:flex;
}

.mega-menu-contact-box {
    margin-bottom: 30px;
}

.mega-menu-contact-box a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--blackcolor);
    font-size: 14px;
    font-family: var(--dmmedium);
}

.mega-menu-contact-box a i {
    color: var(--darkbluecolor);
    margin-bottom: 10px;
}

.mega-menu-box {
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position:relative;
}

.mega-menu-box img {
    width: 100%;
}

.mega-menu-content {
    height: calc(100vh - 330px);
    overflow-y: scroll;
    width:100%;
}

.mega-menu-content::-webkit-scrollbar {
    background: transparent;
    width: 8px;
    height: 8px;
}

.mega-menu-content::-webkit-scrollbar-thumb {
    background: var(--bluecolor);
    border-radius: 5px;
}
.mini-menu-content{
    display: none;
    justify-content: center;
    align-items: center;
}
.mini-menu-content ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.mini-menu-content ul li{
    padding: 15px 0;
}
.mini-menu-content ul li a{
    text-decoration: none;
    color: var(--blackcolor);
    font-family: var(--dmbold);
    font-size: 16px;
}
/*----------------------------Mini-info-------------------------------*/
.mini-info {
    position: absolute;
    top: 160px;
    left: 50px;
    z-index: 200;
}

.mini-info-contact {
    width: 90px;
    height: 90px;
    background: var(--whitecolor);
    transition: all ease 0.5s;
    margin-bottom: 4px;
    box-shadow: 0 0 5px 4px #00000025;
}

.mini-info-contact a {
    color: var(--blackcolor);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    transition: all ease 0.5s;
}

.mini-info-contact:hover {
    background: var(--bluecolor);
}

.mini-info-contact:hover a {
    color: var(--whitecolor);
}

.mini-info-social {
    width: 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: var(--whitecolor);
    box-shadow: 0 0 5px 4px #00000025;
    transition: all ease 0.5s;
}

.mini-info-social-top {
    width: 90px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.mini-info-social-top p {
    font-size: 14px;
    font-family: var(--dmebold);
    padding: 0;
    margin: 0;
    text-align: center;
}

.mini-social-add-btn {
    position: relative;
    z-index: 5;
    display: flex;
    width: 46px;
    height: 46px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #FFF;
    transition: all ease 0.5s;
}

.mini-social-add-btn i {
    position: relative;
    z-index: 6;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mini-social-add-btn::before {
    content: "";
    position: absolute;
    width: 46px;
    height: 46px;
    top: 0;
    left: 0;
    z-index: -6;
    border-radius: 50%;
    transition: all ease 0.5s;
}

.mini-info-social:hover .mini-social-add-btn::before {
    animation: forwards sea 0.5s;
}

@keyframes sea {
    0% {
        background: conic-gradient(#0086E7 0deg, #fff 0deg);
    }

    10% {
        background: conic-gradient(#0086E7 36deg, #fff 0deg);
    }

    20% {
        background: conic-gradient(#0086E7 72deg, #fff 0deg);
    }

    30% {
        background: conic-gradient(#0086E7 108deg, #fff 0deg);
    }

    40% {
        background: conic-gradient(#0086E7 144deg, #fff 0deg);
    }

    50% {
        background: conic-gradient(#0086E7 180deg, #fff 0deg);
    }

    60% {
        background: conic-gradient(#0086E7 216deg, #fff 0deg);
    }

    70% {
        background: conic-gradient(#0086E7 252deg, #fff 0deg);
    }

    80% {
        background: conic-gradient(#0086E7 288deg, #fff 0deg);
    }

    90% {
        background: conic-gradient(#0086E7 324deg, #fff 0deg);
    }

    100% {
        background: conic-gradient(#0086E7 360deg, #fff 0deg);
    }
}

.mini-social-open-btn {
    color: var(--bluecolor);
    transform: rotate(0);
    cursor: pointer;
    font-size: 22px;
    transition: all ease 0.5s;
}

.mini-social-open-btn.active {
    transform: rotate(180deg);
}

.mini-info-social-bottom {
    display: none;
    padding: 15px;
    border-top: 1px solid var(--blackcolor);
    background: var(--whitecolor);
}

.mini-info-social-box a {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid var(--bluecolor);
    border-radius: 50%;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--blackcolor);
    transition: all ease 0.5s;
}

.mini-info-social-box a:hover {
    background: var(--bluecolor);
    color: var(--whitecolor);
}

.mini-info-social-bottom.active {
    display: block;
}

/*--------------------------------Home-Carousel-------------------------*/
.home-carousel {
    height: 100vh;
    overflow: hidden;
}

.home-carousel-buttons {
    width: 40px;
    height: 40px;
    right: 360px;
    left: auto;
    top: calc(50%);
    opacity: 1;
    border: 1px solid var(--whitecolor);
}

.home-carousel-buttons:hover {
    opacity: 0.5;
}

.home-carousel-buttons.carousel-control-prev {
    top: calc(50% - 50px);
}

.home-carousel-dots {
    right: 360px;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    align-items:end;
}

.home-carousel-dots button {
    border: none !important;
    position: relative;
    width: 15px !important;
    height: 15px !important;
    border: 1px solid var(--whitecolor) !important;
    background: transparent !important;
    margin-bottom: 30px;
    text-indent:0 !important;
    display:flex;
    justify-content:center;
    align-items:center;
    color:transparent;
    font-family:var(--dmmedium);
    font-size:12px;
}

.home-carousel-dots button::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    background: var(--whitecolor);
    bottom: -30px;
    left: calc(50% - 0.5px);
    opacity: 0;
}

.home-carousel-dots button.active {
    background: var(--whitecolor) !important;
    color: var(--blackcolor) !important;
    width: 20px !important;
    height: 20px !important;
}

.home-carousel-dots button.active::before {
    opacity: 1;
}

/*------------------------------Home-Sections--------------------------*/
.home-sections {
    padding: 60px 0;
}

.home-sections-title {
    text-align: center;
    margin-bottom: 50px;
}

.home-sections-title h2 {
    font-size: 24px;
    font-family: var(--dmebold);
    color: var(--blackcolor);
}

.home-sections-title p {
    font-size: 18px;
    font-family: var(--dmmedium);
    color: var(--blackcolor);
}

/*--------------------------------Home-Service-------------------------*/
.home-service {
    background: var(--whitecolor2);
    height: 485px;
}

.home-service .col-lg-3 {
    padding: 0 5px;
}

.service-box {
    position: relative;
}

.service-box-image {
    height: 295px;
    display: flex;
    justify-content: center;
    align-items: end;
    overflow: hidden;
}

.service-box-image a {
    height: 295px;
    display: flex;
    justify-content: center;
    align-items: end;
}

.service-box-text {
    position: absolute;
    width: 100%;
    height: 80px;
    left: 0;
    top: 100%;
    z-index: 25;
    transition: all ease 0.5s;
}

.service-box-text a {
    background: var(--blackcolor);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--whitecolor);
    transition: all ease 0.5s;
}

.service-box-text a h5 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: var(--dmebold);
    transition: all ease 0.5s;
}

.service-box:hover .service-box-text {
    position: absolute;
    height: 295px;
    left: 0;
    top: 0;
    opacity: 0.8;
    color: var(--whitecolor);
}

.service-box:hover .service-box-text a {
    background: var(--bluecolor);
}

/*-----------------------------------------Home-Work-----------------------------------*/
.home-work {
    margin-top: 60px;
}

.home-work .col-lg-6 {
    padding: 0 5px;
}

.home-work-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 270px;
    background: #EEEEEE;
    padding: 30px;
    margin-bottom: 10px;
}

.home-work-box-image {
    position: relative;
    width: 210px;
    height: 100%;
    margin-right: 40px;
}

.home-work-box-image img {
    width: 210px;
}

.home-work-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--whitecolor);
    background: var(--darkbluecolor);
    font-size: 36px;
    font-family: var(--dmmedium);
    transition:all ease 0.5s;
}
.home-work-box:hover .home-work-num{
    background:var(--bluecolor);
}

.home-work-box-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.home-work-box-text h5 {
    font-size: 24px;
    font-family: var(--dmebold);
}

.home-work-box-text p {
    font-size: 18px;
    font-family: var(--dmregular);
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

/*----------------------------------------Home-Corporate-----------------------------*/
.home-corporate {
    margin-top: -110px;
}

.home-corporate-top {
    height: 390px;
    background-image: url(../images/home-corporate-bg1.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home-corp-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-corp-box img {
    margin-bottom: 20px;
    transition: all ease 0.5s;
}

.home-corp-box:hover img {
    transform: rotateY(360deg);
}

.home-corp-box h5 {
    font-size: 48px;
    font-family: var(--dmmedium);
    color: var(--whitecolor);
}

.home-corp-box p {
    font-size: 18px;
    font-family: var(--dmmedium);
    color: var(--whitecolor);
}

.home-corp-image {
    margin-top: 110px;
}

.home-corp-image img {
    width: 100%;
}

.home-corporate-bottom {
    height: 150px;
    background-image: url(../images/home-corporate-bg2.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.home-corporate-bottom .mycontainer {
    width: 100%;
}

.home-corp-text h5 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-family: var(--dmmedium);
    color: var(--whitecolor);
}

/*------------------------------------Home Reference----------------------------------*/
.home-reference .col-lg-3 {
    margin: 0;
    padding: 0 5px;
}

.home-reference-box {
    width: 100%;
    height: 124px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #D2D2D2;
    margin-bottom: 10px;
}

.home-reference-box img {
    max-width: 100%;
}

/*-------------------------------------Home-Contact--------------------------------------*/
.home-contact {
    height: 750px;
    background: url(../images/home-contact-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.contact-input-group input {
    width: 100%;
    height: 50px;
    background: var(--whitecolor);
    font-size: 18px;
    font-family: var(--dmregular);
    color: var(--blackcolor);
    border: 1px solid transparent;
    margin-bottom: 10px;
    padding-left: 20px;
    outline: none;
    transition: all ease 0.5s;
}

.contact-input-group textarea {
    width: 100%;
    height: 150px;
    background: var(--whitecolor);
    font-size: 18px;
    font-family: var(--dmregular);
    color: var(--blackcolor);
    border: 1px solid transparent;
    padding-top: 20px;
    padding-left: 20px;
    outline: none;
    margin-bottom: 20px;
    transition: all ease 0.5s;
}

.contact-input-group input::placeholder,
.contact-input-group textarea::placeholder {
    color: #BDBDBD;
}

.contact-input-group input:focus,
.contact-input-group textarea:focus {
    border: 1px solid var(--darkbluecolor);
}

.contact-input-check {
    margin-bottom: 20px;
}

.contact-input-check input {
    width: 20px;
    height: 20px;
    border-radius: 0 !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}

.contact-input-check input:checked {
    background-color: var(--darkbluecolor) !important;
}

.contact-input-check label {
    font-size: 12px;
    font-family: var(--dmregular);
    color: var(--blackcolor);
    margin-left: 10px;
}

.contact-input-group button {
    width: 100%;
    height: 50px;
    background: var(--darkbluecolor);
    font-size: 18px;
    font-family: var(--dmebold);
    border: 1px solid transparent;
    color: var(--whitecolor);
    outline: none;
    text-align: center;
    transition: all ease 0.5s;
}

.contact-input-group button:hover {
    background: var(--bluecolor);
}

.home-contact-map iframe {
    width: 100%;
    height: 330px;
}

/*-------------------------------------------Footer-----------------------------------*/
.footer-top {
    background-image: url(../images/footer-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 360px;
    padding: 60px 0;
}

.footer-top-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer-top ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.footer-menu {
    border-bottom: 1px solid var(--whitecolor);
}

.footer-top ul li {
    margin-right: 45px;
    padding: 30px 0;
}

.footer-top ul li:last-child {
    margin-right: 0;
}

.footer-top ul li a {
    font-size: 18px;
    font-family: var(--dmebold);
    color: var(--whitecolor);
    text-decoration: none;
    transition: all ease 0.5s;
}

.footer-top ul li a:hover {
    color: var(--bluecolor);
}

.footer-form form {
    display: flex;
    flex-direction: row;
}

.footer-form form .contact-input-group {
    margin: 0;
    margin-right: 7px;
}

.footer-form form .contact-input-group input {
    width: 290px;
    height: 35px;
    font-family: var(--dmregular);
    font-size: 14px;
    padding-left: 15px;
}

.footer-form form .contact-input-group button {
    width: 145px;
    height: 35px;
    font-family: var(--dmebold);
    font-size: 14px;
}

.footer-form form .contact-input-group input:focus {
    border: 2px solid var(--darkbluecolor);
}

.footer-top-content-right {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    height: 100%;
}

.footer-logo img {
    width: 120px;
}

.footer-contact ul {
    flex-direction: column;
    align-items: end;
    text-align: end;
}

.footer-contact ul li {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}

.footer-contact ul li:last-child {
    margin-bottom: 0;
}

.footer-contact ul li a {
    font-size: 14px;
    font-family: var(--dmregular);
}

.footer-contact ul li:first-child a {
    font-family: var(--dmebold);
}

.footer-bottom {
    background: url(../images/footer-bg2.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 50px;
    padding: 15px 0;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: var(--dmmedium);
    color: var(--whitecolor);
}

.footer-copyright p a {
    text-decoration: none;
    font-family: var(--dmbold);
    color: var(--whitecolor);
}

/*----------------------------------------Breadcrumb-----------------------------------*/
.breadcrumb {
    position: relative;
    background-image: url(../images/slider.png);
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    height: 390px;
    display: flex;
    justify-content: center;
    align-items: end;
    padding-bottom: 100px;
}

.breadcrumb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #0163AA80;
    z-index: 3;
}

.breadcrumb-text {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breadcrumb-text h2 {
    font-size: 28px;
    font-family: var(--dmbold);
    color: var(--whitecolor);
}

.breadcrumb-text ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    list-style: none;
}

.breadcrumb-text ul li {
    padding-right: 15px;
    color: var(--whitecolor);
    font-size: 14px;
    font-family: var(--dmregular);
    position: relative;
}

.breadcrumb-text ul li::before {
    content: ">";
    position: absolute;
    width: 5px;
    height: 5px;
    font-size: 14px;
    right: 5px;
    top: 0;
}

.breadcrumb-text ul li:last-child::before {
    display: none;
}

.breadcrumb-text ul li a {
    color: var(--whitecolor);
    font-size: 14px;
    font-family: var(--dmregular);
    text-decoration: none;
}

/*--------------------------------------------Corporate------------------------------*/
.corporate-image {
    height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.corporate-image img {
    width: 100%;
}

.corporate-text p {
    font-size: 18px;
    color: var(--blackcolor);
    font-family: var(--dmregular);
}

.mission-title {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.mission-title img {
    padding: 20px;
    background: var(--bluecolor);
    margin-right: 20px;
    transition:all ease 0.5s;
}
.mission-title:hover img{
    background: var(--darkbluecolor);
}

.mission-title h2 {
    font-size: 24px;
    font-family: var(--dmebold);
    color: var(--blackcolor);
    margin: 0;
}

.mission-text p {
    font-size: 18px;
    color: var(--blackcolor);
    font-family: var(--dmregular);
}

.mission-image {
    height: 330px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-image img {
    width: 100%;
}

.kvkk-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 145px;
    height: 100%;
    background: #ECECEC;
    padding: 20px 40px;
    margin-bottom: 40px;
}

.kvkk-box i {
    font-size: 22px;
    color: var(--darkbluecolor);
    margin-bottom: 15px;
}

.kvkk-box p {
    font-size: 18px;
    font-family: var(--dmebold);
    color: var(--blackcolor);
    text-align: center;
}

.kvkk-box p a {
    text-decoration: none;
    color: var(--darkbluecolor);
}

/*-----------------------------------------Services----------------------------------*/
.service-section {
    margin-bottom: 120px;
}

/*-----------------------------------------Service-Detail----------------------------*/
.service-detail-title {
    margin-bottom: 30px;
}

.service-detail-title2 {
    margin-bottom: 60px;
}

.service-detail-title h2,
.service-detail-title h3 {
    text-align: center;
    font-size: 30px;
    font-family: var(--dmregular);
    color: var(--blackcolor);
}

.service-detail-title h2 {
    font-family: var(--dmebold);
}

.service-detail-title3 h2,
.service-detail-title3 h3 {
    color: var(--whitecolor);
}

.service-detail-image {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 50px;
}

.service-detail-image img {
    width: 100%;
}

.service-detail-video-box {
    position: relative;
}

.service-video-main-image {
    height: 335px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.service-video-main-image img {
    width: 100%;
}

.video-btn {
    position: absolute;
    border: none;
    background: transparent;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
}

.service-system {
    background: #EEEEEE;
}

.service-system-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    transition: all ease 0.5s;
}

.service-system-box:hover {
    box-shadow: 0 0 5px 4px #00000025;
}

.service-system-box-icon {
    margin-bottom: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-system-box-icon img {
    max-width: 100%;
    transition: all ease 0.5s;
}

.service-system-box:hover img {
    transform: scale(1.2);
}

.service-system-box-text {
    text-align: center;
    font-size: 18px;
    font-family: var(--dmregular);
    color: var(--blackcolor);
}

.service-example-box {
    display: flex;
    margin-bottom: 25px;
}

.service-example-image {
    width: 50%;
    height: 165px;
    padding-right: 10px;
    border-top: 2px solid var(--darkbluecolor);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.service-example-image img {
    width: 100%;
}

.service-example-text {
    width: 50%;
}

.service-example-text h5 {
    font-size: 18px;
    font-family: var(--dmebold);
    color: var(--whitecolor);
    background: var(--darkbluecolor);
    width: 96px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.service-example-text p {
    font-size: 18px;
    font-family: var(--dmregular);
    color: var(--blackcolor);
}

.service-video-text h2 {
    font-size: 18px;
    color: var(--blackcolor);
    font-family: var(--dmebold);
}

.service-video-text ul li {
    font-size: 18px;
    color: var(--blackcolor);
    font-family: var(--dmregular);
    margin-bottom: 15px;
}

.service-video-text ul li:last-child {
    margin-bottom: 0;
}

.service-catalog-section {
    background: var(--darkbluecolor);
}

.service-catalog-detail {
    display: flex;
    justify-content: center;
}

.service-catalog-image img {
    max-width: 320px;
}

.service-catalog-download a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    background: var(--whitecolor);
    color: var(--blackcolor);
    text-decoration: none;
    padding: 10px;
}

.service-catalog-download a i {
    font-size: 23px;
    margin-bottom: 10px;
}

.service-catalog-download a p {
    font-size: 18px;
    font-family: var(--dmebold);
    text-align: center;
    margin: 0;
    padding: 0;
}

#owl-service {
    position: relative;
}

#owl-service .owl-dots {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
}

#owl-service .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--whitecolor);
    transition: all ease 0.5s;
}

#owl-service .owl-dots .owl-dot.active span {
    background: var(--whitecolor);
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
}

/*-------------------------------------------------Media-----------------------*/
.media-section {
    padding-bottom: 0;
}

.media-container2 {
    background: var(--whitecolor2);
    padding: 30px 0;
}

.media-tabs .nav-item {
    width: 25%;
}

.media-tabs .nav-link {
    color: var(--blackcolor);
    border: none;
    border-radius: 0;
    width: 100%;
    height: 70px;
    font-family: var(--dmebold);
    font-size: 24px;
}

.media-tabs .nav-link.active {
    background: var(--whitecolor2);
    color: var(--blackcolor);
}

.document-box {
    background: var(--whitecolor);
    padding: 20px 60px;
    height: 235px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.document-box a img {
    width: 100%;
}

.blog-box {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--whitecolor);
}

.blog-box-image {
    width: 50%;
    height: 235px;
    background: #DDDDDD;
    overflow:hidden;
}

.blog-box-image a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-box-text {
    width: 50%;
    height: 235px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 20px;
}

.blog-box-text span {
    font-size: 14px;
    font-family: var(--dmregular);
    color: var(--darkbluecolor);
}

.blog-box-text .blog-text-content {
    text-decoration: none;
}

.blog-box-text .blog-text-content h5 {
    font-size: 18px;
    font-family: var(--dmebold);
    color: var(--blackcolor);
}

.blog-box-text .blog-text-content p {
    font-size: 18px;
    font-family: var(--dmregular);
    color: var(--blackcolor);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blog-box-text .blog-text-btn {
    text-decoration: none;
    height: 46px;
    width: 168px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-family: var(--dmebold);
    color: var(--whitecolor);
    background: var(--darkbluecolor);
    transition: all ease 0.5s;
}

.blog-box-text .blog-text-btn:hover {
    background: var(--bluecolor);
}

.blogs .col-lg-6 {
    margin: 0;
    padding: 5px;
}

/*-----------------------------------------Blog-Detail-------------------------------*/
.blog-detail-section{
    margin-top:60px;
    padding-bottom:60px;
    background:var(--whitecolor2);
}
.blog-detail-container{
    background:var(--whitecolor);
}
.blog-back-btn a {
    text-decoration: none;
    color: var(--blackcolor);
    background: var(--whitecolor2);
    border: none;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 295px;
    height: 70px;
    font-family: var(--dmebold);
    font-size: 24px;
}

.blog-back-btn a img {
    margin-right: 15px;
    width: 20px;
}

.blog-detail-image {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--whitecolor);
    overflow: hidden;
    margin-bottom: 35px;
}

.blog-detail-image img {
    max-width: 100%;
}

.blog-detail-text h2 {
    font-family: var(--dmebold);
    color: var(--blackcolor);
    font-size: 18px;
    margin-bottom: 20px;
}

.blog-detail-text p {
    font-family: var(--dmregular);
    color: var(--blackcolor);
    font-size: 18px;
}

/*--------------------------------------Contact------------------------------------------*/
.contact-container {
    position: relative;
    z-index: 18;
}

.contact-title {
    text-align: center;
    margin-bottom: 30px;
}

.contact-title h2 {
    font-family: var(--dmebold);
    color: var(--blackcolor);
    font-size: 18px;
}

.contact-title p {
    font-family: var(--dmregular);
    color: var(--blackcolor);
    font-size: 18px;
}

.contact-form-container {
    padding: 50px;
    box-shadow: 0 0 10px 10px #00000025;
    background: var(--whitecolor);
}

.contact-form .contact-input-group input,
.contact-form .contact-input-group textarea {
    background: var(--whitecolor2);
}

.contact-form .contact-input-group textarea {
    height: 100px;
    ;
}

.contact-form .contact-input-group textarea,
.contact-form .contact-input-check {
    margin-bottom: 6px;
}

.contact-form .contact-input-check input {
    border: 1px solid var(--blackcolor) !important;
}

.contact-form .contact-input-check input:checked {
    border: none !important;
}

.contact-info-box {
    height: 260px;
    width: 100%;
    box-shadow: 0 0 10px 10px #00000025;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
    background: var(--whitecolor);
}

.contact-info-box a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    color: var(--blackcolor);
    font-family: var(--dmregular);
}

.contact-info-box a i {
    color: var(--darkbluecolor);
    font-size: 30px;
    margin-bottom: 10px;
    transition: all ease 0.5s;
}

.contact-info-box:hover i {
    transform: rotateY(360deg);
}

.contact-map {
    position: relative;
    margin-top: -140px;
    z-index: 5;
}

.contact-map::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    background: var(--darkbluecolor);
    opacity: 0.8;
    filter: saturate(1.2) brightness(0.6);
    transition: opacity 1s, z-index 3s;
}

.contact-map .map iframe {
    width: 100%;
    height: 600px;
}

.contact-map:hover::before {
    opacity: 0;
    z-index: -5;
    transition: opacity 2s, z-index 2s;
}

@media only screen and (max-width:1750px) {
    .mycontainer {
        margin: 0 180px;
    }

    .home-carousel-dots,
    .home-carousel-buttons {
        right: 180px;
    }

    .mega-menu-categories{
        left: 250px;
    }
}

@media only screen and (max-width:1450px) {
    .mycontainer {
        margin: 0 90px;
    }

    .home-carousel-dots,
    .home-carousel-buttons {
        right: 90px;
    }

    .mega-menu-categories{
        left: 200px;
    }

    .mini-info {
        left: 25px;
    }

    .mini-info-contact {
        width: 70px;
        height: 70px;
    }

    .mini-info-contact a {
        font-size: 20px;
    }

    .mini-info-social,
    .mini-info-social-top {
        width: 70px;
    }

    .mini-info-social-box a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media only screen and (max-width:1360px) {
    .contact-info-box {
        height: 268px;
    }

    p,
    .service-detail-text,
    .home-work-box-text p,
    .blog-detail-text p,
    .contact-title p,
    .mission-text p,
    .blog-box-text .blog-text-content p,
    .service-example-text p,
    .service-video-text ul li {
        font-size: 14px;
    }
}

@media only screen and (max-width:1250px) {
    .mycontainer {
        margin: 0 45px;
    }

    .home-carousel{
        height: auto !important;
    }
    .home-carousel-dots,
    .home-carousel-buttons {
        right: 45px;
    }

    .header-menu ul li {
        padding: 0 10px;
    }

    .header-menu ul li a {
        font-size: 16px;
    }

    .header-menu-categories ul li {
        padding: 10px 0;
        padding-left: 20px;
    }
    .home-work-num{
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
@media only screen and (max-width:991px) {
    .mycontainer{
        margin: 0 10px;
    }
    .home-carousel-dots,
    .home-carousel-buttons {
        right: 10px;
    }
    .header-menu{
        display: none;
    }
    .home-service{
        height: auto;
    }
    .service-box{
        margin-bottom: 125px;
    }
    p,
    .service-detail-text,
    .home-work-box-text p,
    .blog-detail-text p,
    .contact-title p,
    .mission-text p,
    .blog-box-text .blog-text-content p,
    .service-example-text p,
    .service-video-text ul li,
    .footer-top ul li a,
    .corporate-text p{
        font-size: 16px;
    }
    .home-corp-box,.home-corporate-top{
        height: auto;
    }
    .home-corp-box{
        margin-bottom: 25px;
    }
    .home-corporate-top{
        padding-top: 110px;
    }
    .home-corp-image{
        display: none;
    }
    .home-corp-box h5{
        font-size: 32px;
    }
    .home-contact{
        height: auto;
    }
    .home-contact-form{
        margin-bottom: 50px;
    }
    .footer-top-content-right,.footer-contact ul{
        display: flex;
        justify-content: start;
        text-align: start;
        align-items: start;
    }
    .footer-top-content{
        padding-bottom: 30px;
    }
    .footer-logo{
        margin-bottom: 30px;
    }
    .footer-form form{
        display: flex;
        flex-direction: column;
    }
    .vizyon-mission-sections .row:last-child{
        display: flex;
        flex-direction: column-reverse;
    }
    .mission-image{
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;
    }
    .mission-text{
        margin-bottom: 25px;
    }
    .media-container{
        margin-top: 100px;
    }
    .media-tabs .nav-item{
        width: 50%;
    }
    .document-box{
        margin-bottom: 25px;
        height: 375px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .kvkk-box{
        min-height: auto;
        height: 200px;
    }
    .service-detail-video-box{
        margin-bottom: 50px;
    }
    .service-example-image{
        height: 250px;
        overflow: hidden;
    }
    .corporate-image,.mission-image{
        height: auto;
    }
    .contact-form-container{
        margin-bottom: 50px;
    }
    .mini-menu-content{
        display: flex;
    }
    .mega-menu-content{
        display: none;
    }
    .search-index{
        top:75px;
    }
}
@media only screen and (max-width:768px){
    .home-carousel-buttons{
        display:none !important;
    }
    .footer-top ul{
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }
    .footer-top ul li {
        margin-right: 0;
        padding: 15px 0;
    }
    .footer-form input{
        margin-bottom: 15px;
    }
    .blog-box{
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .blog-box-image,.blog-box-text{
        width: 100%;
    }
    .blog-box-text{
        padding: 20px 0;
    }
    .mini-info{
        display: none;
    }
    .blog-back-btn a{
        width: 175px;
        font-size: 16px;
    }
    .media-tabs .nav-item{
        width: 100%;
    }
    .footer-copyright{
        display: flex;
        flex-direction: column;
    }
    .footer-copyright-left{
        margin-bottom: 15px;
    }
    .footer-copyright p{
        font-size: 12px;
    }
    .home-corp-text h5{
        text-align: center;
    }
}

.error {
    border: 1px solid red !important;
}