@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');


* {
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

p {
    line-height: 1.8;
}

a {
    text-decoration: none !important;
    transition: 0.3s;
}

input,
textarea,
button,
.slick-slide {
    outline: none !important;
    border: none;
}

body {
    color: #fff;
    font-size: 16px;
    font-family: "Inter", serif;
    background: #222222;

}

body.modal-open {
    overflow: hidden;
}

section {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

ul,
li {
    margin: 0;
    padding: 0;
}

:root {
    --def-color: #AFEEEE;
}


.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2000;
    background: #222;
}

.loader-block {
    display: flex;
    align-items: center;
}

.loader-block-item {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--def-color);
}

.loader-block-item+.loader-block-item {
    margin-left: 10px;
}

.loader-block-item:nth-child(1n) {
    animation: loaderBottom 1s infinite;
}

@keyframes loaderTop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    0% {
        transform: translateY(0);
    }
}

.loader-block-item:nth-child(2n) {
    animation: loaderTop 1s infinite;
}

@keyframes loaderBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    0% {
        transform: translateY(0);
    }
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.up-btn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #fff;
    position: fixed !important;
    right: 20px;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: 0.3s;
}

.up-btn:hover {
    background: #fff;
    border-color: var(--def-color);
}

.up-btn img {
    max-width: 70%;
    max-height: 70%;
    transition: 0.3s;
    animation: up 1s infinite;
}


@keyframes up {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    0% {
        transform: translateY(0);
    }
}

@keyframes leftToRight {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(0);
    }
}

.color-option {
    position: fixed;
    left: 10px;
    top: 45%;
    z-index: 4;
}

.color-option-header {
    background: #222;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid var(--def-color);
}

.color-option-header img {
    width: 80%;
    height: 80%;
}

.color-option-header img:last-child {
    display: none;
}

.color-option-content {
    margin-bottom: 4px;
    border: 1px solid var(--def-color);
    animation: leftToRight 0.8s;
    background: #222;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    display: none;
    position: absolute;
    left: 0;
    bottom: 100%;
}

.color-option-content-title {
    width: 100%;
    margin-bottom: 10px;
    color: #fff;
}

.color-option-content-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: wrap;
}

.color-option-content-row-item {
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin: 2px;
    border-radius: 4px;
    transition: 0.3s;
}

.color-option-content-row-item.active {
    transform: scale(0.9);
}

.color-option-content-row-item:hover {
    opacity: 0.5;
}

.container {
    max-width: 1180px;
}

.h-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    padding-top: 5vh;
    display: none;
}

.h-modal-content {
    width: 500px;
    padding: 40px 20px;
    box-shadow: 0px 2px 2px 0px #00000040;
    border-radius: 5px;
    margin: auto;
    position: relative;
    max-width: calc(100% - 30px);
    color: #fff;
    overflow: hidden;
    background: #222;
    border: 2px solid var(--def-color);
    text-align: center;

}

.h-modal-content-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--def-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1;

}

.h-modal-content-close:hover {
    transform: scale(1.1);
}

.h-modal-content-close img {
    width: 80%;
    height: 80%;
}

.h-modal .title {
    margin-bottom: 30px;
}

/*default style*/


.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 5;
}

.header.active,.header.menu-open {
    background: #222;
    border-bottom: 1px solid var(--def-color);
}

.header.active .header-row {
    padding: 5px 0;
}

.header.active .header-row:after {
    display: none;
}

.header-row {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 0;
    transition: 0.3s;
}

.header-row:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--def-color);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.5;
}

.logo {
    display: flex;
    align-items: center;
    color: #fff;
}

.logo:hover {
    opacity: 0.5;
}

.logo:hover .logo-icon {
    transform: rotate(-45deg);
}

.logo-icon {
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;

}

.logo-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo-title {
    margin-left: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.header-menu {
    margin-left: auto;
}

.menu {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.menu-item {
    display: block;
}

.menu-link {
    display: block;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.05em;
    overflow: hidden;
    position: relative;
}

.menu-link:after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--def-color);
    transition: 0.3s;
    transform: translateX(-110%);
}

.menu-link:hover {
    opacity: 0.5;
}

.menu-link:hover:after {
    transform: translateX(0);
}

.header-bars {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #fff;
    margin-left: auto;
    display: none;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}
