@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root{
    --primarycolor: #eed859;
    --secondarycolor:#464646;
    --primaryfont:'Roboto', sans-serif;
    --secondaryfont:'Great Vibes', cursive;

}
body{
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    width: 100%;
   scroll-behavior: smooth;
}


/*---------------------------------------------------------------------
                              HEADER
---------------------------------------------------------------------*/
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,225,0.5);
    transition: 1s;
    z-index: 1300;
}
header.active{
    background: #ffffff;
    box-shadow: 0 0 50px rgba(0,0,0,0.15);
    
}
.logo{
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    color: #000000;
    letter-spacing: 2px;
    font-weight: 400;
    text-decoration: none;
}
.menu{
    color: #000000;
    font-size: 2em;
    transition: 0.5s;

}
.nav{
    display: flex;

}
.nav li{
    list-style: none;
    margin: 0 20px;

}
.nav li a {
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor:pointer;
    transition: 0.5s;
    font-weight: 300;
    padding: 10px;
}

.nav li a:hover,
.nav li a.active{
    color: var(--primarycolor);
}

.login{
    position: relative;
    width: 150px;
    height: 60px;
    transition: 0.5s;


}
.login a{
    position: absolute;
    color: #000000;
    background-color: transparent;
    border: 1px solid #111111;
    width: 150px;
    height: 60px;
    text-decoration: none;
    padding: 20px 20px;
    text-align: center;
    font-weight: 300px;
    text-transform: uppercase;

}




/*---------------------------------------------------------------------
                              MOBILE
---------------------------------------------------------------------*/

/*---------------------------------------------------------------------
                              BANNER
---------------------------------------------------------------------*/
.banner{
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
}

.banner::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,225,0.5);

}

