:root { --main-color: #ad3330 }
* { font-family: 'Geometria'; font-weight: normal }

/*****STATIC PAGE STYLING*****/
.static-section-top { background:#f6f6f6 }
.products-static, .services-static, .informations-static {  background: #fff!important; }

.product_grid,
.certificates-static__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ob-cover img {
    object-fit: cover !important;
}

.product_grid img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.certificates-static__content img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.section-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
}

.section-title h2 { font-size: 22px }

.section-title a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    font-weight: 400;
    transition: 0.3s;
    position: relative;
    color: #000;
}

.section-title a:hover::after {
    width: 100%;
}

.section-title a:hover i {
    transform: translateX(5px);
}

.section-title a i {
    transition: 0.3s;
}

.section-title a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #000;
    transition: .3s;
    position: absolute;
    bottom: -6px;
    left: 0;
}

/*****HEADER STYLING START*****/
.section-top {
    padding: 10px 0;
    background-color: #f6f6f6;
}

.section-top__inner nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.05);
}

.menu, .nav-right, .nav-right a { display: flex; align-items: center }
.menu { gap: 20px }

.nav-right { 
    gap: 30px; 
    justify-content: space-between;
    width: 100%;    
}

.menu-item {
    position: relative;
    padding: 20px 0;
}

.menu-link {
    line-height: 13px;
    font-size: 15px;
    font-weight: 300;
    color: #323232;
    -webkit-transition: 300ms all ease;
    transition: 300ms all ease;
}

.menu-link:hover {
    color: var(--main-color);
}

.menu-item:hover .menu-drop {
    opacity: 1;
    visibility: visible;
    top: 50px;
}

.menu-drop {
    position: absolute;
    visibility: hidden;
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all 0.4s;
    min-width: 220px;
    border-radius: 10px;
    opacity: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.language-mobile { display: none!important }
.lang-list { display: flex }
.lang-list li:hover, .lang-list li.active { background-color: rgba(0, 0, 0, 0.2) }

.lang-list li {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    margin-left: 10px;
    transition: 500ms all ease;
}

.lang-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    font-weight: bold;
    font-size: 11px;
}

.section-bottom {
    padding: 15px 0;
    background-color: #fff;
    transition: 300ms padding ease;
    text-align: end;
}

.section-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-bottom__inner-navbar {
    display: flex;
    gap: 20px
}

.section-bottom__inner-navbar .menu-link {
    font-weight: bold;
}

.header-active { padding: 6px 0 }

.section-bottom .order-btn img {
    width: 26px;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

.section-bottom .order-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    color: #000;
    background-color: #fff;
    -webkit-transition: 300ms all ease;
    transition: 300ms all ease;
    cursor: pointer;
}

.section-bottom .order-btn:hover {
    border: 1px solid var(--main-color);
}

.menu-btn-mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e1e1e15e;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-btn-mobile__inner { width: 20px }
.menu-btn-mobile__inner .line:first-child { width: 90% }
.menu-btn-mobile__inner .line:last-child { width: 80% }

.menu-btn-mobile__inner .line {
    width: 100%;
    height: 2px;
    background-color: #323232;
    margin: 3px 0;
}

/****OFFCANVAS STYLING START****/
.offcanvas { background: #323232; color: #fff; }
.offcanvas-header { justify-content: flex-end }
.offcanvas-body { display: flex; align-items: center; }
.btn-close-menu { cursor: pointer }

.mobile-menu .menu-item { margin: 20px 0; padding: 0; }
.mobile-menu .menu-link {
    color: #fff;
    line-height: 16px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 300;
}

/*****PRICE-FORM START*****/
#price-form .modal-content {
    padding: 20px 0 0 0;
    max-width: 500px;
    margin: auto;
    height: 70vh;
}

#price-form .modal-body { padding: 10px 40px 40px 40px }
#price-form .modal-title { font-size: 18px!important}
#price-form .modal-header {
    margin: 0 40px 10px 40px;
    padding-left: 0;
    padding-right: 0;
    border: none;
    border-bottom: 1px solid var(--main-color);
}

#price-form .modal-title { font-weight: 700; color: #000 }
#price-form input.effect, #price-form .custom-form select.effect { height: 50px }

#price-form .effect, .projects-full-story__form .effect {
    width: 100%;
    border: 2px solid #e6ecf2;
    padding: 12px 20px;
    margin: 0 0 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
    -webkit-appearance: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
}

#price-form .modal-content .btn-close {
    display: block;
    height: 20px;
    opacity: .5;
    position: absolute;
    right: 50px;
    top: 34px;
    width: 20px;
    z-index: 100;
    padding: 0;
    outline: transparent;
}

.modal-backdrop { opacity: .8!important }
#price-form .btn-close:focus { box-shadow: none!important }

#price-form .submit-btn:hover {
    background-color: #742220;
}

#price-form .submit-btn, .projects-full-story__form .submit-btn {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 4px;
    height: 50px;
    line-height: 50px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    padding: 0 26px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
}

/****STYLING SLIDER START****/
.slider { position: relative }

