@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --green: #0ca72d;
    --green2: rgb(0, 71, 27);
    --bg: #f3fff6;
    --bg2:rgb(233, 255, 238);
    --bg3:rgb(209, 254, 220);
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
    --violet: #6a41e1;
    --pink: #fc346a;
    --blue: #4481e4;
    --blue2: #EB3951;
    --blue3: #0a1f43;
    --orange: #f2532c;
    --bg-grad: linear-gradient(158deg, #f8e8ff 0%, #e0f4ff 85.84%);;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
    /* font-family: "Poppins", serif; */
    /* font-family: "Montserrat", sans-serif; */
    /* font-family: "Jost", sans-serif; */
    scroll-behavior: smooth;
    scroll-padding-top: 230px;
}
body{
    background-color: #eff4fa;
}

/********* Back To Top Button Start *********/

#top{
    display: inline-block;
    background-color: var(--blue3);
    border-radius: 15px;
    width: 60px;
    height: 60px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2.4em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: var(--blue);
  }
  #top:active {
    background-color: var(--blue);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

/********* Header Section Start *********/

.navbar .navbar-brand img{
    width: 130px;
    transition: all 0.3s ease;
    
}
 
#logo {
    transition: all 0.3s ease !important; 
  }

.logo-small{
    transform: scale(0.5);
    /* transition: .5s ease-in-out !important;  */
}
.header-shadow{
    padding: 0 !important;
}
.menu-color{
    font-size: 12px !important;
    padding: 5px 8px;
}
.navbar a{
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
}
.navbar ul li a{
    text-transform: uppercase;
    padding: 10px 20px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    transition: .3s ease-in-out;
}
.navbar ul li a:hover{
    color: var(--blue);
}
.navbar ul li{
    margin: 0 5px;
}
.navbar{
    position: fixed;
    padding: 20px 0;
    background-color: var(--blue3);
    z-index: 99999999;
    transition: .5s ease-in-out !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--blue);
}
.navbar .sign{
    background-color: var(--blue);
    padding: 10px 25px;
    border-radius: 20px 0 20px 0;
    border: 2px solid var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: .3s ease-in-out;
}
.navbar .list{
    background-color: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: .3s ease-in-out;
}
.navbar .sign:hover{
    background-color: #4679cc;
    border-color: #4679cc;
    color: #fff;
}
.s-link{
    font-size: 12px !important;
    padding: 4px 20px !important;
}
.navbar .profile{
    margin-top: 5px;
    color: var(--white);
    font-size: 27px;
    transition: .4s ease-in-out;
}
.navbar .profile:hover{
    color: var(--blue);
}
.offcanvas {
    width: 250px !important;
}
.offcanvas-backdrop.show{
    opacity: .8;
}
.custom-toggler {
    border: none;
    background: transparent;
    padding: 10px;
}
.custom-toggler:focus{
    box-shadow: none;
}
.hamburger {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    transition: all 0.4s ease-in-out;
}
.dropdown-menu{
    background-color: var(--blue);
}
.dropdown-item{
    font-size: 14px !important;
}
.heading h2{
    font-family: "Jost", sans-serif;
    position: relative;
}
.heading h2:after{
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 6px;
    background-color: var(--blue);
}
.heading h2:before{
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--blue);
}
.heading p{
    font-size: 16px !important;
}

/********* Header Section End *********/

/********* profile Section Start *********/

