/*global styles*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --main-color: #02473A;
    --main-color2: #17de76;
}

* {
    font-family: "Roboto", sans-serif;
}

.overlay {
    background-image: linear-gradient(67.33deg, #000000b8 0%, rgba(22, 44, 76, 0) 80%);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


.btn-all__section {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: 0.2s;
    font-size: 16px;
}

.btn-all__section span {
    position: relative;
    z-index: 3;
    color: #fff;
}

.btn-all__section .liquid {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 200px;
    background: #02473A;
    box-shadow: inset 0 0 50px #17de76;
    z-index: 2;
    transition: 0.6s;
}

.btn-all__section .liquid::after,
.btn-all__section .liquid::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200%;
    top: 0;
    left: 0;
    transform: translate(-25%, -75%);
}


.btn-all__section .liquid::after {
    border-radius: 45%;
    background: #549d205d;
    box-shadow: 0 0 10px 5px #549d20, inset 0 0 5px #376b12;
    animation: animate 5s linear infinite;
    opacity: 0.8;
}

.btn-all__section .liquid::before {
    border-radius: 40%;
    box-shadow: 0 0 10px rgba(26, 26, 26, 0.5),
        inset 0 0 5px rgba(26, 26, 26, 0.5);
    background: rgba(26, 26, 26, 0.5);

    animation: animate 7s linear infinite;
}

@keyframes animate {
    0% {
        transform: translate(-25%, -75%) rotate(0);
    }

    100% {
        transform: translate(-25%, -75%) rotate(360deg);
    }
}

.btn-all__section:hover .liquid {
    top: -120px;
}

.btn-all__section:hover {
    box-shadow: 0 0 5px #7293ff, inset 0 0 5px #7293ff;
    transition-delay: 0.2s;
}

/*styling modal*/
.modal .modal-content {
    padding: 20px 0 0 0;
    max-width: 500px;
    margin: auto;
}

.modal .modal-body {
    padding: 10px 40px 40px 40px
}

.modal .modal-title {
    font-size: 18px !important
}

.modal .modal-header {
    margin: 0 40px 10px 40px;
    padding-left: 0;
    padding-right: 0;
    border: none;
    border-bottom: 1px solid var(--main-color);
}

.modal .modal-title {
    font-weight: 700;
    color: #000
}

.modal input.effect,
.modal .custom-form select.effect {
    height: 50px
}

.modal .effect,
.modal .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;
}

.modal .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 .modal-backdrop {
    opacity: .8 !important
}

.modal .btn-close:focus {
    box-shadow: none !important
}

.modal .submit-btn:hover {
    background-color: #116255;
}

.modal .submit-btn,
.modal .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;
}

/*stylinf offcanvas*/
.offcanvas {
    background: var(--main-color);
    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;
}

/*header styles*/
header {
    backdrop-filter: blur(37px);
    position: fixed;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.212);
}

header.active {
    box-shadow: 10px -6px 15px black;
    background: #fff;
}

header.active .menu-item a {
    color: #000
}

header.active .nav-decor {
    color: #000
}

header.active .menu-toggle span {
    background: #fff
}

header.active .btn-consultation span {
    background-color: var(--main-color) !important;
    color: white !important
}

header.active .btn-consultation span:hover {
    background-color: #fff !important;
    color: var(--main-color) !important;
    border: 1px solid var();
}

header .logo-mobile {
    display: none
}

header nav {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .menu-item {
    white-space: nowrap;
    position: relative;
    margin-left: 30px;
    padding: 20px 0;
}

header .lang-item {
    margin-left: 10px !important
}

header .menu-item:hover .menu-drop {
    opacity: 1;
    visibility: visible;
    top: 60px;
}

header .menu-drop {
    list-style: disc
}

header .menu-drop li a {
    font-size: 15px !important
}

header .menu-item a {
    transition: .3s
}

header .menu-item>a {
    text-transform: uppercase;
}

header .menu-item a:hover {
    color: var(--main-color) !important
}

header .menu-mobile .btn-consultation span {
    margin-left: 0 !important
}

header .menu-mobile .btn-consultation {
    margin-top: 20px
}

header .menu-drop {
    position: absolute;
    visibility: hidden;
    padding: 15px 30px;
    background: #fff;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all 0.4s;
    min-width: 175px;
    border-radius: 10px;
    opacity: 0;
}

header .menu-drop li a {
    display: inline-block !important;
    padding: 9px 0 !important;
    color: #000 !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
}

header .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    width: 200px
}