.bg-slide{
    position: absolute;
    top: 0;
    left:0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.bg-slide .content{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
    z-index: 1100;
    animation: contentmove ease-in-out 3s;
   /* transition: ease-in-out 3s;*/
    opacity: 0;
    visibility: hidden;

}
@keyframes contentmove{
    0%{
        transform: scale(0) translate(-50%, -50%) ;
    }

}
 .bg-slide .content h1{
    font-size: 6em;
    text-transform: uppercase;

 }

 .bg-slide .content p {
    font-family: var(--secondaryfont);
    font-weight: 200;
    font-size: 1.5em;
    letter-spacing: 1px;
 }
 .bg-slide.active .content{
   transform: scale(1) translate(-50%, -50%) ;
    opacity: 1;
    visibility: visible;
 }



.circle{
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
  /*  transition: 3s;*/
    animation: circlemove 3s;
}

@keyframes circlemove{
    0%{
    transform: translate(0, 0) rotateZ(0);
    }
   
}
.circle.bg{
    background: transparent;
    width: 140vw;
    height: 140vw;
    border-radius: 0;

}
.circle.large{
    width: 70vw;
    height: 70vw;
}

.circle.small{
    width: 35vw;
    height: 35vw;
}
.circle img{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.circle.bg img{
    border-radius: 0;

}

.circle.large img {
 /*   transform: scale(2) ;*/
    animation-name: largeImage;
}
@keyframes largeImage{
    0%{
        transform: scale(2);
        
    }
}
.circle.small img {  
/*transform: scale(4) ;*/
animation-name: smallImage;
} 

@keyframes smallImage{
    0%{
        transform: scale(4);
        
    }
}

.bg-slide.active .circle.bg {
  /* transform: translate(0, 0) rotateZ(-360deg) ;*/
    opacity: 1;
    visibility:visible;
    animation-name: circleBg;
}
@keyframes circleBg{
    0%{
        transform: translate(0, 0) rotateZ(-360deg);
        
    }
}
.bg-slide.active .circle.large {
  /* transform: translate(0, 0) rotateZ(720deg)  ;*/
    opacity: 1;
    visibility:visible;
    animation-name: circleLarge;
}
@keyframes circleLarge{
    0%{
        transform: translate(0, 0) rotateZ(720deg);
    }
}
.bg-slide.active .circle.small {
  /*  transform: translate(0, 0) rotateZ(-720deg)  ;*/
    opacity: 1;
    visibility:visible;
    animation-name: circleSmall;
}
@keyframes circleSmall{
    0%{
        transform: translate(0, 0) rotateZ(-720deg);
    }
   
}

.slide-loader{
    position: absolute;
    z-index: 1100;
    bottom: 50px;
    right: 100px;
    display: flex;
    gap: 20px;
    margin-bottom: 0px;

}
.slide-loader li{
    list-style: none;
    display: flex;
    align-items: end;
}
.slide-loader li a{
    text-decoration: none;
    color: #111111;
    font-size: 2em;
    font-weight: 800;
    transition: 0.5s;
    line-height: 1em;
    cursor: pointer;
}
.slide-loader li a.active,
.slide-loader li a:hover{
    font-size: 4em;

}
.slide-loader::before{
    position: absolute;
    content: '';
    top: 50%;
    left: -70%;
    width: 100px;
    height: 2px;
    background: #111111;
}

.share{
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 1200;

}
.share::before{
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    top: -60%;
    height: 100px;
    width: 2px;
    background: #111111;
}
.share p{
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    color: #111111;
}
.share a {
    text-decoration: none;
    color: #111111;

}
.share a ion-icon{
    font-size: 1.8em;

}

.lead{
    position: absolute;
    bottom: -60px;
    z-index: 1000;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;


}
.move-down{
    position: absolute;
    z-index: 1100;
    color: #111111;
    animation: flink 1s linear infinite;
}
.move-down ion-icon{
    font-size: 2em;
}
@keyframes flink{
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
    }
}
.lead svg{
    font-family: var(--primaryfont);
    position: absolute;
    z-index: 1100;
    fill:currentColor;
    height: auto;
    max-width: 20vmin;
    transform-origin: center;
    width: 66%;
    animation: spin 10s linear infinite;
}
@keyframes spin{
    from{
     transform: rotateZ(0);
    }
    to{
     transform: rotateZ(360deg);
    }
}
/*---------------------------------------------------------------------
                              SECTIONS GENERAL
---------------------------------------------------------------------*/
section{
  overflow: hidden;
    width: 100%;
   margin: 20px 0;
   
    background: #ffffff;
    transition: ease-in-out 1s;
    transform-origin: bottom;
    z-index: 1100;
   opacity: 1;
}



section h1{
    font-family: var(--primaryfont);
    font-weight: 400;
    font-size: 6.5em;
    padding-top: 100px;
    margin-bottom: 0px;
    text-align: center;
    letter-spacing: normal;
    text-transform: uppercase;
}


section h2{
    font-family: var(--primaryfont);
    color: var(--secondarycolor);
    font-weight: 400;
    font-size: 2.8em;
    text-transform: uppercase;
    letter-spacing: normal;
    margin-bottom: 0px;
    
    margin-left: 0px;
    text-align: left;
   
}
section h5{
    font-size: 1em;
    margin-bottom: 0;
       font-weight: 400;
       font-family: var(--primaryfont);
     
}
section h4{
    font-family: var(--secondaryfont);
    font-weight: 300;
    font-size: 2.5em;
    letter-spacing: 1px;
    margin-bottom: 20px;

}
section p {
    font-weight: 300;
    color: var(--secondarycolor);
    letter-spacing: 1px;
    text-align: justify;
    margin-bottom: 40px;
}


/*--------------------------------------------------------------------
hero section
----------------------------------------------------------------------*/


.hero-section{
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}

.overlay {
   position: absolute;
   z-index: 1100;
   opacity: 0.8;
   padding-top: 20px;
   padding-bottom: 50px;
   padding-left: 120px;
   padding-right: 180px;
   font-family: var(--primaryfont);
   border-radius: 8px;
  
}

.overlay h2 {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}
.search-heading  {
  display: grid !important;
  grid-template-columns: 160px 160px 160px 160px 160px 160px;
  text-align: left;
  margin-left: 25px;
}
.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.search-form input
 {
  padding: 10px;
  font-size: 14px;
  border: 1px solid var(--primarycolor);

}

.search-form button{ 
 margin-left: 100px;
 margin-right: 100px;
 margin-top: 10px;
 background-color:#111111; 
 color: #ffffff;
 font-size: 24px;
 padding: 10px 50px;
 line-height: 100%;
 transition: 500ms;
 border: none;
 width: 400px !important;
 text-transform: capitalize;
 position: relative;
 overflow: hidden;
 z-index: 1;
}

.search-form button:hover {
  color: #111111;
  background-color: var(--primarycolor);
  border: none;
}


.search-form button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: var(--primarycolor);
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
  z-index: -1;
}

