@import url("../fonts/Gilroy/stylesheet.css");
@import url("../fonts/Playfair_Display/stylesheet.css");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

:root {
  --green: #58D952;
}

/*------------------- Fonts --------------------------*/
/*------------------- Responsive --------------------------*/
h1 {
  font-size: min(max(35px + 25 * (100vw - 768px) / 1152, 35px), 60px);
  font-family: "Playfair Display", sans-serif;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

h2 {
  font-family: "Gilroy", sans-serif;
  font-size: min(max(28px + 12 * (100vw - 768px) / 1152, 28px), 40px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: min(max(2px + 7.7 * (100vw - 768px) / 1152, 2px), 9.7px);
}

h4 {
  font-family: "Playfair Display", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 40px;
}

p {
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  line-height: 25.09px;
  letter-spacing: 0.2px;
}

a {
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  color: inherit;
  font-weight: inherit;
  cursor: pointer;
  text-decoration: none;
}

.pl50 {
  padding: 0 0 0 50px;
}

.pr50 {
  padding-right: 0 50px 0 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
}
header {
  background-color: #313131;
  height: 100px;
  width: 100%;
  z-index: 30;
  position: fixed;
  left: 0;
  top: 0;
  box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.5);
}
header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .container .phone {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: content-box;
  padding: 0 30px 0 30px;
}
header .container .phone span {
  position: absolute;
  display: block;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/phone.svg") no-repeat center;
  background-size: cover;
  display: block;
  width: 20px;
  height: 20px;
}
header .container .phone ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 10px;
}
header .container .phone ul li {
  position: relative;
}
header .container .phone ul li ul {
  display: none;
}
header .container .phone ul li img {
  display: block;
  position: absolute;
  right: -30px;
  top: -3px;
  width: 20px;
  height: 20px;
}
header .container .phone ul li a {
  position: relative;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  color: #fff;
  transition: color 0.3s;
}
header .container .phone ul li a:hover {
  color: #4aa946;
}
header .brand {
  cursor: pointer;
  transition: 0.3s;
  width: 265px;
}
header .brand:hover {
  transform: scale(1.1);
}
header .brand img {
  max-width: 100%;
}
header nav {
  display: flex;
  color: #fff;
}
header nav .togler {
  width: 25px;
  height: 18px;
  position: relative;
  display: none;
}
header nav .togler .bar {
  width: 100%;
  height: 2px;
  background-color: #ccc;
  position: absolute;
  left: 0;
  top: 0;
}
header nav .togler .bar:nth-child(2) {
  top: 8px;
}
header nav .togler .bar:nth-child(3) {
  top: 16px;
}
header nav ul.menu {
  display: flex;
}
header nav ul.menu li {
  margin-left: 30px;
  font-family: Montserat;
  font-size: 16px;
  text-transform: uppercase;
}
header nav ul.menu li:first-child {
  margin-left: 0;
}
header nav ul.menu li a {
  transition: all 0.3s;
}
header nav ul.menu li a:hover {
  color: #4aa946;
}
header nav ul.menu li a:active {
  color: #3a8a38;
}
header nav .active-menu-item {
  color: #4aa946;
}

@media only screen and (max-width: 1200px) {
  header .container {
    align-items: center;
    gap: 20px;
  }
  header .container .brand {
    width: 180px;
    flex-shrink: 0;
  }
  header .container .brand img {
    width: 100%;
  }
  header .container nav ul li {
    margin-left: 10px;
  }
  header .container .phone {
    margin-left: auto;
    width: 160px;
  }
}
@media (max-width: 550px) {
  header .container .phone {
    width: 25px;
    height: 28px;
    padding: 0;
  }
  header .container .phone span {
    left: 0;
    cursor: pointer;
  }
  header .container .phone ul {
    display: flex;
    position: absolute;
    right: 0;
    top: 48px;
    z-index: 1;
    width: 185px;
    background-color: #fff;
    padding: 10px;
    box-sizing: content-box;
    border-radius: 4px;
    box-shadow: 0 0 4px 0px #000;
    height: auto;
    opacity: 1;
    animation: fadeIn 0.5s forwards;
    display: none;
  }
  header .container .phone ul li {
    height: 40px;
    line-height: 40px;
  }
  header .container .phone ul li:first-of-type {
    margin: 0;
  }
  header .container .phone ul li a {
    display: block;
    color: #000;
  }
  header .container .phone ul li img {
    right: 5px;
    top: 18px;
    transform: translateY(-50%);
  }
  header .container .phone.active ul {
    display: flex;
  }
}
.gallery-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: min(max(130px + 50 * (100vw - 768px) / 1152, 130px), 180px) 0 min(max(30px + 20 * (100vw - 768px) / 1152, 30px), 50px);
}

