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

html {
    font-size: 62.5%;
    overflow-x: hidden;
} 

@font-face {
    font-family: regular;
    src: url("fonts/Futura-Round-URW-Type-Foundry/OTF/FuturaRound-Regular.otf") format("opentype");
}

body {
    font-family: regular;
}




/* --------------TRANSLATE--------------- */

.translate {
    padding: 1.2rem 2.4rem;
}

.translate-box {
    margin: 0 auto;
}

.translate-container {
    display: flex;
    justify-content: flex-end;
}

.translate-link {
    text-decoration: none;
    font-size: 2.4rem;
    color:#777;
    justify-self: flex-end;
    border-bottom: 3px solid #555;
}


/* --------------HERO--------------- */

.hero {
    padding: 4.8rem 2.4rem;
}

.hero-box {
    margin: 0 auto;
    max-width: 140rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-name {
    margin-top: -0.78rem;
}

.hero-header {
    font-size: 6rem;
    color: #333;
    letter-spacing: 0.74px;
}

.hero-caption {
    font-size:3.6rem;
    color: #555;
}

.hero-img {
    width: 75rem;
    border-radius: 50%;
}  

.hero-mob-img {
    display: none;
}

.hero-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-text-box {
    margin-bottom: 9.6rem;
}

.hero-text {
    font-size: 6rem;
    color: #555;
    font-weight: bold;
}


/* --------------NAV-HOME-------------- */

.nav-home {
    padding: 0rem 2.4rem;
}

.nav-home-box {
    margin: 0 auto;
    max-width: 140rem;
}

.nav-home-container {
    display: flex;
    gap: 9.6rem;
    padding-top: 2.4rem;
}

.nav-home-link {
    font-size: 3.6rem;
    text-decoration: none;
    color: #777;
    transition: all 0.3s;
}

.nav-home-link:hover {
    color: #333;
}

.nav-home-special {
    
    color: #444;
}


/* --------------NAV--------------- */



.nav {
    padding: 4.8rem 1.2rem;
}

.nav-box {
    margin: 0 auto;
    max-width: 140rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    gap: 9.6rem
}

.logo-name {
    text-decoration: none;
}

.logo-header {
    font-size: 4.8rem;
    color: #333;
}

.logo-caption {
    font-size: 2.4rem;
    color: #555;
}

.nav-bar {
    display: flex;
    gap: 3.6rem;
}

.nav-link {
    font-size: 3.6rem;
    text-decoration: none;
    color: #777;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #333;
}

.nav-special {
    
    color: #444;
}


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



.gallery {
    padding: 9.6rem 1.2rem;
}

.gallery-box {
    margin: 0 auto;
    max-width: 120rem;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.gallery-container {
    column-count: 3;
}

.gallery-img {
    width: 100%;
}


/* .gallery-container-one {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    column-gap: 2.4rem;
}

.gallery-container-two {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    column-gap: 2.4rem;
}

.gallery-container-three {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    column-gap: 2.4rem;
} */


/* Style the Image Used to Trigger the Modal */
#myImg,
#myImg2,
#myImg3,
#myImg4,
#myImg5,
#myImg6,
#myImg7,
#myImg8,
#myImg9,
#myImg10,
#myImg11,
#myImg12,
#myImg13,
#myImg14 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  #myImg:hover,
  #myImg2:hover,
  #myImg3:hover,
  #myImg4:hover,
  #myImg5:hover,
  #myImg6:hover,
  #myImg7:hover,
  #myImg8:hover,
  #myImg9:hover,
  #myImg10:hover,
  #myImg11:hover,
  #myImg12:hover,
  #myImg13:hover,
  #myImg14:hover {opacity: 0.7;}


  
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 2.4rem; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (Image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }



/* --------------CTA--------------- */



.cta {
    padding: 9.6rem 1.2rem;
}

.cta-box {
    margin: 0 auto;
    max-width: 120rem;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 4.8rem;
}

.cta-img {
    width: 80%;
    border-radius: 50%;
}

.cta-text-box {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    justify-content: space-between;
}

.cta-links {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.cta-header {
    font-size: 4.8rem;
    color: #333;
}

.cta-text {
    font-size: 2.4rem;
    color: #777;
}

.cta-link {
    font-size: 2.4rem;
    text-decoration: none;
    color: #555;
}