@font-face {
    font-family: "Raleway";
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Raleway-SemiBold.ttf");
}
@font-face {
    font-family: "Raleway";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Raleway-Bold.ttf");
}
@font-face {
    font-family: "Raleway";
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Raleway-ExtraBold.ttf");
}

*, *:before, *:after {
    outline: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent !important;
    -moz-tap-highlight-color: transparent !important;
    -o-tap-highlight-color: transparent !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-transition: 5000000s ease-in-out 0s;
    transition: 5000000s ease-in-out 0s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Raleway", sans-serif;
    color: #05343B;
    background-color: #E3F3F5;
    font-size: 16px;
    line-height: 1.25;
    min-width: 320px;
}
textarea, input {
    font-family: "Raleway", sans-serif;
    font-weight: normal;
}
body.scroll-hidden {
    overflow: hidden;
}

h1, h2, h3, span, p {
    cursor: default;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: unset;
    color: inherit;
}
a * {
    cursor: pointer;
}

input:invalid {
    -webkit-box-shadow: none;
    box-shadow: none;
}

button {
    border: none;
    cursor: pointer;
}
button span, button p {
    cursor: pointer;
}

.btn {
    border: 2px solid #05343C;
    border-radius: 5px;
    font-size: 25px;
    padding: 10px 34px;
    color: #000!important;
}

.green-btn {
    background: #BFD5C9;
}
.grey-btn {
    background: #E1E1E1;;
}

.wrapper {
    width: 100%;
    margin: 0 7%;
}

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 44px;
    width: 40px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 7;
    -webkit-transition: 0.1s linear;
    transition: 0.1s linear;
}
.slick-prev svg,
.slick-next svg {
    display: none;
}
.slick-prev {
    left: -7%;
    background: url("../img/tiny-prev.png");
    background-repeat: no-repeat;
}
.slick-next {
    right: -7%;
    background: url("../img/tiny-next.png");
    background-repeat: no-repeat;
}

header {
    display: flex;
    justify-content: space-between;
    background-image: url('../img/tiny-menu-1440.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 178px;
}

.desktop-menu {
    display: flex;
}

.mobile-menu {
    display: none;
}

.menu {
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
}
.menu ul {
    display: flex;
    padding-top: 16px;
}
.menu ul li {
    font-size: 25px;
    white-space: nowrap;
    font-weight: 800;
}
.menu ul li:not(:last-child) {
    margin-right: 66px;
}
.menu__items {
    width: 60%;
    margin-left: auto;
}

.menu-btn {
    width: 30px;
    height: 24px;
    position: relative;
    z-index:2;
    overflow: hidden;
    cursor: pointer;
    margin-top: 36px;
    margin-right: 36px;
}

.menu-btn .bar {
    width: 100%;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    background-color: #000;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.menu-btn .bar:nth-of-type(2) {
    top: calc(50% - 10px);
}
.menu-btn .bar:nth-of-type(3) {
    top: calc(50% + 10px);
}

.menu-btn.active .bar:nth-of-type(1) {
    display: none;
}
.menu-btn.active .bar:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
}
.menu-btn.active .bar:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: #E3F3F5;
    transform: translateX(100%);
    transition: transform 0.5s;
    z-index: 1;
}

.nav.active {
    transform: translateX(0);
}

.nav .nav__list_item {
    list-style-type: none;
    font-size: 40px;
    margin-bottom: 40px;
}

.nav__list {
    margin-top: 60px;
}

.hero {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
}

.hero__left {
    margin-left: 7%;
    max-width: 430px;
    width: 100%;
    margin-top: 88px;
}
.hero__left h1 {
    font-size: 55px;
}
.hero__left h3 {
    font-size: 28px;
    margin-top: 28px;
    font-weight: 700;
}
.hero__button img {
    position: absolute;
    left: -64px;
    top: -76px;
}

.hero__button {
    position: relative;
    margin-top: 92px;
    margin-left: 92px;
    background: #BFD5C9;
    font-size: 25px;
    padding: 15px 80px;
    border: 3px solid #05343C;
    border-radius: 10px;
    font-weight: 800;
    color: #000;
}
.hero__feet {
    max-width: 612px;
    margin-top: 56px;
}
.hero__right {
    position: relative;
}
.hero__right p {
    font-size: 20px;
    font-weight: 800;
    position: absolute;
    top: 132px;
    width: 240px;
    left: 112px;
}
.hero__right--socio {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 100px;
    top: 63px;
}
.hero__right--socio a {
    margin-bottom: 36px;
}
.hero__right--socio img {
    width: 50px;
}