.search-form button::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color:  #111117;
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  z-index: -1;
}

.search-form button:hover {
  color: var(--primarycolor);
}

.search-form button:hover::before {
  top: 100%;
}

.search-form button:hover::after {
  bottom: -50%;
}




.search-form input {
  width: 150px;
  color: #111111 !important;
}

.search-form button {
  background-color: var(--primarycolor);
  color: #111111;
  font-weight: bold;
  cursor: pointer;
  width: 100px;
}


/*---------------------------------------------------------------------
                              ABOUT SECTION
---------------------------------------------------------------------*/

.about{
   position: relative;
    width: 100%;
 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow:hidden;
    transition: 0.5s;
    padding-top: 60px;
    padding-bottom: 10px !important;
    z-index: 1100;
  
}



.about h4::first-letter{
    position: absolute;
    color:#111111;
    font-size: 2em;
   
    opacity: 1;
}
.about h2{
   margin-right: 10px;
}


.about .img-box {
 position: absolute;
 z-index: 1200px;
 opacity: 1;
}
.about .img-box img{
    position: absolute;
    max-width: 450px;
    z-index: 1200;
    opacity: 1;
}
.about .img-box .corner-img{
    position: absolute;
    width: 20vw;
    right: 5px;
    left: 260px;
    top: 250px;
      z-index: 1200;
    opacity: 1;

}

.section-btn {
    position: relative;
    text-decoration: none;
    color: #111111;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    transition: 0.3s;
}
.section-btn:hover {
    color: var(--primarycolor);

}
.section-btn::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: -10px;
    width: 85%;
    height: 1px;
    background: #111111;
    transition: 0.3s;
}
.section-btn:hover::before{
    left: 20%;
    background: var(--primarycolor);

}


/*---------------------------------------------------------------------
                              MEMBERSHIP SECTION
---------------------------------------------------------------------*/
.membership{
    margin-top: 100px;
}
.card{
    position: relative;
    margin: 20px 0;
    width: 350px;
    height: 500px;
    background: #ffffff;
    border: none;
    transition: ease-in-out 1s;
    border-radius: 0;
    box-shadow:  rgba(0, 0, 0, 0.25);
    border-right: 1px solid #eed859;

}



.card .details{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 50px 20px 20px;
}
.card .details::before{
    position: absolute;
    content: '';
    color: #ffffff;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: url('images/Gemini_Generated_Image_qav18mqav18mqav1.png') no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
}
.card .details h4::first-letter{
    color: var(--primarycolor);
    font-size: 1.5em;
}






/*---------------------------------------------------------------------
-----------------------------------------------------------------------*/

/*---------------------------------------------------------------------
                              TESTIMONIAL SECTION
---------------------------------------------------------------------*/
.testimonial{
    margin-top: 100px;
   
}
.testimonial-card{
    position: relative;
    margin: 20px 0;
    width: 450px;
    height: 400px;
    background: #ffffff;
    border: none;
    transition: ease-in-out 1s;
    border-radius: 0;
    box-shadow:  rgba(0, 0, 0, 0.25);
    border: 1px solid #bebeba;
  

}



