@import url('https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&family=Montserrat:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
    --main-color-dark: #132038;
    --main-color-dark-hover: #293754;
    --charcoal: #272727;
    --light-gray: #F2F2F2;
    --yellow: #FCC306;
    --beige: #D9CDA3;
    --gradient-main-color-dark: linear-gradient(85deg, rgba(25, 46, 89, 1) 28%, rgba(29, 51, 97, 1) 52%, rgba(25, 46, 89, 1) 82%);
    --headline-font: 'Arapey', sans-serif;
    --primary-font: 'Montserrat', sans-serif;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    color: var(--charcoal);
}
html {
    overflow-x: hidden;
}
body {
    overflow-y: scroll;
    overflow-x: hidden;
    font-family: var(--primary-font);
}

h1,
h2,
h3 {
    font-family: var(--headline-font);
    font-weight: bold;
    color: var(--main-color-dark);
}

h1 {
    font-size: 2.3rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.45rem;
}

p {
    font-size: 1.05rem;
}

a {
    text-decoration: none;
}

.hidden {
    opacity: 0;
}

.dnone{
    display: none;
    opacity: 0;
}

.hidden-popup {
    opacity: 0;
    pointer-events: none;
    transform: scaleY(.1) scaleX(.1);
}

.show {
    opacity: 1;
}

.slide-up {
    opacity: .4;
    transform: translateY(40%);
    transition: all 0.85s;
}

.slide-up-animation {
    opacity: 1;
    transform: translateY(0);
}

.slide-right {
    transform: translateX(-100%);
    transition: ease-in-out 0.5s;
    filter: blur(3px);
}

.slide-right-animation {
    transform: translateX(0);
    filter: blur(0);
}


.skeleton{
    background-color: #ccc;
    animation: skeleton-animation 3s infinite ease;
}

@keyframes skeleton-animation {
    0%{
        background-color: #bdbdbd;
    }
    50%{
        background-color: #f0f0f0;
    }
    100%{
        background-color: #bdbdbd;
    }
}

/* ---------------------------------------------------------- HEADER */

.navbar {
    position: fixed;
    z-index: 8000;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.5em;
    width: 100%;
    background-color: white;
    box-shadow: 0 0.1em 0.2em rgba(0, 0, 1, .2);
    transform: all 0.3s ease;
}

.navbar-menu {
    text-decoration: none;
    list-style: none;
    display: flex;
    height: 100%;
    margin-right: 1.1rem;

}

.navbar-menu li {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
}

.navbar-menu li a:hover {
    color: white;
    background-color: var(--main-color-dark);
    animation: cubic-bezier(1, 0, 0, 1);
    transition: .3s ease;
    color: var(--light-gray);
}

.navbar-menu li a {
    color: #0a1c41;
    padding: 0 1em 0 1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: .3s ease;
}

.ham-btn {
    position: fixed;
    z-index: 9500;
    top: .95em;
    right: 0;
    display: none;
    justify-content: flex-end;
    padding-right: 20px;
}

.ham-btn .hamburger-lines {
    display: block;
    height: 1.60em;
    width: 2em;
    z-index: 9500;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ham-btn .hamburger-lines .line {
    display: block;
    height: .33em;
    width: 100%;
    border-radius: .5em;
    background: var(--main-color-dark);
}

.ham-btn .hamburger-lines .line1 {
    transform-origin: 90% 180%;
    transition: transform 0.4s ease-in-out;
}

.ham-btn .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
}

.ham-btn .hamburger-lines .line3 {
    transform-origin: 90% -40%;
    transition: transform 0.4s ease-in-out;
}

.ham-btn .checkbox {
    position: absolute;
    display: block;
    height: 2.2em;
    width: 2.2em;
    z-index: 9600;
    opacity: 0;
    cursor: pointer;
}

.ham-btn input[type="checkbox"]:hover {
    cursor: pointer;
}

.ham-btn input[type="checkbox"]:checked~.ham-menus .menu-items {
    transform: translateY(0);
}

.ham-btn input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(-45deg);
}

.ham-btn input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
}

.ham-btn input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(45deg);
}


.ham-menus {
    width: 2em;
    display: flex;
    height: 3.5em;
    cursor: pointer;
}

.ham-menus li {
    list-style: none;
}

.ham-menus a {
    text-decoration: none;
    color: var(--main-color-dark);
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
}

