/* ---------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- BASE --- --- --- --- --- --- --- --- --- */
/* ---------------------------------------------------------------------------- */

/* --- COMMON BREAKPOINTS --- */
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {}

/* Laptop screens */
@media only screen and (max-height: 900px) {}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {}
/* Medium devices / tablets 500px - 770px */
@media only screen and (max-width: 770px) {}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 500px) {}

/* --- custom font --- */
@font-face {
    font-family: 'Tenor';
    src: url('/assets/fonts/TenorSans-Regular.ttf') format("truetype");
    font-weight: normal;
}
/* --- COMMON BREAKPOINTS --- */
/*
Z-INDEXES:
    - navbar: 10;
    - modal: 15;
    - gallery-image-overlay: 2;
    - gallery-image-icon: 3;
    - star-icon: 3;

*/
/*
PREVIOUS COLORS
- #F2ECE7 - bg;
*/


/* --- ROOT --- */
:root {
    /* main colors */
    --main-background:          #E7E4DD;
    --main-text-color:          #515343;
    --grey-text:                #8e8e8e;
    --main-accent:              #978C67;
    --dark-green:               #515343;
    --card-color:               #F6F5F2;
    --card-shadow:              rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;;
    --navbar-color:             #E7E4DD;
    --footer-color:             rgba(255, 255, 255, 0.5);

    /* font & others */
    --main-title-font:          300 24px 'Tenor', sans-serif;
    --main-paragraph-font:      normal clamp(0.75rem, 0.35vw + 0.403rem, 1.5rem) 'Tenor', sans-serif;
    --border-radius:            15px;
    --main-outline:             1px solid var(--main-text-color);
    /* dimensions */
    --section-height:           calc( 100svh - (4 * var(--main-margin)));
    --section-width:            calc( 100svw - (2 * var(--section-margin)));
    --navbar-height:            calc(4 * var(--main-margin));
    --half-proportion:          calc( (100svw - (2 * var(--section-margin))) / 2 );
    --one-third-proportion:     calc( (100svw - (2 * var(--section-margin))) / 3 );
    --one-fourth-proportion:    calc( (100svw - (2 * var(--section-margin))) / 4 );
    --section-margin:           100px;
    --main-margin:              20px;
    --main-gap:                 20px;
    
    
}

/* @media (prefers-color-scheme: dark) {
    :root {
        --main-background:      #23282B;
        --main-text-color:      #E7E4DD;
        --main-outline:             1px solid var(--main-text-color);
    } 
}

[data-theme="light"] {
    color-scheme: light;
    --main-background:          #E7E4DD;
    --main-text-color:          #23282B;
    --main-outline:             1px solid var(--main-text-color);
}

[data-theme="dark"] {
    color-scheme: dark;
    --main-background:          #23282B;
    --main-text-color:          #E7E4DD;
    --main-outline:             1px solid var(--main-text-color);
} */

/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){
    :root {
        --main-margin: 30px;
        --main-outline: 2px solid var(--main-text-color);
         --section-margin:           150px;
    }
}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){
    :root {
        --main-margin: 40px;
        --main-outline: 2px solid var(--main-text-color);
    }
}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    :root {
        --main-margin:  40px;
        --main-outline: 2px solid var(--main-text-color);
    }
}
/* Laptop screens */
@media only screen and (max-height: 899px) and (max-width: 1499px){
    :root {
        --main-margin: 20px;
        --main-outline: 1px solid var(--main-text-color);
    }
}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {
    :root {
        --section-margin: 70px;
    }
}

/* Medium devices / tablets 500px - 770px */
@media only screen and (max-width: 770px) {
    :root {
        --section-margin: 60px;
    }
}

/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 500px) {
    :root {
        --main-margin: 10px;
        --navbar-height: 80px;
        --section-margin: 20px;
    }
}
/* ---------------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- ANIMATIONS --- --- --- --- --- --- --- --- --- */
/* ---------------------------------------------------------------------------------- */
/* animation: name duration timing-function delay iteration-count direction fill-mode play-state; */
@keyframes popUp {
    0% {transform: scale(0.8)}
    80% {transform: scale(1.2)}
    100% {transform: scale(1.0)}
}
/* ------------------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- MAIN ELEMENTS --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------------- */
html {
    margin: 0px;
    padding: 0px; 
    /* scroll-behavior: smooth; */
}
body {
    margin: 0px;
    padding: 0px; 
    font: var(--main-paragraph-font);
    color: var(--main-text-color);
    background: var(--main-background);
}