header nav .nav-decor {
    transition: all 0.3s ease;
    color: #000
}

header .menu li a {
    transition: all 0.3s ease;
    font-weight: 700;
    color: #fff;
}

header .btn-consultation span {
    color: #000 !important;
    background-color: var(--main-color2) !important;
    border-radius: 5px !important;
    padding: 9px 12px !important;
    letter-spacing: .3px !important;
    transition: all .2s ease !important;
    font-weight: 500 !important;
    margin-left: 30px;
    cursor: pointer;
    display: block;
    border: 1px solid var(--main-color2);
    text-transform: uppercase;
}

header .btn-consultation span:hover {
    background: #fff !important;
    color: #fff !important;
    color: var(--main-color) !important;
}


/*.btn-price {
    background-color: #df4847;
    border-color: #df4847;
    color: white!important;
    font-weight: 600;
    padding-left: 0!important;
    padding: 12px 40px 12px 30px;
    font-size: 13px;
    position: relative;
    transition: all 0.3s ease;
    margin-left: 30px;
    cursor: pointer;
}

.btn-price i {
    font-size: 12px;
    top: 49%;
    right: 25px;
    transform: translate(0, -50%);
    position: absolute;
    transition: all 0.3s ease;
}

.btn-price:hover  { border-radius: 6px }
.btn-price:hover a { color: #fff!important }
.btn-price:hover i { right: 22px }/*

/**(menu-toggle)**/
header .menu-btn-mobile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

header .menu-btn-mobile__inner {
    width: 20px
}

header .menu-btn-mobile__inner .line:first-child {
    width: 90%
}

header .menu-btn-mobile__inner .line:last-child {
    width: 80%
}

header .menu-btn-mobile__inner .line {
    width: 100%;
    height: 2px;
    background-color: #323232;
    margin: 3px 0;
}

/*slider styling 992*/
.slider {
    height: 100vh;
    position: relative
}

.slider .container {
    display: flex;
    align-items: center
}

.swiper-header {
    height: 100%
}

.swiper-header .swiper-slide {
    display: flex;
    padding-top: 85px
}