.gallery.container {
  flex-grow: 1;
  width: 992px;
  margin: 0 auto;
  max-width: 100%;
}
.gallery.container h1 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.gallery.container p {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-footer {
  margin-top: -70px;
}

.contacts {
  padding-top: min(max(60px + 60 * (100vw - 768px) / 1152, 60px), 120px);
  padding-bottom: min(max(60px + 40 * (100vw - 768px) / 1152, 60px), 100px);
  background-image: url("../images/map.jpg");
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  background-color: rgba(46, 46, 46, 0.5);
}
.contacts .container {
  color: #fff;
  text-align: center;
}
.contacts .container h1 {
  font-size: 39px;
  font-family: "Playfair Display", sans-serif;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  text-transform: uppercase;
}
.contacts .container address {
  display: flex;
  justify-content: center;
  text-align-last: left;
}
.contacts .container address ul {
  margin-right: 100px;
}
@media only screen and (max-width: 992px) {
  .contacts .container address ul {
    margin-right: 50px;
  }
}
.contacts .container address ul li.mainItem {
  margin-bottom: 25px;
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  color: #58D952;
}
.contacts .container address ul li {
  margin-bottom: 25px;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
}
.contacts .container address ul li a {
  line-height: 24px;
  text-transform: capitalize;
  transition: 0.3s;
}
.contacts .container address ul li a:hover {
  color: var(--green);
}
.contacts .container address ul li span {
  display: block;
  margin-bottom: 10px;
}
.contacts .container address ul li:last-of-type a {
  text-transform: lowercase;
}
.contacts .container address form {
  width: 500px;
  max-width: 90%;
  background-color: #fff;
  box-shadow: 0 0 20px 0 #000;
  color: #3d3d3d;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
@media only screen and (max-width: 992px) {
  .contacts .container address form {
    width: 50%;
  }
}
.contacts .container address form input {
  width: 100%;
  border: 1px solid #ccc;
  outline: none;
  height: 35px;
  margin-bottom: 20px;
  padding: 0 10px;
  font-size: 16px;
  text-transform: uppercase;
  color: #525252;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
}
.contacts .container address form input.error,
.contacts .container address form textarea.error {
  border: 1px solid #f38484;
  box-shadow: 0 0 5px 0px #f7bfbf;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
}
.contacts .container address form label.error {
  display: none !important;
}
.contacts .container address form textarea {
  width: 100%;
  border: 1px solid #ccc;
  outline: none;
  height: 200px;
  resize: none;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 20px;
}
.contacts .container address form textarea::placeholder {
  text-transform: uppercase;
  color: #525252;
  font-family: serif;
  font-family: "Open Sans SemiBold";
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
}
.contacts .container address form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  height: 40px;
  font-size: 20px;
  font-family: "Open Sans ExtraBold";
  color: #525252;
  background-color: #fff;
  cursor: pointer;
}
.contacts .container address form button:hover {
  background-color: rgb(216, 216, 216);
}
.contacts .container address form button:active {
  background-color: rgb(228, 228, 228);
}

footer {
  background: #212121;
  min-height: 70px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  position: relative;
}
footer .container {
  padding: 0 20px;
}
footer .container ul {
  display: flex;
  justify-content: center;
}
footer .container ul li {
  margin: 0 10px;
}
footer .container ul li a {
  transition: 0.3s;
}
footer .container ul li a img {
  width: 20px;
  height: 20px;
}
footer .designed {
  position: absolute;
  right: 0;
  color: #4AA946;
  padding-right: 15px;
  font-family: sans-serif;
  font-weight: lighter;
  font-size: 14px;
}
footer .designed a {
  font-size: 14px;
  font-weight: 400;
}

div.reload {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 33;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}
div.reload div.success {
  width: 265px !important;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  color: #000;
  padding: 10px;
  box-sizing: content-box;
}
div.reload div.success p {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: sans-serif;
  text-align: center;
}
div.reload div.success a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  background-color: #5B5B5B;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  color: #fff;
  text-transform: uppercase;
  font-family: sans-serif;
  cursor: pointer;
}
div.reload div.success a:active {
  background-color: #707070;
}

.galleryNoAccess {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7882352941);
  z-index: 999;
  align-items: center;
  justify-content: center;
  animation: smoothOpacity 0.5s;
}
.galleryNoAccess .noAccess {
  background-color: #ccc;
  width: 300px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.galleryNoAccess .noAccess h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 25px;
}
.galleryNoAccess .noAccess button {
  display: inline-block;
  width: 80%;
  height: 30px;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: inherit;
  border: 1px solid rgb(185, 185, 185);
  box-shadow: 0 0 5px 0 rgb(185, 185, 185);
  background: #EFEFEF;
  outline: none;
  cursor: pointer;
}
.galleryNoAccess .noAccess button:hover {
  background: #dbdbdb;
  box-shadow: 0 0 8px 0 rgb(185, 185, 185);
}
.galleryNoAccess .noAccess button:active {
  background-color: rgb(233, 233, 233);
}