.testimonial-card .details{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 20px 20px 20px;
    
   align-items: center;
}

.testimonial-card  .details::before{
    position: absolute;
    content: '';
    color: #ffffff;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
}
.testimonial-card  .details h5{
   
    font-size: 1em;
    padding-bottom: 0px;
    text-align: center;
    
   color: var(--primarycolor);
}
.testimonial-card  .details h6{
   
    font-size: 0.8em;
   text-align: center;
}

.testimonial-card  .details p{
   
    text-align: center;
    margin-bottom: 0;
}
.testimonial-card  .details img{
margin-left: 100px;

}
.testimonial-card  .details   .quote-img{
margin-left: 0;
width: 50px;
height: 50px;
}

.testimonial-card  .details   .user-img{
    border-radius: 50%;
    align-self: center;
    width: 100px;
    height: 100px;
}


/*--------------------------------------------------------------------
success
---------------------------------------------------------------------*/
.success{
     padding-top: 100px;
     left: 0;
    
}

.success-img img{
    width: 230px;
    height: 250px;
   opacity: 0.9;
   position: relative;
}

.success-img img::after{
    content: " ";
    background-color: rgba(0, 0, 0, 0.5);
    width: 230px;
    height: 250px;
   position: absolute;
     
    left: 0;
    top: 0;
}
.success-img{
    display: grid;
    grid-template-columns: 230px 230px 230px 230px 230px;
    gap: 30px;
  width: 100%;
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
  
 
 
   
}
.success-container{
    position: relative;
    margin: 0;
}
.success-content{
 
  position: absolute; /* Position the background text */
  bottom: 0 !important; /* At the bottom. Use top:0 to append it to the top */
  background: rgb(0,0,0); /* Fallback color */
  background: rgba(255, 255, 255, 0.5); /* Black background with 0.5 opacity */

  width: 100%; /* Full width */
  padding: 3px; /* Some padding */
  color: #ffffff;

}



/*---------------------------------------------------------------------
                              CONTACT US
---------------------------------------------------------------------*/


.contact{
    background-image: url(images/gray-and-black-map-wallpaper-81696_w635.webp);
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
    display: flex;
    position: relative;
    width: 100%;
    backdrop-filter: blur(10px);
}


.contact-container{
    position: absolute;
    display: flex;
    flex-basis: 100%;
    flex-wrap: wrap;
    opacity: 1;
    z-index: 1100;
}



.contact-row{
    display: grid;
    grid-template-columns: 550px 600px;
    height: 100vh;
    left: 0;
   
}
.quote-container{
    
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    left: 0;
  

}

.quote-container p {
    position: absolute;
    font-size: 2em;
    font-family:var(--primaryfont);
    font-weight: 600;
    padding-top: 100px;
    color: #ffffff;
    padding-left: 10px;
    padding-right: 30px;
    z-index: 1200;
    opacity: 1;
    text-align: center;
}
.contact h5
{

    text-align: left; 
    color: #ffffff; 
    padding-left: 30px;
    
    padding-top: 20px;
    margin-top: 20px;
}

.contact h2
{

    text-align: left; 
    color: #ffffff; 
    padding-left: 30px;
    
    
}
.contact h6{
    padding-left: 10px;
    color:  #ffffff!important;
}

.contact h7{
    padding-left: 10px;
    color: #ffffff !important;
}


.form-container{
    
    padding-top: 20px;
  
}

