@import url('https://stackpath.bootstrapcdn.com-awesome/4.7.0/css-awesome.min.css');
/* @import url('https:/s.googleapis.com/css2?family=Poppins:wght@200&display=swap'); */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    /* display: flex; */ /* was making the display weird af*/
    align-items: center;
    justify-content: center;
    background-color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       
}

/* header */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background: #3b288f; 
    transition: .3s;
    top: 0;
    left: 0;
    z-index: 10000;
    padding-bottom: 0px;
    /* height: 100px; */
    /* border-bottom: ; */
}
.navigation {
    display: flex;
    align-items: center ;
    justify-content: space-between;
}

.imgLogo {
    width: 15rem;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: brightness(0) invert(1);
    /* border: 2px solid #fff; */
}

/* .logo{
    border: 2px solid #fff;
} */

.menu {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    z-index: 1;
    transition: .5s;
}
.menu li {
    list-style-type: none;
}

.dropdown:hover .dropCon {
    display: block;
}

.dropdown1:hover .dropCon1 {
    display: block;
}

.dropCon1, .dropCon {
    display: none;
    position: absolute;
    background: #3b288f;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropCon1 a, .dropCon a {
    color: white;
    padding: 20px 16px;
-size: 20px;
    text-decoration: none;
    display: block;
    text-align: left;
    text-transform: uppercase;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset; 
}

.dropCon1 a:hover, .dropCon a:hover {
    background: #e5ecf4;
    color: #3b288f;
}


.menu li a {
    color: white;
    text-decoration: none;
    display: flex;
    padding: 30px 25px;
-size: 24px;
    line-height: 1;
    transition: .3s;
    text-transform: uppercase;
}

.menu li a:hover {
    box-shadow: 0 -5px 0px white inset,
    500px 0 0 rgba(255, 255, 255, 0.03) inset;
    padding: 35px 25px 30px 25px;
}

.hamburger {
    position: relative;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
    transition: .3s;
    margin-right: 25px;
}

.hamburger:before,
.hamburger:after {
    content: "";
    position: absolute;
    height: 3px;
    right: 0;
    background: white;
    border-radius: 10px;
    transition: .3s;
}

.hamburger:before {
    top: -10px;
    width: 30px;
}

.hamburger:after {
    top: 10px;
    width: 30px;
}

.toggle-menu {
    position: absolute;
    width: 30px;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}

.hamburger,
.toggle-menu {
    display: none;
}

.navigation input:checked ~ .hamburger {
    background: transparent;
}

.navigation input:checked ~ .hamburger:before {
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
}

.navigation input:checked ~ .hamburger:after {
    top: 0;
    transform: rotate(45deg);
    width: 30px;
}

.navigation input:checked ~ .menu {
    right: 0;
    color: #3b288f;
}

/* investment cards*/
.card-slider-container {
    background-color: #FFFFFF;
    padding: 20px;
}
  
.card-slider-container h2 {
    text-align: center;
    padding: 3px;
    margin: 2px;
    text-decoration: underline;
    text-transform: uppercase;
}

.card-slider-container p{
    text-align: center;
    padding: 3px;
    margin: 2px;
}

.card-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    margin-bottom: 30px;
}
  
