:root {
    --cl-1: #ffffff;
    --cl-2: #676767;
    --cl-3: #ed463a;
    --cl-4: #1766c6;
    --cl-5: #f4f3f3;
    
    --n-w: 1000px;
    --c-w: 1000px;
    
    --t-h: 56vw;
    --t-mh: 560px;
    --p-h: 605px;
    --p-mh: 60.4vw;
    
    
    --n-w: 900px;
    --c-w: 900px;
    
    --t-mh: 510px;
    --p-h: 545px;
    
    
    --n-w: 800px;
    --c-w: 800px;

    --t-mh: 450px;
    --p-h: 483px;
}



* {
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--cl-4);
}

h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7em;
    margin-bottom: 15px;
}

h3 {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8em;
}

p {
    font-weight: 300;
    line-height: 1.7em;
    margin-top: 20px;
}

.cost {
    color: var(--cl-4);
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 10px;
}

body {
    color: var(--cl-2);
    font-family: 'Roboto', sans-serif;
    background-color: var(--cl-5);
}

.scroll-lock {
    max-height: 100vh;
}


.loadingScreen {
    width: 100%;
    background-color: var(--cl-1);
    color: var(--cl-2);
    position: fixed;
    z-index: 10000;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: opacity 0.5s ease-out;

    height: 100vh;
    opacity: 0;

    pointer-events: none;
}

.loading {
    opacity: 1;
}

.loading h2 {
    animation: pulse 1.5s ease-in-out infinite alternate;
}

.logo {
    width: 300px;
    align-self: center;
}

.nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;

    height: 100px;

    padding: 20px;

    max-width: var(--n-w);
    margin: auto;
}

.nav-items {
    align-self: center;
    justify-self: end;
}

.blue-div {
    height: 40px;
    background-color: var(--cl-4);
}

.content-container {
    margin: auto;
    max-width: var(--c-w);
}

.info-grid {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr 300px;
    transition: padding 0.3s ease-in-out;
    padding-bottom: 100px;
}

.coloumn-left {
    /*    padding: 20px 0px;*/
    grid-column: span 1;
    grid-gap: 20px;
}

.coloumn-right {
    grid-column: span 1;
}

.bloc {
    margin-top: 15px;
    padding: 25px;
    background-color: var(--cl-1);
    border: solid 1px #e5e5e5;
    border-radius: 5px;
}

.nav-container {
    background-color: var(--cl-1);
    /*      background-color: red;*/
}

.field {
    padding: 0px 15px;
    height: 50px;
    border: solid 1px #dedede;
    border-radius: 5px;
    margin-top: 15px;

    display: grid;
    grid-template-columns: 30px 1fr;
}

.contact-title {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.icon {
    grid-column: span 1;
    align-self: center;
    margin-top: 2px;
}

.field-title {
    align-self: center;
    color: #a8a8a8;
    font-size: 15px;
}

.with-icon {
    display: grid;
    grid-template-columns: 25px 1fr;
}

.btn {
    padding: 15px;
    /*    height: 50px;*/
    /*    border: solid 1px #dedede;*/
    border-radius: 5px;
    margin-top: 15px;

    text-align: center;

    color: var(--cl-1);
    background-color: var(--cl-3);

    font-weight: 500;
}

.field-mod {
    padding: 15px;
    height: 150px;
    grid-template-columns: 1fr;
    line-height: 1.5em;

    color: #a8a8a8;
    font-size: 15px;
}

@media screen and (max-width: 730px) {
    .info-grid {

        grid-template-columns: 1fr;
    }
}


@media screen and (max-width: 1220px) {
    .info-grid {
        padding: 0px 20px;
    }

    .toggle_grid {
        margin: 0px 20px;
    }
}

.icon-2 {
    width: 18px;
}

.icon-3 {
    width: 14px;
    height: 14px;
}

.icon-1 {
    width: 14px;
    height: 16px;
}

.toggle_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
    border: solid 1px #e5e5e5;
}

.toggle {
    background-color: var(--cl-1);
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

.toggle:hover {
    background-color: #e6edf5;
}

.toggle.active {
    background-color: var(--cl-4);
    color: var(--cl-1);
}

.toggled_content-container {
    overflow: hidden;
    border-radius: 0px 0px 5px 5px;
    border: none;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    
/*
    height: 56vw;
    max-height: 560px;
*/

    height: var(--t-h);
    max-height:var(--t-mh);
    
    transition: max-height 0.2s ease, height 0.2s ease;
}

.toggled_content-container.photo {
    max-height:var(--p-h); ;
    height: var(--p-mh);
}



.toggle_content {
    position: absolute;
    display: none;
}

.toggle_content.active {
    display: block;
}
