.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: 80px;
    background-color: #ffffff;
    box-shadow: 0 2px 11px 2px #00000036;
    container-type: inline-size;
    z-index: 10;
}
.nav-logo {
    display: flex;
    /* flex-direction: column;
    justify-content: center; */
    flex-wrap: nowrap;
    align-items: center;
    height: 100%;
    padding: 10px 50px;
    color: #ffffff;
    background-color: #015093;
    gap: 10px;
}
.nav-logo > img {
    max-width: 4.5cqw;
    max-height: 80%;
    object-fit: cover;
}
@media(max-width: 900px) {
    .nav-logo {
        padding: 10px 60px 10px 30px;
    }
}
.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    transition: 0.5s;
}
.mobile-bars {
    width: 80px;
    height: 80px;
    padding: 25px;
}
.mobile-bars > img {
    width: 100%;
    object-fit: cover;
}
.nav-item-container {
    position: absolute;
    top: 70px;
    right: 10px;
    display: none;
    visibility: hidden;
    opacity: 0;
    max-width: 100vw;
    background-color: #ffffff;
    padding: 20px;    
    box-shadow: -5px 5px 11px 0px #00000038;
}
.mobile-menu:hover > .nav-item-container {
    display: block;
    visibility: visible;
    opacity: 1;
}
@media (max-width: 900px){
    .nav-logo {
        width: 100%;
    }
    .nav-logo > img {
        max-width: 8cqw;        
        max-height: 80%;
        object-fit: cover;
    }
    .mobile-menu {
        display: flex;
        flex-direction: column;
        align-items: end;
        visibility: visible;
        opacity: 1;
    }
}
.nav-info-conteiner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
    padding: 10px 20px;
    color: #000;
    text-align: left;
}
.img-container {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 5px;
    gap: 5px;
}
.grayscale-img {
    display: flex;
    align-items: center;
    filter: grayscale(1);
}
.grayscale-img:hover {
    filter: grayscale(0);
    cursor: pointer;
}
.grayscale-img > img {
    max-width: 30px;
    object-fit: cover;
}

/* HEADER */
.header {
    display: flex;
    align-items: unset;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(#007acf, #00355b);
    padding: 0;
}
.header-light {
    display: flex;
    align-items: unset;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(#ffffff, #85ccff);
    padding: 0;
}
.header-content-container {
    position: relative;
    top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    width: 100%;
    height: 80%;
    background-image: url(../img/image_33.webp);
    background-repeat: no-repeat;
    background-size: 60%;
    background-position:  center right;
}
.header-content-container-light {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    }
@media (max-width: 1200px){
    .header-content-container-light {
        background-size: 80%;
        background-position:  center right;
    }
}
@media (max-width: 900px){
    .header-content-container-light {
        justify-content: start;
        padding-top: 100px;
    }
}
.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.header-bg > img {
    position: absolute;
    width: 100%;
    height: inherit;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}
.header-img {
    width: 50%;
    height: 50%;
    margin-top: 200px;
    overflow: hidden;
    z-index: 2;
}
.header-img > img {
    height: 100%;
    object-fit: cover;
}
@media (max-width: 900px){
    .header-bg {
        justify-content: center;
    }
    .header-img {
        width: 100%;
    }
}
.header-h2 {
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
    font-size: 2rem;
}
.header-h1 {
    text-transform: uppercase;
    margin: 0;
    /* font-weight: 500; */
    font-size: 3.5rem;
}
@media (max-width: 900px){
    .header-h1 {
        font-size: 3rem;
    }
}
@media (max-width: 625px){
    .header-h1 {
        font-size: 2.7rem;
    }
}
@media (max-width: 450px){
    .header-h1 {
        font-size: 1.8rem;
    }
    .header-h2 {
        font-size: 1.3rem;
    }
}
@media (max-width: 375px){
    .header-h1 {
        font-size: 1.68rem;
    }
}
.header-info-container {
    display: flex;
    flex-direction: column;
    width: 1400px;
    padding: 50px 0;
    gap: 30px;
    color: #000;
    z-index: 1;
}
@media (max-width: 1400px){
    .header-info-container {
        width: 100%;
        padding: 50px;
    }
}
@media (max-width: 900px){
    .header-info-container {
        padding: 30px;
    }
}

@media (max-width: 450px){
    .header-info-container {
        padding: 30px;
    }
}
@media (max-width: 375px){
    .header-info-container {
        padding: 20px;
    }
}

.section-header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
@media (max-width: 500px){
    .section-header {
        margin-bottom: 40px;
    }
}
.adv-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 18.4%;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}
@media (max-width: 1400px){
    .adv-item {
        width: 32%;
    }
}
@media (max-width: 1100px){
    .adv-item {
        width: 49%;
    }
}

@media (max-width: 650px){
    .adv-item {
        width: 100%;
        height: fit-content;
    }
}
.adv-img {
    width: 100%;
    height: 200px;
}
.adv-img > img {
    width: inherit;
    height: 100%;
    object-fit: cover;
}
.adv-text {
    width: 100%;
    height: 200px;  
    padding: 20px;
    background-color: #015093;
}
@media (max-width: 650px){
    .adv-text {
        height: fit-content;
    }
}
/* SELL */
.sell-step-item {
    position: relative;
    display: flex;
    flex-direction: column;    
    justify-content: space-between;
    width: 21.25%;    
    min-height: 200px;
    padding: 20px;
    background-color: #ffffff;
    color: #001120;
    box-shadow: 1px 6px 11px #00000047;
}
.step-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #005591;
}
.step-num-big {
    position: absolute;
    top: -60px;
    left: -50px;
    font-size: 200px;
    color: #ffffff70;
    z-index: 0;
}
.sell-step-item > h4 {
    text-transform: uppercase;
    margin: 0;
    padding-right: 50px;
    font-weight: 500;
    font-size: 1.2rem;
    z-index: 1;
}
.sell-step-item > p {
    z-index: 1;
}