.gallery {
    margin-top: 74px;
}

.gallery .filter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 62px;
}

.gallery .filter li {
    padding: 8px 28px;
    margin-right: 12px;
    font-size: 30px;
    font-weight: 600;
    cursor: pointer;
}

.gallery .filter .active {
    background: #BFD5C9;
    border-radius: 5px;
}
.slider {
    margin: 0 12%;
}
.slider__item {
    max-width: 295px;
    margin-right: 94px;
}
.slider__item h2 {
    font-size: 25px;
    text-align: center;
    margin-top: 24px;
    font-weight: 600;
    min-height: 3em;
    line-height: 1em;
}
.slider__item--img {
    cursor: pointer;
    background: #BFD5C9;
    border: 1px solid #05343C;
    border-radius: 5px;
}
.slider__item--img img {
    padding: 34px 34px 0;
    height: 284px;
    width: 284px;
    object-fit: contain;
    margin: auto;
}
.slider__item--img p{
    cursor: pointer;
    margin-top: 30px;
    text-align: right;
    font-size: 30px;
    font-weight: 700;
    margin-right: 20px;
    margin-bottom: 10px;
}
.slider__button-block {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
}

.slider__button-block button {
    margin-bottom: 24px;
}

.help {
    position: relative;
    margin-top: 320px;
}
.help__left {
    background: #BFD5C9;
    padding: 40px 7%;
    position: relative;
}
.help__left h1 {
    font-size: 40px;
    margin-bottom: 33px;
    max-width: 50%;
}
.help__left h3 {
    font-size: 26px;
    font-weight: normal;
    max-width: 45%;
    margin-bottom: 56px;
}
.help__left .btn:first-child{
    margin-right: 50px;
}
.help__left .btn {
    margin-right: 50px;
}
.help img {
    position: absolute;
    right: 50px;
    top: -272px;
}
.help p {
    position: absolute;
    right: 50px;
    top: -236px;
    font-size: 20px;
    max-width: 270px;
}

.reason {
    margin-top: 100px;
}

.reason h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}

.reason__block {
    display: flex;
    margin-top: 80px;
    text-align: center;
    justify-content: center;
}

.reason__block--item:not(:last-child) {
    margin-right: 110px;
}

.reason__block--item h3 {
    margin-top: 60px;
    font-size: 25px;
    max-width: 290px;
    text-align: center;
    font-weight: 700;
}

.question {
    position: relative;
    margin-top: 160px;
}
.question img {
    position: absolute;
    right: 50px;
    top: -68px;
}
.question__left {
    background: #BFD5C9;
    padding: 40px 7%;
}
.question__left h1 {
    font-size: 40px;
    margin-bottom: 20px;
    max-width: 50%;
}
.question__left h3 {
    font-size: 26px;
    font-weight: normal;
    max-width: 45%;
    margin-bottom: 32px;
}
.question__left .btn:first-child{
    margin-right: 50px;
}
.question__left .btn {
    margin-right: 50px;
}
.feet {
    text-align: center;
    margin: 70px 0;
}
.feet img {
    width: 100%;
}

footer {
    background: #BFD5C9;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding-top: 50px;
    padding-bottom: 30px;
}

.footer__logo p {
    max-width: 400px;
    margin: 4px auto;
}

.footer__socio {
    margin-top: 40px;
}

.footer__socio, .footer__socio div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__socio div:not(:last-child) {
    margin-right: 70px;
}

.footer__socio img {
    margin-right: 24px;
}

.up-btn {
    position: fixed;
    bottom: 100px;
    right: 50px;
}

.socio-full {
    display: flex;
}
.socio-991 {
    display: none;
}
.tiny-hero-991 {
    display: none;
}
.tiny-hero-375 {
    display: none;
}
.tiny-cat-1-375 {
    display: none;
}
.tiny-cat-1 {
    display: inherit;
}