.ham-menus a:hover {
    font-weight: bolder;
}

.ham-menus .menu-items {
    padding-top: 10rem;
    background-color: white;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out;
    align-items: center;
    position: fixed;
    z-index: 9200;
    transform: translateY(-100%);
}

.no-scroll {
    overflow: hidden;
}

.ham-menus .menu-items .show-menu {
    transform: translateY(0);
}


.ham-menus .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
    width: 100%;
    text-align: center;
}

.header--free-estimate-bar {
    position: fixed;
    z-index: 9;
    bottom: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.5em;
    background-color: var(--main-color-dark);
    color: var(--yellow);
    font-style: italic;
    cursor: pointer;
}

#estimate-ad {
    transition: all .5s ease;
}

#estimate-ad:hover {
    color: rgb(255, 226, 98);
}


.menu--logo {
    margin-left: 0.6em;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--primary-font);
    font-weight: bold;
    color: var(--main-color-dark);
    padding-left: 0.5em;
    font-size: 1.5rem;
}

.menu--logo img {
    width: 3em;
}

.menu--phone {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-left: 2.5em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0a1c41;
    font-weight: bold;
    font-size: 1.2rem;
}

.menu--phone img {
    width: 1.25em;
}


.container-menu {
    height: 100%;
}

/* ---------------------------------------------------------- BODY  */

.container {
    position: relative;
}
.container--carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.carousel--wrapper {
    display: flex;
    width: 100%;
}

.container--content {
    margin: 0 auto;
}

.content {
    width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content>h1,
.content>h2,
.content>h3 {
    margin-bottom: 2em;
    margin-top: 2em;
}

.content--intro {
    display: flex;
    justify-content: center;
    padding: 2em 0 4em 0;
    height: 100%;
    width: 100%;
    --s: 50px;
    --c: #f2f2f2;
    --_s: calc(2*var(--s)) calc(2*var(--s));
    --_g: 35.36% 35.36% at;
    --_c: #ececec00 66%, #ebebeb 68% 70%, #acacac00 72%;
    background:
        radial-gradient(var(--_g) 100% 25%, var(--_c)) var(--s) var(--s)/var(--_s),
        radial-gradient(var(--_g) 0 75%, var(--_c)) var(--s) var(--s)/var(--_s),
        radial-gradient(var(--_g) 100% 25%, var(--_c)) 0 0/var(--_s),
        radial-gradient(var(--_g) 0 75%, var(--_c)) 0 0/var(--_s),
        repeating-conic-gradient(var(--c) 0 25%, #0000 0 50%) 0 0/var(--_s),
        radial-gradient(var(--_c)) 0 calc(var(--s)/2)/var(--s) var(--s) var(--c);
    background-attachment: fixed;
}

.content--intro h2 {
    font-size: 1.1rem;
}

.intro--brand-logos {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.intro--brand-logos>li {
    padding: 1em 1em 3em 1em;
}

.intro--brand-logos>li>img {
    border-radius: 1em;
    mix-blend-mode: multiply;
}

.content--why-add {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 2em 0 2em 0;
}

.content--why-add img {
    width: 60%;
    border-radius: 0.5em;
    margin: 2em 0 2em 0;
}

.content--why-add h1 {
    font-size: 2.5rem;
}

.why-add--advantages {
    display: flex;
    width: 100%;
    justify-content: center;
}

.why-add--advantages div p {
    text-wrap: wrap;
    max-width: 250px;
}

.why-add--advantages div>img {
    width: 3.2em;
    height: 3.2em;

}

.advantage-box {
    margin: 2em;
    padding: 1em;
    border: 1px solid #ebebeb;
    border-radius: 0.6em;
    transition: transform .3s ease, box-shadow .2s ease;
}

.advantage-box:hover {
    transform: translateY(-3%);
    box-shadow: .1em .3em 1.2em .2em rgba(0, 0, 0, 0.1);
}

.advantage-box>div {
    display: flex;
    align-items: center;
    gap: 0.4em;
    font-family: var(--headline-font);
}

.advantage-box>div>p {
    font-size: 1.3em;
    font-weight: bold;
}

.reviews {
    background-color: var(--main-color-dark);
    min-height: 20em;
    padding-bottom: 2.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews--content {
    width: 50em;
    display: flex;
    flex-direction: column;
}

.reviews--comment,
.reviews--customer {
    color: #ebebeb;

}

.reviews--comment,
.reviews--customer {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: lighter;
}

.reviews--customer {
    justify-self: flex-end;
    align-self: flex-end;
}


.services {
    background-color: var(--light-gray);
    display: grid;
    text-align: center;
    justify-content: center;
    align-content: center;
    padding: 4rem 0 4rem 0;
}

.services h1 {
    margin: 0 0 2.7em 0;
}

.services--content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 4em;
    width: 60%;
    position: relative;
}

.service img {
    width: 100%;
    padding: .5em;
}

.service img:hover {
    filter: brightness(85%);
    cursor: pointer;
}

.service a {
    text-decoration: none;
    width: 100%;
}

.service h2 {
    text-align: left;
    margin-left: .5em;
}

.service--button {
    width: 10em;
    height: 2em;
    margin-left: .5em;
    background-color: var(--main-color-dark);
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: .25em;
    font-weight: bold;
    transition: background-color .3s ease;
    position: relative;
}

.service--button a {
    color: white;
}

.service--button:hover {
    background-color: var(--main-color-dark-hover);
}

.service--button a::after {
    content: '\2192'; 
    color: white;
    position: absolute; 
    top: 50%; 
    right: 10px; 
    transform: translateY(-55%); 
    font-size: 1.2rem; 
    transition: transform 0.3s ease; 
}
.service--button a:hover::after {
    transform: translate(25%, -55%);
}


.page-button:hover {
    background-color: var(--main-color-dark-hover);
}

.page-button {
    transition: background-color .35s ease;
}

/* ------------------------------------------------------- GALLERY */

.wrapper {
    margin: 0 auto;
    max-width: 100%;
    padding: 2rem;
    text-align: center;
}

.wrapper p {
    color: #eaf2ef;
}

.wrapper .gallery-container {
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 2rem 0;
}

.wrapper .gallery-container h2 {
    color: #333;
}

.wrapper h4 {
    color: #696969;
    font-weight: 300;
}

.wrapper .gallery-container ul li img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wrapper .gallery-container ul li img:hover {
    filter: brightness(80%);
    cursor: pointer;
    transform: scale(1.15);
    transition: transform 0.4s ease;
}

.gallery-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 0.3em;
}

.gallery-container ul li {
    margin: 0 0 .3rem;
    overflow: hidden;
    display: flex;
    height: 450px;
}

.image-container {
    position: relative;
    cursor: pointer;
}

#load-btn {
    width: 30%;
    height: 50px;
    font-size: 18px;
    margin-top: 30px;
    border-radius: 8px;
    border: none;
    box-shadow: 1px 2px 1px rgb(0, 0, 1, 0.2);
    background-color: var(--main-color-dark);
    color: var(--light-gray);
}

#load-btn:hover {
    background-color: #0a1c41;
}

