@import url("https://fonts.googleapis.com/css?family=Exo:400,700");

:root {
    --split-left: #fae9b8;
    --split-rigth: #042242;
    --primary-color: #3a0209;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Exo', sans-serif;
    font-weight: bold;
    font-size: 1em;
    background-color: var(--primary-color);
}
img {
    max-width: 300%;
    
}
.header {
  /* background-color: khaki;*/
    position: fixed;
    width: 100%;
    z-index: 999;
    display: flex;
    align-items:center;
}
.brand-logo {
    padding-left: 0.75rem;
    padding-right : 0.75rem;
    width: 50%;
   
}
.icon-menu {
    position: fixed;
    right: 30px;
    cursor: pointer;
    z-index: 100;
    
}
.icon-menu__bar {
    width: 35px;
    background-color: var(--primary-color);
    margin: 5px;
    height: 3px;
}
.toggle.icon-menu__bar--one {
    background-color: #000;
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle.icon-menu__bar--two{
    opacity: 0;
}
.toggle.icon-menu__bar--three {
    background-color: #000;
    transform: rotate(45deg) translate(-5px, -6px);
}
.main-nav {
    background-color:rgba(266, 266, 266, 0.8);
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    min-height: 92vh;
    display: none;
    justify-content: center;
    align-items: center;
}
.show-nav {
  display: flex;  
}
.main-menu{
    margin-top:0;
    margin-bottom: 0;
    padding-left: 0;
}
.main-menu__item {
    list-style: none;
    padding: 0.78rem;
}
.main-menu__link {
    text-decoration: none;
    text-transform: uppercase;
    color:var(--primary-color);
}

.home_main {
    display:flex;
}

.home-main__split {
    width:50%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.home-main__split--left {
    background: url("../img/left.jpg") var(--split-left) no-repeat center/cover ;
    /*background-color:var(--split-left) ;*/
    justify-content: flex-end;
}

.home-main__small-text {
   color: #ffffff; 
   text-transform: uppercase;
   font-size: 0.85em;
   position: absolute;
   bottom: 30%;
   left: 5%;
   transform: rotate(-90deg);
}
.home-main__small-text::before {
    content: "";
    position: absolute;
    border: 1px solid #ffffff;
    width: 40px;
    top: 9px;
    left: -50%;

}

.home-main__split--right {
    background-color:var(--split-rigth);
    align-items: center;
    justify-content: center;
}
.home_main__title, .home-main__description{
    display: none;
}
    

.home-main__middle {
    position: absolute;
    width: 100px;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.home-main__img {
    filter: drop-shadow(15px 10px 50px #000);
}

@media screen and (min-width: 64em){
    .header{
        justify-content: space-between;
        padding: 10px 100px ;
    }
    .icon-menu{
        display: none;
    }
        .main-nav{
            display: flex;
            min-height: 0;
            position: unset;
            width: unset;
            background-color: unset;
    }
    .main-menu{
        display: flex; 
    }
    .main-menu__link{
        color:var(--primary-color);
        font-size: 0.85em;
    }
    .main-menu__link--active, .main-menu__link:hover {
        color:#ffffff ;
    }
    .home-main__middle{
        width:160px;
    }
    .home_main__title, .home-main__description {
        display: block;
    }
    .home_main__title{
        font-size: 4em;
        text-transform: uppercase;
    }
    .home_main__text-container{
      width: 25em;  
      text-align: justify;
      margin-top: -50px;
      padding: 0;

    }
}

.context {
    width: 100%;
    position: absolute;
    top:30vh;
    
}
.btn {
    position: absolute;
    width:max-content;
    border: none; 
    color: white; 
    padding: 14px 28px; 
    cursor:pointer;
    border-radius: 5px; 
    
    margin: 0 auto;
    text-align: center;
  }
  .primary {background-color: #861d63;} 
  .primary:hover {background: #0b7dda;}
  .secondary {background-color: #e7e7e7; color: black;} 
  .secondary:hover {background: #ddd;}

.context img{
    position:fixed;
    top:0vh;
    left:0dvw;
    width:auto;
    height:auto;
}
.context h1{
    text-align: center;
    color: #fff;
    font-size: 50px;
}


.area{
   /* background: #830234;  */
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
    
    width: 100%;
    height:100vh;
    
   
}

.circles{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 0px;
    height: 0px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 0px;
    height: 0px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 0px;
    height: 0px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
