@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;

    scrollbar-width: thin;
    scrollbar-color: #B8C0C2 #373a40;

    font-size: calc(15px + 0.390625vw);
}

body {
    background-color: #1a1b1e;
}

:root {
    --padding-left-right: 200px;
    --news-padding-top: 150px;
    --h1-font-size: 100px;
    --h1-line-height: 90px;
    --h2-font-size: 55px;
    --h3-font-size: 20px;
    --h4-font-size: 18px;
    --h5-font-size: 28px;
    --h6-font-size: 14px;
}


h1 {
    font-size: var(--h1-font-size);
    font-weight: 800;
    line-height: var(--h1-line-height);
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 8px;
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: 800;
    text-transform: uppercase;
}

h3 {
    font-size: var(--h3-font-size);
    font-weight: 400;
    margin-top: 8px;
    margin-bottom: 8px;
}

h4 {
    font-size: var(--h4-font-size);
    font-weight: 400;
    margin-top: 8px;
    margin-bottom: 8px;
}

h5 {
    font-size: var(--h5-font-size);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 8px;
}

h6 {
    font-size: var(--h6-font-size);
    font-weight: 400;
    margin-top: 8px;
    margin-bottom: 8px;
}
  
  
  /* Chrome, Edge and Safari */
  *::-webkit-scrollbar {
    height: 10px;
    width: 0.5vh;
  }
  *::-webkit-scrollbar-track {
    background-color: #373a40;
  }
  
  *::-webkit-scrollbar-track:active {
    background-color: #373a40;
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: #B8C0C2;
  }
  
  *::-webkit-scrollbar-thumb:hover {
    background-color: #B8C0C2;
  }
  
  *::-webkit-scrollbar-thumb:active {
    background-color: #B8C0C2;
  }
 
li,a,button {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #dee2e6;
    text-decoration: none;
}

header
{
    position: fixed;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    width: 100%;
    background-color: rgba(26, 27, 30, 0);
    transition: all 0.25s ease-out;
    backdrop-filter: blur(0px);
}

.header-mobile {
    position: fixed;
    display: none;
    top: 0;
    width: 100%;
    height: auto;
    background-color: rgba(26, 27, 30, 1);
    padding: 2vh;
    color: #dee2e6;
    z-index: 300;
}

.header-mobile-navi {
    display: inline;
    vertical-align: middle;
    font-size: 2vh;
    z-index: 400;
}

.header-mobile-navi-logo {
    position: absolute;
    cursor: pointer;
    height: 1.6vh;
    text-align: center;
    vertical-align: middle;
    text-align: center;
    justify-content: center;
    margin: auto;
    justify-items: center;
    left: calc(50% - 2.4vh);
}

.header-mobile-navi-box {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 27, 30, 0.8);
    margin: auto;
    z-index: 500;
    backdrop-filter: blur(20px);
    line-height: 200px;
}

.header-mobile-navi-box-links {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    width: auto;
    height: auto;
}
 
.logo
{
    cursor: pointer;
    height: 3vh;
}
 
.nav__links {
    list-style: none;
}
 
.nav__links li {
 
    display: inline-block;
    padding: 0px 20px;
}
 
.nav__links li a {
    transition: all 0.25s ease-out;
    color: #dee2e6;
    font-size: 16px;
}
 
.nav__links li a:hover {
    color: rgba(92,124,250,1);
}
 
button
{
    padding: 9px 25px;
    background-color: rgb(26, 27, 30);
    opacity: 0.949;
    border: none;
    border-radius: 2vh;
    cursor: pointer;
    transition: all 0.25s ease-out;
}

button:hover {
    -webkit-box-shadow:0px 0px 15px 0px rgba(92, 124, 250, 0.5);
	-moz-box-shadow: 0px 0px 15px 0px rgba(92,124,250,0.5);
	box-shadow: 0px 0px 15px 0px rgba(92,124,250,0.5);
  }


  @media only screen and (max-width: 1080px) {
    header {
      display: none;
    }
  
    .header-mobile {
      display: block;
    }

    :root {
        --padding-left-right: 100px;
        --news-padding-top: 200px;
        --h1-font-size: 120px;
        --h1-line-height: 120px;
        --h3-font-size: 35px;
        --h2-font-size: 55px;
        --h4-font-size: 30px;
        --h6-font-size: 25px;
        --h5-font-size: 35px;
    }
  }
  

.hero {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: red;
    align-items: center;
    align-content: center;
}

.hero::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: -moz-linear-gradient( -45deg, rgb(55,58,64) 0%, rgb(37, 38, 43) 100%);
	background-image: -webkit-linear-gradient( -45deg, rgb(55,58,64) 0%, rgb(37,38,43) 100%);
	background-image: -ms-linear-gradient( -45deg, rgb(55,58,64) 0%, rgb(37,38,43) 100%);
    opacity: 0.902;
  }

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }


.hero-info-box {
    position: absolute;
    height: auto;
    width: auto;
    z-index: 200;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #dee2e6;
}