.desktop-only {
    display: flex;
}
.mobile-only {
    display: none;
}
.container {
    margin: 0px;
    padding: 0px;
}

.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: var(--section-height);
    padding: 150px var(--section-margin);
}
.section h1 {
    text-align: center;
}
.small-section {
    min-height: 40svh;
    background-color: var(--main-background);
    padding: var(--section-margin) var(--section-margin);
    margin: 0;
}
.accent-color-bg {
    background-color: var(--dark-green);
    background-image: url(/assets/photos/plant-02-50.webp);
    background-size: cover;
    color: var(--main-background);
    background-position: center;
}
h1 {
    font: var(--main-title-font);
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-top: 0px;
    margin-bottom: 50px;
    /* font-size: 40px; */
    font-size: clamp(1.5rem, 1.5vw + 1rem, 5rem);
    -webkit-font-smoothing: none;
    -webkit-font-smoothing: antialiased;
}
h2, h3, h4, h5, h6 {
    font: var(--main-title-font);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 0px;
    margin-bottom: 0px;
    -webkit-font-smoothing: none;
    -webkit-font-smoothing: antialiased;
}
h2 {
    /* font-size: 32px; */
    font-size: clamp(1.25rem, 1.257vw + 0.983rem, 4rem);
}
h3 {
    /* font-size: 32px; */
    font-size: clamp(1.25rem, 1.257vw + 0.983rem, 4rem);
}
h4 {
    /* font-size: 18px; */
    font-size: clamp(1rem, 0.40vw + 0.7rem, 2.25rem)
}
h5 {
    /* font-size: 16px; */
    font-size: clamp(0.875rem, 0.398vw + 0.79rem, 1.75rem);
}
h6 {
    /* font-size: 14px; */
    font-size: clamp(0.75rem, 0.28vw + 0.6rem, 1.5rem);
}
p {
    font: var(--main-paragraph-font);
    letter-spacing: 3px;
    line-height: 1.5;
    margin-top: 0px;
    margin-bottom: 0px;
}
a {
    display: flex;
    font: var(--main-paragraph-font);
    letter-spacing: 3px;
    line-height: 1.5;
    text-decoration: none;
    color: var(--main-text-color);
    margin: 0px;
    padding: 0px;
    transition: 1s all;
}


button, input[type=submit], .a-to-button {
    outline: none;
    border: none;
    text-decoration: none;
    font: var(--main-font);
    font-weight: normal;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: none;
    color: var(--main-background);
    background-color: var(--main-accent);
    cursor: pointer; 
    transition: 0.5s;
}
.regular-button {
    width: fit-content;
    align-self: center;
    background-color: var(--main-text-color);
    padding: calc(var(--main-margin) / 2) calc(var(--main-margin) * 3);
    margin-top: calc(var(--main-margin) * 2);
    transition: 0.5s;
}
.outline-button {
    width: fit-content;
    align-self: center;
    background-color: transparent;
    padding: calc(var(--main-margin) / 2) calc(var(--main-margin) * 3);
    margin-top: calc(var(--main-margin) * 2);
    border: var(--main-outline);
    color: var(--main-text-color);
}
.white {
    border: 1px solid white;
    color: white;
}
.grey {
    color: var(--grey-text);
}
.mini-button {
    padding: 5px 20px;
    margin: 10px;
}
.outline-button:hover, .regular-button:hover {
    padding: calc(var(--main-margin) / 2) calc(var(--main-margin) * 5);
}
.mini-button:hover {
    padding: 5px 40px;
}
.icon-button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    margin: var(--main-margin);
    border-radius: 50%;
    background: none;
    background-color: none;
    /* outline: var(--main-outline); */
    /* outline-offset: 10px; */
}
.icon-button:hover {
    transform: scale(1.1);
}
.icon {
    height: 30px;
    aspect-ratio: 1/1;
    width: auto;
    object-fit: contain;
}
.star-icon {
    height: 20px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
}
.mini-icon {
    height: 10px;
    align-self: center;
    vertical-align: middle;
}
.icon-flip {
    transform: rotate(180deg);
}
.outline {
    outline: var(--main-outline);
}