.header-bars.active{
    border-color: var(--def-color);
    transform: rotate(90deg);
}

.header-bars img {
    width: 70%;
    height: 70%;
}

.mob-menu{
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100vh;
    background: rgba( 0,0,0,0.9 );
}
.mob-menu .menu{
    display: block;
}
.mob-menu .menu-link{
    padding: 10px 5px;
}
.mob-menu-content{
    padding-top: 20px;
    background: #222;
    width: 220px;
    height: 100%;
}

.head {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}


.default-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.default-bg:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    top: 0;

}

.default-bg video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.default-content {
    position: relative;
    z-index: 1;
}

.default-text-block {
    margin-bottom: 40px;
}

.title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 25px;
    font-family: "Roboto Mono", sans-serif;
    line-height: 1.4;
    display: inline-block;
    position: relative;
}

.title:after {
    content: "";
    display: block;
    height: 2px;
    width: 50px;
    position: absolute;
    left: 0px;
    top: -5px;
    background: var(--def-color);
}

.slogan {
    font-size: 20px;
    margin-top: 30px;
    line-height: 1.8;
}


.head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-row-item {
    width: 45%;
}


.h-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--def-color);
    color: #222;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
    font-family: "Roboto Mono", sans-serif;
    transition: 0.3s;
}

.h-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.default-block-bg {
    position: relative;
    overflow: hidden;
}

.default-block-bg:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--def-color);
    z-index: -1;
    opacity: 0.4;
    backdrop-filter: blur(20px);
    transition: 0.3s;
}

.head-block {
    color: #fff;
    backdrop-filter: blur(20px);
    color: #fff;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
}

.head-block-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.head-block-timer-item {
    padding: 0 5px;
    font-size: 20px;
    width: 80px;
    text-align: center;
    position: relative;
}

.head-block-timer-item+.head-block-timer-item:before {
    content: ":";
    display: block;
    font-size: 20px;
    font-weight: 700;
    position: absolute;
    left: -5px;
    top: 0;


}

.head-block-timer-item-val {
    font-weight: 700;
    display: block;
    color: var(--def-color);
}

.head-block-btn {
    margin-top: 40px;
}

.head-block-form {
    max-width: 400px;
    margin: 0 auto;
    display: none;
}

.default-form {
    position: relative;
}

.default-form-item {
    display: block;
    padding: 0;
    margin: 0;
}
.default-form-check{
    margin-top: 20px;
}
.default-form-check a{
    color: var(--def-color);
}

.default-form-item+.default-form-item {
    margin-top: 20px;
}

.default-form-item-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.default-form-item-input {
    position: relative;
}

.default-form-item-input input {
    width: 100%;
    background: transparent;
    border-bottom: 1px solid #fff;
    padding: 0 12px;
    color: #fff;
    height: 40px;
    transition: 0.3s;
}

.default-form-item-input textarea {
    width: 100%;
    height: 120px;
    background: transparent;
    border: 1px solid #fff;
    padding: 12px;
    color: #fff;
    transition: 0.3s;
    border-radius: 4px;
    resize: none;
}

.default-form-item-input input:focus {
    border-color: var(--def-color);
}

.default-form-item-input textarea:focus {
    border-color: var(--def-color);
}

.default-form-sub {
    margin-top: 40px;
}

.default-form-radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.default-form-radio-item {
    position: relative;
    width: 33%;
    height: 100%;
    opacity: 0.5;
    border: 1px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}


.default-form-radio-item:hover {
    opacity: 1;
}

.default-form-radio-item input {
    position: absolute;
    opacity: 0;
    z-index: -10;
}

.default-form-radio-item.active {
    opacity: 1;
    border-color: #95cc55;
}

.default-form-radio-item.active:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #95cc55;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    bottom: 5px;
    transition: 0.3s;
}

.default-form-radio-item-img img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.h-modal-accept {
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
}

.h-modal-accept.active {
    display: flex;
    animation: show 0.3s;
}


.head-block-form-accept {
    display: none;
}

.head-block-form-accept-icon {
    margin-top: 20px;
}


.about {
    position: relative;
    padding-top: 140px !important;
}

.about-object {
    position: absolute;
    left: 0;
    top: 0;
    animation: aboutDown 16s infinite;
    width: 15%;
    height: 15vw;
    transition: 0.3s;
    transform: translateY(-100%);
}

