*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primary:#605dba;
    --text-dark:#343f52;
    --content-color:#60697b;
    --white:#ffffff;
    --primary-light:#f0f0f8;
}
ul,ol{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    width: 100%;
}
body{
    font-family: 'Urbanist';
}
.container{
    max-width: 1320px;
    margin: 0 auto;
}
.col-xxl-1{
    width:8.3333%;
    padding: 15px;
}
.col-xxl-2{
    width:16.6666%;
    padding: 15px;
}
.col-xxl-3{
    width:25%;
    padding: 15px;
}
.col-xxl-4{
    width:33.3333%;
    padding: 15px;
}
.col-xxl-5{
    width:41.6666%;
    padding: 15px;
}
.col-xxl-6{
    width:50%;
    padding: 15px;
}
.col-xxl-7{
    width:58.3333%;
    padding: 15px;
}
.col-xxl-8{
    width:66.6666%;
    padding: 15px;
}
.col-xxl-9{
    width:75%;
    padding: 15px;
}

.col-xxl-10{
    width:83.3333%;
    padding: 15px;
}
.col-xxl-11{
    width:91.6666%;
    padding: 15px;
}
.col-xxl-12{
    width:100%;
    padding: 15px;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.justify-between{
    justify-content: space-between;
}
.justify-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
.align-items-start{
    align-items: flex-start;
}
.bg-primary{
    background-color: var(--primary-light);
}
::selection{
    background-color: #605dba88;
    color: var(--white);
}
.text-center{
    text-align: center;
}
.padding-100{
    padding: 100px 0;
}
.fill-primary{
   fill: #605dba;
}
.fill-secondary{
    fill: #bfbee3;
}
/* section title css   */
.section-title h5{
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}
.section-title p{
    padding-top:20px ;
    font-size: 38px;
    color: var(--text-dark);
    font-weight: 600;
}
/* header css  */
header{
    padding: 10px 0;
    background-color: var(--white);
    box-shadow: 0px 0px 15px rgba(0 , 0, 0, 0.1);
}
header ul li a{
    color: var(--text-dark);
    font-weight: 600;
    padding: 15px ;
    transition: all 0.5s;
    display: block;
}
header ul li a i{
    font-size: 14px;
    color: var(--primary);
}
header ul li a:hover{
    color: var(--primary);
}
.menu{
    font-size: 35px;
    color: var(--text-dark);
    display: none;
}
.btn{
    padding: 20px 30px;
    background-color: var(--primary);
    border: none;
    border-radius: 10px;
    font-size: 17px;
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.5s;
}
.btn:hover{
    transform: translatey(-5px);
    box-shadow: 0px 10px 15px rgba(0 , 0, 0, 0.2);
}
.dropdown{
    position: absolute;
    background-color: var(--white);
    box-shadow: 0px 0px 20px rgba(30, 34, 40, 0.06);
    border-radius: 10px;
    top: 75px;
    opacity: 0;
    visibility: hidden;
    z-index: 7;
    transition: all 0.5s;
    transform: translatey(40px);
}
header ul li:hover .dropdown{
    opacity: 1;
    visibility: visible;
    transform: translatey(0px);
}
.dropdown .submenu{
    position: absolute;
    width: 200px;
    background-color: var(--white);
    box-shadow: 0px 0px 20px rgba(30, 34, 40, 0.06);
    border-radius: 10px;
    left: 110%;
    bottom: -110px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    transform: translatey(40px);
}
header .dropdown li:hover  .submenu{
    opacity: 1;
    visibility: visible;
    transform: translatey(0px);
}
header .gallery-menu{
    width: 1140px;
    height: 550px;
    background-color: var(--text-dark);
    border-radius: 10px;
    position: absolute;
    margin: auto;
    left:0;
    padding: 40px 0;
    top: 75px;
    right: 0;
    visibility: hidden;
    z-index: 8;
    opacity: 0;
    transition: all 0.5s;
}
header .scroll-menu{
    height: 100%;
    overflow: auto;
    position: relative;
    padding-left: 20px;
}
header .gallery-menu h2{
    position: absolute;
    font-size: 14px;
    color: #cacaca;
    bottom: 10px;
    text-align: center;
    width: 100%;
}
.gallery-menu .gallery-img-box{
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s;
    cursor: pointer;
}
.gallery-img-box:hover {
    transform: translatey(-8px);
}
.scroll-menu::-webkit-scrollbar{
    background-color: transparent;
}
header ul li:hover .gallery-menu{
    visibility: visible;
    opacity: 1;
}
.gallery-menu .col-xxl-2{
    padding: 10px;
}
.gallery-png-box{
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    transition: all 0.5s;
}
.png-menu{
    background-color: #2e353e;
}
.png-menu h3{
    color: var(--white);
    font-size: 16px;
    padding-top: 5px;
    font-weight: 500;
}
.gallery-png-box:hover{
    background-color: rgba(255, 255, 255, 0.2);
}

/* banner section css  */
.banner{
    position: relative;
}
.banner-relative{
    position: relative;
    overflow: hidden;
}
.clouds{
    position: absolute;  
    bottom: 0;
    z-index: 2;  
}
.banner-image{
    position: relative;
    z-index: 3;
}
.banner-content h1{
    font-size: 45px;
    color: var(--text-dark);
    font-weight: 600;
}
.banner-content h1 span{
    color: var(--primary);
}
.banner-content p{
    font-size: 20px;
    color: var(--content-color);
    padding: 25px 0;
    line-height: 35px;
}
.banner-content .row{
    justify-content: flex-start;
}

.banner-content .btn:nth-child(2){
    background-color: transparent;
    border: 2px solid var(--primary);
    margin-left: 10px;
    color: var(--primary);
}
.banner-content .btn:nth-child(2):hover{
    background-color: var(--primary);
    color: var(--white)
}
/* what we do ? section css  */
.service-box svg{
    height: 70px;
    padding: 15px;
}
.service-box h3{
    color: var(--text-dark);
    font-weight: 600;
    font-size: 20px;
    padding: 10px 0;
}
.service-box p{
    font-size: 17px;
    color: var(--content-color);
    line-height: 25px;
    font-weight: 500;
    padding-bottom: 20px;
}
.service-box a{
    color: var(--primary);
    position: relative;
    font-weight: 600;
}
.service-box a i{
    padding-left: 10px;
}
.service-box a::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
    transform: scalex(0);
    transform-origin: right;
    transition: transform 0.2s;
}
.service-box a:hover::after{
    transform-origin: left;
    transform: scalex(1);
}