.swiper-header .slide-1 {
    background: url(https://pavluk.online/wp-content/uploads/2019/02/ДжонДир.jpg) center/cover
}

.swiper-header .slide-2 {
    background: url(https://avatars.mds.yandex.net/get-altay/402558/2a0000015ee6916e283e30f0acab462dbb62/XXL_height) center/cover
}

.swiper-header .slide-3 {
    background: url(https://avatars.mds.yandex.net/get-ydo/3580629/2a000001884037866943c1b42705ade71dfc/diploma) center/cover
}

.swiper-header .swiper-header-btns {
    position: absolute;
    bottom: 10%;
    z-index: 9;
    display: flex;
    gap: 10px;
    right: 40px;
}

.swiper-header .swiper-header-btns div {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.swiper-header .swiper-header-btns div i {
    font-size: 12px;
    color: var(--main-color);
    transition: all 0.3s ease;
}

.swiper-header .button-prev:hover i {
    color: #fff
}

.swiper-header .button-prev:hover {
    background: var(--main-color)
}

.swiper-header .button-next:hover i {
    color: #fff
}

.swiper-header .button-next:hover {
    background: var(--main-color)
}

.swiper-header .swiper-text {
    position: relative;
    z-index: 9;
    max-width: 850px;
    width: 100%;
}

.swiper-header .swiper-text h2 {
    color: #fff;
    font-weight: 700;
    font-size: 50px;
}

.swiper-header .swiper-text p {
    color: #fff;
    font-weight: 200;
    font-size: 20px;
}

.swiper-header .slide-btns {
    display: flex;
    gap: 12px;
}

.swiper-header .swiper-slide__btn {
    position: relative;
    display: inline-block;
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
    padding: 12px 35px 12px 25px;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 500;
    border-radius: 5px;
    display: flex;
    justify-content: center;
}

.swiper-header .swiper-slide__btn-1 {
    width: 192px
}

.swiper-header .swiper-slide__btn span::after {
    content: "";
    width: 12px;
    height: 12px;
    margin-bottom: -2px !important;
    margin-left: 5px !important;
    display: inline-block;
    clip-path: polygon(56.4% 50%, 26.4% 19.9%, 35% 11.3%, 73.6% 50%, 35% 88.7%, 26.4% 80.1%, 56.4% 50%);
    background-color: #000;
    transition: all 0.3s ease;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translate(0, -50%);
}

.swiper-header .swiper-slide__btn-1 span::after {
    right: 35px !important
}

.swiper-header .swiper-slide__btn-2 {
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(37px);
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
}

.swiper-header .swiper-slide__btn-2 span::after {
    background-color: #fff
}

.swiper-header .swiper-slide__btn:hover span::after {
    clip-path: polygon(74.1% 44.2%, 43.1% 13.2%, 51.3% 5%, 96.3% 50%, 51.3% 95%, 43.1% 86.8%, 74.1% 55.8%, 3.7% 55.8%, 3.7% 44.2%, 74.1% 44.2%)
}

.swiper-header .swiper-slide__btn:hover {
    border-radius: 15px
}

.swiper-header .swiper-slide__btn:hover span::after {
    right: 17px
}

.swiper-header .swiper-slide__btn-1:hover span::after {
    right: 30px !important
}

/*about-main styling (992ç 768)*/
.about-main {
    padding: 100px 0 80px 0;
    position: relative;
    margin: 40px 0 130px 0;
}

.about-main .about-main-container {
    position: relative;
    z-index: 1
}

.about-main .about_holder {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: calc(60% - 1.5rem) calc(40% - 1.5rem);
}

.about-main .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.about-main .about-img-box {
    position: absolute;
    z-index: 1;
    height: fit-content;
    border-radius: .1rem;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, .4) 2px 3px 10px
}

.about-main .about-image-boxes {
    position: relative;
    font-size: .5rem;
    padding: 17em
}

.about-main .about-img-box1 {
    top: -20%;
    left: 0;
    width: 22.39%;
    height: 170px
}

.about-main .about-img-box2 {
    left: 16.53%;
    z-index: 0;
    width: 50.5%;
    height: 450px;
    top: 50%;
    transform: translateY(-50%);
}

.about-main .about-img-box3 {
    right: 0;
    width: 42.36%;
    height: 310px;
    top: 50%;
}

.about-main .about-subTitle {
    font-size: .9rem;
    padding-bottom: 1rem
}

.about-main .about-title {
    font-size: 1.8rem
}

.about-main .about-desc {
    font-size: 1rem;
    margin-block: 1rem 1.3rem
}

.about-main .about-more-link {
    display: flex;
    font-size: .9rem;
    padding-block: .5rem;
    width: fit-content;
    color: #2f2f2f
}

.about-main .about-more-link>img {
    margin-left: .6rem;
    height: 1.5rem;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s
}

.about-main .about-more-link:hover>img {
    margin-left: 1rem
}

.about-main .about-info-box {
    padding-inline: 1rem
}

/*section-map styles (992)*/
.section-map {
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-map__inner {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px
}

.section-map__img,
.section-map__boxes {
    max-width: 1200px;
    margin: auto;
}

.section-map__img img {
    width: 100%;
}

.section-map__text h2 {
    font-size: 2.5rem;
    letter-spacing: -.01em;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.section-map__text p {
    color: #414141;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin: auto;

}

.section-map__boxes .boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.section-map__boxes .boxes div {
    background-image: url(/img/diagonal-lines-2.png);
    width: 33%;
    height: 129px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 20px 40px 20px;

}

.section-map__boxes .boxes div span:first-child {
    color: #677c77;
    font-size: 42px;
    font-weight: bold;
}

.section-map__boxes .boxes div span:last-child {
    font-weight: 500;
    color: #010101;
    font-size: 16px;
}

/*categories section styling (992, 768)*/
.categories {
    padding: 50px 0;
}

.categories__title {
    color: #1f3f4f;
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.categories__list-komatsu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px
}

.categories__komatsu {
    background: #1f3f4f;
    border-radius: 20px;
    transition: .3s;
    border: 1px solid transparent;
    cursor: pointer;
}

.categories__komatsu:hover {
    background: #fff;
    border: 1px solid #1f3f4f;
}

.categories__komatsu:hover .a {
    color: #1f3f4f;
}

.categories__komatsu .a {
    color: #fff;
    padding: 15px;
    width: 100%;
    height: 100%;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.categories__komatsu.active {
    background: #fff;
    border: 1px solid #1f3f4f;
}

.categories__komatsu.active .a {
    color: #1f3f4f;
}

.categories__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px
}

.categories__list-item h3 a img {
    display: none
}

.categories__list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    padding: 4px 0;
    background-image: url(/img/Asset-3.webp);
    background-position: 0px 450px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 1s;
}

.categories__list-item:last-child {
    margin-right: 0
}

.categories__list-item:hover {
    background-position: 0px 0px
}

.categories__list-item a {
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 320px;
}

.categories__list-item a:hover {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.3);
}

.categories__list-item a:after {
    background: linear-gradient(to top, #000000bf, rgba(43, 25, 25, 0));
    opacity: 1;
}

.categories__list-item a:before {
    background: linear-gradient(to top, #02473a8c, rgba(43, 25, 25, 0.5));
    opacity: 0;
}

.categories__list-item a:hover:after {
    opacity: 0;
    transition: opacity 0.3s;
}

.categories__list-item a:hover:before {
    opacity: 1;
    transition: opacity 0.3s;
}

.categories__list-item a:after,
.categories__list-item a:before {
    height: 100%;
    width: 100%;
    position: absolute;
    content: '';
    transition: 0.3s ease-in-out;
    opacity: 0.99;
    z-index: 1;
    border-radius: 6px;
}

.categories__list-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    top: 0;
    left: 0;
}

.categories__list-title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    text-align: center;
}

.categories__list-title.first {
    text-transform: uppercase;
}

.categories__list-title.second:first-letter {
    text-transform: capitalize;
}

/*styling blog (992,768)*/
.blog {
    padding: 60px 0;
}

.section-static__title-blog {
    font-size: 30px!important;
}

#blog {
    position: relative;
    z-index: 0
}

#blog .blog_content .blog_card_list.inner {
    grid-template-columns: 1fr 1fr 1fr
}

.blog-innerFull {
    padding: 50px 0;
}

.blog-FullStory img {
    float: right;
    margin-left: 20px;
    max-width: 600px;
    max-height:400px;
    object-fit:cover;
    border-radius: 10px;
}

.blog-FullStory:after {
    content: '';
    display: table;
    clear: both;
}

#blog.homepage {
    overflow: hidden;
    padding: 4rem 0
}