.contact form{
    width: 100%;
    margin-top: 30px;
    margin-left: 100px;
    position: absolute;
    padding-left: 10px;
    padding-right: 10px;
    width: 550px;
    padding-top: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,225,0.5);
    z-index: 1100;
    opacity: 0.8;
    padding-bottom: 20px;

}
.contact form .form-group{
    padding-bottom: 8px;
}
.contact form input,
.contact form textarea{
    border-radius: 0;
    box-shadow: none !important;
    outline: none;
    margin-left: 10px;
    width: 500px;
    border-top: none;
    border-left: none;
    border-right: none;
    background: transparent;
    color: #ffffff;
    border-bottom: 3px solid #ffffff;
    font-size: 15px;

}
.contact form input:focus,
.contact form textarea:focus{
    border-color: #ffffff;
    outline: none;
    background:transparent;

}
.contact form input{
    height: 45px;
    z-index: 1100;
    
}
.contact form input::placeholder{
    color: #ffffff;
    z-index: 1100;
}
.contact form textarea{
    padding: 10px 12px;
}
.contact form textarea::placeholder{
    color: #ffffff;
    z-index: 1100;
}
.contact form button[type='submit'] {
background:var(--primarycolor);
padding: 10px 100px;
width: 500px;
border: none;
color: var(--secondarycolor);
transition: 0.3s;
margin-top: 50px;
margin-left: 10px;
z-index: 1100;
left:0;


}
.contact form button[type='submit']:hover{
    background:#ffffff;
    color: #111117;
    border: none;
    z-index: 1100;
}




/*---------------------------------------------------------------------
                              CONTACT US
-------------------------------------------------------------------


.contact{
    background-image: url(images/map.jpg);
    display: flex;
 
    margin-top: 10px;
    margin-bottom: 10px;
    height: 100vh;
    padding-top: 100px;

}

.contact-container{
    
    display: flex;
    flex-basis: 100%;
    flex-wrap: wrap;
}
.contact-container .row1{
display: flex;
padding: 10px 0 10px 0;


}
.contact-container .row1 h1{
font-size: 8em;
font-weight: 400;
font-family: var(--primaryfont);
}
.contact-row{
    display: grid;
    grid-template-columns: 540px 900px;
    height: 100vh;
   
}
.quote-container{
    position: relative;
    background-image: url('images/highqualitybanner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  
  

}
.quote-container::after{
  
    content: '';
    position: absolute;
  
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,225,0.5);

}
.quote-container p {
    position: absolute;
    font-size: 5em;
    font-family: var(--primaryfont);
    font-weight: 600;
    padding-top: 100px;
    padding-left: 30px;
    padding-right: 30px;
    z-index: 1200;
    opacity: 1;
    text-align: center;
}


.form-container{
   
    height: 100vh;
}
.form-container h1{
    font-size: 6.5em;
    position: relative;
    padding-top: 0px;
    padding-right: 220px;
    
   
}
.form-container h1::after{
    content: '';
    width: 630px;
    height: 5px;
    background-color: #111111;
    position: absolute;
    left:20px;
    top: 110px;
    transition: ease-in-out 2s;

}


.contact form{
    width: 100%;
    position: absolute;
    padding-left: 10px;
    padding-right: 10px;
  padding-top: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,225,0.5);
    z-index: 1100;
    opacity: 0.8;
    padding-bottom: 20px;

}
.contact form .form-group{
    padding-bottom: 8px;
}
.contact form input,
.contact form textarea{
    border-radius: 0;
    box-shadow: none !important;
    outline: none;
    margin-left: 10px;
    border-top: none;
    border-left: none;
    border-right: none;
    background: transparent;
    color: #111111;
    border-bottom: 3px solid #111111;
    font-size: 15px;

}
.contact form input:focus,
.contact form textarea:focus{
    border-color: var(--primarycolor);
    outline: none;
    background:transparent;

}
.contact form input{
    height: 45px;
    z-index: 1100;
    
}
.contact form input::placeholder{
    color: #111111;
    z-index: 1100;
}
.contact form textarea{
    padding: 10px 12px;
}
.contact form textarea::placeholder{
    color: #111111;
    z-index: 1100;
}
.contact form button[type='submit'] {
background: #111111;
padding: 10px 200px;
width: 650px;
border: none;
color: #ffffff;
transition: 0.3s;
margin-top: 50px;
margin-left: 10px;
z-index: 1100;
left:0;


}
.contact form button[type='submit']:hover{
    background:#111111;
    color: var(--primarycolor);
    border: none;
    z-index: 1100;
}


/*---------------------------------------------------------------------------
              find
---------------------------------------------------------------------------*/
.find{
    display: flex;
    flex-basis: 100%;
    flex-wrap: wrap;
    margin-top: 0;
    background-color: #eed859;
    align-items: center;
    align-content: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;

}