.grid {
    width: var(--section-width);
    display: grid;
    gap: var(--main-gap);
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}
.title-row {
    grid-row: 1;
    grid-column: 1/5;
    text-align: center;
    display: flex;
}
.row {
    display: flex;
    width: 100%;
}
.half {
    margin-top: 15svh;
    min-width: var(--half-proportion);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.half-01 {
    align-items: flex-end;
    text-align: end;
}
.cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--main-margin);
    min-height: 40px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}
.clear {
    padding: 0px;
    margin: 0px;
}
.filter-white {
    filter: invert(100%) sepia(0%) saturate(7494%) hue-rotate(107deg) brightness(99%) contrast(103%);
}
.filter-reddish {
    filter: invert(31%) sepia(66%) saturate(405%) hue-rotate(333deg) brightness(100%) contrast(99%);
}
.outline {
    border: var(--main-outline);
}
.vert-line {
    border-right: var(--main-outline);
    height: 100%;
}
.hor-line {
    display: flex;
    flex-grow: 1;
    height: 0.75px;
    max-height: 1px;
    background-color: var(--main-text-color);
}

.rotating-text-wrapper {
    width: 100%;
    background-color: var(--main-accent);
    color: var(--main-background); 
    display: flex;
    overflow: hidden;
}
.rotating-half h3 {
    white-space: nowrap;
}
.rotating-half2 {
    width: fit-content;
}
.text-to-scale {
    display: flex;
    width: auto;
}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    h3 {
        font-size: 36px !important;
    }
    p {
        font-size: 24px !important;
    }
    .mini-button {
        font-size: 16px;
        padding: 10px 30px;
        margin: 20px;
    }
}
@media (orientation: portrait) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: repeat(1, 1fr);
    }
    .row {
        flex-direction: column;
    }
}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {
    .desktop-only {
    display: flex;
    }
    .mobile-only {
        display: none;
    }
}

/* Medium devices / tablets 500px - 770px */
@media only screen and (max-width: 770px) {
     .desktop-only {
    display: none;
    }
    .mobile-only {
        display: none;
    }
    .section, .small-section {
        padding: 100px var(--section-margin);
    }
}

/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 550px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: flex;
    }
    .section, .small-section {
        padding: 60px var(--section-margin);
    }
}
/* ------------------------------------------------------------------------------ */
/* --- --- --- --- --- --- --- --- --- NAVBAR --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------ */
nav {
    display: block;
    align-items: center;
    position: fixed;
    top: 0px;
    z-index: 10;
    margin: 0px;
    padding: 0px;
    background: var(--navbar-color);
    height: var(--navbar-height);
    width: 100%;
}
#desktop-tablet-nav {
    flex-direction: column;
}
.promotion-header {
    background-color: var(--dark-green);
    width: 100%;
}
.promotion-header a {
    color: var(--main-background);
    letter-spacing: 5px;
    white-space: nowrap;
    margin: 0;
    opacity: 0.8;
}

.promotion-header a:hover {
    transform: none;
}
.main-header {
    display: flex;
    padding: 0 var(--main-margin);
    justify-content: space-between;
    align-items: center;
    flex: 1;
}
#mobile-nav {
    width: 100svw;
    flex-direction: column;
    background-color: var(--navbar-color);
}
.mobile-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 10px 20px;
}
.navbar-logo {
    height:  calc(var(--main-margin) + 20px);
    width: auto;
    object-fit: contain;
    padding: var(--main-margin) calc(2 * var(--main-margin));
    vertical-align: middle;
}
.main-menu {
    align-items: center;
    height: calc(4 * var(--main-margin));
    padding: 0;
}