#load-btn:active {
    background-color: rgb(16, 33, 67)
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    z-index: 10;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    margin-top: 30px;
}

.close {
    position: absolute;
    top: 2%;
    right: 5%;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10;
    text-shadow: 2px 2px 1px black;
}

/* ----------------------------------------------------- CONTACT FORM */
.container--contact {
    background-image: url("../images/bg2.jpg");
    background-size: cover;
    background-attachment: fixed;
    min-height: 90vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.container--contact form {
    display: grid;
    grid-template-columns: 0.2fr 1fr;
    width: 60vw;
    background-color: #ffffff;
    border-radius: 1em;
    margin: 2em 0 5em 0;
    padding: 1.5em 0;
    box-shadow: 0.1em 0.1em 0.1em 0.1em rgb(0, 0, 1, 0.2);
    border: 1px solid rgb(0, 0, 1, 0.2);
}

.container--contact form h1 {
    font-weight: bold;
    color: var(--main-color-dark);
    line-height: 1em;
    margin-bottom: 1em;
    text-align: center;
}

.container--contact .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.5em;
    padding-left: 1.2em;
}


.container--contact .contact-info>img {
    width: 40px;
}

.contact-form {
    width: 90%;
    margin: 0 auto;
}

.contact-form label {
    margin-bottom: 0.3em;
    margin-top: 0.2em;
}


.contact-form input[type=text] {
    background-color: #fafafa;
    border: 0.05em solid #e1e1e1;
    border-radius: 0.35em;
    height: 2em;
    padding-left: 0.8em;
}