.hero-title {
    font-size: 100px;
    font-weight: 800;
    line-height: 90px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 25px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 25px;
    margin-bottom: 25px;
    letter-spacing: 5px;
}

.hero-button {
    position: fixed;
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 400;
    backdrop-filter: blur(5px);
    border: 2px solid #dee2e6;
    color: #dee2e6;
    width: auto;
    height: auto;
    padding: 12px;
    border-radius: 10px;
    padding-left: 25px;
    padding-right: 25px;
}

.check-more {
    position: absolute;
    bottom: 10vh;
    text-align: center;
    color: #dee2e6;
    z-index: 200;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3vh;

    -webkit-animation-name: checkAnim;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
}

.check-more-icon {
    font-size: 30px;
}


@keyframes checkAnim {
    0% {
    }
    5%,25% {
        bottom: 7.5vh;
    }
    15%,35% {
        bottom: 9.5vh;
    }
    40% {
        bottom: 10vh;
  }
}

.content {
    width: 100%;
    height: auto;
    background-color: #B8C0C2;
    padding: 6vh;
}



.grid-container {
    display: grid;
}

.grid-container--fit {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    row-gap: 2vh;
    column-gap: 2vh;
}


.info-box {
    background-color: #1a1b1e;
    text-align: center;
    color: #B8C0C2;
}

.info-box-icon {
    font-size: 6rem;
    padding: 3vh;
    text-align: center;
}

.info-box-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.info-box-description {
    font-size: 0.8rem;
    margin: 3vh;
}


.content2 {
    width: 100%;
    height: auto;
    background-color: #373a40;
}

.gallery-container--fit {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0vh;
    column-gap: 0vh;
}

.gallery-box {
    width: auto;
    height: 350px;
    background-size: cover;
    background-position: center;
    filter: grayscale(60%);
    background-color: transparent;
    transition: all 0.25s ease-out;
}

.gallery-box:hover {
    filter: grayscale(0%);
}

.fullscreen-image-bg {
    position: fixed;
    display: none;
    width: auto;
    height: auto;
    top: 0; left: 0; bottom: 0; right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(1vh);
    z-index: 8888;
}

.fullscreen-image {
    position: absolute;
    width: auto;
    height: auto;
    margin: 4vh;
    top: 0; left: 0; bottom: 0; right: 0;
    background-image: url(../img/JA4ITOe.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 9999;
}





.about-us {
    width: 100%;
    height: auto;
    background-color: #B8C0C2;
    padding: 50px;
    padding-left: var(--padding-left-right);
    padding-right: var(--padding-left-right);
    text-align: center;
    align-self: center;
    align-items: center;
    align-content: center;
}

.about-us-container--fit {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    row-gap: 15px;
    column-gap: 25px;
}

.about-us-box-image {
    width: auto;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: transparent;
    transition: all 0.25s ease-out;
}

.about-us-box {
    width: auto;
    height: auto;
    vertical-align: middle;
    text-align: center;
    display: grid;
	align-items: center;
}

.page {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 15px;
}

.title {
    font-size: 55px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.description {
    font-size: 18px;
    font-weight: 400;
}

.extra {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 15px;
}


.latest-news {
    width: 100%;
    height: auto;
    background-color: #B8C0C2;
    padding: 50px;
    padding-left: var(--padding-left-right);
    padding-right: var(--padding-left-right);
}

.page-title {
    text-align: center;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.page-description {
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
}

.latest-news-container--fit {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    row-gap: 100px;
    column-gap: 25px;
}

.latest-news-box {
    width: auto;
    height: auto;
    text-align: left;
}

.latest-news-photo {
    width: 100%;
    height: 350px;
    background-repeat: no-repeat;
    background-position: center;
}

.latest-news-category {
    font-size: 16px;
    font-weight: 300;
    margin-top: 15px;
    margin-bottom: 15px;
}

.latest-news-title {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}

.latest-news-description {
    font-size: 16px;
    font-weight: 300;
    margin-top: 15px;
    margin-bottom: 15px;
}

.latest-news-read-more {
    font-size: 18px;
    font-weight: 600;
    color: #373a40;
}

.more a:link, .more a:visited {
    color: #373a40;
    font-size: var(--h4-font-size);
    font-weight: 600;
    transition: all 0.25s ease-out;
}

.more a:hover, .more a:active {
    color: rgba(92,124,250,1);
}


.news {
    width: 100%;
    height: auto;
    background-color: #B8C0C2;
    color: #373a40;
    padding: 50px;
    padding-top: var(--news-padding-top);
    padding-left: var(--padding-left-right);
    padding-right: var(--padding-left-right);
}

.news-photo {
    width: auto;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: transparent;
}

.news-category {
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.news-title {
    font-size: 100px;
    font-weight: 1000;
    text-transform: uppercase;
    line-height: 90px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.news-date {
    font-size: 14px;
    font-weight: 400;
}

.news-description {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
}