@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Poppins:wght@500;600;700&family=Ubuntu&display=swap');

*{
    box-sizing: border-box;
    padding:0;
    margin:0;
}

/*testing start */
.card-carousel .card {
    width: 300px;
    text-align: center;
  }
  
  .card-carousel .card img {
    width: 100%;
  }
  
/* test end */
.hea{
    
    margin-bottom: 1000px;
  
}

.imglogo{
    width: 70px;
    align-items: center;
 }

html{
    scroll-behavior: smooth;
}

ul{
    list-style: none;
}

a{
    text-decoration:none;
}

body{
    background-color: #f1faff;
    font-family: 'Poppins', sans-serif;
}

.container{
    max-width: 968px;
    margin:auto;
}

.section{
    padding: 7rem 0 2rem;
}

.section_title{
    font-size: 2.5rem;
    color:#454343;
    text-align:center;
    margin-bottom: 1.5rem;
}

/* .section_height{
    height: 100vh;
} */



/* header */

.header{
    position:fixed;
    top:0;
    left:0;
    width: 100%;
    background-color: #fff;
    z-index: 100;
    transition:0.4s;
}

.nav{
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_logo{
    color:#454343;
    font-weight: 700;
    font-size: 1.25rem;
    
}

.nav_logo:hover {
    text-decoration: none;
    color:black;
}

.nav_name{
    font-weight: 600;
    
}

.nav_icon{
    font-size: 1.5rem;
}

.nav_list,
.nav_link{
    display:flex;
}

.nav_list{
    justify-content: space-around;
    column-gap: 3rem;
}

.nav_link{
    flex-direction: column;
    align-items:center;
    color:#454343;
    row-gap:0.25rem;
}

.nav_link:hover{
    color: #5b75ad;
}

i.nav_icon{
    display:none;
}


.active_link{
    position: relative;
    color:#5b75ad;
    transition: 0.3s;
}



.header__title {
    flex: 1;
  
    max-width: 115rem;
    display: grid;
    grid-template-columns: 3fr 2fr;
    row-gap: 3rem;
    align-content: center;
    justify-content: center;
  
    align-items: start;
    justify-items: start;
}

.highlight {
    position: relative;
}
  
.highlight::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.7;
    transform: scale(1.07, 1.05) skewX(-15deg);
    background: linear-gradient(#7b2cbf, #2c7da0);
}

.header__img {
    width: 100%;
    grid-column: 2 / 3;
    grid-row: 1 / span 4;
    transform: translateY(-6rem);
    margin-top: 90px;
}

.h1main{
    margin-top: 100px;
    font-size: 50px;
}


/* about */

/* .features__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-opacity);
    height: 5.5rem;
    width: 5.5rem;
    border-radius: 50%;
    margin-bottom: 2rem;
  }
  
  .features__icon svg {
    height: 2.5rem;
    width: 2.5rem;
    fill: var(--color-primary);
  } */


  .features__header {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .feature_img{
    width: 100%;
  }

  .about_flex{
    margin-bottom: 50px;
  }

/* cards css started*/



.single_advisor_profile {
    position: relative;
    margin-bottom: 50px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    z-index: 1;
    border-radius: 15px;
    -webkit-box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
    box-shadow: 0 0.25rem 1rem 0 rgba(47, 91, 234, 0.125);
}
.single_advisor_profile .advisor_thumb {
    position: relative;
    z-index: 1;
    border-radius: 15px 15px 0 0;
    margin: 0 auto;
    /* padding: 30px 30px 0 30px; */
    /* background-color: #9a38e6; */
    background: linear-gradient(to top right,#6726e0,rgb(125, 201, 187));
    overflow: hidden;
    height: 315px;
   /*  width: 315px; */
}

.single_advisor_profile .advisor_thumb>img{
    /* border-radius: 15px 15px 0 0; */
    height: 315px;
    /* width: 210px; */
}
.single_advisor_profile .advisor_thumb::after {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    width: 150%;
    height: 80px;
    bottom: -45px;
    left: -25%;
    content: "";
    background-color: #ffffff;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}
@media only screen and (max-width: 575px) {
    .single_advisor_profile .advisor_thumb::after {
        height: 160px;
        bottom: -90px;
    }
}
.single_advisor_profile .advisor_thumb .social-info {
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0;
    right: 30px;
    text-align: right;
}
.single_advisor_profile .advisor_thumb .social-info a {
    font-size: 14px;
    color: #020710;
    padding: 0 5px;
}
.single_advisor_profile .advisor_thumb .social-info a:hover,
.single_advisor_profile .advisor_thumb .social-info a:focus {
    color: #3f43fd;
    
}
.single_advisor_profile .advisor_thumb .social-info a:last-child {
    padding-right: 0;
}
.single_advisor_profile .single_advisor_details_info {
    position: relative;
    z-index: 1;
    padding: 30px;
    text-align: right;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    border-radius: 0 0 15px 15px;
    background-color: #ffffff;
}
.single_advisor_profile .single_advisor_details_info::after {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    z-index: 1;
    width: 50px;
    height: 3px;
    background-color: #3f43fd;
    content: "";
    top: 12px;
    right: 30px;
}
.single_advisor_profile .single_advisor_details_info h6 {
    margin-bottom: 0.25rem;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_advisor_profile .single_advisor_details_info h6 {
        font-size: 14px;
    }
}
.single_advisor_profile .single_advisor_details_info p {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    margin-bottom: 0;
    font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_advisor_profile .single_advisor_details_info p {
        font-size: 12px;
    }
}
.single_advisor_profile:hover .advisor_thumb::after,
.single_advisor_profile:focus .advisor_thumb::after {
    background-color: #06a5fb;
    /* #070a57 */
}
.single_advisor_profile:hover .advisor_thumb .social-info a,
.single_advisor_profile:focus .advisor_thumb .social-info a {
    color: #ffffff;
}
.single_advisor_profile:hover .advisor_thumb .social-info a:hover,
.single_advisor_profile:hover .advisor_thumb .social-info a:focus,
.single_advisor_profile:focus .advisor_thumb .social-info a:hover,
.single_advisor_profile:focus .advisor_thumb .social-info a:focus {
    color: #ffffff;
}
.single_advisor_profile:hover .single_advisor_details_info,
.single_advisor_profile:focus .single_advisor_details_info {
    background-color: #06a5fb;
}
.single_advisor_profile:hover .single_advisor_details_info::after,
.single_advisor_profile:focus .single_advisor_details_info::after {
    background-color: #ffffff;
}
.single_advisor_profile:hover .single_advisor_details_info h6,
.single_advisor_profile:focus .single_advisor_details_info h6 {
    color: #ffffff;
}
.single_advisor_profile:hover .single_advisor_details_info p,
.single_advisor_profile:focus .single_advisor_details_info p {
    color: #ffffff;
}
/* cards css ended*/

@media screen and (min-width:769px){
    .active_link::before{
        content: '';
        position: absolute;
        bottom: -0.4rem;
        width: 1rem;
        height: 3px;
        background-color: #5b75ad;
        border-radius: 3px;
    }

    /* .h1main{
        margin-top: 0px;
        font-size: 25px;
    } */

}


@media screen and (max-width:992px) {
    .container{
        margin-left: 1rem;
        margin-right: 1rem;
    }

    /* .h1main{
        margin-top: 0px;
        font-size: 25px;
    } */
    
}

@media screen and (max-width:768px) {
    .nav_menu{
        position: fixed;
        bottom:0;
        left:0;
        background-color: #fff;
        width:100%;
        height:4rem;
        padding:0 1rem;
        display:grid;
        align-content: center;
        border-radius: 1.25rem 1.25rem 0 0;
        transition: 0.4s;
        box-shadow:0 -1px 12px rgba(59, 59, 59, 0.25)
    }

    .nav{
        height: 3.5rem;
    }

    .imglogo{
        width: 50px;
        align-items: center;
     }

    i.nav_icon{
        display:block;
    }

    .section_title{
        font-size: 1.5rem;
    } 

    .h1main{
        margin-top: 0px;
        font-size: 25px;
    }
   
    
}



@media screen and (min-width:576px){
    .nav_link{
        justify-content: center;
    }
    /* .h1main{
        font-size: 24px;
        /* margin-top: 100px;
        font-size: 50px; }*/


    /* .h1main{
        margin-top: 0px;
        font-size: 25px;
    } */
}













/* contact us started*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

/* * {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
} */

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

ul {
  list-style: none;
}

input {
  overflow: hidden;
}

.section-title {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 0 0 35px;
}

.sec-pad {
  padding: 60px 0 0;
  margin: 50px 0;
}

.contact-sec {
  align-item: center;
  display: flex;
  /* background-color: #5cbde466; */
}

.contact-sec .contact-ul li,
.contact-ul b {
  font-size: 20px;
  margin: 10px 0;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  word-wrap: break-word;
}

.contact-sec .contact-ul i {
  font-size: 18px;
  padding: 10px;
  margin-right: 10px;
  border-radius: 50%;
}
.contact-detail a {
  color: #000;
  text-decoration: none;
}

.contact-sec .contact-ul li b:hover {
  color: #f93;
}

.contact-sec .contact-ul li .fa-location-dot {
  color: #f44337;
  border: 2px solid #f4433790;
}

.contact-sec .contact-ul li .fa-phone {
  color: #00b055;
  border: 2px solid #00b05590;
}

.contact-sec .contact-ul li .fa-envelope {
  color: #ff6347;
  border: 2px solid #ff634790;
}

.contact-detail span {
  width: 400px;
  display: flex;
  justify-content: center;
}
.contact-detail span a {
  font-size: 20px;
  padding: 6px 12px;
  color: #000;
  border-radius: 50%;
  margin: 0px 5px;
}
.contact-detail span .fb {
  color: #3b5998;
  border: 3px solid #3b5998;
}
.contact-detail span .fb:hover {
  color: #fff;
  background-color: #3b5998;
}

.contact-detail span .insta {
  color: #833ab4;
  border: 3px solid #833ab4;
}
.contact-detail span .insta:hover {
  color: #fff;
  background-color: #833ab4;
}

.contact-detail span .twitter {
  color: #00acee;
  border: 3px solid #00acee;
}
.contact-detail span .twitter:hover {
  color: #fff;
  background-color: #00acee;
}

form.contFrm {
  max-width: 396px;
  margin: auto;
}

.inptFld {
  width: 100%;
  height: 50px;
  border: 0;
  margin: 0 0 10px;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 16px;
  color: #000;
}

.inptFld:focus {
  outline-offset: -4px;
  outline: 1px solid #f93;
}

.contFrm textarea {
  height: 75px;
  padding-top: 5px;
}
.inptBtn {
  height: 50px;
  border: 0;
  background: #00b055;
  font-size: 14px;
  color: #fff;
  margin: auto;
  letter-spacing: 1px;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
}

/* Responcive css Start */

@media (max-width: 991px) {
  .sec-pad {
    padding: 20px 0 0px;
  }

  .contact-sec .contact-ul li,
  .contact-ul b {
    font-size: 18px;
  }

  .contact-sec .contact-ul i {
    font-size: 14px;
    padding: 6px;
    margin-right: 6px;
  }

  .inptFld {
    height: 40px;
    margin: 0 0 10px;
    padding: 0 14px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .contact-detail span {
    width: auto;
  }
  .contact-detail span a {
    font-size: 18px;
    padding: 5px 10px;
    color: #000;
    border-radius: 50%;
    margin: 0px 5px 20px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 26px;
    font-weight: 500;
  }
  .contact-sec {
    border-radius: 10% 10% 0% 0% / 5% 5% 0% 0%;
  }

  .contact-sec .contact-ul i {
    border: none;
  }
  .inptFld {
    height: 36px;
    margin: 0 0 8px;
    padding: 0 14px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-sec .contact-ul li,
  .contact-ul b {
    font-size: 16px;
  }
}

/* contact us ended */

  