/* primary Font Family */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Gupter:wght@400;500;700&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* secondary Font family */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Gupter:wght@400;500;700&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

::selection{
    color: var(--primary-color);
    background: var(--secondry-color);
}

:root{
    --primary-color: #050e2d;
    --secondry-color: #fdaf41;
    --third-color: #dd6927;
    --neutral-color: #f5f5f5;
    --border-color: #e6e7ea;
    --primary-font:  "Montserrat", sans-serif;
    --secondary-font: "Playfair Display", serif;
}

#topbar{
    padding: 0.5rem 0;
    background: var(--primary-color);
    font-family: var(--primary-font);
    align-content: center;
}
#topbar .container{
    max-width: 1500px;
    padding: 0 1rem;
}
#topbar h2{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0;
    animation: animation-scaleLeftRight 2s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
    margin-left: 5px;
}
#topbar h2 span{
    text-transform: uppercase;
    font-weight: 400;
}
#topbar h2 span, #topbar h2 b{
    margin-left: 0.3rem;
    color: var(--neutral-color);
}
/* #bism{
    justify-content: space-between;
} */
#topbar ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
    animation: animation-scaleRightLeft 2s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
    flex-wrap: wrap;
}

#topbar ul li a{
    text-decoration: none !important;
    color: var(--neutral-color);
    transition: all 0.5s ease-in-out 0s;
    font-size: 13px;
    font-weight: 400;
}
#topbar ul li a:hover{
    color: var(--third-color);
    font-weight: 800;
}
#topbar ul li a i{
    font-size: 19px;
    color: var(--third-color);
}
#nav-item .bi-chevron-down::before, #topbar ul li a i::before{
    font-weight: 800 !important;
}
.left-box{
    position: relative;
    padding: 17px 0px;
}
.left-box::before {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 100%;
    background: rgb(243, 184, 21);
    background: linear-gradient(to right, var(--secondry-color) 0%, #ffffff00 100%);
}
/* .left-box::after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    bottom: 0px;
    border-top: 25px solid transparent;
    border-right: 25px solid var(--primary-color);
    border-bottom: 25px solid transparent;
} */
/*--------------------*/
/*-------NavBar-------*/
/*--------------------*/
#nav{
    font-family: var(--primary-font);
    box-shadow: 2px 0px 5px #00000026;
    background: var(--neutral-color);
    /* top: 66px; */
    display: block;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}
#nav .container{
    max-width: 1500px;
    padding: 0 1rem;
}
#logo{
    padding: 0;
    animation: animation-scale 1s ease forwards;
    opacity: 0;
    animation-delay: 0.5s;
}
#logo img{
    width: 150px;
}


#nav-item{
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    padding: 1rem;
    transition: all 0.5s ease-in-out 0s;
    display: flex;
    align-items: center;
    animation: animation-scale 1s ease forwards;
    position: relative;
    opacity: 0;
}
#nav-item i.bi-chevron-down{
    margin-left: 0.4rem;
    color: var(--third-color);
    font-size: 11px;
}
#nav-item i.bi-person-fill-lock , #nav-item i.bi-book-half{
    color: var(--primary-color);
    margin-right: 0.4rem;
    font-size: 16px;
    font-weight: 800;
}
#nav-item:hover{
    color: var(--third-color);
}
#nav-item::before,#nav-item-drop::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    transition: all 0.5s ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
    background: var(--third-color);
    z-index: -1;
}
#nav-item-drop::before{
    height: 100%;
    width: 100%;
}
#nav-item:hover::before,#nav-item-drop:hover::before{
    width: 100%;
    opacity: 1;
    visibility: visible;
}
#nav .dropdown-menu {
    padding: 0;
    background: var(--primary-color);
    border: none;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
    backdrop-filter: brightness(120%) contrast(100%) saturate(102%) blur(10px) hue-rotate(0deg);
    min-width: 13rem;
    box-shadow: 0px 0px 1px 1px var(--primary-color);
    animation: animation-topToBottom 0.5s ease forwards;
    opacity: 0;
    top: 110%;
}
#nav-item-drop {
    display: block;
    padding: 13px 0.02rem;
    padding-left: 10px;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    background: none;
    color: var(--neutral-color) !important;
    font-size: 15px;
    animation: animation-topToBottom 0.5s ease forwards;
    opacity: 0;
    font-weight: 400;
    /* border-bottom: 1px solid var(--border-color); */
    /* border-radius: 10px; */
    transition: all 0.5s ease-in-out 0s;
    z-index: 1;
}
#nav-item-drop:hover {
    padding-left: 15px;
    /* background: var(--third-color); */
}
#ulLoginAndTrial{
    position: relative;
    min-height: 70px;
    background: var(--third-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    flex-wrap: wrap;
}