#blog .blog_header {
    margin: 1rem 0 2.9rem;
    margin-top: 0
}

#blog .blog_header .blog_title,
.blog_title {
    font-size: 30px;
    line-height: 2.25rem;
    color: #1f3f4f;
    font-weight: bold
}

#blog .blog_content .blog_card_list {
    display: grid;
    grid-template-columns: "1fr";
    gap: 1.6rem;
}

#blog .blog_card_list .blog_card {
    border-radius: .31rem;
    overflow: hidden;
    transition: all .3s;
    box-shadow: rgba(99, 99, 99, .3) 0px 2px 8px 0px;
    aspect-ratio: 1/1
}

#blog .blog_card_list .blog_card:hover {
    box-shadow: rgba(99, 99, 99, .8) 0px 2px 8px 0px
}

#blog .blog_card_list :is(.blog_card_link, .blog_card_holder) {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%
}

#blog .blog_card_list .blog_card_link .card_bg_image {
    position: absolute;
    z-index: -1;
    inset: 0
}

#blog .blog_card_list .blog_card_link .card_bg_image>img {
    transition: all .4s;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center bottom
}

#blog .blog_card_list .blog_card_link .card_bg_image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: linear-gradient(180deg, rgba(26, 38, 25, 0) 50%, rgba(22, 32, 21, .8) 100%) no-repeat
}

#blog .blog_card_list .blog_card_link:hover .card_bg_image>img {
    transform: scale(1.05)
}

#blog .blog_card .card_button_box {
    position: absolute;
    z-index: 11;
    border-radius: 50%;
    white-space: normal;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    opacity: .9
}

#blog .blog_card .card_button_box button {
    outline: none;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transition: all .3s
}

#blog .blog_card .card_button_box svg {
    fill: #fff;
    font-size: 1.5rem;
    width: 1.5rem
}

#blog .blog_card .card_button_box:hover button {
    background-color: var(--main-color2);
    border-color: var(--main-color2)
}

#blog .blog_card_link .card_content {
    display: flex;
    height: 100%;
    width: 100%;
    aspect-ratio: 1.5/1;
    padding: 1.3rem 5.3rem 1.3rem 1.3rem;
    flex-direction: column;
    align-items: start;
    justify-content: end
}