.modal-info {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-info-content {
    height: 90vh;
    overflow-y: auto;
    background-color: #E3F3F5;
    margin: 30px auto;
    padding: 32px 46px 60px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

.modal-info-gallery {
    width: 100%;
    background: #BFD5C9;
    padding: 40px 0 20px;
    border: 1px solid #000;
    border-radius: 10px;
    margin-right: 40px;
    box-shadow: 0 5px 10px -5px #000;
    height: fit-content;
}

.modal-text-block {
    margin-right: 38px;
}

.modal-text-block hr {
    margin: 10px 0;
    height: 3px;
    background: #05343C;
    border: none;
    border-radius: 25px;
}

.modal-text-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0;
}

.modal-text-block ul {
    margin-left: 15px;
    list-style: disc;
}

.modal-text-block p, .modal-text-block li {
    font-size: 17px;
}

.modal-info-title {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.modal-info-price, .modal-info-title {
    color: #05343C;
    font-size: 30px;
    font-weight: 700;
}

.close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-info-dots {
    margin-top: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-info-dot {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(5, 52, 60, 0.52);
    margin: 0 7px;
    cursor: pointer;
}

.modal-info-dot.active {
    width: 25px;
    background-color: #05343C;
    height: 25px;
    cursor: inherit;
}

.modal-info-images {
    position: relative;
    height: 400px;
    width: 400px;
    overflow: hidden;
    margin: auto;
}

.modal-info-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
}


.modal-call, .modal-question, .modal-order, .modal-message-response, .modal-message-alert {
    display: none;
    position: fixed;
    z-index: 7;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #BFD5C9;
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    width: 70%;
    overflow: auto;
    height: 93%;
}

.modal-content div {
    text-align: center;
    margin-top: 60px;
}
.modal-content label, .modal-content p {
    font-size: 25px;
    margin-top: 20px;
}
.modal-content input, .modal-content textarea {
    border-radius: 5px;
    border: 1px solid #05343C;
    background: #E3F3F5;
    font-size: 20px;
    padding: 4px 10px;
}
.modal-content input {
    min-height: 45px;
    height: 45px;
}
.modal-content textarea {
    min-height: 200px;
    resize: none;
}
.modal-content a {
    color: #036EBB;
}

.modal-message-response {
    display: none;
}

.modal-message-response .modal-content, .modal-order .modal-content, .modal-message-alert .modal-content {
    height: 70%;
}

.modal-call .modal-content {
    height: 50%;
}

.modal-message-response h1 {
    font-size: 40px;
    font-weight: 600;
}

.modal-message-response p {
    font-size: 25px;
}

.modal-message-alert .modal-content {
    justify-content: space-between;
}

.product-img--main__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-position: center;
    -webkit-transition: -webkit-transform .5s ease-out;
    transition: -webkit-transform .5s ease-out;
    transition: transform .5s ease-out,-webkit-transform .5s ease-out;
}

.prek {
    background: inherit;
    position: absolute;
    top: -13px;
    right: 88px;
    z-index: 1;
    width: 30px;
    height: 30px;
}
@media screen and (max-width: 1170px) {
    .hero {
        margin-top: 20px;
    }
    .hero__left {
        margin-top: 50px;
    }
    .hero__left h1 {
        font-size: 45px;
    }
    .hero__left h3 {
        font-size: 23px;
    }
    .hero__feet {
        width: 100%;
    }
    .hero__button {
        font-size: 20px;
    }
    .hero__right--socio {
        right: 35px;
    }
    .hero__right .hero__right--img {
        height: 600px;
        width: 482px;
    }

    .wrapper {
        margin: 0 4%;
    }
    header {
        background: url("../img/tiny-menu-1024.png");
        background-size: 100% 80%;
        background-repeat: no-repeat;
    }
    .menu {
        padding-top: 16px;
    }
    .menu ul li {
        font-size: 20px;
    }

    .hero__right p {
        font-size: 15px;
        top: 104px;
        left: 82px;
        max-width: 180px;
    }

    .gallery .filter li {
        font-size: 20px;
    }

    .btn {
        font-size: 20px;
    }

    .slider__item h2 {
        font-size: 18px;
    }

    .slider__item--img p {
        font-size: 20px;
    }

    .slider__item--img img {
        max-width: 220px;
        max-height: 220px;
    }

    .slider__item {
        max-width: 220px;
        margin-right: 70px;
    }

    .slick-prev {
        left: -12%;
    }

    .slick-next {
        right: -12%;
    }

    .help img {
        right: 12px;
        top: -186px;
        width: 400px;
    }

    .help p {
        right: 0;
        top: -160px;
    }

    .reason__block--item h3 {
        margin-top: 50px;
        font-size: 20px;
    }

    .reason__block--item:not(:last-child) {
        margin-right: 60px;
    }

    .question__left h1 {
        font-size: 35px;
    }

    .question__left h3 {
        font-size: 20px;
        margin-bottom: 24px;
    }
    .question img {
        top: -104px;
    }

    footer {
        font-size: 17px;
    }
    .prek {
        top: -49px;
    }
}

@media screen and (max-width: 1020px) {
    .modal-info-images {
        height: 300px;
        width: 300px;
    }
    .modal-info-price, .modal-info-title {
        font-size: 25px;
    }
    .modal-text-block h3 {
        font-size: 15px;
    }
    .modal-text-block p, .modal-text-block li {
        font-size: 13px;
    }
    .close img {
        width: 45px;
        height: 45px;
    }
}
@media screen and (max-width: 991px) {
    .modal-message-response .modal-content, .modal-order .modal-content {
        height: 80%;
    }
    .wrapper {
        margin: 0 2%;
    }
    .hero {
        margin-top: 0;
        flex-direction: column;
        align-items: center;
    }
    .hero__feet {
        display: none;
    }
    .hero__left {
        margin-top: 0;
        margin-left: 0;
        max-width: 500px;
        text-align: center;
    }
    .hero__right {
        margin-left: auto;
        margin-top: 30px;
    }
    .tiny-hero {
        display: none;
    }
    .tiny-hero-991 {
        display: inherit;
    }
    .hero__right p {
        top: 89px;
        left: 100px;
    }
    .hero__right .hero__right--img {
        width: 100%;
        height: 100%;
    }
    .menu__items {
        width: auto;
        margin-left: auto;
    }
    .logo {
        width: 157px;
        height: 56px;
    }
    .menu ul li:not(:last-child) {
        margin-right: 40px;
    }
    header {
        background: url("../img/tiny-menu-768.png");
        background-size: 100% 80%;
        background-repeat: no-repeat;
    }
    .hero__right--socio {
        top: 700px;
        left: 30px;
    }
    .hero__button {
        margin-left: 16px;
    }
    .socio-full {
        display: none;
    }
    .socio-991 {
        display: flex;
    }
    .gallery .filter {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-left: 7rem;
        margin-right: 7rem;
    }
    .gallery .filter li {
        width: fit-content;
        min-width: 196px;
        margin-bottom: 10px;
    }
    .gallery {
        margin-bottom: 400px;
    }
    .help__left h1, .help__left h3 {
        max-width: 100%;
    }
    .help__left div {
        text-align: center;
    }
    .help img {
        z-index: -1;
        right: 186px;
        top: -110%;
    }
    .help p {
        right: 180px;
        top: -326px;
        font-size: 17px;
    }
    .help__left .btn {
        margin-right: 0;
    }
    .reason__block {
        flex-direction: column;
        align-items: center;
    }
    .reason__block--item {
        margin-bottom: 70px;
        margin-right: 0!important;
    }
    .question img {
        top: -367px;
    }
    .reason {
        margin-bottom: 200px;
    }
    .question__left {
        text-align: center;
    }
    .question__left h3 {
        max-width: 100%;
    }
    .question__left h1, .question__left h3 {
        text-align: left;
    }
    .question__left .btn {
        margin-top: 30px;
        margin-right: 0;
        width: 264px;
    }
    .question__left h1 {
        max-width: 45%;
    }
    .question {
        margin-top: 360px;
    }
    .footer__socio {
        display: flex;
        flex-wrap: wrap;
    }
    .footer__socio div {
        width: 45%;
        margin-bottom: 20px;
    }
    .footer__socio div:not(:last-child) {
         margin-right: 0;
    }
    .footer__socio div a{
        min-width: 132px;
    }
    .footer__logo p {
        font-size: 20px;
    }
    .prek {
        top: -312px;
    }
}
@media screen and (max-width: 770px) {
    .question__left h1 {
        max-width: 36%;
    }
}
@media screen and (max-width: 736px) {
    .modal-info-images {
        width: 100%;
    }
    .help__left h1 {
        font-size: 26px;
    }
    .help__left h3 {
        font-size: 18px;
    }
    .help__left div {
        flex-direction: column;
        display: flex;
    }
    .help__left div button {
        max-width: fit-content;
        margin-bottom: 20px;
    }
    .help__left div button:last-child {
        margin-left: auto;
    }
    .gallery {
        margin-bottom: 500px;
    }
    .help p {
        top: -407px;
    }
    .help img {
        right: 98px;
        top: -97%;
    }
    .help p {
        top: -337px;
        right: 90px;
    }
    .modal-info-content {
        display: block;
        overflow: auto;
        transform: translate(-50%, -50%);
        margin: auto;
        height: 90%;
    }
    .modal-info-gallery {
        width: 80%;
        margin: 0 auto 50px;
    }
}
@media screen and (max-width: 670px) {
    .logo {
        margin-top: 16px;
        margin-left: 14px;
    }
    header {
        background: url("../img/tiny-menu-375.png");
        background-size: 100% 80%;
        background-repeat: no-repeat;
    }
    .desktop-menu {
        display: none;
    }
    .mobile-menu {
        display: flex;
        justify-content: space-between;
    }
    .gallery .filter li {
        min-width: auto;
    }
    .gallery .filter {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 2rem;
        margin-right: 2rem;
        white-space: pre;
        justify-content: inherit;
    }
    .modal-content {
        width: 90%;
    }
}
@media screen and (max-width: 600px) {
    .question__left h1 {
        max-width: 100%;
        margin-top: 80px;
    }
}
@media screen and (max-width: 550px) {
    .tiny-hero-375 {
        display: inherit;
    }
    .tiny-hero-991 {
        display: none;
    }
    .hero__left h1 {
        font-size: 23px;
    }
    .hero__left h3 {
        font-size: 20px;
    }
    .hero__right p {
        font-size: 13px;
        top: 47px;
        left: 45px;
    }
    .hero__right--socio {
        top: 524px;
    }
    .help__left {
        padding: 40px 3%;
    }
    .up-btn {
        display: none;
    }
    .modal-info-images {
        height: 200px;
    }
}
@media screen and (max-width: 477px) {
    .help__left h1 {
        font-size: 26px;
    }
    .help__left h3 {
        font-size: 18px;
    }
    .help__left div {
        flex-direction: column;
        display: flex;
    }
    .help__left div button {
        max-width: fit-content;
        margin-bottom: 20px;
    }
    .help__left div button:last-child {
        margin-left: auto;
    }
    .gallery {
        margin-bottom: 500px;
    }
    .help p {
        top: -407px;
    }
    .help img {
        right: 98px;
        top: -97%;
    }
    .help p {
        top: -337px;
        right: 90px;
    }
    .gallery .filter {
        display: flex;
        overflow-x: scroll;
    }
    .gallery .filter li {
        padding: 8px 8px;
    }
    .footer__socio {
        flex-direction: column;
    }
}
@media screen and (max-width: 440px) {
    .tiny-cat-1-375 {
        display: inherit;
        width: fit-content!important;
    }
    .tiny-cat-1 {
        display: none;
    }
    .help p {
        right: 10px;
        font-size: 15px;
        width: 170px;
        top: -265px;
    }
    .help img {
        right: 2px;
        top: -285px;
        width: 75%;
    }
    .help__left h1 {
        font-size: 22px;
    }
    .help__left h3 {
        font-size: 15px;
    }
    .gallery {
        margin-bottom: 350px;
    }
    .reason h1 {
        font-size: 30px;
    }
    .reason__block--item h3 {
        margin-top: 30px;
    }
    .question {
        margin-top: 160px;
    }
    .question img {
        top: -215px;
        width: 250px;
    }
    .question__left h1 {
        margin-top: 30px;
        font-size: 22px;
    }
    .question__left h3 {
        font-size: 15px;
        margin-bottom: 0;
    }
    .prek {
        top: -183px;
        right: 71px;
    }
    .modal-message-alert h1 {
        font-size: 28px;
    }
}
@media screen and (max-width: 400px) {
    header {
        background-size: 120% 80%;
    }
    .modal-info-images {
        height: 150px;
    }
}