@media (max-width: 1300px) {
    .sell-step-item {
        width: 42.5%;
        margin-bottom: 50px;
    }
}
@media (max-width: 650px) {
    .sell-step-item {
        width: 100%;        
        min-height: 150px;
        margin-bottom: 20px;
    }
    .step-num-big {
        display: none;
    }
}

.assessment-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #d1f1ff;
    padding: 30px;
}
.ass-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 950px){
    .ass-img {
        display: none;
    }
}

/* carousel */
.gallery-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 900px;
  padding-top: 150px;
}
@media (max-width: 1000px){
    .gallery-1 {
        display: none;
    }
}
.gallery-2 {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 900px;
  padding-top: 150px;
}
@media (max-width: 1000px){
    .gallery-2 {
        display: flex;
    }
}
@media (max-width: 635px){
    .gallery-2 {
        display: none;
    }
}
.gallery-3 {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 900px;
}
@media (max-width: 635px){
    .gallery-3 {
        display: flex;
        height: fit-content;
    }
}
.gallery-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5px;
  margin-top: 20px;
}
.gallery-buttons > a {
  display: flex;
  width: 20px;
  height: 20px;
  transition: 0.5s;
}
.gallery-buttons > a > img {
  width: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.gallery-buttons > a:hover > img {
    transform: scale(110%);
    opacity: 1;
}
.gallery-buttons > a:focus > img {
    transform: scale(110%);
    opacity: 1;
}
.gallery-buttons > a:active > img {
    transform: scale(110%);
    opacity: 1;
}
@media (max-width: 635px){
    .gallery-buttons {
        display: none;
    }
}
.photos {
    display: flex;
    justify-content: center;
  width: 100%;
  max-width: 1400px;
  height: 800px;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;    
}
@media (max-width: 1000px){
    .photos {
        display: unset;
        justify-content: unset;
        width: 88vw;
    }
}
@media (max-width: 635px){
    .photos {
        height: fit-content;
        overflow-x: scroll;
    }
}
.photos-container {
  display: flex;
  flex-wrap: nowrap;
  width: fit-content;
  gap: 30px;
}
.photos-container > div {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 90vw;
    max-width: 1400px;
    height: fit-content;
    overflow: hidden;
    gap: 2%;
}
@media (max-width: 1000px){
    .photos-container > div {        
        width: 88vw;
        gap: 4%;
    }
}
@media (max-width: 635px){
    .photos-container > div {   
        gap: unset;
    }
}
@media (max-height: 700px){
    .photos-container > div {
        padding-top: 90px;
    }
}

.expl-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
 .expl-card {
    width: 32%;
    height: fit-content;
    margin-bottom: 25px;
 }
 @media (max-width: 1000px){
    .expl-card {
        width: 48%;
    }
    .expl-container {
        gap: 4%;
    }
}
@media (max-width: 635px){
    .expl-card {
        width: 100%;
    }
    .expl-container {
        gap: unset;
    }
}
 .card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
 }
  .card-img > img {
    width: 100%;
    height: inherit;
    object-fit: cover;
  }
  .card-text {
    width: 100%;
    padding: 10px;
    padding-bottom: 20px;
    background-color: #fff;
    color: #000;
    text-align: center;
  }
  .card-text > h3 {
    text-transform: uppercase;
    margin: 0;
  }
  .card-text > p {
    margin: 0;
  }