#blog .blog_card_link .card_content :is(.blog_card_description, .blog_card_title) {
    color: #fff
}

#blog .blog_card_link .card_content .blog_card_title {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: normal
}

#blog .blog_card_list .blog_card_link:hover .blog_card_title {
    text-decoration-line: underline
}

#blog .blog_card_link .card_content .blog_card_description {
    font-size: 1rem;
    margin-top: .5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

#blog .blog_card_link .card_content .blog_card_description img {
    display: none;
}

/*styling onfooter (768)*/
.onfooter {
    background: linear-gradient(45deg, #1f3f4f, #000);
    padding: 30px 0;
}

.onfooter .start {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.onfooter h2 {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 22px;
    margin: auto;
    text-align: center;
}

.onfooter-btn {
    white-space: nowrap;
    width: 220px;
    padding: 12px 20px;
    border-radius: 5px;
    background-color: #fff;
    font-size: 18px;
    font-weight: 600;
    color: #2d3640;
    border: none;
    transition: 0.3s;
    border: 1px solid #fff;
}

.onfooter-btn:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/*footer styling (768)*/
footer {
    background: #070203;
    padding: 40px 20px 40px 20px
}

.footer__top {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    justify-content: space-between;
    color: #fff;
}

.footer__top ul li a,
.contact a {
    color: #fff;
    transition: .3s
}

.footer__top-list {
    display: flex;
    gap: 30px
}

.footer__top ul li {
    margin-bottom: 10px
}

.contact a:hover,
.footer__top ul li a:hover {
    color: #a0a0a0 !important
}

.footer__top .contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__top .contact a {
    color: #fff
}

.footer__top .contact .number {
    font-size: 18px;
    color: #fff;
    position: relative;
    cursor: pointer;
}

.socials.number-options {
    margin-top: 0 !important;
    display: none;
}

.footer__top .contact .mail {
    font-size: 24px;
    color: #fff
}

.socials {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    gap: 15px
}

.socials a {
    display: flex;
    gap: 10px;
    position: relative;
}

.socials .circle {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.socials a:hover .circle {
    background: #4a6a7a
}

.socials a:hover i {
    color: #fff
}

.socials i {
    position: absolute;
    color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
}

.footer__btn {
    background-color: #ec1b30;
    border-radius: 2.5rem;
    transition-timing-function: ease;
    transition-duration: .3s;
    padding: 10px 20px;
    text-align: center;
    font-weight: 500;
}

.footer__btn:hover {
    transform: scale(1.1)
}

.footer__logo-mobile {
    display: none;
    margin-top: 20px
}

.footer__bottom {
    margin-top: 20px
}

.copyright {
    position: relative;
    color: #bdc6cf;
    font-size: 13px;
    justify-content: space-between;
    display: flex;
    gap: 10px;
    align-items: center;
}

@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;
    }
}

.copyright a {
    display: flex;
    align-items: center;
    color: #bdc6cf;
    gap: 10px
}

.contact .number,
.contact .email {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact .email {
    font-size: 18px
}

/*section static styling*/
.section-static .container {
    position: relative
}

.section-static__inner {
    height: 70vh;
    background: url(https://i.pinimg.com/originals/3b/0b/f7/3b0bf71b1dc87743904fac68f1479ea2.jpg) center/cover;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 90px;
    flex-direction: column;
}

.section-static .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(255, 202, 40, 0.6) 8%, rgba(0, 0, 0, 0.48) 82%);
}

.section-static__title {
    font-size: 45px;
    position: relative;
    z-index: 2;
    color: #fff;
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px #000;
}

.breadcumb a {
    text-decoration: none;
    color: #000;
    transition: all .3s ease;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 20px;
}

.breadcumb a {
    color: #000;
    background: #fff;
    margin-right: 10px;
    margin-bottom: 10px;
}

.breadcumb a.active {
    color: #fff;
    background: #1a1a92f5
}

.breadcumb a:hover {
    background-color: #1a1a92f5;
    color: #fff
}

.breadcrumb {
    position: relative;
    z-index: 2;
}

.breadcrumb a,
.breadcrumb span {
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    padding-right: 20px;
}

.breadcrumb span {
    opacity: 0.7;
}

/*section about static styling 992*/
.about-static {
    padding: 0 20px 60px 20px;
    position: relative;
    margin-top: -75px;
    z-index: 2;
}

.about-static .container {
    padding: 0 90px 0 90px
}

.about-static__inner {
    background: #fff;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
    margin: auto;
    padding: 55px 60px;
}

.about-static__inner img {
    margin: auto;
    display: block;
    max-width: 500px;
    object-fit: contain;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.about-static__text {
    line-height: 25px
}

.about-static__text img {
    display: none
}

/*styling feedback*/
#feedback {
    padding: 40px 0;
}

.feedback-title {
    margin-bottom: 40px;
}

.feedback-title h3 {
    font-size: 35px;
    font-weight: 500;
    color: var(--white);
}

.feedback_wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 20px;
    box-shadow: 0 15px 55px -5px rgb(9 31 67 / 10%);
}