.find-container{
    display: grid;
    grid-template-columns: 800px 400px;
    gap: 30px;
    height: 100px;
    align-items: center;
    align-content: center;
}
.find p{
    padding-top: 50px;
    padding-left: 50px;
   font-size: 2em;
   font-family: var(--primaryfont);
    margin-left: 50px;
    text-align: left;


}
.find-btn{
    text-decoration: none;
    height: 50px;
    width: 200px;
    align-items: center;
    align-content: center;
    text-align: center;
    background-color: var(--secondarycolor);
    margin-top: 30px;
}



.find a{
text-align: center;
border: none;
text-decoration: none;

border: none;
color: #ffffff;
transition: 0.3s;




}





.footer{
     display: flex;
    flex-basis: 100%;
    flex-wrap: wrap;
    margin-top: 0;
   
    padding-bottom: 20px;

}
.footer-logo{
    font-family:var(--secondaryfont);
    font-size: 4em;
    font-weight: 400;
    color: var(--primarycolor);
    letter-spacing: 2px;
    font-weight: 400;
    text-decoration: none;
    margin-left: 0px;
   
}

.footer h2{
    text-align: center;
    padding-right: 100px;
}
.footer-container{
    display: grid;
    grid-template-columns: 470px 470px 470px;
    gap: 0;
    align-items: center;
    align-content: space-between;
   padding-left: 100px;
   padding-top: 100px;

}

.footer-container > div >p > ion-icon{
    margin-left: 30px;
}
.footer hr{
width: 1000px;
margin-left: 10px;
color: #eed859;
}
.footer h5{
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 400;
    color: #eed859;
}

.footer a{
    text-decoration: none;
    color: var(--secondarycolor);
}








/*---------------------------------------------------------------------
                              login
---------------------------------------------------------------------*/

.login-section{
    background-image: url(images/highqualitybanner.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    padding: 0 100px;
    display: flex;
    
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
}

.login-section::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,225,0.5);

}




.login-section h1{
    z-index: 1100;
  

}
.login-section .info{
    width: 100%;
    position: absolute;
   
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,225,0.5);
    z-index: 1100;
    opacity: 1;
}
.login-section .info ion-icon{
    font-size: 0.6em;
    padding: 8px;
    color: var(--primarycolor);
    float: left;
    width: 45px;
    height: 45px;
    background: #f4e3ea;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
    margin-right: 20px;
}
.login-section .info::placeholder{
    color: #111111;
}
.login-section .info h4{
    padding: 0 0 0 60px;
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111111;
    z-index: 1100;
}
.login-section .info p{
    padding: 0 0 0 60px;
    font-size: 0.9em;
    font-weight: 300;
    margin-bottom: 0;
    color: #111111;
    z-index: 1100;
}
.login-section .info .email,
.login-section .info .phone{
    margin-top: 40px;

}