.contact-form textarea {
    resize: none;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    background-color: #fafafa;
    border: 0.05em solid #e1e1e1;
    border-radius: 0.35em;
    padding: 1em;
}
.cf-submit{
    width: 100%;
    overflow: hidden;
    max-height: 3em;
    margin-top: 1em;
    padding: 0;
}

.contact-form input[type=submit] {
    overflow: hidden;
    width: 100%;
    height: 3em;
    border: 0;
    background-color: var(--main-color-dark);
    color: #ebebeb;
    cursor: pointer;
    transition: transform .3s ease;
}

.contact-form input[type=submit]:hover {
    background-color: var(--main-color-dark-hover);
    transform: scale(1.15);
}

.contact-form .label-field {
    display: flex;
    flex-direction: column;
}

.contact-form .label-field input {
    height: 2.5em;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 0.8fr 0.1fr 1fr;
}

.contact-col1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-col2,
.contact-col3 {
    display: flex;
    flex-direction: column;
}

.service-option {
    display: none
}

.services-options {
    display: flex;
    flex-direction: column;
}

.estimate-ad-and-form {
    position: relative;
}

.chat-btn>img {
    padding: 8px;
}

.chat-btn {
    display: flex;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 50%;
    cursor: pointer;
    transform: width .5s height .5s border-radius .5s;
    bottom: 2em;
    margin-left: 1em;
    position: fixed;
    z-index: 80;
    box-shadow: .1em .2em .1em .1em rgb(0, 0, 1, 0.1);
    transition: all 50ms ease;
}

.chat-btn:hover {
    background-color: var(--main-color-dark);
}

.chat-btn img:hover {
    filter: brightness(100);
}

.quick-form {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1em;
    padding-bottom: 4em;
    box-shadow: 1px -2px 10px 2px rgb(0, 0, 1, 0.1);
    transition: all .5s ease;
    width: 350px;
    position: fixed;
    bottom: 2em;
    margin-left: 1em;
    z-index: 90;
    transform-origin: bottom left;
}

.quick-form input[type="submit"] {
    background-color: #0a1c41;
    color: white;
    text-align: center;
    height: 3.5em;
    width: 10em;
}

.quick-form input[type="submit"]:hover {
    background-color: var(--main-color-dark);
    cursor: pointer;
}

.quick-form--fields label {
    font-size: .8em;
}

.quick-form-field input[type="text"],
.quick-form--fields textarea {
    padding-left: .7em;
}

.quick-form--fields textarea {
    padding-top: .5em;
}

.quick-form *:not(input, textarea) {
    color: var(--charcoal);
}

.quick-form span {
    margin-top: 1.5em;
    transition: transform 300ms ease;
}

.quick-form span:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.quick-form input,
.quick-form textarea {
    border: 1px solid #ccc;
}

.quick-form textarea {
    resize: none;
    min-height: 7em;
    height: auto;
}

.quick-form input {
    height: 2em;
    border-radius: .3em;
}

.quick-form-field {
    display: flex;
    flex-direction: column;
}

.quick-form--contact-info {
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
    align-items: center;
    font-size: 1rem;
    margin: 1.5em 0 3em 0;
    width: 80%;
    text-align: center;
}

.quick-form--contact-info>a {
    text-decoration: underline;
    color: blue
}

.quick-form--contact-info p {
    margin-bottom: .5em;
}

.quick-form--closeBtn {
    font-weight: bold;
    -webkit-user-select: none;
    user-select: none;
}

/* ------------------------------------------------------- SERVICE  */

.container--services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container--services h1 {
    font-family: var(--headline-font);
    font-size: 3rem;
    margin-top: 1.5em;
}

.container--services hr {
    width: 100%;

}

.service--grid {
    width: 70%;
    display: grid;
    place-content: center;
    place-items: center;
}

.service--grid-row .img-left {
    align-self: flex-start;
    margin-left: 0.5em
}

.service--grid-row .img-right {
    align-self: flex-end;
    margin-right: 0.5em
}

.service--grid-row>div a {
    color: #FFFFFF;
    margin-top: 1.5em;
    padding: .5em;
    background-color: var(--main-color-dark);

}

.service--grid-row>div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
}

.service-heading {
    font-size: 2.5rem;
    font-family: var(--headline-font);
    margin-bottom: 1em;
    font-weight: bold;
}

.service-description {
    font-family: var(--primary-font);
    font-size: 1.2rem;
}