.card {
    flex: 0 0 auto;
    width: 400px;
    margin: 30px;
    scroll-snap-align: start;
    border-radius: 5px;
    border:solid #3b288f 4px;
    background-color: #fff;
    color: #000;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
  
  
.card h3 {
    color: #000;
    display: flex;
    justify-self: center;
    font-size: 24px;
    margin: 20px;
}
  
.card ul {
    margin: 0 20px 20px;   
}

.card ul li {
    display: flex;
    gap: var(--gap, 4px);
}

.card a {
    display: flex;
    background-color: #3b288f;
    color: #fff ;
    padding: 10px 20px;
    margin: 5px 25px;
    text-decoration: none;
    font-size: 16px;
    justify-content:center;
    align-items:end;
    bottom: 10%;
}
  
.slider-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.slider-buttons button {
    background-color: #3b288f;
    border: none;
    color: gold;
    font-size: 18px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 0 10px;
}
  
.slider-buttons button:hover {
    background-color: rgb(255, 231, 93);
    color: #fff;
}
  
.card-slider::-webkit-scrollbar {
    display: none;
}


/* THE MEDIA QUERY */

@media screen and (max-width: 992px) {
    .hamburger,
    .toggle-menu {
        display: block;
    }
    
    .navigation input:checked ~ .menu {
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.164);
    }

    .header {
        padding: 10px 20px;
    }

    .menu {
        justify-content: start;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -300px;
        background: #3b288f;
        width: fit-content;             /* This block*/
        height: fit-content;
        padding-top: 65px;
    }

    .dropCon1, .dropCon {
        display: none;
        position: absolute;
        left: -8.5rem;
        background: #4d7d94;
        min-width: 140px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }

    .dropdown1, .dropdown{
        display: flex;
        width: 100%;
        position: relative;
    }

    .menu li {
        width: 100%;
    }
    .menu li a,
    .menu li a:hover {
        padding: 30px;
    -size: 24px;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    }


    .dropCon a, .dropCon1 a {
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
        padding: 20px;
-size: 16px;
    }

    .imgLogo {
        width: 10rem;
        /*padding: 30px 0;*/
    }
    
    .container-fluid{
	/*border: 2px solid black;*/
        display: inline-block;
        flex-wrap: wrap;
    }
    
    .container-fluid .left{
        width: 1000px;
        /* border: 2px solid black; */
        padding: 0px;
    }
    .container-fluid .right1{
        width: 1000px;
        /* border: 2px solid black; */
        padding: 0px;
    }
    .card
    .containercontainer .container{
       /*  border: 2px solid black; */
        padding: 60px;
        /* padding-left: 50px;
        padding-top: 60px;
        border: 2px solid gold; */

    }

    .bg--gradient .footer-top .container .footer-wrapper{
        /* border: 2px solid black; */
        justify-content: center;
        align-items: center;
        justify-self: center;
    }
    
    .right{
        display: none;
    }

    /* .google .google_translate_element {
        padding: 4vw;
        font-size: 30vw;
    } */

    .card {
        flex: 0 0 auto;
        width: 150px;
        margin: 30px;
        scroll-snap-align: start;
        border-radius: 5px;
        border:solid #3b5998 3px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .card-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        margin-bottom: 30px;
        height: auto;
    }
      
    .card {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
      
    .card-slider::-webkit-scrollbar {
        display: none;
    }

}

@media screen and (max-width: 1200px) {
    

}

/* FOOTER */
#footer1{
    text-align: center;
    margin-top: 120px;
    color: #aaa;
  }

.footer {
    background: #4d7d94;
    display: flex;
    justify-content: center;
}

.foot1, .foot2{
    display: flex;
    justify-content: space-evenly;
    padding: 3rem;
    margin-top: .5rem;
}
container
.footer button{
    width: fit-content;
    padding: .4rem 2rem;
    border-radius: 1rem;
    border: 1px solid white;
}

.footer a {
    padding: .4rem;
    text-decoration: none;
    color: #fff;
}