.about-object:nth-child(2) {
    animation-delay: 8s;
    left: auto;
    right: 0;
}

.about-object img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes aboutDown {

    90% {
        transform: translateY(200%);

    }

    100% {
        opacity: 0;
    }

}

.about-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-row-item {
    width: 32%;
    border-radius: 10px;
    text-align: center;
    padding: 40px 20px;
    transition: 0.3s;
}

.about-row-item:hover {
    box-shadow: 0 0 20px var(--def-color);
}

.about-row-item-title {
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0;
    text-shadow: 1px 1px 2px #222;
}

.about-row-item-slogan {
    text-shadow: 1px 1px 2px #222;
}

.about-row-item-icon img {
    width: 50px;
    height: 50px;
}

.about-advantages {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.about-advantages-list {
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.about-advantages-list:hover {
    box-shadow: 0 0 20px var(--def-color);
}

.about-advantages-list+.about-advantages-list {
    margin-left: 20px;
}

.about-advantages-list-item-head {
    border-bottom: 1px solid var(--def-color);
    padding: 10px 0;
    margin-bottom: 10px;
}

.about-advantages-list-item+.about-advantages-list-item {
    margin-top: 10px;
}



.services {}

.services-row {
    display: flex;
    justify-content: space-between;
}

.services-row-item {
    width: 31%;
    padding: 40px 20px 80px 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px var(--def-color);
    position: relative;
    transition: 0.3s;
}

.services-row-item:hover:after {
    opacity: 0.5;
}

.services-row-item-title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

.services-row-item-slogan {
    font-size: 12px;
    margin: 20px 0;
}

.services-row-item-list-item {
    display: flex;

}

.services-row-item-list-item+.services-row-item-list-item {
    margin-top: 10px;
}

.services-row-item-list-item-icon {
    color: var(--def-color);
    font-size: 16px;
}

.services-row-item-list-item-title {
    margin-left: 15px;
}

.services-row-item-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.services-row-item-object {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 50%;
    background: #fff;
    width: 15px;
    height: 15px;
}


.gallery .default-content {
    position: static;
}


.gallery-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-row-item {
    width: 25%;
    position: relative;
}

.gallery-row-item-img {
    height: 14vw;
    overflow: hidden;
}

.gallery-row-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-row-item-btn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    cursor: pointer;
    opacity: 0;
    z-index: -1;
}

.gallery-row-item-btn img {
    width: 50px;
    height: 50px;
    transition: 0.3s;
}

.gallery-row-item:hover .gallery-row-item-btn {
    z-index: 1;
    opacity: 1;
}

.gallery-modal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 2;
}

.gallery-modal-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-item img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    border: 4px solid var(--def-color);
}

.gallery-modal-close {
    position: absolute;
    right: 40px;
    top: 40px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.gallery-modal-close:hover {
    box-shadow: 0 0 10px var(--def-color);
}

.gallery-modal-close img {
    width: 70%;
    height: 70%;
}

.testimonials {}

.testimonials-slider-item {
    padding: 80px 30px 30px 30px;
}

.testimonials-inner {
    text-align: center;
    border: 1px solid var(--def-color);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--def-color);
    padding: 0 20px 40px 20px;
    overflow: visible;
}

.testimonials-inner-img {
    width: 100px;
    height: 100px;
    border: 4px solid var(--def-color);
    border-radius: 50%;
    overflow: hidden;
    margin: -50px auto 0 auto;
}

.testimonials-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-inner-star {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 40px 0;
}

.testimonials-inner-star img {
    width: 20px;
    height: 20px;
}

.testimonials-inner-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 30px;
    color: var(--def-color);
}