.service--grid-row {
    display: flex;
    align-items: center;
    place-items: center;
    justify-items: center;
    justify-content: center;
    place-content: center;
    height: 80vh;
    width: 100%;
}

.service--grid-row div>img {
    width: 400px;
}

/* ------------------------------------------------------- FOOTER  */

footer {
    bottom: 0;
    background-image: url("../images/footer.jpg");
    background-size: cover;
}

.footer-content span {
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 1.2rem;
}

.gradient {
    bottom: 0;
    background: var(--main-color-dark);
    background: var(--gradient-main-color-dark);
}

footer * p,
footer * h3,
footer * li,
footer * a {
    color: whitesmoke;
}

.footer-info {
    margin: 0 auto;
    padding-top: 5em;
    width: 80%;
    min-height: 25em;
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr 0.5fr 1fr;
}

.footer--logo-name {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 0.5em
}

.footer--logo-name h1 {
    color: var(--light-gray);
}

.footer-logo {
    width: 4em
}

.info-left {
    max-width: 250px;
}

.info-left p {
    font-size: .85rem;
    font-weight: 100;
    margin-bottom: 1.5em;
}

.info-left h1 {
    font-size: 1rem;
    margin-bottom: 0.5em;
}

.info-left a {
    background-color: var(--yellow);
    padding: 0.35em 1em 0.35em 1em;
    color: #272727;
    font-weight: bold;
    border-radius: 0.1em;
}

.info-left a:hover {
    background-color: #f8d04d;
}