.navbar-link {
    margin: 40px;
}
.navbar-link:hover {
    font-weight: bold;
    transform: scale(1.2, 1.2);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
}
.hamburger .line{
    width: 50px;
    height: 2px;
    background-color: var(--main-text-color);
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
  
.hamburger:hover{
cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2){
opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
-webkit-transform: translateY(10px) rotate(45deg);
-ms-transform: translateY(10px) rotate(45deg);
-o-transform: translateY(10px) rotate(45deg);
transform: translateY(10px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
-webkit-transform: translateY(-10px) rotate(-45deg);
-ms-transform: translateY(-10px) rotate(-45deg);
-o-transform: translateY(-10px) rotate(-45deg);
transform: translateY(-10px) rotate(-45deg);
}
.toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px;
}
.mode-toggle {
    width: 40px;
    height: 20px;
    border-radius: 10px;
    border: var(--main-outline);
    display: flex;
    align-items: center;
    transition: all 1s linear;
    cursor: pointer;
}
.mode-toggle-active {
    justify-content: flex-end;
}
.mode-toggle-circle {
    background-color: var(--main-text-color);
    height: 15px;
    width: 15px;
    border-radius: 7.5px;
    margin: 2.5px;

}
/* Medium devices / tablets 500px - 770px */
/* @media only screen and (max-width: 770px) { */
@media (orientation: portrait) {
    nav {
        max-width: 100svw;
    }
    .navbar-logo {
        height: 15px;
        padding: 0px;
    }
    .navbar-link {
        margin: 10px;
    }
}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 550px) {
    nav {
        display: grid;
        grid-template-columns: 4fr 1fr;
    }
    .navbar-logo {
        border-right: none;
    }
    .hamburger {
        display: block;
        margin: 20px;
    }
    .main-menu {
        grid-column: 1 /  3;
        height: fit-content;
        display: flex;
        flex-direction: column;
        border-left: none;
        background-color: var(--main-background);
        border-top: var(--main-outline);
    }
    .navbar-link {
        display: flex;
        width: calc(100svw - 80px);
        padding: 20px;
        padding-left: 60px;
        margin: 0;
        width: 100%;
        border-bottom: var(--main-outline);
    }

}

  /* ---------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- HERO --- --- --- --- --- --- --- --- --- */
/* ---------------------------------------------------------------------------- */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100svh;
    margin-top: calc(-1 * var(--navbar-height));
    position: relative;
    z-index: 1;
}
.hero-image {
    height: 100svh;
    width: 100svw;
    object-fit: cover;
    opacity: 0.9;
}
.ver-logo {
    height: 400px;
    width: auto;
    object-fit: contain;
}
.slogan-container {
    --height: 450px;
    --width: 450px;
    height:var(--height);
    width: var(--width);
    min-height: fit-content;
    min-width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    text-align: center;
    position: absolute;
    top: calc(((100% - var(--height)) / 2) + var(--navbar-height));
    left: calc((100% - var(--width)) / 2);
    z-index: 3;
    margin-top: -50px;
}
.main-title {
}
.sub-title {
    color: var(--main-background);
    text-transform: none;
    font-weight: 300;
}
#hero .outline-button {
    margin-top: 0px !important;
}
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    .hero h1 {
        font-size: 100px;
    }
    .ver-logo {
        height: 800px;
        width: auto;
        object-fit: contain;
    }
}

/* Laptop screens */
@media only screen and (max-height: 900px) {}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {

}
/* Medium devices / tablets 500px - 770px */
@media (orientation: portrait) {
}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 550px) {
    .ver-logo {
        height: 300px;
    }
    .slogan-container {
        --height: 350px;
        --width: 350px;
    }
}
/* ----------------------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- MISSION STATEMENT --- --- --- --- --- --- --- --- --- */
/* ----------------------------------------------------------------------------------------- */
#mission1 {
   text-align: center;
   position: relative;
}
#mission1 h2 {
    margin-bottom: 50px;
    text-transform: uppercase;
}
#mission1 h4 {
    text-transform: none;
    max-width: 1000px;
    text-transform: none;
    line-height: clamp(1.125rem, 0.857vw + 0.943rem, 3rem);;
}

#mission2 h5  {
    font-weight: 200;
    letter-spacing: 8px;
    margin-bottom: 50px;
}
.mission-icon {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;

}
.mission-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    max-width: 300px;
    margin: auto;
    /* aspect-ratio: 1/1; 
    border: 2px solid var(--main-accent); */
}
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){
    .mission-icon {
        height: 150px;
    }
}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    .mission-icon {
        height: 200px;
    }
}