.footer h3 {
    text-align: center;
    color: #e5ecf4;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

input.flora{
    background: white;
    width: fit-content;
    margin: 0;
    color: #000000;
    border-radius: .5rem;
    padding: .4rem .3rem;
}

input.flora:focus{
    background: white;
}

.col-1, .col-2, .col-3, .col-4{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 17rem;
}

form input.flora::placeholder{
    color: #4d7d94;
}



form button.flora2:hover{
    background: #ff834d;
    transition: .7s;
}


.Social-icons {
    margin-top: 10px;
}

.Social-icons i{
-size: 20px;
    margin: 10px 5px;
    cursor: pointer;
    color: #e5ecf4;
}




/* THE MEDIA QUERY */


@media screen and (max-width: 992px) {

    /* FOOTER */


    .foot1, .foot2 {
        padding: 3rem 0;
        align-items: flex-start;
        width: 100%;
    }

    .footer {
        flex-direction: column;
    }

    .footer button{
        margin: 0 auto;

        padding: .2rem 1.3rem;
    }

    .footer input {
        width: 10rem;
        margin: 0 auto;
    } 


    .col-1, .col-2, .col-3, .col-4{
        width: 8rem;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    

    /* .how-to-start-section .container .col-lg-6 .how-thumb img{
        border: 2px solid black;
    }

    .how-to-start-section .container .col-lg-6 .how-thumb{
        border: 2px solid black;
        width: 100%;
    } */

    .how-to-start-section .container{
        /* border: 2px solid black; */
        justify-content: center;
        align-items: center;
        justify-self: center;
        align-content: center;
    }

    /* .referral-section .container .col-lg-6 .referral-thumb{
        border: 2px solid black;
    } */
    .referral-section .container{
        /* border: 2px solid black; */
        justify-content: center;
        align-items: center;
        justify-self: center;
    }

    .containercontainer .container{
        padding: 40px;
        justify-content: space-between;
    }

    .border .container .row .col .itemitem {
        /* border: 2px solid black; */
        justify-content: center;
        align-items: center;
        justify-self: center;
        align-content: center;
        
    }

    .border .container .row .col{
        /* border: 2px solid gold; */
        justify-content: center;
        align-items: center;
        justify-self: center;
        justify-items: center;
    }

}

/*body*/


.container-fluid{
    /* max-height: 100vh;  */
    /* height: 505px; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3b288f;
    display: flex;
    /* border : 2px solid #3b288f; */
    overflow:hidden;
    /* padding: 60px 60px; */
    /* background-position: 2cap;
     background-size: cover; */
}

img{
    width: 50vw;
    /* height: 50vw; */
    display: block;
    object-fit: cover;
    object-position: cover;
    border:0;
    /* overflow:hidden;  */
    /* margin-top: 0%; */

}


.left{
    width: 50%; 
    float: left;
    background-color: #fff;
    text-align: left;
    display:block;
    margin: 20px;
    height: 50%;
    background: inherit;
    padding: 0px 80px;
    /* /* height: 505.50px; */
    overflow:hidden; 
    /* border : 2px solid gold; */
}



 .right{ 
    /* width: 50%; */
    float: right;
    /* border:0; */
    /* height: 505px; */
    /* overflow:hidden;  */
    /* border : 2px solid 3b288f; */
    /* margin: 20px; */
} 


.login{
    background-color: gold;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 0px 10px;
    width: 100px;
    /* object-fit: fill; */
    height: 70px;
    overflow: hidden;
}

.login a{
    text-decoration-line: none;
    color: #fff;
-size: larger;
}

.login1{
    background-color: gold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px 20px;
    /* border : 2px solid gold;/ */
}

.login11{
    background-color: gold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px 20px;
    /* border : 2px solid gold; */
}

/* .bi bi-people{
   color: #3b288f;
} */
.slide-left1{
    width: 55%;
    float: left;
    /* border:0; */
    /* height: 505px; */
    overflow:hidden; 
    /* border : 2px solid 3b288f; */
    margin: 0px;
    /* padding: 50px 30px; */
    justify-items: left;
    background: inherit;
    /* border : 2px solid #3b288f; */
    /* padding-bottom: 100%;
    margin-bottom: -100%; */
}

.right1{ 
    width: 50%; 
    float: left;
    background-color: #fff;
    text-align: left;
    display:block;
    margin: 20px;
    height: 50%;
    background: inherit;
    padding: 6px 30px;
    /* /* height: 505.50px; */
    overflow:hidden; 
    /* border : 2px solid #3b288f; */
    /* padding-bottom: 100%;
    margin-bottom: -100%; */
    }
    
.icons{
    display: flex;
    /* border : 2px solid #3b288f; */
    padding: 20px 10px;
    align-content: space-between;
    flex-wrap: wrap;
    justify-content: space-between;
}    

img{
    max-height:100%; max-width:100%;
    
}

.icons h6{
    color: gold;
}

.icons h4{
    color: #3b288f;
}

.middle{
    text-align: center;
    padding:20px 40px;width: 100%;
    max-height: 40vh;
    /* border : 2px solid #3b288f; */
    /* width: 110%; */
    
}


.profile{
    /* flex-basis: 260px; */
    max-width: 100%;
    flex-wrap: wrap;
    background-color: #fff;   
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    /* border : 2px solid #3b288f; */
    display: grid;
    padding: 20px 20px;
    justify-content: space-between;
    align-content: space-between;
    /* float: auto; */
    /* position: absolute; */
    margin-right: 40px;
    /* width: 900px; */
    /* width: 90%; */
    overflow: hidden;
    


    
}

.profile h5 {
-size: 18px;
-weight: 100;
    letter-spacing: 3px;
    color: #4E7D94;
    text-align: center;

}

.profiles {
    display: flex;
    /* max-height: 400px; */
    /* width: 33%; */
    align-self: normal;
    /* border: 1px solid black; */
    /* overflow: hidden; */
    border : 2px solid #38d166;
    /* width: 500px; */
    padding: 0px 70px;
    margin: 0 auto;
    
    
    
}

#container3{
    display: inline;
    align-items: center;
    justify-content: center;
    


}

.line{
    padding: 0px 7px;
    text-align: center;
}

.card-text{
    /* white-space: pre; */
-family: monospace;
}

.card-text span{
    margin-left: 1em;
} 

.cardicons{
    display: flex;
    /* border : 2px solid #3b288f; */
    padding: 20px 10px;
    align-content: space-between;
    flex-wrap: wrap;
    justify-content: space-between;
}    

.cardicons span{
    margin-left: 1em;
}

.profilecoat{
    display: flex;
    justify-content: space-between;
    border : 2px solid #080511;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 50px 50px;
    justify-items: center;
    align-items: center;
    position: relative;
    text-align: center;
    align-content: center;
}


/* card 3 */
   .how-to-start-section .container{
    width: 100%;
    position: relative;
    display: flex;
    /* margin:0;
    padding:0; */
    /* border: 2px solid gold; */
    justify-content: space-between;
    flex-wrap:wrap;
    justify-content: space-around;
    /* overflow-x: hidden; */
    /* padding: 0;
    margin: 0; */
    text-align: center;
    /* border : 2px solid black; */
    /* background: #444; */
    /* background-color: #94d9ee; */

   }
  
  .container{
    width: 100%;
    position: relative;
    display: flex;
    /* margin:0;
    padding:0; */
    /* border: 2px solid gold; */
    justify-content: space-between;
    flex-wrap:wrap;
    justify-content: space-around;
    /* overflow-x: hidden; */
    /* padding: 0;
    margin: 0; */
    text-align: center;
    /* border : 2px solid black; */
    /* background: #444; */
    /* background-color: #94d9ee; */
  }
  
  .container .card{
    position: relative;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border : 2px solid #fff;   
  }
  
  .container .card .face{
    width:400px;
    height: 200px;
    transition:.4s;
    
  }
  
  .container .card .face.face1{
    position: relative;
    background: #3b288f;
    display: flex;
    justify-content: center;
    align-content:center;
    align-items: center;
    z-index: 1;
    /* transform: translateY(100px); */
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 00px;
    /* border : 2px solid #38d166; */
    height: auto;
  }
  
  .container .card:hover .face.face1{
    transform: translateY(0);
    box-shadow:
      inset 0 0 60px rgb(29, 1, 1),
      inset 20px 0 80px #f0f,
      inset -20px 0 80px #0ff,
      inset 20px 0 300px #f0f,
      inset -20px 0 300px #0ff,
      0 0 50px #fff,
      -10px 0 80px #f0f,
      10px 0 80px #0ff;
      
     
  }
  
  
  .container .card .face.face1 .content{
    opacity: .5;
    transition:  0.5s;
    text-align: center;
    justify-content: center;
    align-content:center;
    align-items: center;
    padding: 20px ;
  }
  
  .container .card:hover .face.face1 .content{
    opacity: 1;
   
  }
  
  .container .card .face.face1 .content i{
    size: 3em;
    color: white;
    display: inline-block;
     
  }
  
  .container .card .face.face1 .content h3{
    size: 1em;
    color: white;
    text-align: center;
    
  
  }
  
  .container .card .face.face1 .content a{
     transition: .5s;
  }
  
  .container .card .face.face2{
     position: relative;
     background: whitesmoke;
     /* display: flex; */
     align-items: center;
     justify-content: center;
     padding: 20px;
    box-sizing: border-box;
    /* box-shadow: 0 20px 50px rgba(0,0,0,.8); */
    /* transform: translateY(-100px);    */
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    height: auto;
    text-align: left;
    
  }
  
  .container .card:hover .face.face2{
      transform: translateY(0);
  }
  
  .container .card .face.face2 .content p, a{
    size: 10pt;
    margin: 0 ;
    padding: 0;
    color:#333;
  }
  
  .container .card .face.face2 .content a{
    text-decoration:none;
    color: black;
    box-sizing: border-box;
    outline : 1px dashed #333;
    padding: 10px;
    margin: 15px 0 0;
    display: inline-block;
  }
  
  .container .card .face.face2 .content a:hover{
    background: #333 ;
    color: whitesmoke; 
    /* box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5); */
  }
  
  .cardbutton{
    background-color: gold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 1px 20px;
    /* border : 2px solid gold;  */
    width: 100%;
    opacity: 1;
    max-width: 10rem;
    

  }

  .cardbutton:hover{
    transform: translateY(0);
    opacity: 1;
    transform: 1s;
    max-width: 40rem;
  }



 /* new button */



  button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    size: inherit;
-family: inherit;
    /* border : 2px solid gold; */
  }
  button.btn {
    width: 13rem;
    height: auto;
    border : 0px none #fff;
  }
  button.btn .circle {
    transition: all 0.30s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: gold;
    border-radius: 1.625rem;
    
  }
  button.btn .circle .icon {
    transition: all 0.30s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    
  }
  button.btn .circle .icon.arrow {
    transition: all 0.30s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
    
  }
  button.btn .circle .icon.arrow::before {
    position: absolute;
    content: '';
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            
  }
  button.btn .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;  
    bottom: 0;
    padding: 1.13rem 0;
    margin: 0 0 0 1.85rem;
    color: #3b288f;
