*{
  box-sizing: border-box;
}
/*
html{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
}
*/
body{
  font-family: 'Cuprum', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/home-bg-1920.jpg);
  background-position: top left;
  background-size: cover;
}


.hidden{
  display: none;
}

.visible-mobile {
  display: none;
}

nav{
  padding: 8px;
}

.logo{
  float: left;
  padding: 8px;
  margin-left: 9%;
  margin-top: 8px;
  position: relative;

  animation-name: drop;
  animation-duration: .9s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

@keyframes drop {
  0%{opacity: 0; margin-top: -8px;}
  25%{opacity: 0; margin-top: -8px;}
  100%{opacity: 1; margin-top: 8px;}
}

.logo a{
  color: #49abbf;
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 2px;
  text-decoration: none;
}

nav ul{
  float: right;
  margin-right: 5%;
}
nav ul li{
  display: inline-block;
  float: left;
  padding: 10px 0 0 40px;
}
nav ul li a{
  color: #49abbf;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 18px;
  letter-spacing: 1px;
  transition: all .3s ease;

  animation-name: expand_menu;
  animation-duration: .9s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
nav ul li a:hover{
  color: #fff;
}

@keyframes expand_menu {
  0%{opacity: 0; margin-right: -15%;}
  25%{opacity: 0; margin-right: -15%;}
  100%{opacity: 1; margin-right: 5%;}
}

.container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
  /* border-style: solid;
  border-color: rgba(255, 255, 255, 0.38);
  border-width: 2px; */
}

/* .container {
  width: 80%;
  margin: 0 auto; 
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.38);
  border-width: 2px;
} */

/* .keywords {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 50%;
  margin-bottom: 50%;
} */

.keywords {
	width: 100%;
  margin: 0 auto; /* centers the container horizontally */
  display: flex;
  justify-content: center; /* centers the text horizontally */
  align-items: center; /* centers the text vertically */
}

.keywords span {
	margin: 0 30px;
	/* font-size: 72px; */
	/* font-weight: bold; */
  font-size: 5vw; /* adjusts font size based on viewport width */
  text-align: center; /* centers the text horizontally within the container */
  color: #c7d9dd;
  text-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.keywords a {
	margin: 0 30px;
	/* font-size: 72px; */
	/* font-weight: bold; */
  text-decoration: none;
  font-size: 5vw; /* adjusts font size based on viewport width */
  text-align: center; /* centers the text horizontally within the container */
  color: #c7d9dd;
  text-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.container_home_right{
  float: right;
  position: fixed;
  top: 16%;
  right: 5%;
  width: 73%;
  height: 70%;
}
.container_home_right img{
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;

  animation-name: expand_keywords;
  animation-duration: .9s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

@keyframes expand_keywords {
  0%{opacity: 0; margin-top: 8%;}
  25%{opacity: 0; margin-top: 8%;}
  100%{opacity: 1; margin-top: 0;}
}

.container_home_left{
  float: left;
  position: fixed;
  top: 30%;
  left: 9%;
  width: 22%;
  height: 18%;
}
.container_home_left img{
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;

  animation-name: expand_slogan;
  animation-duration: .9s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

@keyframes expand_slogan {
  0%{opacity: 0; margin-left: 22%;}
  25%{opacity: 0; margin-left: 22%;}
  100%{opacity: 1; margin-left: 0;}
}

img{
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

@media screen and (max-width: 1024px){
  .container_home_right{
    top: 20%;
  }
  .container_home_left{
    top: 30%;
  }
}

@media screen and (max-width: 864px){
  .logo{
    padding: 0;
    position: fixed;
  }
  .nav-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #fff;
    opacity: 0;
    transition: all 0.2s ease;
  }
  .nav-wrapper ul{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
  .nav-wrapper ul li{
    display: block;
    float: none;
    width: 100%;
    text-align: right;
    margin-bottom: 10px;
  }
  .nav-wrapper ul li:nth-child(1) a{
    transition-delay: 0.05s;
  }
  .nav-wrapper ul li:nth-child(2) a{
    transition-delay: 0.1s;
  }
  .nav-wrapper ul li:nth-child(3) a{
    transition-delay: 0.18s;
  }
  .nav-wrapper ul li:nth-child(4) a{
    transition-delay: 0.3s;
  }
  .nav-wrapper ul li:not(:first-child){
    margin-left: 0;
  }
  .nav-wrapper ul li a{
    padding: 10px 24px;
    opacity: 0;
    color: grey;
    font-size: 18px;
    letter-spacing: 1px;
    transform: translateX(-20px);
    transition: all 0.2s ease;
  }

  .nav-btn{
    position: fixed;
    right: 15px;
    top: 15px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
  }
  .nav-btn i{
    display: block;
    height: 2px;
    background: #49abbf;
    border-radius: 2px;
    margin-left: 14px;
  }
  .nav-btn i:nth-child(1){
    margin-top: 16px;
    width: 24px;
  }
  .nav-btn i:nth-child(2){
    margin-top: 6px;
    opacity: 1;
    width: 20px;
  }
  .nav-btn i:nth-child(3){
    margin-top: 6px;
    width: 24px;
  }
  #nav:checked + .nav-btn{
    transform: rotate(45deg);
  }
  #nav:checked + .nav-btn i{
    background: grey;
    transition: transform 0.2s ease;
  }
  #nav:checked + .nav-btn i:nth-child(1){
    transform: translateY(8px) rotate(180deg);
  }
  #nav:checked + .nav-btn i:nth-child(2){
    opacity: 0;
  }
  #nav:checked + .nav-btn i:nth-child(3){
    transform: translateY(-8px) rotate(90deg);
  }
  #nav:checked ~ .nav-wrapper{
    z-index: 1;
    opacity: .95;
  }
  #nav:checked ~ .nav-wrapper ul li a{
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 480px){
  body{
    background: url(../img/home-bg-1024.jpg);
  }
  .logo{
    margin-left: 5%;
  }
  .container_home_left{
    left: 7%;
    top: 20%;
    width: 50%;
  }
  .container_home_right{
    width: 80%;
    top: 38%;
  }
  .keywords span {
    margin: 0 10px;
    font-size: 7vw;
  }
  .visible-mobile{
    display: block;
  }
  .hidden-mobile{
    display: none;
  }

}