.form-control-borderless {
    border: none;
}
form{
    width: 100%;
    border-radius: 20px !important;
}
form .s-btn{
    background-color: var(--blue) !important;
    color: var(--white);
}
form .s-btn:hover{
    background-color: var(--blue3) !important;
    color: var(--white);
}
.form-control-borderless:hover, .form-control-borderless:active, .form-control-borderless:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.form-control{
    font-size: 15px;
    padding-right: 0;
}
.f-icon i{
    color: var(--blue) !important;
}
.bord{
    border-left: 1px solid #e1e1e1;
}
.bg-color{
    background-color: var(--white);
    border-radius: 20px;
    padding: 20px 20px !important;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
#profile p{
    font-size: 15px;
    font-weight: 500;
}
#profile p a{
    text-decoration: none;
    font-weight: 600;
    color: var(--blue);
    font-size: 16px;
    transition: .3s ease-in-out;
}
#profile p a:hover{
    color: var(--blue2);
}
.p-name a h1{
    transition: .3s ease-in-out;
}
.p-name a:hover h1{
    color: var(--blue2) !important;
}
#profile{
    z-index: 99999999;
}
#search{
    padding-top: 110px;
}
#p-bg img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}
#profile a{
    text-decoration: none;
}
#profile .c-logo img{
    width: 150px;
    border: 1px solid #d2d2d2;
    border-radius:20px;
}
#profile h1{
    font-size: 25px;
    color: var(--blue);
    margin-right: 20px;
}
#profile .ratings span{
    color: #edc74b;
    font-size: 22px;
    margin: 0 2px;
}
#profile .rp{
    color: var(--blue);
    font-size: 20px;
    font-weight: 700;
}
#profile .rp span{
    color: #585858;
    font-size: 17px;
    font-weight: 500;
}
#profile .p-tagline{
    margin-top: 5px;
    font-size: 14px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 15px;
}
#profile .p-others a{
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    transition: .3s ease-in-out;
}
#profile .p-others a:hover{
    color: var(--blue2);
}
#profile .p-others i{
    color: var(--blue);
    font-size: 18px;
    margin-right: 10px;
}
#profile .p-btn{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}
#profile .p-btn i{
    margin-left: 10px;
}
#profile .p-left a{
    display: block;
    padding: 12px 15px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 7px;
    border: 1px solid var(--blue);
}
#profile .p-right a{
    display: block;
    padding: 12px 15px;
    background-color: transparent;
    color: var(--blue);
    border-radius: 7px;
    border: 1px solid var(--blue);
}
#profile .p-re a{
    background-color: var(--blue3);
    border-color: var(--blue3);
    color: var(--white);
}
#profile .p-btn a{
    transition: .3s ease-in-out;
}
#profile .p-btn a:hover{
    color: var(--white);
    border-color: var(--blue2);
    background-color: var(--blue2);
}
.page-item{
    margin: 0 5px;
}
.page-item .active{
    background-color: var(--blue3);
    border-color: var(--blue3);
}
.page-item .active:hover{
    background-color: var(--blue3);
    border-color: var(--blue3);
}
.page-link{
    width: 60px;
    height: 60px;
    display: flex;
    color: var(--blue);
    align-items: center;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
    justify-content: center;
    padding: 15px;
    font-weight: 600;
    transition: .3s ease-in-out;
}
.page-link:hover{
    background-color: var(--blue);
    color: var(--white);
}

/********* Footer Section Start *********/

#footer{
    background-color: var(--blue3);
}
#footer p{
    font-size: 14px;
    color: #efefef;
    opacity: 0.7;
}
#footer ul{
    list-style: none;
}
#footer ul li{
    margin: 7px 0;
}
#footer ul li a{
    text-decoration: none;
    color: var(--white);
    opacity: 0.7;
    transition: .3s ease-in-out;
}
#footer ul li a:hover{
    opacity: 1;
}
#footer .social ul{
    display: flex;
    list-style: none;
}
#footer .social ul li a{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-color: var(--blue);
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: .3s ease-in-out;
}
#footer .social ul li a:hover{
    background-color: var(--blue2);
}
#footer h4{
    color: var(--white);
}
#copy{
    background-color: #031330;
}
#copy ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: right;
}
#copy li{
    margin-left: 15px;
}
#copy li a{
    color: rgb(177, 177, 177);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: .3s ease-in-out;
}
#copy li a:hover{
    color: var(--white);
    text-decoration: underline;
}
#copy p{
    font-size: 14px;
    color: var(--white);
}

/********* Footer Section End *********/