/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500&display=swap');     */
/* CDN Font-Family => Inter */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css');   /* CDN Font-Awesome Library 6.3.0 */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');   /* CDN Font-Awesome Library 6.4.0 */


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500&display=swap'); 

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
        font-family: poppins, sans-serif;
}

a{
    text-decoration: none;
    color: #000;
}

li{
    list-style: none;
    font-size: 14px;
    color: #999;
}

p{
    font-size: 14px;
    color: black;
}
/* heading-section start */
h1{
    font-size: 50px;
}
h2{
    font-size: 35px;
}
h3{
    font-size: 30px;
}
h4{
    font-size: 28px;
}
h5{
    font-size: 23px;
}
h6{
    font-size: 18px;
}
/* heading-section end */

.container{
    width: 1170px;
    margin: 0px auto;
}
.container-login {
    height: 480px;
    width: 100% !important;
    justify-content: center;
    display: flex;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-between{
    justify-content: space-between;
}

.mt-3 {
    margin-top: 30px;
}
.mb-2 {
    margin-bottom: 20px;
}
.mtb-2 {
    margin-block: 20px;
}
.mtb-3 {
    margin-block: 30px;
}
.mt-max{
    margin-top: 170px;
}

/* text-section start */

.text-white{
    color: #ffffff !important;
}
.text-white-2{
    color: #eee;
}

.text-center{
    text-align: center;
}

.text-upper{
    text-transform: uppercase;
}

.tex-right{
    text-align: right;
}

.text-align{
    align-items: center;
}

.all-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

.all-end{
    display: flex;
    align-items: end;
    justify-content: end;
}
/* text-section end */

.section{
    padding: 30px 0px;
}

.img{
    width: 100%;
    /* height: 100%; */
}

.icon img{
    width: 45px;
}



/* column-section start */
.col-1{
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 10px;
}
.col-2{
    width: calc(50% - 20px);
    margin: 10px;
    border-radius: 10px;
}
.col-3{
    width: calc(33.33% - 20px);
    margin: 10px;
    border-radius: 10px;
}
.col-4{
    width: calc(25% - 20px);
    margin: 10px;
    border-radius: 10px;
}
/* column-section end */

/* button-section start */
/*.btn {
    display: inline-block;
    outline: none;
    border: none;
    line-height: 40px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    padding: 8px 40px;
    border-radius: 5px;
}*/

.btn-primary {
    /* background-color: #162a35; */
    background-color: #45a049;
    color: #fff;
    cursor:pointer;
}

/* button-section end */

.section-100{
    padding-block: 100px;
}


.wrapper-container{
    width: 580px;
    margin: 0px auto;
}
.wrapper-container-2{
    width: 850px;
    margin: 0px auto;
}

.bg-icon{
    display: block;
    width: 45px;
    height: 45px;
    line-height: 50px;
    border-radius: 50%;
    color: #d423fe;
    /* background-color: #228be6; */
    background-color: #fff;
    text-align: center;
}
.accordian{
    width: 100%;
    margin: 10px;
}
.accordian .ac-head{
    padding:10px 20px;
    border-radius: 5px;
    background-color: #f3f1f5;
    line-height: 30px;
    cursor: pointer;
}
.accordian .ac-head i,
.accordian .ac-head p{
    font-size: 16px;
    color: #606060;
    line-height: 30px;
    font-weight: 600;
}
.accordian .ac-body{
    padding: 20px;
    display: none;
}
.accordian .ac-body p{
    font-size: 14px;
    line-height: 25px;
}

/* tool-tip start*/
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 3px solid rgb(172, 26, 102); /* If you want dots under the hoverable text */
  }

  /* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: rgb(201, 34, 34);
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 10;
}
/* tool-tip end*/

/* tool-tip bottom */
.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(89, 208, 93) transparent transparent transparent;
  }
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }
/* tool-tip bottom */

.active::after{
    background-color: #d423fe;
    color: #fff;
}
.box{
    position: relative;
}
