*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-container{
    width: 100%;
    height: 100%;
    position: absolute;
    overflow-x: hidden;
    background-image: url(../images/krakenimages-376KN_ISplE-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.gradient{
    background: #de0000;
    background: linear-gradient(90deg, rgba(222, 0, 0, 1) 42%, rgba(17, 0, 148, 1) 100%);
}

.circle{
    width: 180px;
    height: 90px;
    border-radius: 12rem 12rem 0 0;
    background-color: purple;
}

.logo{
    height: 60px;
    background-image: url(../images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.blue{
    background: rgb(16, 16, 85);
}

.t-blue{
    color: rgb(16, 16, 85);
}

a{
    text-decoration: none;
}

.loader{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(16, 16, 85);
    padding: 150px;
    box-shadow: 0px 40px 60px -20px rgba(0, 0, 0, 0.2);
}

.loader span{
    display: block;
    width: 20px;
    height: 20px;
    background: orange;
    border-radius: 50%;
    margin: 0 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.loader span:nth-child(2){
    background: orange;
}
.loader span:nth-child(3){
    background: orange;
}
.loader span:nth-child(4){
    background: orange;
}
.loader span:not(:last-child){
    animation: animate 1.5s linear infinite;
}

@keyframes animate{
    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(30px);
    }
}

.loader span:last-child{
    animation: jump 1.5s ease-in-out infinite;
}

@keyframes jump{
    0%{
        transform: translate(0, 0);
    }
    10%{
        transform: translate(10px, -10px);
    }
    20%{
        transform: translate(20px, 10px);
    }
    30%{
        transform: translate(30px, -50px);
    }
    70%{
        transform: translate(-150px, -50px);
    }
    80%{
        transform: translate(-140px, 10px);
    }
    90%{
        transform: translate(-130px, -10px);
    }
    100%{
        transform: translate(-120px, 0);
    }
}

.main-container .slideshow-container{
    max-width: 1000px;
    position: relative;
    margin: auto;
}
.main-container .slideshow-container .mySlides{
    display: none;
}
.main-container .slideshow-container .mySlides .text{
    color: #f2f2f2;
    padding: 8px 12px;
    position: absolute;
    bottom: 40%;
    width: 100%;
    text-align: center;
}
.main-container .slideshow-container .mySlides .text{
    transform: translateX(-100px);
    opacity: 0;
    animation: move-in 1s ease forwards;
}

.fad{
    animation-name: fade;
    animation-duration: 1.5s;
}

.main-container .list{
    display: none;
}

.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgb(5, 5, 37);;
    opacity: 0.6;
}

.overlay2{
    background-color: rgba(45, 45, 145, 0.738);;
    opacity: 0.6;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.overlay3{
    background-color: rgba(45, 45, 145, 0.738);;
    opacity: 0.6;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.main-container .slideshow-container .mySlides .text p:nth-child(2), p:nth-child(3){
    font-size: 30px;
}

.main-container .sub_container{
    background-image: url(../images/joshua-fuller-rLeb8DxMmik-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px;
    position: relative;
}

@keyframes fade{
    from{opacity: .4}
    to{opacity: 1}
}

@keyframes move-in{
    to{ transform: translateX(0);
        opacity: 1;}
}

@media only screen and (min-width:600px){

   .main-container .slideshow-container .mySlides .text p:first-child{
        font-size: 30px;
   }

   .main-container .slideshow-container .mySlides .text p:nth-child(2), p:nth-child(3){
        font-size: 70px;
   }
}
@media only screen and (max-width:600px){
    .main-container .slideshow-container .mySlides .text{
        bottom: 20%;
    }
}

@media only screen and (min-width:1200px){
    .main-container .menu{
        display: none;
    }

    .main-container .list{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 400px 0 100px;
        font-weight: bold;
   }
}