/* WHY CHOOSE US? SECTION css  */
.choose-content .section-title{
    padding-bottom: 20px;
}
.choose-content-box svg{
    width: 30px;
}
.choose-content-box .choose-service{
    width: 80%;
}
.choose-service h2{
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    padding-bottom: 10px;
}
.choose-service p{
    font-size: 17px;
    color: var(--content-color);
    line-height: 24px;
}
.order-1{
    order:1;
}
.order-2{
    order:2;
}
/* solution css  */
.solution-content i{
    font-size: 10px;
    color: #fcc032;
}
.solution-content .col-xxl-6{
    padding-left: 0;
    color: var(--text-dark);
}
.solution-content .solution-content-info{
    font-size: 17px;
    color: var(--content-color);
    padding:25px 0;
    line-height: 26px;
    font-weight: 500;
}
.solution-content .col-xxl-6 h2{
    font-size: 45px;
    font-weight: 600;
}
.solution-content .col-xxl-6 h4{
    font-size: 17px;
    padding: 10px 0;
}
 
/* HAPPY CUSTOMERS section  */
.review-box{
    border-radius: 10px;
    padding: 100px;
}
.review-img{
    mask-image: url(../images/blob2.svg);
    -webkit-mask-image: url(../images/blob2.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}
.review-content i{
    color: #fcc032;
}
.review-content p{
    font-size: 21px;
    padding: 20px 0;
    color: var(--content-color);
    line-height: 30px;
}
.review-content h3{
    font-size: 19px;
    color: var(--text-dark);
    font-weight: 700;
}
.review-content h5{
    font-size: 17px;
    padding-top: 10px;
    font-weight: 500;
    color: var(--content-color);
}
.slick-dots li button:before{
    content: "";
}
.slick-dots li button{
    width: 5px;
    height: 5px;
    padding: 0;
    border-radius: 100%;
    background-color: var(--content-color);
    opacity: 0.2;
}
.slick-dots {
    width: auto;
    bottom: -50px;
}
.slick-arrow{
    display: none;
}
.slick-dots .slick-active button{
    width: 8px;
    background-color: transparent;
    border: 2px solid var(--content-color);
    height: 8px;
}
/* OUR PRICING  section css  */
.pricing-info{
    text-align: right;
    font-size: 17px;
    font-weight: 500;
    color:var(--content-color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pricing-info span{
    color: #e2626b;
}
.pricing-info button{
    width: 50px;
    background-color: var(--primary);
    height: 26px;
    border: none;
    border-radius: 20px;
    margin: 0 10px;
    position: relative;
}
.pricing-info button::after{
    position: absolute;
    content: "";
    border-radius: 100%;
    background-color: var(--white);
    right: 5px;
    top: 5px;
    bottom: 5px;
    left: 28px;
}
.pricing-plan{
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricing-plan h3{
    font-size: 48px;
    font-weight: 500;
    color: var(--text-dark);
}
.pricing-plan h3 p{
    font-size: 20px;
    align-self: flex-start;
}
.pricing-plan h3 span{
    font-size: 16px;
    align-self: flex-end;
}
.pricing-plan p{
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 20px 0;
}
.pricing-plan ul li{
    color: var(--content-color);
    padding: 8px 0;
    font-weight: 500;
}
.pricing-plan ul li span{
    font-weight: 700;
    padding: 0 5px;
}
.pricing-plan ul li i{
    color: var(--primary);
}
.pricing-plan-2{
    padding: 70px 50px;
}
.pricing-content .btn{
    display: inline-block;
    margin-top: 30px;
}
.pricing-content > p{
    font-size: 17px;
    color: var(--content-color);
    padding-top: 20px;
    line-height: 24px;
}
.pricing-content > p a{
    position: relative;
    color: var(--primary);
}
.pricing-content > p a::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--primary);
    bottom: 0px;
    left: 0;
    transform: scalex(0);
    transform-origin: right;
    transition: transform 0.2s;
}
.pricing-content > p a:hover::after{
    transform-origin: left;
    transform: scalex(1);
}
.swiper-cards .swiper-slide{
    background-color: var(--white);
    box-shadow: 0px 0px 15px rgba(0 , 0, 0, 0.1);
    border-radius: 15px;
}
/* LET’S TALK section css   */
.talk-img{
    padding-right: 80px;
}
.talk-content-info{
    padding-top: 15px ;
    padding-bottom: 40px;
    font-size: 17px;
    color: var(--content-color);
    font-weight: 500;
    line-height: 22px;
}
/* ANALYZE NOW section css  */
.relative{
    position: relative;
    padding-bottom: 200px;
}
.analyze{
    margin: auto;
}
.analyze-input{
    background-color: var(--white);
    display: flex;
    width: 70%;
    margin:50px auto;
    border-radius: 10px;
    overflow: hidden;
}
.analyze-input input{
    display: block;
    width: 100%;
    padding-left: 30px;
    border: none;
    outline: none;
}
.analyze-input input::placeholder{
    font-family: 'Urbanist';
    font-size: 16px;
    color: var(--content-color);
    font-weight: 500;
}
.analyze-input .btn{
    border-radius: 0px 10px 10px 0px;
    width: auto;
    padding: 15px 30px;
}
.analyze-input .btn:hover{
    transform: translate(0,0);
}
/* footer css   */
.footer-box img{
    width: 40%;
}
.footer-box p{
    font-size: 18px;
    color: var(--content-color);
    font-weight: 500;
    padding: 15px 0;
    line-height: 24px;
}
.footer-info{
    display: flex;
    align-items: flex-start;
}
.footer-info i{
    font-size: 24px;
    color: var(--primary);
    padding-right: 15px;
}
.footer-info h2{
    font-size: 19px;
    color: var(--text-dark);
    font-weight: 600;
}
.footer-info ul li {
    font-size: 17px;
    color: var(--content-color);
    font-weight: 500;
}
footer .col-xxl-3:nth-child(2){
    margin-left: auto;
}
.copyright{
    border-top: 1px solid var(--primary-light);
    padding: 50px 0;
}
.copyright p{
    font-size: 18px;
    color: var(--content-color);
    font-weight: 500;
}
.copyright i{
    color: var(--text-dark);
    font-size: 20px;
    padding-left: 10px;
    transition: all 0.5s;
}
.copyright i:hover{
    transform: translatey(-5px);
}
.btt{
    width:50px ;
    height:50px ;
    position: fixed;
    background-color: white;
    border:  2px solid var(--primary);
    right: 35px;
    bottom: 35px;
    border-radius: 100%;
    text-align: center;
    z-index: 9;
}
.btt i{
    color: var(--primary);
    line-height: 50px;
}
html{
    scroll-behavior: smooth;
}
.mx-auto{
    margin: 0 auto;
}
#tsparticles{
    width: 100%;
    height: 100vh;
}