-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    
  }
  button:hover .circle {
    width: 100%;
    /* border : 1px solid #3b288f; */
  }
  button:hover .circle .icon.arrow {
    background: #fff; 
    -webkit-transform: translate(1rem, 0);
            transform: translate(1rem, 0);
  }
  button:hover .button-text {
    color: #fff;
    
  }
   
  @supports (display: grid) {
    body {
      /* display: grid; */
      grid-template-columns: repeat(4, 1fr);
      grid-gap: 0.625rem;
      grid-template-areas: ". main main ." ". main main .";
    }
   
    #container {
      grid-area: main;
      align-self: center;
      justify-self: center;
    }
  }

  .btnmid{
    /* border : 2px solid #38d166; */
    justify-content: center;
    justify-items: auto;
    align-self: center;
    padding: 20px ;
  }

.belowbtn{
    /* border: 2px solid #333; */
    width: 100%;
    padding: 40px ;
}

.login11:hover{
    color: #fff;
    background-color: #3b288f;
    
}

/* .containercontainer{
    background-color: #94d9ee;
} */


/* .immigration{
    background-image: url(/ASSETS/top-view-travel-kit-essentials.jpg);
} */


.slide-left1 .left1 img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    position: relative;
}



.container .row img{
    display:block;
    margin:0 auto;
    width:50%;
}