/* Laptop screens */
@media only screen and (max-height: 900px) {}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {
    #mission2 .grid{
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Medium devices / tablets 500px - 770px */
@media only screen and (max-width: 770px) {}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 550px) {
    /* rest of styling*/
    .mission-widget {
        max-width: 30svw;
    }
    .mission-widget h6 {
        letter-spacing: 1px;
    }
    #mission2 .grid{
        display: grid !important;
        grid-template-columns: repeat(1, 1fr);
    }
}
/* -------------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- SERVICES --- --- --- --- --- --- --- --- --- */
/* -------------------------------------------------------------------------------- */
#services {
    background-color: #efeae6;
}
#services .title-div {
    width: 100%;
}
.services-div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-self: flex-end;
}
.service {
    width: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: start;
}
.services-image {
    width: 350px;
    height: 260px;
    object-fit: cover;
}
.card-bottom-div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 10px 0px;
}
.card-bottom-div > * {
    margin-bottom: 10px;
}
.services-div p {
    color: var(--grey-text);
}

.services-div a {
    align-self: flex-start;
    margin-left: 0px;
}
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){
    .services-div {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px;
        align-self: center;
        justify-content: center;
    }
    .service {
        width: 100%;
    }
    .services-image {
        width: 100%;
    }
}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    #services {
        min-height: 50svh !important;
    }
}

/* Laptop screens */
@media only screen and (max-height: 900px) {}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {
    .whole-gallery-div, .whole-cards-div, .wrapper {
        width: 100%;
        padding: 0px;
        margin: 0px;
        height: auto;
        max-height: fit-content;
    }
    #gallery-row, #cards-row {
        width: 100%;
        display: grid;
        height: auto;
        max-height: fit-content;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    #cards-left-button, #cards-right-button, #gallery-left-button, #gallery-right-button, #opinions-left-button, #opinions-right-button {
        display: none;
        width: 0px;
    }
    .card {
        height: 450px;
    }
    .services-description {
        margin: 30px 0px 30px 0px;
        text-align: justify;
    }
}
/* Medium devices / tablets 500px - 770px */
/* @media only screen and (max-width: 770px) { */
@media (orientation: portrait) {
    #services {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .services-div {
        grid-template-columns: 1fr 1fr;
    }
    #services .hor-line {
        display: none;
    }
    .service, .services-image {
        width: calc((100svw - 2 * var(--section-margin) - 20px) / 2);
    }
    #services .title-div h3 {
        margin-top:  0px;
        margin-bottom: 10px;
        text-align: center;
    }
    
}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 550px) {
    .services-image {
        width: calc(100svw - 2 * var(--section-margin));
        align-self: center;
        height: 220px;
    }
    .card-bottom-div, .service {
        width: calc(100svw - 2 * var(--section-margin));
    }
    .services-div {
        grid-template-columns: 1fr;
    }
}
/* -------------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- OPINIONS --- --- --- --- --- --- --- --- --- */
/* -------------------------------------------------------------------------------- */
.opinions {

}
.opinions .title-div {
    width: 100%;
}
.opinions .hor-line {
    background-color: var(--main-background);
}
.opinions .wrapper {
    overflow-x: scroll;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
#opinions-row {
    height: fit-content;
    width: fit-content;
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-direction: row;
}
.opinion {
    outline: 1px solid var(--main-background);
    color: var(--main-background);
    padding: var(--main-margin);
    width: 26svw;
    position: relative;
}
.overlay-text {
    /* position: absolute;
    top: -12px;
    height: 20px;
    left: 20px; */
    color:  var(--main-background);
}
.opinions-photo {
    height: 100%;
    aspect-ratio: 1/1;
    width: auto;
    object-fit: cover;
}
.rating, #opinions-left-button, #opinions-right-button {
    filter: brightness(0) saturate(100%) invert(93%) sepia(25%) saturate(262%) hue-rotate(316deg) brightness(94%) contrast(89%);
}
.rating, .opinions p {
    margin-bottom: 20px;
}
.opinions-buttons-div {
    align-self: flex-end;
    display: flex;
}
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {}