.swiper-wrapper div {
    width: 100%;
    height: 65vh;
    background-attachment: fixed!important;
}

.swiper-slide__inner {
    display: flex;
    position: relative;
    z-index: 10;
    flex-direction: column;
    justify-content: flex-end;
    gap: 15px;
    color: #fff;
    padding-bottom: 40px;
}

.swiper-slide__inner h2 {
    margin-bottom: 10px;
    font-size: 36px;
}

.swiper-slide__inner p {
    text-align: left;
    margin-bottom: 24px;
    font-size: 18px;
}

.swiper-slide__inner a {
    background: transparent;
    color: #fff;
    font-size: 16px;
    border-radius: 3px;
    text-decoration: none;
    background: var(--main-color);
    width: 150px;
    padding: 14px;
    transition: 200ms all ease;
    text-align: center;
    border-radius: 13px;
}
.swiper-slide__inner a:hover { background: #960909 }

/*.slide-1 { background: url('/img/1722942845_33e5xhncz9_000035.jpeg') center/cover no-repeat }*/
.slide-1 { background: url('../img/nareks slider 3.jpg') center/cover no-repeat }
.slide-2 { background: url('../img/nareks slider 4(1).jpeg') bottom/cover no-repeat }
.slide-3 { background: url('../img/knights bridge (1).jpg') center/cover no-repeat }

.swiper-button-prev,
.swiper-button-next {
    font-size: 24px;
    color: #333;
    width: 50px;
    height: 50px;
    background: #fff;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: 300ms;
    position: absolute !important;
    z-index: 10 !important;
}

.slider:hover .swiper-button-prev, .slider:hover .swiper-button-next { opacity: .5 }
.swiper-button-prev { left: 30px }
.swiper-button-next { right: 30px }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 20px; font-weight: bold }

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(3, 1, 22);
    background: linear-gradient(90deg, rgb(3 1 22 / 85%) 2%, rgb(9 9 9 / 21%) 51%, rgb(0 0 0 / 13%) 100%);
    z-index: 9;
    top: 0;
    left: 0;
}

/****STYLING ADNVANTAGES START****/
.advantages {
    background-color: #f6f6f6;
    padding: 40px 0;
}

.advantages__inner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
}

.zoomIn { animation-name: zoomIn }

.animated {
    animation-duration: 0.9s;
    animation-fill-mode: both;
}

.advantages .icon {
    display: block;
    border-radius: 50%;
    position: relative;
    border: 4px solid #fff;
    background: none;
    font-weight: 400;
    width: 16px;
    height: 16px;
    box-shadow: 0 4px 16px 0 rgba(109, 98, 248, 0.3);
    background-color: #5f89e4;
}

.advantages .d-flex:hover .icon::after {
    background: #000;
}

