@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", serif;
}

body{
margin: 0;
padding: 0;
    overflow: hidden;
   width: 100%;
   height: 100%;
   background-color: rgb(47, 44, 49);
  
}


.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 80px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo{
    font-size: 30px;
    color: #e0dede;
    font-weight: 700;
    text-decoration: none;
}

.navbar a{
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 50px;
    cursor: pointer;
}

.container{
height: 100%;
width: 100%;
  background-color: aquamarine;


}

.bg-slid {
    align-items: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
position: relative;
opacity: 0;

   
}

.bg-slid.active {
    overflow: visible;
    opacity: 1;
}



.bg-slid,
.bg-slid .circle-bg,  
.bg-slid .circle img,
.circle-darktransp{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
   
}


.bg-slid .circle-bg{
    pointer-events: none;
    user-select: none;
    width: 100%;
 
 

}

/*animation*/

.bg-slid .circle-bg img{

    object-fit: cover;

    transform: rotate(0deg) scale(3);
    transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bg-slid.active .circle-bg img{

    transform: rotate(360deg) scale(1.8);
    transition-delay: .2s;
    clip-path: circle(100% at 50% 50%);

}


.bg-slid .circle-large img{
 
    object-fit: cover;
    transform: rotate(0deg) scale(7);
    transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.bg-slid.active .circle-large img{

    transform: rotate(360deg) scale(1);
    transition-delay: .6s;


}

.bg-slid .circle-small img{
   
    object-fit: cover;
    transform: rotate(0deg) scale(6);
    z-index: 12;
    transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    
}

.bg-slid.active .circle-small img{

    transform: rotate(360deg) scale(1);
    transition-delay: .9s;
    z-index: 12;

}







/*animation*/




 .circle-large,
.circle-darktransp
{
    clip-path: circle(50% at 50% 50%);
    width: 100%;
    height: 100%;
   overflow: hidden;
}

 .circle-small{
    clip-path: circle(30% at 50% 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    z-index: 12;
 
}


.ring{
    width: 100%;
    height: 100%;
    
}


.circle-darktransp{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
  
}

.bg-slid .content-txt{
    position: absolute;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-txt .place h1{
    font-size: 60px;
    letter-spacing: 80px;
    margin-right: -80px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;

    transform: translateY(-50%);
}

.country{
    display: flex;
    justify-content: center;
}



.content-txt .country h2{
    font-size: 50px;
    letter-spacing: 30px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;

}



.content-txt .place h1,
.content-txt .country h2{
 
    line-height: 1;
    transition: transform -5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-delay: 2s;
    transition: 2s all ease;
}


.bg-slid.active .content-txt .country h2{
    transition-delay: 1s;
    transform: translateY(0%);
}


.line {
position: absolute;
top: 50.0%;
left: 50%;
transform: translateX(-50%);
width: 500px;
height: 1.4px;
background: #fff;
z-index: 100;
}


.rotate-btn{
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 60px;
    height: 60px;
    background-color: rgb(251, 251, 171);
    border-radius: 50%;
    z-index: 100;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotate-btn i{
font-size: 50px;
color: #bbb3b3;

}