/* Laptop screens */
@media only screen and (max-height: 900px) {}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {
    #opinions-row {
        width: 85svw;
        display: flex;
        flex-direction: column;
        height: fit-content;
    }
}
@media (orientation:landscape) and (max-width: 1030px) {
    #opinions-row {
        width: fit-content;
        display: flex;
        flex-direction: row;
    }
    .opinion {
        width: 300px;
    }
    #opinions .title-div {
        margin-bottom: 10px;
    }
    #opinions {
        padding: 80px var(--section-margin);
    }
    #opinions-left-button, #opinions-right-button {
        display: flex;
    }
}
/* Medium devices / tablets 500px - 770px */
/* @media only screen and (max-width: 770px) { */
@media (orientation: portrait) {
    #opinions .hor-line {
        display: none;
    }
    #opinions-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .opinion {
        width: calc(100% - 60px);
        height: auto;
        min-height: 150px;
        position: relative;
        
    }
    .rating {
        margin-top: 20px;;
    }
    #opinions .title-div h3 {
        margin-top:  0px;
        margin-bottom: 10px;
    }
}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 500px) {
    #opinions .wrapper {
        overflow-x: hidden;
    }
}
/* ---------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- TEAM --- --- --- --- --- --- --- --- --- */
/* ---------------------------------------------------------------------------- */
#team {
    background-color: var(--card-color);
    align-items: center;
    background-color: var(--card-color);
    
}
#team .row {
    gap: 30px;
    margin-bottom: 50px;
    width: calc( var(--section-width) * 0.75 );
    justify-content: space-between;
    height: fit-content;
}
.title-div {
    width: calc( var(--section-width) * 0.75 );
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-grow: 2; */
    gap: 20px;
    margin-bottom: 60px;
}
.title-div > * {
    margin: 0px;
    padding: 0px;
}
.about-owner {
    display: flex;
    width: 400px;
    justify-content: center;
    align-items: center;
}
.about-owner:nth-child(2) {
    flex-direction: column;
    padding: 30px;
    flex-grow: 1;
    width: 400px;
    border: var(--main-outline);
}

.about-owner h3, .about-owner p {
    margin-bottom: 30px;
}
.owner-photo {
    height: 75svh;
    width: 400px;
    max-width: 90svw;
    object-fit: cover;
    transition: 1s all;
}
.owner-photo:hover {
    transform: scale(1.05);
}

.team-title {
    margin: 50px 0px;
}
.team-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 40px;
    width: 25svw;
    max-width: 250px;
}

.team-div h6 {
    margin-bottom: 20px;
    text-align: center;
}
.team-div p {
    text-align: justify;
    padding: 0px;
}
.team-photo {
    width: 250px;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
}
.about-owner:first-child {
    justify-content: flex-end;
}

.socials-row {
    display: flex;
    width: 100%;
    align-items: flex-start;
    align-self: flex-start;
    margin-top: var(--main-margin);
}
.socials-row > * {
    margin-right: calc(var(--main-margin) / 2);
    transition: 1s all;
}
.socials-row > *:hover {
    margin-right: calc(var(--main-margin) / 2);
    transform: scale(1.2);
}
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px) {
    .owner-descr {
        width: var(--section-width);
    }
    .about-owner {
        width: 50%;
    }
    .owner-photo {
        width: 100%;
    }
    .team-div {
        width: 35svw;
        max-width: none;
    }
    .team-photo {
        width: 100%;
    }
}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    #team .row {
        width: calc(var(--section-width)* 0.75);
        gap: 50px;
        margin-bottom: 100px;
    }
    .about-owner:nth-child(2) {
        padding: 70px;
    }
}

/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {
    .team-div {
        width: 35svw;
    }
    #team .row {
        width: 100%;
    }
}
@media (orientation:landscape) and (max-width: 1030px) { 
    .team-div {
        width: 25svw;
    }
    .team-photo {
        width: 100%;
    }
    #team .row {
        width: calc(var(--section-width)* 0.75);
    }
    .about-owner {
        width: 50%;
    }
}
/* Medium devices / tablets 500px - 770px */
/* @media only screen and (max-width: 770px) { */
@media (orientation: portrait) {
    #team .hor-line {
        display: none;
    }
    .about-owner {
        width: var(--section-width);
    }
    .about-owner:first-child {
        justify-content: center;
    }
    .about-owner:nth-child(2) {
        box-sizing: border-box;
        width: var(--section-width);
    }
    .team-div {
        width: calc((var(--section-width) - 20px) / 3);
        align-self: center;
    }
    .team-photo {
        width: 100%;
    }
    .owner-photo {
        height: var(--section-width);
        width: var(--section-width);
    }
    #team .row:last-child {
        gap: 10px;
        flex-direction: row;
    }
}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 550px) {
    .team-div {
        width: 100%;
    }
    #team .row, #team .row:last-child {
        flex-direction: column;
    }
}