@media (max-width: 1400px){
    .card-text {

    }
}
@media (max-width: 1200px){
    .card-text {

    }
}
@media (max-width: 700px){
    .card-text {

    }
}
@media (max-width: 635px){
    .card-text {
        height: unset;
    }
}
@media (max-height: 700px){
    .card-img {
        height: 150px;
    }
    .card-text {
        height: unset;
    }    
    .card-text > p {
        font-size: 10px;
    }
}
/* DOCUMENTS */
.document-item {
    position: relative;
    display: flex;
    flex-direction: column;    
    justify-content: space-between;
    width: 21.25%;    
    min-height: 200px;
    padding: 20px;
    background-color: #015093;
    color: #ffffff;
    z-index: 1;
}
.document-pic {
    position: absolute;
    top: 15px;
    right: 20px;
    height: 30px;
    z-index: 2;
}
.document-pic > img {
    height: 100%;
    object-fit: cover;
}
.doc-img-bg {
    /* background-image: url(../img/doc-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%; */
}
.doc-img-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/doc-img.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0; 
}
.doc-img-bg > img {
    width: 100%;
    height: inherit;
    object-fit: cover;
}

.document-item > h4 {
    text-transform: uppercase;
    margin: 0;
    font-weight: 500;
    font-size: 1.2rem;
    z-index: 1;
}
.document-item > p {
    z-index: 1;
}

@media (max-width: 1300px) {
    .document-item {
        width: 42.5%;
        margin-bottom: 50px;
    }
}
@media (max-width: 650px) {
    .document-item {
        width: 100%;
        margin-bottom: 20px;
        min-height: 150px;
    }
}
.footer-logo {
    display: flex;
    width: 20%;
    align-items: center;
}
.footer-logo > img {
    width: 100%;
    object-fit: cover;
}

/* MODAL */
.dialog {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: unset;
    max-width: unset;
    height: unset;
    max-height: unset;
    align-items: center;
    border: 0;
    padding: 0;
    background: #00000069;
    z-index: 11;
}
.dialog-container {
    position: relative;
    display: grid;
    height: 100%;
    width: 100%;
    overflow-x: unset;
    /* overflow-y: scroll; */
}
.closed-dialog {
    position: absolute;
    top: -70px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    min-width: 64px;
    padding: 20px;
    border: unset;
    font-size: 18px;
    background-color: #fff;
    z-index: 25;
}
.closed-dialog:hover {
    background-color: #fff;
}
.closed-dialog-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: unset;
    border: unset;
    cursor: default;
    z-index: 1;
}
.modal-window {
    position: relative;
    justify-self: center;
    min-width: 50%;
    max-width: 800px;
    max-height: 80%;
    height: fit-content;
    background-color: #fff;
    color: #444;
    padding: 20px;
    margin: 10px;
    text-decoration: none;
    z-index: 2;
}

.promo-button-cont {
margin-top: 35px;
}

.promo-button-cont a {
font-weight: 900;
display: inline-block;
padding: 18px 30px;
background-color: #ff0000;
color: #fff;
font-size: 24px;
text-transform: uppercase;
}

@media (max-width: 650px) {

.promo-button-cont {
margin-top: 20px;
}

.promo-button-cont a {
display: block;
padding: 18px 0px;
text-align: center;
font-size: 18px;
}

}

.expl-price {
display: block;
text-align: center;
font-family: "Roboto Condensed", sans-serif;
font-weight: 900;
color: #015093;
font-size: 2em !important;
padding-top: 12px;
}

.expl-container {
flex-direction: row;
}

.expl-card {
height: auto !important;
display: flex;
flex-direction: column;
background-color: #fff;
}

.card-text {
display: flex;
flex-direction: column;
}

.expl-descr {
flex-grow: 1;
}