.login-section form{
    width: 100%;
    position: absolute;
    padding-left: 210px;
    padding-right: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,225,0.5);
    z-index: 1100;
    opacity: 0.8;
    padding-bottom: 100px;

}
.login-section form .form-group{
    padding-bottom: 8px;
}
.login-section form input,
.login-section form textarea{
    border-radius: 0;
    box-shadow: none !important;
    outline: none;
    border-top: none;
    border-left: none;
    border-right: none;
    background: transparent;
    color: #111111;
    border-bottom: 2px solid #111111;
    font-size: 15px;

}
.login-section form input:focus,
.login-section form textarea:focus{
    border-color: var(--primarycolor);
    outline: none;
    background:transparent;

}
.login-section form input{
    height: 45px;
    z-index: 1100;
    
}
.login-section form input::placeholder{
    color: #111111;
    z-index: 1100;
}
.login-section form textarea{
    padding: 10px 12px;
}
.login-section form textarea::placeholder{
    color: #111111;
    z-index: 1100;
}
.login-section form button[type='submit'] {
background: #111111;
padding: 10px 330px;
border: none;
color: #ffffff;
transition: 0.3s;
margin-top: 20px;
z-index: 1100;


}
.login-section form button[type='submit']:hover{
    background:var(--primarycolor);
    color: #111111;
    border: none;
    z-index: 1100;
}







/*---------------------------------------------------------------------
                              FOOTER 
---------------------------------------------------------------------*/


/*----------------------------------------------------------------------
------------------------------------------------------------------------
                           RESPONSIVE 
                           -------------------------*/
@media(max-width: 768px){
    header{
        padding: 30px;
    }
    .nav{
        display: none;
    }
    .login{
        display: none;
    }
    .banner{
        padding: 120px 30px;
    }
    .bg-slide .content{
        width: 80vw;
    }
    .bg-slide .content h1{
        font-size: 3em;
    }
     .bg-slide .content p{
        font-size: 0.8em;
    }
    .circle.bg{
        width: 140vh;
        height: 140vh;
    }
    .circle.large{
        width: 70vh;
        height: 70vh;
    }
    .circle.small{
        width: 35vh;
        height: 35vh;
    }
    
.bg-slide.active .circle.bg {
  /* transform: translate(0, 0) rotateZ(-360deg) ;*/
    opacity: 1;
    visibility:visible;
    animation-name: circleBg;
}
@keyframes circleBg{
    0%{
        transform: translate(0, 0) rotateZ(-360deg);
        
    }
}
.bg-slide.active .circle.large {
  /* transform: translate(0, 0) rotateZ(720deg)  ;*/
    opacity: 1;
    visibility:visible;
    animation-name: circleLarge;
}
@keyframes circleLarge{
    0%{
        transform: translate(0, 0) rotateZ(720deg);
    }
}
.bg-slide.active .circle.small {
  /*  transform: translate(0, 0) rotateZ(-720deg)  ;*/
    opacity: 1;
    visibility:visible;
    animation-name: circleSmall;
}
@keyframes circleSmall{
    0%{
        transform: translate(0, 0) rotateZ(-720deg);
    }
   
}
.lead{
    bottom: 100px;
    width: 150px;
    height: 150px;
}
.move-down ion-icon{
    font-size: 2em;
}
.slide-loader{
    bottom: 20px;
}
.share{
    left: 5px;
}
.section.section-show{
    padding: 150px 30px 100px;
}
.about .img-box img{
    max-width: 80vw;
}
.about .img-box .corner-img{
    width: 25vw;
    right: -20px;
}
.about h4{
    margin-top: 50px;
}
.section-bg-img{
    bottom: -500px;
    right: 0px;
}

}

/*-------Mobile Navigation-----------*/
.nav-mobile{
    display: none;
}
.nav-mobile{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 1200;
    gap: 20px;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-mobile .active{
    opacity: 1;
    visibility: visible;
}
.nav-mobile li{
    position: relative;
    list-style: none;

}
.nav-mobile li a {
    color: #111111;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.5s;
    font-weight: 300;
    padding: 10px;
}
.nav-mobile li a:hover{
    color: var(--primarycolor);
}

/* menu on mobile */
.menu .open{
    display: block;
}
.menu .close{
    display: none;
}
.menu.active .open{
    display: none;
}
.menu.active .close{
    display: block;
}