.left-feedback {
    width: 100%;
    flex: 0 0 auto;
    padding: 0 12px;
    background: url('https://zeppelin-cat.se/wp-content/uploads/2022/08/image-modal.jpg') center/cover;
    position: relative;
}

.left-feedback__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
    top: 0;
    left: 0;
    opacity: .5;
}

.left_feedback_content {
    padding: 25px;
    border-radius: 4px;
    background-color: var(--feedback-content);
}

.feedback_contact-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
    position: relative;
    z-index: 10;
}

.feedback_contact-info h3 {
    font-size: 22px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.feedback_contact-info a {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    width: fit-content;
    position: relative;
    color: #fff;
    transition: .3s ease-in-out;
}

.feedback_contact-info p {
    display: block;
    font-size: 16px;
    width: fit-content;
    position: relative;
    color: #fff;
    transition: .3s ease-in-out;
}

.feedback_contact-info a:after {
    width: 100%;
    bottom: -8px;
    left: 0;
    position: absolute;
    content: '';
    height: 1px;
    border-radius: 2px;
    background: #fff;
    transition: .3s ease-in-out;
}

.feedback_contact-info a:hover::after {
    width: 0;
}

.right-feedback {
    width: 100%;
    flex: 0 0 auto;
    padding: 0 12px;
}

.right-feedback-wrapper-title {
    margin-bottom: 20px;
}

.right-feedback-wrapper-title h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
}

.right-feedback-wrapper {
    padding: 20px;
}

.right-feedback-wrapper .row {
    row-gap: 20px;
}

.form-feedback-wrapper {
    position: relative;
}

.form-feedback-wrapper-textarea {
    transition: all .3s ease;
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #bab9ba;
    font-size: 14px !important;
    background: transparent;
    outline: none;
    border-radius: 0;
    height: 150px;
    max-height: 200px;
    line-height: 44px;
    resize: vertical;
}

.form-feedback-wrapper-input:focus,
.form-feedback-wrapper-input:valid {
    border-color: var(--white);
}

.form-feedback-wrapper-textarea:focus+.form-feedback-wrapper-label,
.form-feedback-wrapper-textarea:valid+.form-feedback-wrapper-label {
    top: 0px;
    left: 0;
}

.form-feedback-wrapper-input:focus+.form-feedback-wrapper-label,
.form-feedback-wrapper-input:valid+.form-feedback-wrapper-label {
    top: -15px;
    left: 0;
}

.form-feedback-wrapper-input {
    transition: all .3s ease;
    width: 100%;
    border: none;
    border-bottom: 1px solid #bab9ba;
    font-size: 14px !important;
    outline: none;
    background: transparent;
    padding: 10px;
    border-radius: 0;
    height: 44px;
    line-height: 44px;
}

.form-feedback-wrapper-label {
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    margin: 0;
    position: absolute;
    left: 15px;
    top: 11px;
    z-index: 10;
    transition: all .3s ease;
}

.btn-feedback-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-feedback-wrapper button {
    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;
    border: none;
}

@keyframes inf-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--main-color);
        -moz-box-shadow: 0 0 0 0 var(--main-color);
        -o-box-shadow: 0 0 0 0 var(--main-color);
        box-shadow: 0 0 0 0 var(--main-color);
    }
}

.btn-feedback-wrapper button:hover {
    box-shadow: none
}

#map-section {
    padding: 40px 0;
}

#map {
    height: 400px;
}

#map .ymaps-2-1-79-image {
    left: -11px !important;
    top: -38px !important;
    width: 34px !important;
    height: 41px !important;
    opacity: 1 !important;
    background-position: 0px 0px !important;
    background-size: 34px 41px !important;
}