/* --------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- FAQ --- --- --- --- --- --- --- --- --- */
/* --------------------------------------------------------------------------- */
.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.faq h1 {
    align-self: center;
    text-align: center;
}
.accordion {
    display: flex;
    flex-direction: column;
    width: calc( var(--section-width) * 0.75 );
    
}
.accordion-item {
    width: 100%;
}
.accordion-title {
    border: 1px solid var(--main-background);
    border-bottom: none;
    padding: var(--main-margin);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.accordion-item:last-child .accordion-title {
    border-bottom: 1px solid var(--main-background);
}
.accordion-icon {
    filter: invert(93%) sepia(15%) saturate(296%) hue-rotate(332deg) brightness(96%) contrast(85%);
    /* transform: rotate(0deg); */
}
.accordion-content {
    height: 0px;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    will-change: height, padding, opacity;
    border: 1px solid var(--main-background);
    border-bottom: none;
    transition: all 200ms linear;
}
.accordion-content p {
    line-height: 1.5;
    letter-spacing: 3px;
}
.accordion-item:last-child .accordion-content {
    border-top: none;
    border-bottom: 1px solid var(--main-background);
}
.accordion-title[aria-expanded='true'] + .accordion-content {
        /* display: flex; */
        height: fit-content;
        opacity: 1;
        padding: var(--main-margin);
}
.accordion-title[aria-expanded='true'] > img {
    transform: rotate(45deg);
}

/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {}

/* Medium devices / tablets 500px - 770px */
/* @media only screen and (max-width: 770px) { */
@media (orientation: portrait) {
    #faq .title-div h3 {
        margin-top:  0px;
        margin-bottom: 10px;
    }
    .accordion {
        width: var(--section-width);
    }
}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 500px) {
    .accordion {
        width: 100%;
    }
}


/* ------------------------------------------------------------------------------- */
/* --- --- --- --- --- --- --- --- --- CONTACT --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------- */
.contact {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    margin: 150px;
    min-height: auto;
    
}
.contact div:first-child {
    text-align: end;
}
form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 500px;
}
input {
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: var(--main-outline);
    font: var(--main-font);
    letter-spacing: 1px;
    margin: 0px 0px var(--main-margin) var(--main-margin);
}
input:last-child {
    grid-column: 1/3;
}
textarea {
    grid-column: 1/3;
    height: 150px;
    background-color: transparent;
    margin: 0px 0px var(--main-margin) var(--main-margin);
    border: var(--main-outline);
}
/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){
    form {
        min-width: 700px;
    }
    .contact div:first-child {
        min-width: 700px;
    }
    .contact h1 {
        text-align: end;
    }
}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {
    .contact {
        margin: 250px;
    }
    form {
        min-width: 900px;
    }
    textarea {
        height: 250px;
    }
}