/* team */

.team{
	position: relative;
	width: 100%;
	height: 100vh;
	/* background: radial-gradient(#281c3e,#0f051d); */
    background: whitesmoke;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.team-content{
	width: 100%;
	max-width: 1350px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, auto));
	align-items: center;
	gap: 2rem;
	text-align: center;
	margin-top: 4rem;
}
.team-content img{
	width: 100%;
	height: auto;
	border-radius: 15px;
	margin-bottom: 15px;
}
.center h1{
	color: #fff;
-size: 4rem;
	text-align: center;
}
.box{
	padding: 16px;
	/* background: #1b1229; */
    background: #3b288f;
	border-radius: 15px;
	transition: all .38s ease;
}
.box h3{
-size: 23px;
-weight: 600;
	color: #fff;
	margin-bottom: 8px;
}
.box h5{
-size: 15px;
-weight: 600;
	color: #b7b4bb;
	margin-bottom: 15px;
	letter-spacing: 2px;
}
.icons i{
	display: inline-block;
	color: #fff;
-size: 20px;
	margin: 0 8px;
	transition: all .38s ease;
}
.icons i:hover{
	transform: scale(1.2);
}
.box:hover{
	transform: translateY(-10px);
	cursor: pointer;
}

@media(max-width: 1240px){
	.team{
		width: 100%;
		height: auto;
		padding: 90px 2%;
	}
	.center h1{
	-size: 3.2rem;
	}
}