@media screen and (min-width:576px) {
    .btn-feedback-wrapper button {
        width: 194px;
    }
}

@media screen and (min-width:992px) {



    .left-feedback {
        width: 40%;
    }

    .left_feedback_content {
        padding: 45px;
    }

    .right-feedback {
        width: 60%;
    }

    .feedback-title {
        margin-bottom: 20px;
    }

}

@media only screen and (max-width: 1200px) {

    /*responsive slider 1200*/
    header .logo-mobile {
        display: block
    }

    header .menu-btn-mobile {
        display: flex;
    }

    header .menu {
        display: none;
    }
}


@media only screen and (max-width: 992px) {
    
    .section-static__title-blog {
        display: none;
    }
    
    .blog-FullStory img {
        float: inherit;
        margin: 0 auto 20px auto;
        display: block;
        width: 100%;
    }
    
    

    .section-static__title {
        font-size: 32px;
        margin-top: 10px;
    }

    .section-static__inner {
        padding: 0 20px 90px 20px;
    }

    /*responsive slider 992*/
    header .logo img {
        width: 150px;
    }

    /*responsive slider 992*/
    .swiper-header .swiper-text h2 {
        font-size: 40px
    }

    .swiper-header .swiper-text p {
        font-size: 16px
    }

    .swiper-header .swiper-text {
        max-width: 600px
    }

    /*responsive about 992*/
    .about-main {
        margin: 0;
        padding-bottom: 50px;
    }

    .about-main .about-info-box {
        padding-top: 50px;
        padding-bottom: 0;
    }

    .about-main .about_holder {
        grid-template-columns: 1fr;
    }

    .about-main .about-img-box2 {
        width: 90%;
        height: 256px;
        left: 0
    }

    .about-main .about-img-box1 {
        width: 42.39%;
        height: 110px
    }

    .about-main .about-img-box3 {
        right: 6%;
        width: 41.36%;
        height: 123px;
        top: 63%
    }

    .about-main .about-info-box {
        padding-top: 0
    }

    .about-main {
        overflow-x: hidden;
    }

    /*responsive section map 992*/
    .section-map__inner {
        display: flex;
        flex-direction: column-reverse;
    }

    .section-map__text h2 {
        font-size: 25px;
    }

    .section-map__boxes .boxes {
        flex-direction: column;
    }

    .section-map__boxes .boxes div {
        width: 100%;
    }

    .section-map__boxes .boxes div span:first-child {
        font-size: 38px;
    }

    .section-map {
        padding-top: 0;
    }

    /*categories section responsive 992*/
    .categories__list {
        grid-template-columns: 1fr 1fr;
    }

    /*blog section responsive 992*/
    #blog .blog_content .blog_card_list.inner {
        grid-template-columns: 1fr 1fr;
    }

    /*responsive about static 992 */
    .about-static__inner {
        padding: 20px;
    }

    .about-static .container {
        padding: 0 10px 70px 10px;
    }

    .about-static__text p {
        font-size: 15px;
    }

}

@media only screen and (max-width: 768px) {
    .sectionLink {
        margin-bottom: 20px;
    }

    /*responsive slider 768*/
    .swiper-header .swiper-text h2 {
        font-size: 28px
    }

    .swiper-header .swiper-text {
        max-width: 400px
    }

    .swiper-header .swiper-header-btns {
        bottom: 8px;
        left: 10px
    }

    .swiper-header .slide-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 0
    }

    .swiper-header .slide-btns a {
        width: 100%
    }

    .swiper-header .swiper-slide__btn-2 {
        margin-top: 10px
    }

    /*categories section responsive 768*/
    .categories__list {
        grid-template-columns: 1fr;
    }

    .categories__title {
        margin-bottom: 25px;
    }

    /*blog section responsive 768*/
    #blog .blog_content .blog_card_list.inner {
        grid-template-columns: 1fr;
    }


    /*responsive onfooter 768*/
    .onfooter h2 {
        font-size: 23px;
    }

    /*responsive footer 768*/
    footer .footer__top {
        grid-template-columns: auto;
        justify-content: center;
        text-align: center;
    }

    footer .copyright {
        flex-direction: column;
    }

    footer .socials {
        position: relative;
        left: inherit;
        transform: inherit;
    }
}