.info-middle {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.info-middle h1 {
    font-size: 1.5rem;
}

.info-middle ul {
    list-style: none;
    text-align: center;
}

.info-middle ul li {
    font-weight: 100;
    font-size: 1rem;
}

.info-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.info-right h1 {
    font-size: 1rem;
}

.info-right ul {
    list-style: none;
}

.info-right ul li {
    margin: 0.5em 0 0.5em 0;
    font-weight: 100;
}



.footer-info>div>h1 {
    color: whitesmoke;
}

.footer-copy {
    background-color: var(--main-color-dark);
    height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: lighter;
}

.lighter {
    background-color: #102349;
}

.footer-copy p {
    color: var(--light-gray);
    font-size: 0.85rem;
}


/* ------------------------------------------------------- MEDIA QUERIES */
@media (max-width: 1300px) {
    .content {
        width: 80%;
    }

    .intro--brand-logos>li>img {
        width: 80px;
    }

    .content--why-add h1 {
        font-size: 3rem;
    }

    .info-middle h1 {
        text-align: center;
    }

    .service--grid {
        width: 85%;
    }

}

@media (max-width: 1050px) {
    * {
        font-size: 16px;
    }

    .navbar-menu {
        display: none;
    }

    .ham-btn {
        display: flex;
    }

    .container--contact form {
        width: 80%;
    }

    .service--grid-row {
        display: flex;
        flex-direction: column;
        row-gap: 2em;
        height: auto;
        margin-bottom: 2em;
    }

    .service--grid-row>div {
        width: 90%;
        display: flex;
    }

    .service--grid-row .img-left,
    .service--grid-row .img-right {
        align-self: center;
        margin: 0;
    }

    .service--grid>.service--grid-row:nth-child(even) {
        flex-direction: column-reverse;
    }
}

@media (max-width: 850px) {
    * {
        font-size: 14px;
    }

    .intro--brand-logos {
        flex-wrap: wrap;
    }

    .content--why-add h1 {
        font-size: 2rem;
    }

    .info-left p {
        content: '';
    }

    .reviews--content {
        width: 80%;
    }

    .service h2 {
        font-size: 1.2rem;
    }

    .gallery-container ul li {
        height: 250px
    }

    .chat-btn {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 800px) {
    .container--contact form {
        width: 95%;
        display: flex;
        flex-direction: column;
        padding-bottom: 3em;
    }

    .container--contact .contact-info {
        padding-left: 0;
        padding-bottom: 2.5em;
    }
}

@media (max-width: 680px) {
    * {
        font-size: 12px;
    }

    .menu--phone {
        display: none;
    }

    .service h2 {
        font-size: 1rem;
    }

    .gallery-container ul {
        grid-template-columns: 1fr 1fr;
        column-gap: 0.3em;
    }

    .gallery-container ul li {
        height: 300px
    }

    .container--contact form {
        width: 95%;
        display: flex;
        flex-direction: column;
    }

    .contact-form-grid {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 550px) {

    .intro--brand-logos li:nth-child(7) {
        display: none;
    }

    .menu--logo span {
        font-size: 1rem;
    }
    
    .content--intro h1 {
        font-size: 1rem;
    }

    .content--intro h2 {
        font-size: 0.8rem;
    }

    .content--why-add h1 {
        font-size: 1.2rem;
    }

    .why-add--advantages {
        flex-wrap: wrap;
    }

    .why-add--advantages img {
        width: 40px;
    }

    .footer-info {
        padding-top: 1.5em;
    }

    div>img.row-image {
        width: 90%;
        height: auto
    }
}

@media (max-width: 470px) {
    .footer-info {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        width: 3em;
    }

    .info-left {
        display: none;
    }

    .info-right {
        margin-top: 2rem;
        margin-bottom: 2rem;
        align-items: center;
        text-align: center;
    }

    .services--content {
        width: 100%;
        display: flex;
        flex-direction: column;
        scroll-snap-type: x mandatory;
    }

    .service {
        position: relative;
    }

    .service img {
        width: 80vw;
        margin: 0;
        padding: 0
    }

    .service--button {
        position: absolute;
        bottom: 0;
        padding: 0;
        margin: 0;
        border-radius: 0;
        width: 100%
    }

    .chat-btn {
        width: 50px;
        height: 50px;
    }

    .service h2 {
        font-size: 1.45rem;
        margin: 0
    }

    .gallery-container ul li {
        height: 200px
    }

}

@media (max-width: 375px) {
    .gallery-container ul {
        grid-template-columns: 1fr;
        column-gap: 0.2em;
    }

    .gallery-container ul li {
        height: 220px
    }

    .quick-form {
        width: 100vw;
        border-radius: 0;
    }
}

@media (max-width: 300px) {
    .menu--logo span {
        display: none;
    }

    .quick-form {
        width: 250px;
        border-radius: 0;
    }

    .chat-btn {
        width: 40px;
        height: 40px;
    }
}


/* --------------------------------------- ANIMATIONS */

.zoomOut {
    animation: zoomOut 10s ease;
}

@-webkit-keyframes pulse {
    33% {
        background: #FFF;
        box-shadow: -24px 0 var(--main-color-dark), 24px 0 #FFF;
    }

    66% {
        background: var(--main-color-dark);
        box-shadow: -24px 0 #FFF, 24px 0 #FFF;
    }

    100% {
        background: #FFF;
        box-shadow: -24px 0 #FFF, 24px 0 var(--main-color-dark);
    }
}

@keyframes pulse {
    33% {
        background: #FFF;
        box-shadow: -24px 0 var(--main-color-dark), 24px 0 #FFF;
    }

    66% {
        background: var(--main-color-dark);
        box-shadow: -24px 0 #FFF, 24px 0 #FFF;
    }

    100% {
        background: #FFF;
        box-shadow: -24px 0 #FFF, 24px 0 var(--main-color-dark);
    }
}

@keyframes slideAnimation {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

  *, *:before, *:after {
    box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  svg {
    display: block;
    overflow: visible;
  }
  
  .slider-main{
    height: calc(100vh - 3.5em);
    background-color: whitesmoke;
  }

  .slider-container {
    position: relative;
    height: 100%;
    user-select: none;
    cursor: all-scroll;
    z-index: 2000;
  }
  
  .slider-control {
    z-index: 2;
    position: absolute;
    top: 0;
    width: 12%;
    height: 100%;
    transition: opacity 0.3s;
    will-change: opacity;
    opacity: 0;
  }
  .slider-control.inactive:hover {
    cursor: auto;
  }
  .slider-control:not(.inactive):hover {
    opacity: 1;
    cursor: pointer;
  }
  .slider-control.left {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.18) 0%, transparent 100%);
  }
  .slider-control.right {
    right: 0;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.18) 100%);
  }
  
  .slider-pagi {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    font-size: 0;
    list-style-type: none;
  }
  .slider-pagi__elem {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
  }
  .slider-pagi__elem:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.2rem;
    height: 1.2rem;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    transform: translate(-50%, -50%) scale(0);
  }
  .slider-pagi__elem.active:before, .slider-pagi__elem:hover:before {
    transform: translate(-50%, -50%) scale(1);
  }
  
  .slider {
    z-index: 1;
    position: relative;
    height: 100%;
  }
  .slider.animating {
    transition: transform 0.5s;
    will-change: transform;
  }
  .slider.animating .slide__bg {
    transition: transform 0.5s;
    will-change: transform;
  }
  
  .slide {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .slide.active .slide__overlay,
  .slide.active .slide__text {
    opacity: 1;
    transform: translateX(0);
  }
  .slide__bg {
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-size: cover;
    will-change: transform;
  }
  .slide:nth-child(1) {
    left: 0;
  }
  .slide:nth-child(1) .slide__bg {
    left: 0;
    background-image: url("../images/slider1.jpg");
  }
  .slide:nth-child(1) .slide__overlay-path {
    fill: rgb(0, 25, 67);
  }
  @media (max-width: 991px) {
    .slide:nth-child(1) .slide__text {
      background-color: rgba(0, 25, 67, 0.8);
    }
  }
  .slide:nth-child(2) {
    left: 100%;
  }
  .slide:nth-child(2) .slide__bg {
    left: -50%;
    background-image: url("../images/slider2.jpg");
  }
  .slide:nth-child(2) .slide__overlay-path {
    fill: rgb(72, 72, 72);
  }
  @media (max-width: 991px) {
    .slide:nth-child(2) .slide__text {
      background-color: rgba(72, 72, 72, 0.8);
    }
  }
  .slide:nth-child(3) {
    left: 200%;
  }
  .slide:nth-child(3) .slide__bg {
    left: -100%;
    background-image: url("../images/slider3.jpg");
  }
  .slide:nth-child(3) .slide__overlay-path {
    fill: rgb();
  }
  @media (max-width: 991px) {
    .slide:nth-child(3) .slide__text {
      background-color: rgba(0, 25, 67, 0.8);
    }
  }
  .slide:nth-child(4) {
    left: 300%;
  }
  .slide:nth-child(4) .slide__bg {
    left: -150%;
    background-image: url("../images/slider4.jpg");
  }
  .slide:nth-child(4) .slide__overlay-path {
    fill: #cbc6c3;
  }
  @media (max-width: 991px) {
    .slide:nth-child(4) .slide__text {
      background-color: rgba(203, 198, 195, 0.8);
    }
  }
  .slide__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    height: 100%;
  }
  .slide__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    min-height: 810px;
    transition: transform 0.5s 0.5s, opacity 0.2s 0.5s;
    will-change: transform, opacity;
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
  }
  @media (max-width: 991px) {
    .slide__overlay {
      display: none;
    }
  }
  .slide__overlay path {
    opacity: 0.8;
  }
  .slide__text {
    position: absolute;
    width: 25%;
    bottom: 15%;
    left: 8%;
    color: #fff;
    transition: transform 0.5s 0.8s, opacity 0.5s 0.8s;
    will-change: transform, opacity;
    transform: translateY(-50%);
    opacity: 0;
  }
  @media (max-width: 991px) {
    .slide__text {
      left: 0;
      bottom: 0;
      width: 100%;
      height: 20rem;
      text-align: center;
      transform: translateY(50%);
      transition: transform 0.5s 0.5s, opacity 0.5s 0.5s;
      padding: 0 1rem;
    }
  }
  .slide__text-heading {
    font-family: "Polar", Helvetica, Arial, sans-serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    color: white;
  }
  @media (max-width: 600px) {
    .slide__text-heading {
      line-height: 1rem;
      font-size: 2rem;
    }
  }
  @media (max-width: 991px) {
    .slide__text-heading {
      line-height: 5rem;
      font-size: 2.5rem;
    }
  }
  .slide__text-desc {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: whitesmoke;
  }
  @media (max-width: 991px) {
    .slide__text-desc {
      display: none;
    }
  }
  .slide__text-link {
    z-index: 5;
    display: inline-block;
    position: relative;
    padding: 0.5rem;
    cursor: pointer;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    color: rgb(239, 239, 239);
    font-size: 2.3rem;
    perspective: 1000px;
  }
  @media (max-width: 991px) {
    .slide__text-link {
      margin: -2rem 0 8rem;
    }
  }
  .slide__text-link:before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform-origin: 50% 100%;
    transform: rotateX(-85deg);
    transition: transform 0.3s;
    will-change: transform;
  }
  .slide__text-link:hover:before {
    transform: rotateX(0);
  }
  