/* instructions */
/* element.style {
} */
@media (max-width: 991px){
.how-thumb img {
    max-width: 100%;
}
@media (max-width: 1199px){
.how-thumb img {
    max-width: 680px;
}
@media (max-width: 1399px){
.how-thumb img {
    max-width: 720px;
}
}
.how-thumb img {
    max-width: 753px;
}
img, svg {
    vertical-align: middle;
}
 ::after, ::before {
    box-sizing: border-box;
}
user agent stylesheet
img {
    overflow-clip-margin: content-box;
    overflow: clip;
}
.g-5, .gy-5 {
    --bs-gutter-y: 3rem;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x)/ -2);
    margin-left: calc(var(--bs-gutter-x)/ -2);
}
}
}


.how-to-start-section .container{
    padding:30px 20px ;
    text-align: left;
}

.how-to-start-section .container .how-wrapper .how__item-content h4{
    color: gold;
}


/* choose us */

.choose-section .container .align-items-center {
    align-items: center!important;
}
.choose-section .container .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x)/ -2);
    margin-left: calc(var(--bs-gutter-x)/ -2);
}
*, ::after, ::before {
    box-sizing: border-box;
}

.choose-section .container .row .col-lg-8 .choose-area .inner .choose-item .choose-content h4 ul li{
    /* text-align: center;  */
    color: gold;
    /* margin: 0 auto; */
}

.choose-section .container .row .col-lg-8 .choose-area .inner .choose-item .choose-content h4 ul{
    /* text-align: center; */
    margin: 0 auto;
    /* list-style-type:none; */
    display: inline-block;
}

.choose-section .container .row .col-lg-8 .choose-area .inner .choose-item .choose-content h5{
    color: #3b288f;
}

.choose-section .container .row .col-lg-8{
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0px 6px 6px 0px;
}

.choose-section .container .row .col-lg-8 .choose-area .inner{
    /* -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0px 6px 6px 0px; */
    /* border: 2px solid black; */
    /* border: 10px solid white; */
    border-color : transparent
}

.section-header{
    background-color: whitesmoke;
    padding: 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.footer-link a {
    text-decoration: none;
    list-style: none;
    color: #ffff;
}
/* main.css */