/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {
    form {
        width: 350px;
        min-width: auto;
    }
    textarea {
        height: 150px;
    }
}
/* Medium devices / tablets 500px - 770px */
/* @media only screen and (max-width: 770px) { */
@media (orientation: portrait) {
    .contact {
        flex-direction: column;
        margin: 50px 20px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .contact div:first-child {
        text-align: center;
        margin-bottom: 50px;
    }
    input:last-child {
        grid-column: 1/3;
        margin: auto;
        width: 100%;
        margin-top: 30px;
    }
    .contact textarea {
        margin-top: 30px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .contact input {
        margin-left: 0px;
    }
    .contact form {
        gap: 20px;
        min-width: none;
        width: var(--section-width);
        box-sizing: border-box;
    }
    
}

/* ------------------------------------------------------------------------------ */
/* --- --- --- --- --- --- --- --- --- FOOTER --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------ */
#footer {
    display: block;
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--main-background);
}
.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--main-margin)*2)
}
.footer-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--main-accent);
    padding: var(--main-margin);
}
#footer-menu {
    display: flex;
    padding: var(--main-margin) calc(var(--main-margin) * 2);
    justify-content: space-around;
    flex-grow: 2;
}
.footer-column {
    display: flex;
    flex-direction: column;
}
.footer-p {
    letter-spacing: 1px;
    margin: 8px;
    color: var(--main-background);
}
.footer-logo {
    height:  calc(var(--main-margin) * 4);
    width: auto;
    object-fit: contain;
    padding: var(--main-margin) calc(var(--main-margin) * 3);
    vertical-align: middle;
}
#footer h5 {
}
/* Medium devices / tablets 500px - 770px */
/* @media only screen and (max-width: 770px) { */
@media (orientation: portrait) {
    .footer-column:first-child, .footer-column:nth-child(2) {
        display: none
    }
    .footer-column:nth-child(3) {
        width: 100%;
        align-items: flex-end;
    }
}
@media only screen and (max-width: 550px) {
    .footer-column {
        align-items: flex-end;
    }
    .footer-column p {
        align-items: end !important;
    }
}
/* ------------------------------------------------------------------------------ */
/* --- --- --- --- --- --- --- --- --- PRIVACY --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------ */
#privacy .section {

}
#privacy h1 {
    margin-bottom: 80px;
}
#privacy h3 {
    text-align: start;
    align-self: flex-start;
    margin-bottom: 30px;
    font-size: 16px;
}
#privacy h5 {
    text-align: start;
    align-self: flex-start;
    margin-bottom: 10px;
    font-size: 14px;
}
#privacy p {
    margin-bottom: 30px;
    align-self: flex-start;
}
/* ------------------------------------------------------------------------------ */
/* --- --- --- --- --- --- --- --- --- THANKS --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------ */
#thanks {
}
.thanks-div {
    display: flex;
    flex-direction: column;
}
#thanks h1, #thanks  p, #thanks img {
    align-self: center;
}

/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {}

/* Laptop screens */
@media only screen and (max-height: 900px) {}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {}
/* Medium devices / tablets 500px - 770px */
@media only screen and (max-width: 770px) {}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 500px) {}

/* ------------------------------------------------------------------------------ */
/* --- --- --- --- --- --- --- --- --- PRICES --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------ */
#prices {
}

.prices-div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: calc( var(--section-width) * 0.75 );
}
.prices-div .service {
    width: 100%;
}
#prices .services-image {
    width: 100%;
}
#prices ul {
    list-style: none;
    padding: 0px;
    width: 100%;
}
#prices li {
    display: flex;
    width: 100%;
    align-items: end;
}
#prices .hor-line {
    margin: 10px;
}
#prices h5 {
    margin-top: 20px;
}

/* HD screens */
@media only screen and (min-height: 900px) and (min-width: 1500px){}
/* FullHD screens */
@media only screen and (min-height: 1000px) and (min-width: 2400px){}
/* UltraHD screens */
@media only screen and (min-height: 2000px) and (min-width: 3500px) {}

/* Laptop screens */
@media only screen and (max-height: 900px) {}
/* Medium devices / tablets 770 - 1030 width*/
@media only screen and (max-width: 1030px) {}
/* Medium devices / tablets 500px - 770px */
@media only screen and (max-width: 770px) {}
/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 550px) {
    .prices-div {
        grid-template-columns: 1fr;
        width: 100%;
    }
    #prices .title-div {
        width: 100%;
        margin-bottom: 0px;
    }
    .prices-div .service {
    }
}
/* ------------------------------------------------------------------------------ */
/* --- --- --- --- --- --- --- --- --- OTHERS --- --- --- --- --- --- --- --- --- */
/* ------------------------------------------------------------------------------ */

/* --- SCROLLBAR --- */

/* width */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background-color: transparent;
}
  
/* Track */
::-webkit-scrollbar-track {
    width: 0px;
    background-color: transparent;
    background-clip: padding-box;
}

/* Handle */
/* not visible because of width - red left for monitoring */
::-webkit-scrollbar-thumb {
    width: 0px;
    background: transparent;
    background-clip: padding-box;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    width: 0px;
    background-color: var(--dark-brown);
    background-clip: padding-box;
}


/* --- INSPECTIONS --- */
/* * {
  outline: 1px solid #f00 !important;
} */


/* -------------------------------------------------- */
/* --- --- --- --- --- ANIMATIONS --- --- --- --- --- */
/* -------------------------------------------------- */

/* animation: name duration timing-function delay iteration-count direction fill-mode play-state; */