:root {
  --green: #58D952;
}

/*------------------- Fonts --------------------------*/
/*------------------- Responsive --------------------------*/
.else {
  padding-top: min(max(130px + 50 * (100vw - 768px) / 1152, 130px), 180px);
  min-height: 100vh;
  background: url("../images/aboutbg.jpg") no-repeat top left;
}
.else .container {
  width: 1200px;
}
.else h1 {
  text-align: center;
  margin-bottom: 50px;
}
.else article {
  display: flex;
  justify-content: center;
  padding: 20px;
  margin-bottom: 150px;
  position: relative;
}
.else article::after, .else article::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: none;
  border-left: none;
  box-shadow: 4px 4px 5px #e7e7e7;
}
.else article::before {
  content: "";
  left: 0;
  top: 0;
  border-right: none;
  border-bottom: none;
  box-shadow: -4px -4px 5px #e7e7e7;
}
.else article .pr50 {
  padding-right: 50px;
}
.else article .pl50 {
  padding-left: 50px;
}
.else article .image-box {
  display: flex;
  justify-content: center;
  position: relative;
}
.else article .image-box img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  object-position: center 0;
  border-radius: 5px;
}
.else article .description-box {
  width: 50%;
}
.else article .description-box h2 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 24px;
  color: #494949;
  border-bottom: 1px solid #58D952;
  padding-bottom: 20px;
  margin-bottom: 15px;
  line-height: 30px;
}
.else article .description-box span {
  color: #000;
  padding: 10px 0;
  padding-left: 0;
  top: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Gilroy", sans-serif;
}
.else article .description-box span.price {
  background-color: #57D351;
  padding: 10px 20px;
  margin: 0 20px;
}
.else article .description-box p {
  margin: 0;
  padding: 0;
  line-height: 30px;
}
.else article .description-box p.manufacturer {
  margin-bottom: 10px;
  color: #5e5e5e;
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
  .else article {
    flex-direction: column;
    margin-bottom: 80px;
    padding: 20;
  }
  .else article .image-box {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
    height: 250px;
  }
  .else article .image-box img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    background-color: #fff;
  }
  .else article .description-box {
    width: 100%;
  }
  .else article .description-box h2 {
    line-height: 35px;
    font-size: 30px;
    letter-spacing: 1px;
  }
  .else article .image-box {
    height: 200px;
    order: 2;
  }
  .else article .description-box {
    margin-bottom: 30px;
    order: 1;
  }
}
@media only screen and (max-width: 420px) {
  .else article {
    flex-direction: column;
    margin-bottom: 80px;
    padding: 20;
  }
  .else article .image-box {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
    height: 250px;
  }
  .else article .image-box img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    background-color: #fff;
  }
  .else article .description-box {
    width: 100%;
  }
  .else article .description-box h2 {
    line-height: 35px;
    font-size: 30px;
    letter-spacing: 1px;
  }
  .else article .image-box {
    height: 200px;
    order: 2;
  }
  .else article .description-box {
    margin-bottom: 30px;
    order: 1;
  }
}
/*
@import "variables";

main {
    padding-top: 80px;
    padding-bottom: 100px;

    .container {
        width: 1400px;
    }

    h1 {
        padding-top: 100px;
        margin-bottom: 80px;
        text-align: center;
    }

    .products-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        .title{

        }

        li {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 0 10px 0 rgb(218, 218, 218);
            min-height: 400px;
            min-width: 250px;
            width: 20%;
            padding: 20px 10px;
            transition: box-shadow 0.5s;
            position: relative;
            margin: 10px;

            &:hover {
                box-shadow: 0 0 20px 0 #c0c0c0;
            }

            .price {
                position: absolute;
                right: 0;
                top: 20px;
                display: inline-block;
                padding: 5px 10px;
                background-color: #58D952;
                display: none;
            }

            .img-box {
                cursor: pointer;
                position: relative;
                height: 150px;
                img {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 150%;
                    object-fit: contain;
                    object-position: center;
                }

                &::after {
                    content: '';
                    display: block;
                    width: 25px;
                    height: 25px;
                    background: url("../images/zoom-in.svg") center no-repeat;
                    background-size: contain;
                    position: absolute;
                    left: 50%;
                    top: 70%;
                    z-index: 2;
                    transform: translate(-50%, -50%);
                    pointer-events: none;
                    transition: transform 0.3s;
                }
                &:hover{
                    &::after{
                        transform: translate(-50%, -50%) scale(1.1);
                    }
                }
            }

            .text {
                display: flex;
                justify-content: space-between;
                flex-direction: column;
                height: 120px;

                h2 {
                    color: #000;
                    letter-spacing: normal;
                    text-align: center;
                    font-family: $text;
                    font-weight: 500;
                    font-size: 17px;
                }

                span {
                    display: block;
                    text-align: center;
                    line-height: 25px;
                    font-family: $text;
                    font-size: 15px;

                }
            }

        }
    }
}
.modal-wrapper{
    display: none;
    position: relative;
    z-index: 10101;
}
.bottom-modal{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    z-index: 0;
}
.modal-box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    .modal {
        max-width: 100%;
        max-height: 100%;
        background: #fff;
        z-index: 51;
        margin: 0;
        padding: 0;
        position: relative;
        display: flex;
        transition: height 0.3s, width 0.5s;
        img {
            width: 100%;
            box-shadow: 0 0 30px 0 #000;
            margin: 0;
            padding: 0;
            object-fit: contain;
        }

        .close-modal {
            position: absolute;
            right: 5px;
            top: 5px;
            width: 28px;
            height: 26px;
            cursor: pointer;
            border-radius: 4px;

            &::before,
            &::after {
                position: absolute;
                top: 12px;
                content: '';
                display: block;
                width: 100%;
                height: 2px;
                background-color: rgb(110, 110, 110);
                box-shadow: 0 0 1px 0 #000;
                transform: rotate(45deg);
                transition: background .2s;
            }

            &::before {
                transform: rotate(-45deg);
            }

            &:active {
                opacity: 0.7;
            }

            &:hover {

                &::before,
                &::after {
                    background-color: red;
                }
            }
        }
    }

}
@media only screen and (max-width: 767px){
    .modal-wrapper{
        display: none;
    }
    .bottom-modal{
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        position: absolute;
        z-index: 0;
        opacity: 0;
    }
    .modal-box {
        padding: 0px;
        .modal {
            width: 100%;
            height: 100%;
            overflow: hidden;
            background: #fff;
            z-index: 51;
            box-shadow: 0 0 30px 0 #000;
            position: relative;
            padding: 10px;
            img {
                height: 100%;
                width: 100%;
                object-fit: contain;
                opacity: 0;
                object-position: center;
            }

            .close-modal {
                position: absolute;
                right: 15px;
                top: 15px;
                width: 28px;
                height: 26px;
                cursor: pointer;
                border-radius: 4px;

                &::before {
                    transform: rotate(-45deg);
                }

                &:active {
                    opacity: 0.7;
                }

                &:hover {

                    &::before,
                    &::after {
                        background-color: #58D952;
                    }
                }
            }
        }

    }
}*/
.container {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.modal-wrapper {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.modal-wrapper.dark-mode .modal {
  background: #000;
}

.bottom-modal {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
}

.modal-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-box .modal {
  max-width: 100%;
  max-height: 100%;
  width: 800px;
  height: 800px;
  background: #fff;
  z-index: 51;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
}
.modal-box .modal img {
  width: 100%;
  margin: 0;
  padding: 0;
  object-fit: contain;
}
.modal-box .modal .close-modal {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: #58D952;
  cursor: pointer;
  box-sizing: content-box;
}
.modal-box .modal .close-modal::before, .modal-box .modal .close-modal::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #000;
  transform: rotate(45deg) translate(-37%, 297%);
  transform-origin: center;
  transition: background 0.2s;
}
.modal-box .modal .close-modal::before {
  transform: rotate(-45deg) translate(-26%, -348%);
}
.modal-box .modal .close-modal:active {
  opacity: 0.7;
}
.modal-box .modal .close-modal:hover::before, .modal-box .modal .close-modal:hover::after {
  background-color: #fff;
}

.sliderSection {
  background-color: #fff;
  position: relative;
}
.sliderSection .sliderWrapper .sliderBox .slide {
  animation: slider 2s;
  display: flex;
  align-items: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url("../images/main.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  box-sizing: border-box;
}
@media only screen and (min-width: 1200px) {
  .sliderSection .sliderWrapper .sliderBox .slide {
    background-size: 103% 103%;
    animation: scaleBG 10s forwards;
  }
}
@media only screen and (max-width: 520px) {
  .sliderSection .sliderWrapper .sliderBox .slide {
    background-image: url("../images/main-bg-768px-1.jpg");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    background-attachment: initial;
  }
}
.sliderSection .sliderWrapper .sliderBox .paraxify {
  background-attachment: fixed;
}
.sliderSection .container {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-blend-mode: multiply;
  align-items: flex-end;
  min-height: 100vh;
  padding: 180px 0 100px;
}
.sliderSection .title {
  width: 650px;
  max-width: 100%;
  text-align: left;
  margin-bottom: 35px;
  line-height: 1.4;
  padding: 0 20px;
}
.sliderSection .title h1 {
  position: relative;
  opacity: 0;
  text-transform: uppercase;
  margin-bottom: min(max(35px + 13 * (100vw - 768px) / 1152, 35px), 48px);
  letter-spacing: 1px;
  text-shadow: 0 0 5px #000;
  color: #58D952;
  text-align: left;
  padding-top: 0;
  animation: fadeIn-1 800ms forwards;
  animation-delay: 0.3s;
}
.sliderSection .title h1:nth-of-type(3) {
  animation: fadeIn-1 800s forwards;
  animation-delay: 0.7s;
}
.sliderSection .title p {
  position: relative;
  opacity: 0;
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 70px;
  letter-spacing: 1px;
  text-align: left;
  text-shadow: 0 0 10px #000;
  line-height: 1.75;
  animation: fadeIn-2 800ms forwards;
  animation-delay: 0.5s;
}
.sliderSection .title p strong {
  font-weight: bold;
}
.sliderSection .title a {
  position: relative;
  font-family: "Gilroy", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 18px;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 10px 40px;
  transition: border 0.3s, background-color 0.3s;
  text-transform: uppercase;
  color: #58D952;
  animation: fadeIn-3 800ms forwards;
  animation-delay: 0.7s;
  opacity: 0;
}
.sliderSection .title a:hover {
  border: 1px solid #4aa946;
  background-color: rgba(0, 0, 0, 0.1);
}
.sliderSection .scrollBtn {
  display: block;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 40px;
  background: #4aa946;
  border-radius: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s;
}
.sliderSection .scrollBtn .topArrow {
  background: url("../images/top-arrow.svg") no-repeat center;
  display: block;
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
}
.sliderSection .scrollBtn:hover {
  opacity: 0.8;
}
.sliderSection .slider-dots {
  margin: 0 auto;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.sliderSection .slider-dots_item {
  width: 12px;
  height: 12px;
  background-color: #626262;
  margin-right: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.sliderSection .slider-dots_item:last-child {
  margin: 0;
}
.sliderSection .slider-dots .active {
  background-color: #58d952;
}

/*prod*/
.products {
  display: block;
  padding: min(max(80px + 70 * (100vw - 768px) / 1152, 80px), 150px) 0 min(max(30px + 50 * (100vw - 768px) / 1152, 30px), 80px);
}
.products .title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: min(max(45px + 35 * (100vw - 768px) / 1152, 45px), 80px);
  color: #000;
  font-size: min(max(30px + 10 * (100vw - 768px) / 1152, 30px), 40px);
  letter-spacing: min(max(2px + 7 * (100vw - 768px) / 1152, 2px), 9px);
}
.products-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.products-list li {
  flex-shrink: 0;
  width: 280px;
  max-width: 100%;
  box-shadow: 0 0 5px rgb(196, 196, 196);
  padding: 20px 10px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 350px;
  transition: box-shadow 0.5s;
  background: #fff;
}
.products-list li p {
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
}
.products-list li img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 50px;
}
.products-list li:hover {
  box-shadow: 0 0 10px rgb(66, 66, 66);
}
.products-list li a {
  display: block;
  border: 2px solid #e5e5e5;
  padding: 10px 15px;
  text-align: center;
  transition: background 0.5s;
}
.products-list li a:hover {
  background-color: rgb(241, 241, 241);
}
.products-list li:hover {
  box-shadow: 0 0 20px #ccc;
}

.about {
  padding: min(max(60px + 40 * (100vw - 768px) / 1152, 60px), 100px) 0 min(max(80px + 100 * (100vw - 768px) / 1152, 80px), 180px);
  min-height: 100vh;
  background: url("../images/aboutbg.jpg") no-repeat center;
}
.about .container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.about article {
  width: 100%;
  display: flex;
  padding: 20px;
  position: relative;
  gap: 56px;
  align-items: center;
}
.about article::after, .about article::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: none;
  border-left: none;
  box-shadow: 4px 4px 5px #e7e7e7;
}
.about article::before {
  content: "";
  left: 0;
  top: 0;
  border-right: none;
  border-bottom: none;
  box-shadow: -4px -4px 5px #e7e7e7;
}
.about article .image-box {
  width: 40%;
  flex-shrink: 0;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}
.about article .image-box::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.about article .image-box img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.about article .description-box {
  width: 50%;
}
.about article .description-box h2 {
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 30px;
  color: #494949;
  border-bottom: 1px solid #58D952;
  padding-bottom: 20px;
}
.about article .description-box p {
  margin: 0;
  padding: 0;
  line-height: 30px;
}

@keyframes fadeIn-1 {
  0% {
    opacity: 0;
    top: -20px;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
@keyframes fadeIn-2 {
  0% {
    opacity: 0;
    top: -10px;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
@keyframes fadeIn-3 {
  0% {
    opacity: 0;
    bottom: -20px;
  }
  100% {
    bottom: 0px;
    opacity: 1;
  }
}
@keyframes scaleBG {
  100% {
    background-size: 100% 100%;
  }
}
.top-container.hero-services {
  padding: min(max(130px + 50 * (100vw - 768px) / 1152, 130px), 180px) 20px 20px;
  background-image: url("../images/services/top-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.7);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .top-container.hero-services {
    background-image: url("../images/services/top-bg420.jpg");
  }
}
.top-container.hero-services h1 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #fff;
}
.top-container.hero-services .services {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-container.hero-services .services a {
  display: block;
  opacity: 0;
  position: relative;
  left: -10px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 5px;
  font-size: 18px;
  background: #4AA946;
  padding: 20px 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  line-height: 30px;
  transition: background 0.5s;
  animation: fadeIn-1 2s forwards;
}
.top-container.hero-services .services a:hover {
  background: rgba(74, 169, 70, 0.7803921569);
}
.top-container.hero-services .services a:nth-of-type(1) {
  animation-delay: 0.5s;
}
.top-container.hero-services .services a:nth-of-type(2) {
  animation-delay: 0.8s;
}
.top-container.hero-services .services a:nth-of-type(3) {
  animation-delay: 1.1s;
}
.top-container.hero-services .services a:nth-of-type(4) {
  animation-delay: 1.4s;
}

.autopark {
  padding-top: min(max(80px + 20 * (100vw - 768px) / 1152, 80px), 100px);
  padding-bottom: 100px;
  background: url("../images/aboutbg.jpg") no-repeat 0 0;
  background-size: 100% 100%;
}
.autopark h2 {
  font-family: "Playfair Display", sans-serif;
  text-align: center;
  margin-bottom: min(max(35px + 21 * (100vw - 768px) / 1152, 35px), 56px);
}
.autopark .car-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 20px;
}
.autopark .car-list .car {
  width: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}
.autopark .car-list .car h2 {
  color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.autopark .car-list .car img {
  width: 100%;
  margin-bottom: 30px;
}
.autopark .car-list .car p {
  text-align: center;
  line-height: 30px;
  margin-bottom: 10px;
}

.services-section article {
  display: flex;
  margin-bottom: min(max(50px + 50 * (100vw - 768px) / 1152, 50px), 100px);
  padding-top: min(max(30px + 20 * (100vw - 768px) / 1152, 30px), 50px);
  gap: min(max(35px + 21 * (100vw - 768px) / 1152, 35px), 56px);
  align-items: center;
}
.services-section article .text-content {
  flex: 1;
}
.services-section article .text-content .article-img {
  display: none;
}
.services-section article .text-content h2 {
  color: #3d3d3d;
  border-bottom: 1px solid #4AA946;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 50px;
  font-size: 25px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.services-section article .text-content p {
  margin-bottom: 20px;
}
.services-section article .text-content .text-content-image-box {
  height: 70px;
  display: flex;
}
.services-section article .text-content .text-content-image-box img {
  height: 100%;
  width: 70px;
  margin-right: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s;
}
.services-section article .text-content .text-content-image-box img:hover {
  opacity: 0.7;
}
.services-section article .text-content .partners-phone {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}
.services-section article .text-content .partners-phone span {
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
}
.services-section article .text-content .partners-phone a {
  transition: color 0.4s;
}
.services-section article .text-content .partners-phone a:hover {
  color: #000;
}
.services-section article .image-box {
  width: min(max(320px + 130 * (100vw - 768px) / 1152, 320px), 450px);
  flex-shrink: 0;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  border-radius: 5px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.services-section article .image-box::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.services-section article .image-box img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.services-section article .d-order-2 {
  order: 2;
}

@media (max-width: 992px) {
  .top-container.hero-services {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .top-container.hero-services h1 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #fff;
  }
  .autopark .car-list {
    grid-template-columns: 1fr;
  }
  .autopark .car-list .car {
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
  }
  .services-section article .text-content h2 {
    margin-bottom: 20px;
    line-height: 30px;
    letter-spacing: 3px;
  }
  .services-section article .text-content-right {
    order: 2;
    padding-right: 0;
    padding-left: 20px;
  }
  .services-section article .image-box {
    width: 300px;
  }
}
@media (max-width: 700px) {
  .services-section article {
    flex-direction: column-reverse;
  }
  .services-section article:nth-last-of-type(2n) {
    flex-direction: column;
  }
}
@media only screen and (max-width: 600px) {
  .top-container.hero-services h1 {
    line-height: 40px;
    margin-bottom: 20px;
  }
  .top-container.hero-services .services a {
    line-height: 18px;
    min-height: 80px;
  }
  .services-section article {
    display: flex;
  }
}
@media (max-width: 480px) {
  .services-section article {
    display: flex;
    margin-bottom: 50px;
    padding-top: 50px;
  }
  .services-section article .text-content {
    order: 1;
    width: 100%;
    padding-right: 20px;
  }
  .services-section article .text-content .article-img {
    display: block;
    width: 95%;
    min-width: 200px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
    border-radius: 5px;
  }
  .services-section article .text-content h2 {
    margin-bottom: 30px;
    line-height: 30px;
    letter-spacing: 3px;
  }
  .services-section article .text-content-right {
    order: 2;
    padding-right: 0;
    padding-left: 20px;
  }
  .services-section article .image-box {
    display: none;
  }
}
.gallery h2 {
  text-align: center;
  margin-bottom: min(max(35px + 21 * (100vw - 768px) / 1152, 35px), 56px);
}

@keyframes fadeIn-1 {
  0% {
    opacity: 0;
    left: -20px;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
.products-list-wrapper {
  padding-top: 180px;
  padding-bottom: min(max(80px + 100 * (100vw - 768px) / 1152, 80px), 180px);
}
.products-list-wrapper h1 {
  text-align: center;
}
.products-list-wrapper h2 {
  text-align: center;
  margin-bottom: 0;
}
.products-list-wrapper .container {
  display: flex;
  flex-direction: column;
  gap: min(max(40px + 20 * (100vw - 768px) / 1152, 40px), 60px);
}
.products-list-wrapper .products-list {
  margin-bottom: 20px;
}
.products-list-wrapper .products-list li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 10px 0 rgb(218, 218, 218);
  min-height: 400px;
  height: auto;
  padding: 20px 10px;
  transition: box-shadow 0.5s;
  position: relative;
}
.products-list-wrapper .products-list li:hover {
  box-shadow: 0 0 20px 0 #c0c0c0;
}
.products-list-wrapper .products-list li .price {
  position: absolute;
  right: 0;
  top: 20px;
  display: inline-block;
  padding: 5px 10px;
  background-color: #58D952;
  display: none;
}
.products-list-wrapper .products-list li .img-box {
  cursor: pointer;
  position: relative;
  height: 150px;
}
.products-list-wrapper .products-list li .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150%;
  object-fit: contain;
  object-position: center;
}
.products-list-wrapper .products-list li .img-box::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url("../images/zoom-in.svg") center no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 70%;
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.3s;
}
.products-list-wrapper .products-list li .img-box:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
}
.products-list-wrapper .products-list li .text {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.products-list-wrapper .products-list li .text h2 {
  color: #000;
  letter-spacing: normal;
  text-align: center;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 10px;
}
.products-list-wrapper .products-list li .text span {
  display: block;
  text-align: center;
  line-height: 25px;
  font-family: "Gilroy", sans-serif;
  font-size: 15px;
}

@media (max-width: 620px) {
  .products-list-wrapper .products-list {
    flex-direction: column;
    align-items: center;
  }
  .products-list-wrapper .products-list li {
    width: 375px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  header .container {
    justify-content: space-between;
  }
  header .container nav {
    position: static;
  }
  header .container nav .togler {
    display: block;
    cursor: pointer;
  }
  header .container nav .togler.transform-bar .bar {
    transform: rotate(45deg);
    top: 8px;
  }
  header .container nav .togler.transform-bar .bar:nth-of-type(2) {
    display: none;
  }
  header .container nav .togler.transform-bar .bar:nth-of-type(3) {
    transform: rotate(-45deg);
  }
  header .container nav .togler .bar {
    transition: transform 0.3s;
  }
  header .container nav ul li {
    margin-left: 17px;
  }
  header .container nav .menu {
    position: absolute;
    top: 100px;
    right: 0;
    flex-direction: column;
    background-color: #2f2f2f;
    width: 250px;
    height: 1000px;
    padding-top: 10px;
    overflow: hidden;
    width: 0;
    transition: width 0.3s ease-in-out;
  }
  header .container nav .menu li {
    margin: 0;
    text-align: center;
    padding: 0 15px;
  }
  header .container nav .menu li a {
    display: inline-block;
    width: 100%;
    padding: 15px 0px;
    border-bottom: 1px solid rgb(92, 92, 92);
  }
  header .container nav .menu li a:hover {
    background-color: rgb(230, 230, 230);
  }
  header .container nav .menu.show-menu {
    width: 100%;
  }
  .topSection .sliderWrapper .sliderBox .slide .container .title {
    padding-right: 30px;
  }
  .topSection .sliderWrapper .sliderBox .slide .container .title h1 {
    font-size: 60px;
  }
  .topSection .sliderWrapper .sliderBox .slide .container .title a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .sliderSection .sliderWrapper .sliderBox .slide {
    min-height: calc(100 * var(--dvh, 1vh) - 100px);
    padding: 55px 0;
  }
  .sliderSection .sliderWrapper .sliderBox .slide .container {
    align-items: center;
    min-height: 0;
  }
  .sliderSection .sliderWrapper .sliderBox .slide .container .title h1 {
    line-height: 69px;
    margin-bottom: 30px;
  }
  .sliderSection .sliderWrapper .sliderBox .slide .container .title p {
    line-height: 25px;
  }
  .about .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .about article {
    flex-direction: column-reverse;
    gap: 45px;
    padding: 0;
    margin-bottom: 0;
    padding-bottom: 30px;
  }
  .about article::before {
    left: -10px;
    top: -10px;
  }
  .about article::after {
    right: -10px;
    bottom: -10px;
  }
  .about article .image-box {
    width: 375px;
    max-width: 100%;
  }
  .about article .description-box {
    width: 100%;
  }
  .about article .description-box h2 {
    line-height: 40px;
  }
  .about article:nth-of-type(2) .image-box {
    order: 1;
  }
  .about article:nth-of-type(2) .description-box {
    order: 2;
  }
  main .contacts .container address ul {
    margin-right: 20px;
  }
  main .contacts .container address ul li.mainItem {
    font-size: 18px;
  }
  main .contacts .container address ul li {
    font-size: 16px;
  }
}
@media only screen and (max-width: 620px) {
  .topSection .sliderWrapper .sliderBox .slide {
    padding-top: 100px;
  }
  .topSection .sliderWrapper .sliderBox .slide .container .title {
    padding: 0;
    text-align: center;
  }
  .topSection .sliderWrapper .sliderBox .slide .container .title h1 {
    margin-bottom: 20px;
  }
  .topSection .sliderWrapper .sliderBox .slide .container .title h2 {
    margin-bottom: 20px;
  }
  .topSection .sliderWrapper .sliderBox .slide .container .title p {
    line-height: 24px;
    margin-bottom: 50px;
  }
  .contacts .container h1 {
    margin-bottom: 20px;
  }
  .contacts .container address {
    flex-direction: column;
  }
  .contacts .container address ul {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
  }
  .contacts .container address ul li.mainItem {
    font-size: 18px;
  }
  .contacts .container address ul li {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .contacts .container address ul li a {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  .contacts .container address ul li a span {
    display: block;
    text-align: center;
  }
  .contacts .container address form {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .products .products-list {
    flex-direction: column;
    align-items: center;
  }
  .products .products-list li {
    width: 375px;
    max-width: 100%;
  }
}
@media only screen and (max-height: 600px) {
  .topSection .sliderWrapper .sliderBox .slide .container .title {
    padding-top: 10px;
  }
  .topSection .sliderWrapper .sliderBox .slide .container .title h1 {
    margin-bottom: 25px;
  }
  .topSection .sliderWrapper .sliderBox .slide .container .title h2 {
    margin-bottom: 20px;
  }
  .topSection .sliderWrapper .sliderBox .slide .container .title p {
    line-height: 28px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 420px) {
  header .container .brand {
    width: 170px;
  }
  .productsList {
    width: 100%;
    margin: 0;
  }
  .productsList .productsCards {
    width: 100%;
    margin: 20px 0;
    padding: 15px;
  }
  .contacts .container address form {
    max-width: 100%;
    padding: 15px;
  }
  footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  footer .designed {
    position: static;
    margin-top: 5px;
    padding: 0;
  }
  .about article .description-box {
    width: 100%;
  }
  .about article .description-box h2 {
    line-height: 35px;
    font-size: 30px;
    letter-spacing: 1px;
  }
}
/*@import "_max_height600";*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
}
.gallery-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: min(max(130px + 50 * (100vw - 768px) / 1152, 130px), 180px) 0 min(max(30px + 20 * (100vw - 768px) / 1152, 30px), 50px);
}

.gallery.container {
  flex-grow: 1;
  width: 992px;
  margin: 0 auto;
  max-width: 100%;
}
.gallery.container h1 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.gallery.container p {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-footer {
  margin-top: -70px;
}

.toTopBtn {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 20;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #4aa946;
  display: none;
  cursor: pointer;
}
.toTopBtn .topArrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background: url("../images/top-arrow.svg") no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 992px) {
  .toTopBtn {
    right: 10px;
  }
}

.flex {
  display: flex;
}

/*# sourceMappingURL=style.css.map */
