html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
  box-sizing: border-box;
}




:root {
  --black: #000000;
  --white: #FFFFFF;
  --light-mint: #CDFAF5;
  --mint: #05E8CD;
  --teal: #02947F;
  --dark-green: #1A3232;

  --border-radius: 8px;
  --transition-duration: 300ms;
  --transition-duration-long: 500ms;
}



html, body {
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 2.15em;
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: var(--black);
  transition: all var(--transition-duration) ease-in-out;
}

img {
  max-width: 100%;
}

strong {
  font-weight: 700;
}

h2 {
  font-weight: 800;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

  h2::after {
    content: '';
    display: block;
    width: 200px;
    height: 1px;
    background-color: var(--black);
    margin: 40px auto 0 auto;
  }

  section.color--white h2::after {
    background-color: var(--white);;
  }
  

h3 {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.14em;
  letter-spacing: 0.02em;
  text-transform: uppercase;

}

.container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 88px;
  margin-left: auto;
  margin-right: auto;
}




header {
  position: sticky;
  top: 0;
  z-index: 999;

  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;

  padding: 0 32px 0 20px;
  background-color: var(--white);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

  header img.logo {
    width: 150px;
    height: 42px;
    cursor: pointer;
  }

  header .links {
    display: flex;
    gap: 40px;
    margin-left: auto;

    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  
  header .links a:hover {
    color: var(--teal);
  }

  .mobile-menu {
    display: none;
  }


#hero {
  height: 500px;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/hero.avif);
  background-position: center center;
  background-size: cover;
}

  #hero img {
    width: 700px;
  }



section {
  min-height: clamp(0px, calc(100vh - 80px), 640px);
  display: flex;
  align-items: center;
}

section.color--white {
  color: var(--white);
}

section.bg--light-mint {
  background-color: var(--light-mint);
}


section.fifty-fifty {
  align-items: stretch;
  padding: 0;
}

  section.fifty-fifty > .column {
    position: relative;
    width: 50%;
    padding: 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    overflow: hidden;
  }

  section.fifty-fifty > .column:first-child {
    padding-left: 96px;
  }
  
  section.fifty-fifty > .column:last-child {
    padding-right: 96px;
  }


    section.fifty-fifty .column h2 {
      margin-bottom: auto;
    }

      section.fifty-fifty .column h2::after {
        margin: 60px 0 calc(60px - 24px) 0;
      }

  section.fifty-fifty .column--image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-duration-long) ease-in-out;
  }
  
    section.fifty-fifty .column--image:hover::before {
      transform: scale(1.1);
    }




#about-us-1,
#about-us-2 {
  background: linear-gradient(104.94deg, #1A3232 39.47%, #02947F 100%);
}

#about-us-1 .column--image::before {
  background-image: url(../img/about-us-1.avif?v3);
}

#about-us-2 .column--image::before {
  background-image: url(../img/about-us-2.avif?v2);
}

#about-us-3 .blocks {
  display: flex;
  gap: 24px;
}

  #about-us-3 .blocks > div {
    width: 33%;
    
    color: var(--teal);    
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: 0.3em;
    text-align: center;
    text-transform: uppercase;

    background-color: rgba(256,256,256, 0.6);
    padding: 60px 24px;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-duration) ease-in-out;
  }
  
    #about-us-3 .blocks > div:hover {
      background-color: rgba(256,256,256, 1);
    }
    
    #about-us-3 .blocks .block__title {
      margin-bottom: 30px;
      font-weight: 700;
    }
    
    #about-us-3 .blocks .block__description {
      text-transform: none;
      letter-spacing: 0.1em;
    }
    
    #about-us-3 .blocks .block__description strong {
      _font-weight: 800;
    }

#about-us-3 p {
  display: block;
  max-width: 85%;
  text-align: center;
}




#cinema-1,
#cinema-2 {
  background: linear-gradient(104.94deg, #1A3232 39.47%, #02947F 100%);
}