.advantages .icon::after {
    display: block;
    position: absolute;
    content: '';
    background: var(--main-color);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes zoomIn {
    0% { opacity: 0; transform: scale3d(.3, .3, .3) }
    50% { opacity: 1 }
}

/****STYLING SERVICES START****/
.services { padding: 60px 0 70px 0 }
.services-inner { 
    display:flex; 
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 50px;
}

.services h2,
.products h2,
.projects h2,
.informations h2,
.references h2 {
    color: #404040;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
}

.informations .line,
.services .line,
.products .line,
.projects .line, 
.references .line {
    width: 10%;
    background: #3d3d3d;
    height: 3px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
}

.service-item {
    width: 32%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-item a {
    padding: 20px;
    position: relative;
    display: block;
    background: #fff;
    box-shadow: 0 2px 2px rgba(222, 222, 222, 0.5);
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.service-item h4 {
    color: #000;
    text-align: center;
    color: #333;
    font-weight: bold;
    padding: 15px 0 15px 0;
}

.service-item .img {
    width: 100%;
    height: 200px;
    margin-top: 50px;
}

.service-btn-more {
    position: absolute;
    background: #bb0000 ;
    color: white ;
    padding: 6px 0;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    transition: 200ms all ease;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    width: calc(100% - 90px);
    text-align: center;
    border: none;
    width: 50%;
}

.service-btn-more:hover { background: #960909 }

.service-btn {
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    background: var(--main-color);
    line-height: 18px;
    padding: 5px 12px;
    display: inline-block;
}

.service-icons img {
    height: auto;
    width: auto;
    margin-top: inherit;
}

.service-item__top {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
}

/****STYLING PRODUCTS START****/
.products {
    background-color: #f6f6f6;
    padding: 60px 0;
}

.products .row {
    row-gap: 30px;
}

.products .card {
    position: relative;
    height: 280px;
    background: transparent;
    border: none;
    overflow: hidden;
    border-radius: 2px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.products .card:after,
.products .card:before {
    height: 100%;
    width: 100%;
    position: absolute;
    content: '';
    transition: 0.3s ease-in-out;
    opacity: 0.99;
    z-index: 1;
}

.products .card:before {
    background: linear-gradient(to top, #2b1919, rgba(43, 25, 25, 0.5));
    opacity: 0;
}

.products .card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
    right: 0;
}

.products .card .text {
    position: absolute;
    bottom: -20px;
    z-index: 2;
    color: white;
    word-wrap: break-word;
    width: 100%;
    padding: 0px 30px;
    transition: 0.3s ease-in-out;
}

.products .card .text h5 { font-size: 16px }

.products .card .text p {
    font-size: 13px;
    color: #a99f94;
}

.products .card:after {
    background: linear-gradient(to top, #000000bf, rgba(43, 25, 25, 0));
    opacity: 1;
}

.products .card:hover:before {
    opacity: 1;
    transition: opacity 0.3s;
}

.products .card:hover .text {
    bottom: 15px;
    transition: 0.3s ease-in-out;
}

.products .card:hover:after {
    opacity: 0;
    transition: opacity 0.3s;
}

/****STYLING PRODUCTS-STATIC-INNER-PAGE START****/
.products-static-inner-page { background: #fff; padding: 30px 0 45px 0}

.products-static-inner-page__sidebar {
    display: flex;
    flex-direction: column;
    background: #f5f0f0;
    gap: 30px;
    padding: 40px 50px 50px 50px;
}

.products-static-inner-page__sidebar a:hover:before { width: 100% }
.products-static-inner-page__sidebar .others__products a:hover { color: #fff }

.products-static-inner-page__sidebar a:before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
    background: var(--main-color);
}

.products-static-inner-page__sidebar h2 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    padding-bottom: 10px;
    line-height: 25px;
    border-bottom: 2px solid var(--main-color);
    width: 100%;
    text-align: center;
}

.products-static-inner-page__sidebar .others__products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.products-static-inner-page__sidebar .others__products a {
    background: #fff;
    position: relative;
    display: block;
    font-size: 16px;
    color: #706767;
    line-height: 26px;
    font-weight: 600;
    background: #fff;
    padding: 9px 30px;
    transition: all 500ms ease;
    z-index: 1;
}

.products-static-inner-page__product-info {
    padding-top: 30px;
}

.products-static-inner-page__product-info .img-block {
    margin: auto;
    max-width: 550px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    background: url(https://nareks.panel.az/uploads/posts/2023-12/medium/1703664313_product2.jpg) center/cover;
}

.products-static-inner-page__product-info .full-text {
    margin-top: 30px;
    padding-left: 20px;
}

.products-static-inner-page__product-info h2 {
    font-weight: 900;
    font-size: 34px;
}

.products-static-inner-page__product-info p {
    color: #716868;
    font-weight: 400;
    line-height: 25px;
    overflow-wrap: break-word;
    font-size: 18px;
}

/****STYLING PROJECT-STATİC-İNNER-PAGE START****/
.projects-full-story {
    padding: 60px 0;
}

.projects-full-story h3 {
    font-size: 36px;
}

.projects-full-story .project-right h4 {
    font-size:25px;
    margin-bottom: 20px;
}

.projects-full-story p {
    padding: 24px 0;
    font-size: 18px;
    line-height: 24px;
}

.projects-full-story .projects-left {
    display: flex;
    flex-direction: column;
}

.projects-full-story .fotorama  {
    /*order: 3;*/
    margin-top: 20px;
}

.full-story-content img { width: 100% }

.projects-full-story__form {
    padding: 32px 24px;
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: #fff;
    border-radius: 28px;
    box-shadow: 0px 3px 25px rgba(0, 30, 69, 0.2);
}
.project-static-inner-page {
    background: #f6f6f6;
    padding-bottom: 45px;
}

.project-static-inner-page .full-text {
    border-radius: 33px;
    background: #fff;
    padding: 30px 50px;
}

.project-static-inner-page .fotorama, .project-static-inner-page .fotorama__stage__frame { border-radius: 30px }
.projects-static .projects-box-wrapper { padding: 30px!important }
.projects-static .project-box { margin: 0!important }
.projects-static .project-box .card-body { margin-bottom: 20px!important }
.projects-cat, .projects-cat-main { padding-top: 0!important }

.projects-cat-main .projects__inner {
    display: flex;
    gap: 30px
}

.projects-cat .projects__inner  {
    display: grid; 
    grid-template-columns: repeat(3, 1fr);
    gap:30px;
}

.projects-cat .projects__inner .swiper-slide {
    width: 100%;
}

.category-xidmet .swiper-slide span {
    top: 50%!important;
    left: 50%!important;
    transform: translate(-50%, -50%);
    font-size: 18px!important;
    width: 230px;
}


/****STYLING PROJECTS START***
.projects {
    background: #f6f6f6;
    padding: 40px 0 0 0;
}

.projects .projects-box-wrapper {
    border-top-right-radius: 15px;
    padding: 0 15.7% 82px 5.5%;
    background-color: #f6f6f6;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.project-box .card-img { height: 140px }

.project-box .card-body {
    background-color: #fff;
    padding: 15px 20px;
}

.project-box .card-title {
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 3px;
    overflow: hidden;
}

.project-box .card-title .card-icon {
    width: 8px;
    height: 8px;
    background: #e91b22;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transform: translateY(2px);
    top: -3px;
    margin-right: 8px;
    transition: 300ms all ease-in-out;
}

.project-box .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects .right-side {
    left: -120px;
    position: relative;
    z-index: 1;
    top: 30px;
}

.projects .right-side .all-category {
    max-width: 300px !important;
    width: 100%;
    height: 500px;
}

.projects .right-side .all-category img { width: 100% }

.projects .right-side .all-category-wrapper:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, #000 30%, transparent), url('/img/www.jpg') center/cover no-repeat;
}

.projects .right-side .all-category-wrapper {
    width: 350px;
    height: 470px;
    box-shadow: 0 30px 43px -8px #c4c4c4;
    position: relative;
    overflow: hidden;
}

.projects .text-wrap {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
}

.projects .text-wrap h3,
.projects .text-wrap p,
.projects .text-wrap a {
    color: #fff !important;
    padding: 0;
}

.projects .text-wrap a:hover {
    background: #fff;
    color: black!important;
}

.projects .text-wrap h3 {
    font-weight: bold;
    font-size: 35px;
    margin-bottom: 20px;
}

.projects .text-wrap p {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.projects .text-wrap a {
    border: 1px solid #fff;
    padding: 15px;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap;
}

.projects .right-side .all-category-wrapper .link-btn {
    min-width: 48px;
    min-height: 48px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 44px;
    left: 44px;
}

.projects .right-side .all-category-wrapper .link-btn:before {
    content: '';
    position: absolute;
    top: 45%;
    left: 37%;
    border: 1px solid #39485b;
    border-width: 0 2px 2px 0;
    border-radius: 0 2px 2px 2px;
    padding: 3px;
    transform: rotate(-45deg);
    border-width: 2px 0 0 2px
}

.project-box:hover .card-icon { background: #000 }
.projects .project-box { margin: 10px 0 }
.project-box a { display: block }

.project-box .card-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border: 1px solid #fafafa;
}*/

/****STYLING PROJECTS START****/
.projects {
    padding: 60px 0;    
}

.projects__inner {
    background: #363435;
    border-radius: 32px;
    padding: 30px;
}

.projects p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
}

.projects .btn {
    cursor: pointer;
    padding: 1rem 4rem;
    border: 0;
    background-color: #ad332f;
    color: white;
    box-shadow: 0px 5px 0px 0px #3c1311;
    transition: all 0.9s ease-in-out;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    margin-top: 2rem;
    margin-left: auto;
    width: 300px;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.projects .btn:hover {
    box-shadow: 0px 5px 0px 0px  #960400;
    background-color: #960400;
}

.projects .btn:hover::before {
    width: 100%;
}

.projects .btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    box-shadow: 0px 5px 0px 0px rgb(0 0 0);
    width: 0;
    height: 10px;
    transition: all 0.9s ease-in-out;
}

.projects .swiper-slide{
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
  border-radius: 24px;
  cursor: pointer;
}

.projects .swiper-slide span {
    position: absolute;
    z-index: 5;
    color: #000;
    background: #fff;
    top: 25px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 36px;
    font-weight: 600;
    letter-spacing: .2px;
    font-size: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    max-width: 80%;
}

.projects .swiper-slide img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.projects .swiper-text {
    position: absolute;
    color: #fff;
    z-index: 5;
    bottom: 25px;
    /*left: 25px;*/
    padding: 0 15px;
    gap: 12px;
    display: flex;
    flex-direction: column;
    z-index: 6;
}

.projects .swiper-text h2 {
    font-size: 20px;
    line-height: 26px;
    text-align: left;
}

.projects .project-btn {
    visibility: hidden; 
    opacity: 0; 
    position: absolute;
    background: var(--main-color);
    color: #fff;
    z-index: 7;
    border-radius: 16px;
    font-size: 16px;
    transition: .4s all ease;
    font-weight: 600;
    width: 160px;
    height:48px;
    display: flex;
    align-items:center;
    justify-content: center;
    
}

.projects .swiper-slide::after{
    background: linear-gradient(180deg,transparent,#00000080);
    bottom: 0;
    content: "";
    display: block;
    height: 190px;
    left: 0;
    position: absolute;
    width: 100%;
    border-radius: 23px;
    transition: .4s all ease;
    z-index: 5;
}

.projects .swiper-slide .project-btn {
    border-radius: 12px;
}

.projects .swiper-slide:hover .project-btn{
    visibility: visible;
    opacity: 1;
}

.projects .swiper-slide:hover::after {
    background: #00000045;
    top: 0;
    height: 100%;
}

.projects .swiper-slide:hover span {
    z-index: 4;
}

.projects .swiper-slide:hover .swiper-text{
    visibility: hidden;
    opacity: 0;
}

.swiper-pagination-projects {
    display: flex;
    padding-top: 1rem;
}

.swiper-pagination-projects .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 1 !important;
    border-radius: 0!important;
    height: 10px!important;
    width: 100%!important;
    display: inline-block!important;
}

.swiper-pagination-projects  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--main-color) !important;
}

/****STYLING BLOG-STATIC-INNER-PAGE START****/
.blog-static-inner-page { padding: 40px 0 }
.blog-static-inner-page .blog-img {
    max-width: 650px;
    width: 100%;
    float: left;
    margin-right: 20px;
}

.blog-static-inner-page__content::after {
    content: "";
    clear: both;
    display: table;
}

.blog-static-inner-page__content p img { display: none }
.blog-static-inner-page .blog-img img { width: 100%; border-radius: 20px }
.blog-static-inner-page h2 { font-size: 32px; margin-bottom:20px }

/****RESPONSIVE PROJECTS START****/
@media screen and (max-width: 1250px) {
    .projects .right-side .all-category-wrapper { width: 320px }
    .projects .right-side { top: 30px }
}
@media screen and (max-width: 1200px) {
    .projects .right-side .all-category-wrapper { width: 320px }
    .projects .right-side { top: 30px }
}
@media screen and (min-width: 1200px) and (max-width: 1300px) {
    .projects .projects-box-wrapper { padding: 0 22% 40px 7% }
}
@media screen and (min-width: 1060px) and (max-width: 1200px) {
    .projects .projects-box-wrapper { padding: 0 27.7% 40px 8.5% }
}
@media screen and (min-width: 992px) and (max-width: 1060px) {
    .projects .projects-box-wrapper { padding: 0 33.7% 40px 8.5% }
}
@media screen and (max-width: 992px) {
    .projects .projects-box-wrapper, #products .right-side { padding: 55px 55px 40px 55px }
}

/****STYLING REFERENCES START****/
.references { padding: 60px 0 }
.references .swiper .swiper-wrapper div { height: 150px }
.references h2 { margin-bottom: 12px }

.references .partbox, .references-static__inner .partbox {
    border: 1px solid #e4e4e4;
    padding: 20px;
    border-radius: 3px;
    height: 170px;
    background: #fff;
}

.partbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.references-static__inner {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap:20px;
    justify-content: center;
    padding-bottom: 50px;
}

.references-static__inner .swiper-slide {
    max-width: 240px;
    flex-wrap: wrap;
    gap:20px
}


/****STYLING ONFOOTER START****/
.onfooter {
    background: linear-gradient(45deg, var(--main-color), #000);
    padding: 40px 0;
}

.onfooter .start {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.onfooter h2 {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 22px;
    margin: auto;
    text-align: center;
}

.onfooter-btn {
    width: 220px;
    padding: 15px 20px;
    border-radius: 2px;
    background-color: #fff;
    font-size: 20px;
    font-weight: 500;
    color: #2d3640;
    border: none;
    transition: 0.3s;
    border: 1px solid #fff;
}

.onfooter-btn:hover { 
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.modal-content {
    border-radius: 8px;
    padding: 30px 40px 70px 40px;
}

.modal-title {
    color: #212122;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.66667;
}

.modal-content .close {
    font-size: 20px;
    font-weight: 200;
    outline: none;
}

.modal #myFrame {
    width: 100%;
    height: 290px;
}

.modal .infomy {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 11px;
    color: #212121;
    text-align: left;
}

.modal input[type="text"], .modal input[type="tel"], .modal input[type="email"], .modal textarea, .modal select {
    font-size: 15px;
    line-height: 1.3;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 56px;
    padding: 0 15px;
    border-radius: 6px;
    color: #212121;
    border: 1px solid #d7dde3;
    background-color: #fcfcfc;
    transition: background-color .25s ease-in-out,border-color .25s ease-in-out, .25s ease-in-out;
    transition: background-color .25s ease-in-out,box-shadow .25s ease-in-out,border-color .25s ease-in-out;
}

.modal input[type="text"]:focus, .modal input[type="email"]:focus, .modal input[type="tel"]:focus, .modal textarea:focus, .modal select:focus {
    border: 1px solid #d7f1be;
    outline: none;
    border-width: 2px;
}

.modal input[type="text"]:focus, .modal input[type="tel"]:focus, .modal input[type="email"]:focus {
    border-color: #00a0eb !important;
    background: white;
}

.modal .button input {
    cursor: pointer;
    background: var(--main-color);
    color: #fff!important;
    border-radius: 8px;
    font-weight: 400;
    box-shadow: 0 20px 53px -20px var(--main-color)!important;
    height: 56px;
    line-height: 56px;
    transition: 0.3s ease-in-out;
    padding: 0 26px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
}

.modal .button input:hover {
    background: #912c2c;
    color: white;
    box-shadow: none !important;
    transition: 0.3s ease-in-out;
}

.modal .infomy span {
    color: red;
}

.modal button.btn-close {
    padding: 0;
    background-color: transparent;
    border: 0;
    color: #a5a5a5;
}

.modal .btn-close:focus {
    outline: 0;
    box-shadow: none!important;
}

/****STYLING FOOTER START****/
footer { background: #000; padding: 40px 0 30px 0}
footer .logo { width: 130px }
.footer-main a { color: #fff }
.footer-main ul { display: inline-block }
.footer-main .row .footer-item { text-align: right }
.footer-main .row .footer-item ul { text-align: left }
.footer-main ul li { margin-bottom: 10px }
.footer-main ul li a { font-size: 13px; color:#bdc6cf }
.footer-main ul li a:hover { color: #fff ;}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.footer-socials a:hover { background: var(--main-color) }
.footer-socials a:hover i{ color: #fff }

.footer-socials a i { color: #000}

.footer-numbers i {
    font-size: 17px;
}
.footer-numbers a {
    color: #fff!important;
    font-size: 17px;
    font-weight: 600;
    text-align: end;
    margin-bottom: 10px;
    transition: 0.1s ease-in-out;
}

.footer-numbers a:hover { color: var(--main-color)!important }

.footer-numbers i { color: var(--main-color) }
.footer-numbers ul li { text-align: right }
.footer-numbers ul li a {
    font-size: 17px!important;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.footer-numbers .email span { color:#bdc6cf }

.footer-bottom ul { 
    display: flex; 
    flex-wrap: wrap;
}

.footer-bottom ul li { margin-right: 25px }
.footer-bottom ul li a { color: #bdc6cf; font-size: 13px }
.footer-bottom ul li a:hover { color: #fff }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.copyright {
    position: relative;
    color:#bdc6cf;
    font-size: 13px;
}

.copyright a { 
    display: flex; 
    align-items: center;
    position: absolute;
    color: #bdc6cf;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.oklogo { width: 100px }

/****STYLING BREADCRUMB START****/
.breadcrumb { 
    padding: 40px 0!important;
    margin: 0!important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f6f6;
}

.breadcrumb h2 {
    font-weight: 700;
    font-size: 25px;
    color: #231f27;
}

.breadcrumb .text-right {
    color: #a7a9b2;
    font-weight: 200;
    font-size: 14px;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.breadcrumb .text-right i { margin-top: 3px }

.breadcrumb .text-right a {
    color: #a7a9b2;
    transition: 0.2s ease-in-out;
    font-weight: 200;
    display: inline-block;
}

/*****STYLING CONTACT START*****/
section.contact { background: #f6f6f6 }
.contact-info { border-bottom: 1px solid transparent }

.contact-info__inner {
    border-bottom: 1px solid #d6d9db;
    padding: 20px 0;
}

.contact-info  img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
}

.contact-info  h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.contact-info i {
    display: inline-block;
    margin-right: 10px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info:hover {
    background-color: #f7f7f8;
    border-bottom: 1px solid #422a5b;
}

.contact-form {
    background: #f6f6f6;
    padding: 45px 0 45px 0;
}

.contact-form .contact-form__inner {
    background: #fff;
    padding: 60px 15px;
    border-radius: 0.25rem;
}

.contact-form .contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.contact-form .contact-title h3 { font-size: 25px }
.contact-form .contact-title img { width: 21px }
.contact-form .input-box { position: relative; margin-top: 30px }
.contact-form input.text { height: 50px }

.contact-form input.text, .contact-form textarea {
    width: 100%;
    border: 2px solid #eaeaea;
    padding: 12px;
    border-radius: 3px;
    font-size: 14px;
    outline: none;
    position: relative;
    z-index: 5;
}

.contact-form label {
    position: absolute;
    left: 14px;
    width: 100%;
    top: 15px;
    transition: 0.3s;
    z-index: 1;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.contact-form input.text:focus, .contact-form textarea:focus {
    border-color: #eaeaea;
    border-bottom: 2px solid var(--main-color);
    box-shadow: none;
    background: #f3e9e9;
}

.contact-form input.text:focus ~ label,
.contact-form textarea.text:focus ~ label {
    top: -20px;
    left: 0;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
    z-index: 1;
}

.contact-form .submit-button {
    display: flex;
    justify-content: flex-end;
}

.contact-form .btn-submit {
    margin-top: 20px;
    cursor: pointer;
    background: var(--main-color);
    color: #fff;
    border-radius: 8px;
    font-weight: 400;
    height: 56px;
    line-height: 56px;
    transition: 0.3s ease-in-out;
    padding: 0 70px;
    font-size: 15px;
    animation: inf-pulse 1.1s;
    animation-iteration-count: infinite;
    box-shadow: 0 0 0 18px transparent;
    font-weight: 500;
}

@keyframes inf-pulse{
    0% {
    -webkit-box-shadow: 0 0 0 0 #ED1C24;
    -moz-box-shadow: 0 0 0 0 #ED1C24;
    -o-box-shadow: 0 0 0 0 #ED1C24;
    box-shadow: 0 0 0 0 #ED1C24;
}
}
.contact-form .btn-submit:hover { box-shadow: none }
.contact-container { max-width: 860px; margin: auto }

#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 12%) 0px 1px 2px 0px;
}

/****STYLING ABOUT START****/
.about { background: #f6f6f6; padding-bottom:  50px }
.about-content {
    background-color: #fff;
    padding: 60px 45px;
    border-radius: 0.25rem;
    position: relative;
    font-size: 15px;
    line-height: 28px;
    text-align: justify;
}

.about-static-text img {
    display: none;
    max-width: 830px;
    margin: auto;
}

.about-content p {
    max-width: 830px;
    margin: auto;
}

.about-img {
    height: 400px;
    max-width:900px;
    background: url('../img/aboutMain.avif') center/cover;
    border-radius: 15px;
    margin: 0 auto 25px auto;
}

.about-imgs {
    display: flex;
    justify-content:center;
    gap: 15px;
    max-width: 830px;
    margin: auto;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-imgs a {
    display:block;
    max-width: 300px;
    width: 100%;
}

.about-imgs img {
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    height: 200px;
    border-radius: 10px;
}

/*****STYLING CERTIFICATES-STATIC START*****/

/*****STYLING SERVICES-STATIC START*****/
.service-static-inner-page .service-img { width: 50% }
.service-static-inner-page .service-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    float:left;
    margin-right: 20px;
}

.service-static-inner-page-content:after {
    content: '';
    display: table;
    clear: both;
}

.services-static {
    background: #f6f6f6;
}

.service-static-inner-page .service-text h2 { font-size: 32px }
.service-static-inner-page { padding: 60px 0 }

/*****STYLING INFORMATIONS START*****/
.informations {
    padding: 60px 0;
    background-color: #f6f6f6;
}

.informations .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.informations .title h2 {
    text-align: left;
    margin: 0;
}

.informations .title a {
    font-size: 15px;
    color: black;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 30px;
    white-space: nowrap;
}

.informations .title a:hover svg { right: -10px }

.informations .title svg {
    transition: .3s;
    position: absolute;
    right: 0;
}

.informations-inner {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.informations-inner article {
    cursor: pointer;
    width: 31%;
    min-width: 31%;
}

.informations-inner article:hover img {
    transform: scale(1.02);
    box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
}

.informations-inner article img {
    border-radius: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .3s;
}

.informations-inner article p {
    font-size: 18px;
    font-weight: bold;
    color: #2f313f;
}

.informations-inner article span {
    font-size: 12px;
    color: #2f313f;
    margin: 10px 0;
}

@media only screen and (max-width: 1200px) {
    .menu-link {  font-size: 13px }
    .project h5 { font-size: 1.4rem!important }
    
    /****RESPONSIVE CONTACT****/
    .contact-info-item { font-size: 14px }
    .contact-info h3 { font-size: 18px }
}

@media only screen and (max-width: 991px) {

    /****RESPONSIVE HEADER****/
    .menu, .lang-desktop { display: none }
    .menu-btn-mobile { display: flex }
    .nav-right {width: inherit } 
    .section-bottom__inner-navbar { display: none }

    /****RESPONSIVE PRODUCTS****/
    .products .card:before { opacity: 1; transition: opacity 0.3s }
    .products .card .text { bottom: 15px; transition: 0.3s ease-in-out }
    .products .card:after { opacity: 0; transition: opacity 0.3s }

    /****RESPONSIVE PROJECTS****/
    .projects .right-side .all-category-wrapper { height: 320px; width: 100% }
    .projects .right-side {
        left: inherit;
        position: inherit;
        z-index: inherit;
        top: inherit;
        transform: inherit;
        height: inherit;
    }
    
    .projects-cat-main .projects__inner, .projects-cat .projects__inner { flex-direction: column }
    .projects-cat .projects__inner .swiper-slide { width: 100% }
    .category-xidmet .swiper-slide span { width: 200px; font-size: 15px!important }
    .projects .swiper-slide:hover .project-btn { visibility: visible; opacity: 1 }
    
    /****RESPONSIVE FOOTER****/
    .footerlogos { display: flex; justify-content: space-between }
    footer .links ul li a { text-align: left }
    footer .navbar-nav1  a { text-align: left!important }
    footer .help .headtxt, .help .links a { text-align: right }
    .bottomlinks { justify-content: space-between }
    .copyright { justify-content: center; text-align: center }
    .footersocial-desktop { display: none!important }
    .footersocial-mobile { display: flex!important }
    .footer-item-1, .footer-item-3 { text-align: left!important; margin-top: 20px }
    .footer-bottom ul { justify-content: space-between }
    .copyright { padding-top: 40px }
    .footer-item-2 ul li { text-align: right!important}

    /****RESPONSIVE ABOUT-IMGS****/
    .about-imgs { grid-template-columns: auto auto }
    .about-imgs img { height: 250px }
    
    /****RESPONSIVE CERTIFICATES****/
    .certificates-static__content { grid-template-columns: auto auto }
    
    /****RESPONSIVE PRODUCTS-STATIC-INNER-PAGE****/
    .products-static-inner-page__content { flex-direction: column; align-items:center }
    .products-static-inner-page__content-text { padding: 20px }
    .products-static-inner-page { padding-bottom: 30px }
    
    /*****RESPONSIVE PAGE STYLING*****/
    .static-section-top h2 { font-size: 20px!important }
    
    /*****RESPONSIVE BREADCRUMB*****/
    .breadcrumb { padding: 30px 0!important }
    
    /****RESPONSIVE BLOG-STATIC-INNER-PAGE START****/
    .blog-static-inner-page h2 { margin-bottom: 0 }
    .blog-static-inner-page__content { display: flex; flex-direction: column; gap: 10px }
    
    /*****RESPONSIVE INFORMATIONS*****/
    .informations-inner { flex-direction: column; gap: 30px }
    .informations-inner article { width: 100%!important }
}


@media screen and (max-width: 768px) {
    
    .section-title h2 { font-size: 20px }
    .services { padding: 40px 0 50px 0 }
    .products, .projects, .informations, .references { padding: 40px 0 }
    
    /****RESPONSIVE HEADER****/
    .language-mobile { display: flex!important }
    .section-bottom__inner { justify-content: space-between }
    .section-bottom .order-btn img { width: 20px }
    .section-bottom .order-btn { font-size: 12px }
    .lang-list li { width: 30px; height: 30px; margin-left: 5px; }
    .lang-list li a { font-size: 10px }
    .logo { width: 100px }
    
    /****RESPONSIVE SWIPER-HEADER****/
    .swiper-slide__inner h2 { font-size: 22px }
    .swiper-slide__inner a { padding: 10px; font-size: 15px }

    /****RESPONSIVE BREADCRUMB****/
    .breadcrumb { flex-direction: column; align-items: flex-start }
    .breadcrumb .text-right { margin-top: 5px; justify-content: flex-start }
    
    /****RESPONSIVE ADVANTAGES****/
    .advantages__inner { flex-direction: column; gap:15px }
    
    /****RESPONSIVE PRODUCTS****/
    .products .row { row-gap: 30px }
    
    /****RESPONSIVE SERVICE*****/
    .services-inner { flex-direction: column }
    .service-item { margin-bottom: 30px;width: 100% }
    .services-inner { row-gap: 20px }
    
    /****RESPONSIVE PROJECTS****/
    .projects .right-side .all-category-wrapper .link-btn {
        position: relative;
        display: block;
        top: 0;
        left: 0;
    }
    
    .projects p { font-size: 16px }
    
    .projects .right-side .all-category-wrapper {
        display: flex;
        align-items: flex-end;
        flex-direction: row-reverse;
        padding: 30px;
        gap: 20px;
        justify-content: center;
    }
    
    .projects .text-wrap h3 { font-size: 30px }
    .projects .text-wrap p { font-size: 16px }
    .projects .text-wrap a { font-size: 14px }
    
    .projects .btn {
        padding: 1rem 1rem;
        width: 200px;
        font-size: 15px;
    }
    
    .projects .swiper-slide .project-btn {
        visibility: visible;
        opacity: 1;
    }
    
    /****RESPONSIVE ONFOOTER****/
    .onfooter h2 { font-size: 24px }
    .onfooter-btn { font-size: 15px; width: 200px;}
    .onfooter .btn { width: inherit; font-size: 14px }

    /****RESPONSIVE FOOTER****/
    footer .contact .nav-link { text-align: center }
    footer .logo {width: 100px }
    footer .links ul li a { text-align: right }
    footer .navbar-nav .nav-item .nav-link { text-align: left }
    
    .copyright { 
        padding-top: 20px; 
        display: flex; 
        justify-content: space-between;
        align-items: center;
    }
    
    .copyright a { 
        position: relative;
        left: 0;
        top: 0;
        transform: translate(0, 0);
    }
    
    .footer-numbers ul li a { font-size: 13px!important } 
    
    /****RESPONSIVE CERTIFICATES****/
    .certificates-static__content { grid-template-columns: auto }
    
    /****RESPONSIVE PROJECT-STATİC-İNNER-PAGE****/
    .project-static-inner-page .full-text { margin-top: 20px }
    .projects-full-story { padding: 30px 0 }
    
    /****RESPONSIVE PRODUCT-STATİC-İNNER-PAGE****/
    .products-static-inner-page__product-info h2 { font-size: 25px }
    .products-static-inner-page__product-info p { font-size: 16px }
    
    /*****RESPONSIVE SERVICES-STATIC START*****/
    .service-static-inner-page .service-text h2 { font-size: 22px }
    .service-static-inner-page .service-text p { font-size: 15px }
    .service-static-inner-page .service-img { width: 100% }
    .service-static-inner-page .service-img img {
        float: inherit;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    /****RESPONSIVE BLOG-STATIC-INNER-PAGE START****/
    .blog-static-inner-page h2 { font-size: 22px }
    .blog-static-inner-page p { font-size: 15px }
    
    /****RESPONSIVE ABOUT****/
    .about-img { height: 300px }
    .about-content { padding: 35px 15px }
    .about-imgs { align-items: center; flex-direction: column }
    
}

@media screen and (max-width: 580px) {

    /****RESPONSIVE SERVICE****/
    .service-item img { height: auto }

    /****RESPONSIVE PROJECTS****/
    .projects .projects-box-wrapper { padding: 0 35px 35px }
    .projects .project-box { margin: 10px 0 }

    /****RESPONSIVE ABOUT-IMGS****/
    .about-imgs { grid-template-columns: auto }
    .about-imgs img { height: 250px; max-width: 100% }
    
    /****RESPONSIVE FOOTER****/
    footer .help .headtxt, .help .links a { text-align: left }
    .copyright { flex-direction: column }
}
