*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
.mySlides {
    display: none;
}
img {
    vertical-align: middle;
}
body{
    width: 100%;
    font-family: sans-serif;
}
a{
    text-decoration: none;
    color: black;
}
header{
    background-color: rgba(100, 182, 207, 0.479);
    height: 10vh;
    
}
.navbar{
    display: flex;
    height: 100%;
    padding-left: 21px;
    justify-content: space-between;
}
.logo{
    width: 500px;
    margin: 20px

}
h2{
    font-size: 30px;
    font-weight: 700;
}
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active {
background-color: #717171;
}
ul{
    
    list-style: none;
    display: flex; 
}
li{
    margin-top: 40px;
    width: 100px;
}
.btn{
    background-color: rgb(36, 223, 223);
    padding: 10px;
    border-radius: 8px; 
}
.navbar a:hover{
    color: rgb(255, 255, 255);
    transition: ease .3s;
}

.bar{
    display: flex;
    height: 15vh;
    padding: 11px;
    background-color: rgb(141, 202, 218);
}
.main{
    height: 70vh;
}
.follow-section{
    display: block;
}
.follow-section ul{
    margin-left: 0;
}
.follow-section li{
    width: 40px;
}
.follow-section a{
    color: rgb(99, 194, 197);
}
.follow-section  img{
    height: 35px;
    width: 35px;
}
.hero{
    height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero h3{
    font-size: 40px;
    margin: 20px 0;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    width: 1100px;
}
.container img{
    width: 100%;
    height: 100%;
}
.container .img-pagination{
    text-align: center;
    margin: 15px 0;
}
.img-info-container{
    max-width: 1400px;
    margin: auto;
}
.image-info-section{
    position: relative;
    height: 75vh;
    margin:30px 0 0 0 ;
}
.image-info-section .flex-wrapper{
    display: flex;
    align-items: center;
}
.image-info-section .info-wrapper{
    max-width: 600px;
    flex: 1.4;
}
.image-info-section .info-wrapper p{
    line-height: 25px;
    font-size: 18px;
    width: 700px;
    margin: 32px 0 40px;
}
.image-info-section .img-wrapper{
    width: 700px;
    height: 500px;
}
.image-info-section .img-wrapper img{
    width: 100%;
    height: 100%;
}
.image-info-section .info-section{
    position: absolute;
    max-width: 700px;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}
.image-info-section.right-img .img-wrapper{
    flex: 1;
        position: absolute;
        right: 0;
}