#cinema-1 .column--image::before {
  background-image: url(../img/cinema-1.avif);
}

#cinema-2 .column--image::before {
  background-image: url(../img/cinema-2.avif);
}

#cinema-2 h3 span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-left: 16px;
  transform: translateY(-3px);
}

#cinema-2 .tags + h3 {
  margin-top: 36px;
}

#cinema-2 .tags {
  margin-top: -8px;
}

  #cinema-2 .tags span {
    display: inline-block;
    float: left;
    border-radius: var(--border-radius);
    background-color: #184942;
    padding: 8px 22px;
    margin: 0 8px 8px 0;

    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    transition: background-color var(--transition-duration) ease-in-out;
    cursor: default;
  }
  
    #cinema-2 .tags span:hover {
      background-color: #0C6D60;
    }
  




.articles {
  width: 100%;
  display: flex;
  gap: 24px;
}

  .article {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: rgba(256,256,256, 0.6);
    border-radius: var(--border-radius);
    padding-bottom: 24px;
    overflow: hidden;
    transition: background-color var(--transition-duration) ease-in-out;
  }
  
    .article:hover {
      background-color: rgba(256,256,256, 1);
    }
    
    .article__image {
      width: 100%;
      aspect-ratio: 294 / 196;
      overflow: hidden;
    }
    
      .article__image img {
        width: 100%;
        transition: transform var(--transition-duration) ease-in-out;
      }
      
        .article:hover .article__image img {
          transform: scale(1.1);
        }

    .article__title {
      padding: 8px 16px;
      font-size: 14px;
      line-height: 1.7em;
      font-weight: 700;
      text-align: center;
      text-transform: uppercase;
    }
    
    .article__lead {
      padding: 0 16px 32px 16px;
      letter-spacing: 0.02em;
      text-align: center;
    }
    
    .article__button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 190px;
      height: 42px;
      background-color: var(--dark-green);
      border: 0;
      border-radius: var(--border-radius);
      margin: auto auto 0 auto;

      color: var(--white);
      font-size: 14px;
      letter-spacing: 0;
      transition: all var(--transition-duration) ease-in-out;
      cursor: pointer;
    }

      .article:hover .article__button {
        background-color: #07E7CE;
        color: var(--black);
      }
    
    
    

#facts {
  width: 100%;
  background: linear-gradient(147.8deg, #1A3232 32.63%, #13524B 102.42%);
}

.facts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
  
  .fact {
    position: relative;
    width: calc(100% / 3 - 16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 16px;
    border-radius: var(--border-radius);
    padding: 50px 24px;
    overflow: hidden;
    
  }

    .fact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(0deg, #1A3232 0%, #02947F 100%);
      border-radius: var(--border-radius);
      z-index: 1;
      opacity: 1;
      transition: opacity var(--transition-duration) ease-in-out;
    }
    
      .fact:hover::before {
        opacity: 0;
      }
  
    .fact::after {
      content: '';
      position: absolute;
      top: 1px;
      left: 1px;
      right: 1px;
      bottom: 1px;
      background-color: #122323;
      border-radius: var(--border-radius);
      z-index: 2;
    }
    
    .fact > * {
      z-index: 3;
    }
    
    .fact__icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--mint);
      border-radius: 100%;
    }
  
      .fact__icon img {
        max-width: 29px;
        max-height: 29px; 
      }
      
    .fact__title {
      color: var(--mint);
      font-size: 16px;
      line-height: 1.5em;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
    }



#contact img {
  max-width: 150px;
  border-radius: 50%;
}

#contact p {
  margin-top: -15px;
  font-size: 16px;
  line-height: 1.6em;
  letter-spacing: 0.02em;
  text-align: center;
}

  #contact p strong {
    font-size: 28px;
    line-height: 2em;
    padding-bottom: 10px;
  }