.slick-dots li {
    background: var(--def-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    transition: 0.3s;
}

.slick-dots li:hover {
    transform: scale(1.1);
}

.slick-dots li.slick-active {
    opacity: 0.5;
}

.slick-dots li button {
    opacity: 0;
}

.contacts {
    padding-top: 140px !important;
}

.contacts-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contacts-map {
    border-radius: 10px;
    border: 2px solid var(--def-color);
    overflow: hidden;
    width: 60%;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;

    display: block;
}

.contacts-form {
    width: 38%;
    position: relative;
    border: 2px solid var(--def-color);
    border-radius: 10px;
    padding: 30px 15px;
    overflow: hidden;
    text-align: center;
}


.contacts-form-accept {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: none;
    animation: show 0.3s;
}

.contacts-form-accept.active {
    display: flex;
}

.contacts-faq {
    width: 80%;
    margin: 20px auto 0 auto;
}

.contacts-faq-inner+.contacts-faq-inner {
    margin-top: 10px;
}

.contacts-faq-inner-header {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    border: 2px solid var(--def-color);
    transition: 0.3s;
    cursor: pointer;
}

.contacts-faq-inner-header.active {
    border-radius: 10px 10px 0 0;
}

.contacts-faq-inner-header.active .contacts-faq-inner-header-icon {
    transform: rotate(0);
}

.contacts-faq-inner-header-title {
    text-transform: uppercase;
    font-weight: 700;
}

.contacts-faq-inner-header-icon {
    transform: rotate(180deg);
    transition: 0.3s;
}

.contacts-faq-inner-header-icon img {
    width: 30px;
    height: 30px;
}

.contacts-faq-inner-content {
    padding: 20px;
    border-radius: 0 0 10px 10px;
    border: 2px solid var(--def-color);
    border-top: none;
    display: none;

}

.footer {
    background: #222;
    padding: 40px 0 80px 0;
    color: #fff;
    border-top: 1px solid var(--def-color);
}

.f-text {
    max-width: 300px;
}

.f-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.f-row+.f-row{
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--def-color);
}
.f-link{
    color: var(--def-color);
}
.f-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.f-inner {
    display: flex;
    align-items: center;
}

.f-inner-item+.f-inner-item {
    margin-left: 20px;
}

.f-inner-item-title {
    font-size: 14px;
    font-weight: 700;
}

.f-inner-item-slogan {
    font-size: 14px;
}

.f-soc {
    display: flex;
    align-items: center;
}

.f-soc-item+.f-soc-item {
    margin-left: 10px;
}

.f-soc-item {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid var(--def-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-soc-item:hover {
    opacity: 0.5;
}

.f-soc-item img {
    width: 70%;
    height: 70%;
}


@media screen and (max-width: 1200px) {
    .color-option {
        top: auto;
        bottom: 20px;
    }
}

@media screen and (max-width: 992px) {
    .about-row {
        justify-content: center;
    }

    .about-row-item {
        width: 48%;
        margin: 1%;
    }

    .services-row {
        flex-wrap: wrap;
    }

    .services-row-item {
        width: 100%;
    }

    .services-row-item+.services-row-item {
        margin-top: 20px;
    }

    .gallery-row-item {
        width: 33%;
    }

    .gallery-row-item-img {
        height: 30vw;
    }

    .contacts-row-item {
        width: 100%;
    }

    .contacts-map {
        order: 5;
        margin-top: 20px;
    }

    .f-row {
        flex-wrap: wrap;
        text-align: center;
    }

    .f-row-item {
        width: 100%;
    }

    .footer .logo {
        justify-content: center;
    }

    .f-text {
        max-width: 100%;
    }

    .f-inner {
        justify-content: center;
    }

    .f-title {
        margin: 30px 0 10px 0;
    }

    .f-soc {
        justify-content: center;
        margin-top: 20px;
    }

    section {
        padding: 80px 0;
    }
}


@media screen and (max-width: 768px) {
    .head-row {
        flex-wrap: wrap;
    }

    .head-row-item {
        width: 100%;
        text-align: center;
    }

    .head-row-item:nth-child(2) {
        order: -1;
        margin-bottom: 60px;
    }

    .head-block {
        max-width: 400px;
        margin: 0 auto;
    }

    .head {
        padding: 120px 0;
    }

    .about-row-item {
        width: 100%;
    }

    .about-advantages {
        flex-wrap: wrap;
    }

    .about-advantages-list {
        margin: 1% !important;
        width: 100%;
    }

    .header-bars {
        display: flex;
    }

    .header-menu {
        display: none;
    }
}

@media screen and (max-width: 574px) {
    .f-inner {
        flex-wrap: wrap;
    }

    .f-inner-item {
        width: 100%;
    }

    .f-inner-item+.f-inner-item {
        margin: 10px 0 0 0;
    }
}


.information-section{
    padding-top: 140px !important;
}