#nav-item-login{
    color: var(--neutral-color);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}
#nav-item-login .bi-person-fill-lock, #nav-item-login .fa-address-card{
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 0.4rem;
}
/* #span{
    font-size: 20px;
} */
.spanhr{
    animation: animation-scale 1s ease forwards;
    opacity: 0;
    color: var(--third-color);
}
#nav-toggle {
    background: #fff;
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 10px;
    margin-left: auto;
    border: 1px solid #00235b88;
}

/*----------------------*/
/*----banner // home----*/
/*----------------------*/
#home{
    align-content: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    font-family: var(--secondary-font);
    transition: all 0.5s ease-in-out 0s;
    padding: 200px 0;
    overflow: hidden;
}
#home .container{
    max-width: 1300px;
    /* overflow-x: hidden; */
    padding: 0;
}
#home::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #050e2d9c;
}
#logo-banner{
    width: 200px;
    animation: animation-scalezoom 1.2s ease-in-out forwards;
    margin-bottom: 2rem;
}

#img-positionbanner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.title-home{
    font-size: 50px;
    font-weight: 600;
    color: var(--neutral-color);
    animation: animation-leftToright 2s ease-in-out forwards;
    opacity: 0;
    margin-bottom: 1rem;
}
.title-home span{
    position: relative;
    font-family: var(--secondary-font);
    color: var(--third-color);
    transition: all 0.5s ease-in-out 0s;
    font-style: italic;
    z-index: 1;
}
/* .title-home span::first-letter{
    color: var(--secondry-color);
    font-size: 60px;
} */
.title-home span:hover{
    color: var(--primary-color);
}
.title-home span::before{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    transition: all 0.5s ease-in-out 0s;
    background: var(--secondry-color);
    z-index: -1;
}
.title-home span:hover::before{
    height: 100%;
}
#home p{
    color: var(--neutral-color);
    font-size: 20px;
    font-weight: 600;
    opacity: 0;
    animation: animation-rightToleft 2s ease-in-out forwards;
    /* font-style: italic; */
    letter-spacing: 2px;
}
#home p::first-line{
    font-size: 25px;
    color: var(--third-color);
}
#home p::first-letter{
    font-size: 50px;
    color: var(--secondry-color);
}
.btnshome{
    justify-content: center;
}
.btnshome ul{
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}
.btnshome ul li{
    float: left;
}
#btn-home{
    padding: 1rem 2rem;
    background: var(--third-color);
    color: var(--neutral-color);
    font-family: var(--secondary-font);
    margin: 0.2rem 0.7rem;
}














.wrapper {
    display: inline-flex;
    list-style: none;
    height: 120px;
    width: 100%;
    padding-top: 40px;
    font-family: "Poppins", sans-serif;
    justify-content: center;
}
  
.wrapper .icon {
    position: relative;
    background: var(--neutral-color);
    border-radius: 100px;
    margin: 25px;
    /* margin: auto; */
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon i{
    font-size: 25px;
    font-weight: 800;
    color: var(--primary-color);
}

.wrapper .icon-first{
    opacity: 0;
    animation-delay: 0.3s;
    animation: animation-scaleLeftRight 2s ease forwards;
}
.wrapper .icon-center{
    opacity: 0;
    animation-delay: 0.3s;
    animation: animation-rightToleft 2s ease-in-out forwards;
}
.wrapper .icon-last{
    animation: animation-scaleRightLeft 2s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
}
.wrapper .tooltip-home {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    font-weight: 500;
    background: var(--neutral-color);
    color: var(--neutral-color);
    padding: 5px 8px;
    min-width: 120px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    /* pointer-events: none; */
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--primary-color);
}
  
.wrapper .tooltip-home::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: var(--neutral-color);
    top: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
  
.wrapper .icon:hover .tooltip-home {
    bottom: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
  
.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip-home {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
  