footer {
  background-color: var(--dark-green);
  color: var(--white);
}

  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
    footer img.logo {
      max-width: 300px;
      cursor: pointer;
    }
  
    footer a {
      color: var(--white);
    }


.copyright {
  background-color: var(--black);
  color: var(--white);
  font-size: 10px;
}

  .copyright .container {
    height: 40px;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  
    .copyright a {
      color: var(--white);
    }



.only-mobile {
  display: none;
}


/* Mobil */
@media only screen and (max-width: 900px) {

.only-desktop {
  display: none;
}

.only-mobile {
  display: block;
}


.container {
  padding: 40px 24px;
  gap: 24px;
}

h2 {
  font-size: 36px;
}

  .container h2 {
    text-align: center;
    margin-bottom: 16px;
  }

h3 {
  font-size: 28px;
}

section.fifty-fifty h3 {
  font-size: 24px;
  line-height: 1.3em;
}

header {
  height: 60px;
  padding: 0 24px;
}

  header img.logo {
    width: 120px;
    height: 33px;
  }
  
  header .links {
    display: none;
  }
  
  header .mobile-menu-icon {
    position: relative;
    width: 20px;
    height: 12px;
    margin-left: auto;
    z-index: 1001;
    cursor: pointer;
  }
  
    header .mobile-menu-icon span {
      display: block;
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background-color: var(--black);
      opacity: 1;
      transition: all var(--transition-duration) ease-in-out;
    }
    
      header .mobile-menu-icon span:nth-child(2) {
        margin-top: 3px;
      }
      header .mobile-menu-icon span:nth-child(3) {
        margin-top: 3px;
      }
      
      header .mobile-menu-icon.opened span:nth-child(1) {
        transform: rotate(-45deg) translateY(-3px);
        transform-origin: top right;
      }
      
      header .mobile-menu-icon.opened span:nth-child(2) {
        opacity: 0;
      }
      
      header .mobile-menu-icon.opened span:nth-child(3) {
        transform: rotate(45deg) translate(1px, 2px);
        transform-origin: top right;
      }

  .mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    
    margin-top: -100vh;
    background-color: var(--light-mint);
    opacity: 1 !important;
    transition: margin-top var(--transition-duration) ease-in-out;
    
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 16px;
  }

    body.menu-opened .mobile-menu {
      margin-top: 0;
    }
    
    .mobile-menu .logo {
      width: 200px;
      height: 56px;
      margin-top: 32px;
    }


#hero {
  height: 300px;
}

  #hero img {
    width: 250px;
  }


section .column {
  min-height: 375px;
}

section.fifty-fifty {
  flex-direction: column;
}

  section.fifty-fifty > .column {
    width: 100%;
    padding: 40px 24px !important;
  }

    section.fifty-fifty .column h2::after {
      margin: 40px 0 calc(40px - 24px) 0;
    }


#about-us-2 {
  flex-direction: column-reverse;
}

#about-us-3 h3 {
  margin-right: auto;
}

#about-us-3 .blocks {
  flex-direction: column;
}

  #about-us-3 .blocks > div {
    width: 100%;
    padding: 24px;
  }
  
  #about-us-3 p {
    max-width: 100%;
    text-align: left;
  }


#cinema-2 {
  flex-direction: column-reverse;
  /*background: linear-gradient(163.7deg, #1A3232 51.88%, #12524B 100%);*/
  background: #1A3232;
}

  #cinema-2 h3 span {
    margin-left: 0;
    margin-top: 8px;
  }
  
  #cinema-2 .tags span {
    padding: 4px 16px;
  }

.articles {
  flex-direction: column;
}

  .article {
    width: 100%;
  }


.facts {
  flex-direction: column;
}

  .fact {
    width: 100%;
  }


footer .container {
  flex-direction: column;
  align-items: center;
}

  footer .column {
    text-align: center;
  }

  footer .logo {
    width: 200px;
  }

}
/* -- Mobil */

