@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');


*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    transition: .4s linear;
    outline: none; border: none; text-decoration: none;
    font-family: 'poppins', sans-serif;
    text-transform: unset;
}

:root{
    --main-color: linear-gradient(-45deg, #2459FE, #19A4FE);
    --blue-color-card: linear-gradient(148deg, rgba(1, 152, 255, 0.18) 0%, rgba(0, 0, 0, 0) 100%) rgb(255 255 255 / 0%);
    --light-blue-color: #F6F7FB;
    --black-color: #1b1b1b;
    --dark-black-color: #000212;
    --white-color: #fff;
    --gray-color: gray;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    --box-shadow2: 0 4px 21px 1px rgba(48,123,196,.1);
    --font1: font-family: 'Outfit', sans-serif;
}

/*Top header*/
.top-header{
    background: transparent;
    display: flex; justify-content: space-between; align-items: center;
    height: 40px;
    width: 100%;
    padding: 1rem 7%;
    position: absolute;
    z-index: 1000;
    border-bottom: 1px solid rgb(238 238 238 / 21%);
    display: none;
}

.top-header-call a{
    font-size: 1.4rem;
    color: #fff;
    font-family: 'outfit', sans-serif;
    text-decoration: none;
    display: flex; align-items: center;
}

.top-header-email a{
    font-size: 1.4rem;
    color: #fff;
    font-family: 'outfit', sans-serif;
    text-decoration: none;
    display: flex; align-items: center;
}

.top-header-map a{
    font-size: 1.4rem;
    color: #fff;
    font-family: 'outfit', sans-serif;
    text-decoration: none;
    display: flex; align-items: center;
}

.top-header-social{
    display: flex;
    align-items: center;
}

.top-header-social a{
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    display: flex; align-items: center;
    font-family: 'outfit', sans-serif;
}

.top-header-call a ion-icon{
    /*background: linear-gradient(-90deg,#7114EF, #1475F7)!important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    padding: 0.5rem;
    color: #fff;
    margin: 0 .5rem;
    border-radius: 50%;
}

.top-header-social a ion-icon{
    background: linear-gradient(110deg, #FF5D22,#FF9922);
    padding: 0.8rem;
    color: #fff;
    margin: 0 .5rem;
    border-radius: 50%;
}

.top-header-email a ion-icon{
    /*background: linear-gradient(-90deg,#7114EF, #1475F7)!important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem;*/
    color: #fff;
    margin: 0 .5rem;
    border-radius: 50%;
}

.top-header-map a ion-icon{
    /*background: linear-gradient(-90deg,#7114EF, #1475F7)!important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem;*/
    color: #fff;
    margin: 0 .5rem;
    border-radius: 50%;
}

/*End top header*/



html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
}

body{
    background: white;
    overflow-x: hidden;
}

a{
    text-decoration: none!important;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: transparent;
}

::-webkit-scrollbar-thumb{
    border-radius: 5rem;
    background-color: transparent;
}

/*Start navbar*/
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 8%;
    height: 75px;
    z-index: 1000;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: transparent;
}

.btn{
    background: var(--main-color);
    color: var(--white-color);
    padding: .6rem 2rem;
    font-size: 1.6rem;
    margin-top: 1rem;
    display: inline-block;
    border-radius: 33px;
}

.btn:hover{
    letter-spacing: 1px;
}

.header .logo img{
    height: 4.5rem;
}

.header .navbar a{
    margin: 0 1rem;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white-color);
}

.header .navbar a:hover{
    color: var(--white-color);
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--main2-color);
}

header.black{
  opacity: 1;
  transition: .9s all!important;
  position: fixed;
  right: 0;
  left: 0;
  border-bottom: none;
  top: 0!important;
  z-index: 1000;
  background: #00000045;
  backdrop-filter: blur(5px);
}

.nav-btn{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn a{
    background: #00b137;
    color: var(--white-color);
    display: inline-block;
    text-decoration: none;
    padding: 0.4rem 1rem;
    font-size: 1.4rem;
    font-weight: 600!important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    height: 45px;
    border-radius: 8px;
}

.nav-left{
    display: none;
}

.header .icons div{
    color: var(--black-color);
    cursor: pointer;
    font-size: 2.3rem;
    margin-left: 2rem;
    display: none;
}

.header .icons div:hover{
    color: var(--main-color);
}

.header div #menu-btn{
    display: none;
}

.navbar{
  padding-bottom: 0!important;
}

.display-none{
  display: none;
}

/*..........*/

/*Start header*/

ul{
    list-style: none;
    margin:0;
    padding:0;
}

a{
    text-decoration: none;
}

.container{
    max-width: 100%;
    width: 100%;
    /*position: fixed;
    top: 0;
    right: 0;*/
}

.header{
    position: fixed;
    width: 100%;
    left:0;
    top:0;
    z-index: 1000;
    padding: 0 7%;
    height: 65px;
    border-bottom: 1px solid rgb(238 238 238 / 21%);
}

header.black{
    background: #00000045;
    backdrop-filter: blur(5px);
    transition: .5s all;
    z-index: 1000;
    height: 70px;
}

.header-main{
/*    background-color: var(--main-color);*/
    display: flex;
    width: 100%!important;
    justify-content: space-between;
    background-color: transparent;
    align-items: center;
    padding: 10px 0;
    border-radius: 4px;
}

.header .logo{
    padding: 0;
}

.header .logo img{
    height: 4rem;
}

.header .nav-menu{
    padding: 0 15px;
}

.header .menu > .menu-item{
    display: inline-block;
    margin-left: 20px;
    position: relative;
}

.header .menu > .menu-item > a{
    display: block;
    padding: 12px 0;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--white-color);
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.header .menu > .menu-item > a:hover{
    color: transparent;
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    background: var(--main-color);
}

.header .menu > .menu-item > a .fa-angle-down{
    display: inline-block;
    height: 12px;
    width: 12px;
    position: relative;
    margin-left: 5px; 
    pointer-events: none;
}

.header .menu > .menu-item > a .fa-angle-down:before,
.header .menu > .menu-item > a .fa-angle-down:after{
    content:'';
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top:50%;
    background-color: var(--white-color);
    height: 2px;
    width: 100%;
    transform: translate(-50%,-50%);
    transition: all 0.3s ease;
}

.header .menu > .menu-item:hover > a .fa-angle-down:before,
.header .menu > .menu-item:hover > a .fa-angle-down:after{
   background-color: var(--white-color);
}

.header .menu > .menu-item > a .fa-angle-down:after{
   transform: translate(-50%,-50%) rotate(-90deg);  
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
    letter-spacing: 1px;
}

.header .menu > .menu-item > .sub-menu{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 220px;
    position: absolute;
    left:0;
    top:100%;
    background-color: var(--white-color);
    padding: 10px 0;
    border-top: 3px solid #7C34C8;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity:0;
    border-radius: 8px;
    visibility: hidden;
}

.menu{
    width: 100%;
    margin: 0 1.4rem;
}

@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .fa-angle-down:after{
    transform: translate(-50%,-50%) rotate(0deg);       
 }
}

.header .menu > .menu-item > .sub-menu > .menu-item{
    display: block;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a{
    display: block;
    padding: 7px 20px;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--black-color);
    transition: all 0.3s ease;
    font-family: 'outfit', sans-serif;
    text-transform: capitalize;
}

.header .open-nav-menu{
    height: 34px;
    width: 40px;
    margin-right: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.header .open-nav-menu span{
    display: block;
    height: 3px;
    width: 24px;
    background-color: #fff;
    position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
    content: '';
    position: absolute;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
}

.header .open-nav-menu span:before{
    top:-7px;
}

.header .open-nav-menu span:after{
    top:7px;
}

.header .close-nav-menu {
    height: 40px;
    width: 40px;    
    cursor: pointer;
    display: none;
    background: var(--black-color);
    align-items: center;
    justify-content: center;
    margin: 0 0 15px 11px;
    cursor: pointer;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
}

.header .close-nav-menu img{
    width: 16px;
}

.header .menu-overlay{
    position: fixed;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity:0;
    transition: all 0.3s ease;
}

.nav-btn a{
    border-radius: 4px;
    background: var(--main-color);
    color: var(--white-color);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    padding: .6rem 1.8rem;
    transition: .5s all;
    height: 45px;
    font-family: 'outfit', sans-serif;
    font-size: 1.2rem;
}

.header .menu > .menu-item > a{
    font-size: 1.6rem;
}

.nav-btn a:hover{
    background: transparent;
    color: var(--white-color);
}

.flex-menu{
    display: flex;
    align-items: center;
}

.login-none{
    display: none!important;
}
/*End navbar*/

/*Start home section*/
/*Start home section*/
.carousel-item{
    display: flex!important;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 5%;
    -webkit-animation: zoomin 20s ease-in infinite;
    animation: zoomin 20s ease-in infinite;
    transition: all .5s ease-in-out;
    overflow: hidden; background-attachment: fixed;
    background-size: 100%; background-position: center;
    position: relative;
}


@keyframes zoomin {
  0% {
    background-size: 100%;
  }

  50% {
    background-size: 150%;
  }

  100% {
    background-size: 100%;
  }
}


/*.carousel-item h2{
    font-size: 7rem;
    font-weight: 900;
    font-family: 'jost', sans-serif;
    color: #fff;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 26%), 0px 8px 13px rgba(0,0,0,0.1), 0px 18px 23px rgba(0,0,0,0.1);
    animation-name: fadeInRight;
    animation-duration: 1.5s;
}*/

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*.carousel-item p{
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    animation-name: fadeInRight;
    animation-duration: 2.5s;
}*/

/*.home-btn a{
    background: linear-gradient(110deg, #FF5D22,#FF9922);
    color: #fff;
    font-size: 1.4rem;
    padding: 1rem 2rem;
    outline: 1.2px solid #ff5d22;
    outline-offset: 5px;
    text-decoration: none;
    width: 150px; display: flex;
    justify-content: center; align-items: center;
    animation-name: fadeInRight;
    animation-duration: 3s;
}*/

/*.home-btn a i{
    margin: 0 .7rem;
}*/

.carousel-control-prev{
    width: 50px;
    height: 50px;
    background: #ffffff14;
    top: 50%;
    border-radius: 50%;
    left: 18px;
}

.carousel-control-next {
    width: 50px;
    height: 50px;
    background: #ffffff14;
    top: 50%;
    border-radius: 50%;
    right: 18px;
}

.carousel-control-prev-icon{
    background: url(../img/left.svg);
    filter: invert(1);
}

.carousel-control-next-icon{
    background: url(../img/right.svg);
    filter: invert(1);
}

.carousel-control-next, .carousel-control-prev{
    opacity: 1!important;
}

.cursor{
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff5d22a6;
    z-index: 10000000;
    transition: .3s;
    pointer-events: none;
    transform: translate(-50%.-50%);
}

.home-section{
    position: relative;
}

.home-blur-effect {
    width: 350px;
    height: 350px;
    background: var(--main-color);
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    filter: blur(150px);
    top: 10%;
}
/*End home section*/

.home-section-card{
    background: #fff;
    width: 100%; height: auto; background-size: cover;
    background-position: right;
    padding: 0 5%;
}
.home-section-card .row-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    transform: translateY(-50px);
    width: 100%;
    z-index: 998;
    position: relative;
}

.home-card-box{
    background-color: #fff;
    width: 100%;
    padding: 2rem 3rem;
    text-align: center;
    margin: auto;
    display: flex;
    height: 200px;
    flex: 1 1 200px;
    box-shadow: 0 20px 40px rgb(34 42 65 / 10%)!important;
    transition: .6s transform;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home-card-box:hover{
    background: url(../img/card-bg.jpg);
    height: 200px;
    padding: 2rem 3rem;
    width: 100%; height: auto; background-size: cover;
    background-position: center;
    transform: translateY(-20px);
}

.home-card-box:hover h4{
    color: #fff;
}

.home-card-box img{
    width: 70px;
}

.home-card-box h4{
    font-size: 1.8rem;
    color: #333;
    padding: 1rem 0;
    font-weight: 800;
}

.home-card-box:hover img{
    filter: brightness(30);
    transform: scale(1.2) translateY(-10px);
}

.home-text{
    max-width: 900px;
    position: relative;
    margin-top: 4rem;
    z-index: 3; padding: 4rem 0;
}

.home-text h2{
    color: var(--white-color);
    font-size: 6rem;
    font-weight: 800;
    font-family: 'outfit', sans-serif;
}

.home-text h2 span{
    color: transparent;
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    background: var(--main-color);
}

.home-text p{
    color: var(--white-color);
    font-size: 1.rem;
    line-height: 1.7;
    letter-spacing: .3px;
    max-width: 700px; margin: auto;
}

.home-text h4 {
    background: var(--main-color);
    color: var(--white-color);
    font-size: 1.4rem;
    letter-spacing: .3px;
    padding: 0 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 33px;
    height: 45px; margin: auto;
    font-family: 'outfit', sans-serif;
}

.read-more-btn a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 1rem; padding-left: 2rem;
    background: var(--blue-color-card);
    border-radius: 33px;
    max-width: 200px; height: 55px;
    margin: auto;
    font-size: 1.6rem;
    letter-spacing: 1px;
    font-family: 'outfit', sans-serif;
    color: var(--white-color);
    border: 1.6px solid #E3F4FF;
    margin-top: 2rem;
}

.read-more-btn-img{
    width: 35px; height: 35px;
    background: #ffffff1f;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.read-more-btn-img img{
    width: 16px;
}

.home-social-media {
  position: fixed;
  z-index: 999;
  right: 0;
  width: 60px;
  margin-top: 150px;
  transition: all 0.3s linear;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.4);
}
.home-social-media li {
  height: 60px;
  position: relative;
}
.home-social-media li a {
  color: #333;
  background: var(--white-color);
  display: block;
  width: 100%;
  height: 100%;
  line-height: 60px;
  border-bottom: 1px solid rgb(7 44 71 / 19%);
  transition: all 0.3s linear;
}
/*.home-social-media li:nth-child(1) a {
  background: #4267b2;
}
.home-social-media li:nth-child(2) a {
  background: #1da1f2;
}
.home-social-media li:nth-child(3) a {
  background: #e1306c;
}
.home-social-media li:nth-child(4) a {
  background: #2867b2;
}
.home-social-media li:nth-child(5) a {
  background: #333;
}
.home-social-media li:nth-child(6) a {
  background: #ff0000;
}*/
.home-social-media li a i {
  position: absolute;
  top: 17px;
  left: 20px;
  font-size: 2rem;
  color: transparent;
-webkit-background-clip: text!important;
-webkit-text-fill-color: transparent;
background: var(--main-color);
}
.home-social-media li a span {
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: none;
}
/*
.home-box-outer{
    background-image: linear-gradient(to right, #0098FF, #7C34C8);
    border: double 1px transparent;
    background-origin: border-box;
    background-clip: content-box;
}*/

.home-box-main{
    display: grid;
    grid-row-gap: 2rem;
    grid-column-gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    margin-top: 3rem;
}

.home-box-inner{
    /*background: linear-gradient(148deg, rgba(1, 152, 255, 0.18) 0%, rgba(0, 0, 0, 0) 100%);*/
    padding: 1.5rem 3rem;
    backdrop-filter: blur(15px);
    margin: auto;
    min-height: 180px;
    background: var(--white-color);
    border-radius: 4px;
}

.home-box-inner img{
    width: 60px;
    margin: auto;
    display: block;
}

.home-box-inner h3{
    font-family: 'outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--black-color);
    padding: 1rem 0;
    line-height: 1.5;
}

.top-absolute{
    position: relative;
}

.top-absolute .top-absolute-line1{
    width: 50px; height: 2px;
    background-color: #723CCC;
    position: absolute;
    top: -8px;
    left: -8px;
}

.top-absolute .top-absolute-line2{
    width: 50px;
    height: 2px;
    background-color: #723CCC;
    transform: rotate(90deg);
    position: absolute;
    left: -34px;
    top: 16px;
}

/*End home section*/

/*Start member section*/
.member-section{
    padding: 4rem 7%;
    background: #020512;
    position: relative;
}

.member-box{
    display: flex; align-items: center;
    gap: 1.5rem; 
}

.member-box img{
    width: 80px;
}

.member-box .member-box-content h4{
    font-family: 'outfit', sans-serif;
    color: var(--white-color);
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0;
}

.member-box .member-box-content p{
    font-family: 'poppins', sans-serif;
    color: var(--white-color);
    font-size: 1.4rem;
    margin: 0;
}

.member-section-work-img{
    width: 100%;
    display: block;
    margin: auto;
}
/*End member section*/

/*Start about section*/
.about-section{
    background: var(--light-blue-color);
    padding: 4rem 7%;
    /*background: url(../img/popular-section-bg.jpg);
    background-size: cover; background-attachment: fixed;*/
}

.button {
  display: inline-block;
  position: relative;
}
.button.is-play {
  background-color: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.button.is-play .button-outer-circle {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.button.is-play .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
}
.button.is-play .button-icon .triangle {
  animation: fadeIn 7s ease;
}
.button.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  animation: triangleStroke 3s;
  animation-timing-function: ease;
}
.has-scale-animation {
  animation: smallScale 3s infinite;
}
.has-delay-short {
  animation-delay: 0.5s;
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-o-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
@-o-keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}


/*.....*/
.about-img{
    width: 100%;
    height: 100vh;
    display: flex;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#0000005c, #0000005c), url(../img/about-bg-img.jpg);
    background-size: cover!important; background-position: center!important;
}

.about-content{
    padding: 1rem 2.5rem;
}

.about-content h1 span{
    color: transparent;
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    background: var(--main-color);
    font-size: 5rem;
    font-weight: 800;
    font-family: 'outfit', sans-serif;
}

.about-content h1{
    color: var(--black-color);
    font-size: 5rem;
    font-weight: 800;
    font-family: 'outfit', sans-serif;
}

.about-content p{
    color: var(--black-color);
    line-height: 1.6;
    padding: 1rem 0;
    font-size: 1.4rem;
    font-family: 'outfit', sans-serif;
}

.about-content .read-more-btn a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 1rem; padding-left: 2rem;
    background: var(--main-color);
    border-radius: 33px;
    max-width: 200px; height: 55px;
    font-size: 1.6rem;
    margin: 0!important;
    letter-spacing: 1px;
    font-family: 'outfit', sans-serif;
    color: var(--white-color);
    border: 1.6px solid #E3F4FF;
    margin-top: 1rem;
}

.line-anim-main{
    width: 80px;
    height: 12px;
    border-radius: 33px;
    border: 1.4px solid #0098FF;
    display: flex; align-items: center;
    justify-content: start;
    padding: 0 .2rem;
    position: relative;
}

.line-anim-inner{
    width: 75px;
    height: 4px;
    border-radius: 33px;
    margin: 0;
    background: #0098FF;
    animation: 4s line-grow linear infinite;
}

@keyframes line-grow{
    0%{
        width: 20px;
    }

    25%{
        width: 25px;
    }

    100%{
        width: 50px;
    }
}
/*End about section*/

/*Start popular section*/
.popular-section{
    padding: 4rem 7%;
    background: #020512;
}

.heading-section{
    max-width: 800px;
    margin-bottom: 2rem;
}

.heading-section h2{
    font-size: 6rem;
    font-weight: 700;
    color: var(--black-color);
    font-family: 'outfit', sans-serif;
    padding: 1rem 0;
}

.heading-section h2 span{
    -webkit-background-clip: text!important;
    background: var(--main-color);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.popular-section-box{
    padding: 3rem;
    position: relative;
    background: linear-gradient(148deg, rgba(1, 152, 255, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 12px; border: 1.2px dashed #01326d;
    margin-bottom: 1.5rem;
}

.popular-section-box::before{
    content: '';
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    border-radius: 0 12px;
    border: 1px solid transparent;
    background: var(--main-color);
    -webkit-mask: linear-gradient(var(--white-color) 0 0) padding-box, linear-gradient(var(--white-color) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    top: 0;
    left: 0;
    right: 0;
}

.popular-section-box-line {
    height: 2px;
    margin: 10px 0;
    width: 50px;
    background: var(--main-color);
}

.popular-section-box img{
    width: 60px;
}

.popular-section-box h4{
    font-family: 'outfit', sans-serif;
    font-size: 2.2rem; font-weight: 500;
    color: var(--white-color);
    line-height: 1.5; margin: 0;
    max-width: 300px;
}

.popular-section-box p {
    font-size: 1.4rem;
    color: var(--light-gray);
    line-height: 1.57;
    margin: 0;
    font-weight: 300;
    margin-top: 1.4rem;
}

.popular-section-box-count{
    font-weight: 800;
    color: #ffffff2e;
    font-size: 4rem;
    top: 10px!important;
    position: absolute; right: 30px;
    font-family: 'outfit', sans-serif;
}
/*End popular section*/

/*Start service section*/
.service-section {
  padding: 4rem 5%;
  display: grid;
  place-items: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.column {
  width: 100%;
  padding: 0 1em 1em 1em;
  text-align: center;
}

.header-bottom-heading{
    width: 100px;
    height: 5px;
    background: var(--main-color);
    margin: auto; border-radius: 33px;
    margin-bottom: 1rem;
}

.service-card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(#ffffff 50%, #1a4dbe 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 8px;
  box-shadow: 0px 12px 24px rgba(47,65,129,.1);
  cursor: pointer;
  transition: 0.5s;
}

.service-card h3 {
  font-size: 2rem;
    font-weight: 600;
    color: #1a4dbe;
    margin: 1em 0;
}

.service-card p {
  color: #737887;
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.icon-wrapper {
    background-color: #e8f4ff;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #1a4dbe;
    border-radius: 50%;
    border: 1px dashed #1a4dbe;
    display: grid;
    place-items: center;
    transition: 0.5s;
}

.icon-wrapper img{
    width: 50px;
}
.service-card:hover {
  background-position: 0 100%;
}
.service-card:hover .icon-wrapper {
  background-color: #ffffff;
  color: #1a4dbe;
}
.service-card:hover h3 {
  color: #ffffff;
}
.service-card:hover p {
  color: #f0f0f0;
}

.view-more-btn a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1b4fc1;
    color: var(--white-color);
    padding: 1rem 3rem;
    border-radius: 6px;
    font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .column {
    flex: 0 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

/*End service section*/

/*Start testimonial section*/
.testimonial-section{
    background-color: #030213;
    width: 100%; background-attachment: fixed;
    position: relative;
}

.blur-effect-blue-color{
    width: 230px;
    height: 230px;
    background: var(--main-color);
    filter: blur(150px);
    position: absolute;
    z-index: 997; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}

.testimonial-section-slider{
    height: 70vh;
}

.testimonial-right-containers{
    width: 100%; height: 100%;
    background: url(../img/testimonial-right-img.jpg);
    background-size: cover; background-position: center;
}

.testimonial-section-left{
    padding: 4rem;
    z-index: 998;
}

.testimonial-section-left .heading-section{
    margin-left: 2rem;
}

.testimonial-section-left .heading-section h2{
    font-size: 4rem;
    color: var(--white-color);
}

.testimonial-slide-box{
    text-align: center;
    background: linear-gradient(148deg, rgba(1, 152, 255, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
    position: relative;
    padding: 2rem;
    border-radius: 12px;
    margin: 0 2rem;
    position: relative;
}

.testimonial-slide-box i {
    color: transparent;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background: #edf1f517;
    font-size: 20rem;
}

.fa-quote-right {
    position: absolute;
    bottom: 50%;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, 50%);
}

.fa-quote-right{
    position: absolute;
    bottom: 50%;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, 50%);
}

.testimonial-slide-box::before{
    content: '';
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    border: 1px solid transparent;
    background: var(--main-color);
    -webkit-mask: linear-gradient(var(--white-color) 0 0) padding-box, linear-gradient(var(--white-color) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    top: 0;
    left: 0;
    right: 0;
}


.testimonial-slide-box img{
    width: 90px; display: block;
    margin: auto; border-radius: 50%;
}

.testimonial-slide-box p{
    color: var(--white-color);
    font-size: 1.4rem;
    color: var(--white-color);
    line-height: 1.6;
    padding: 1rem 0;
}

.testimonial-slide-box .testimonial-slide-box-footer h5{
    font-size: 2rem; font-weight: 500;
    color: #0098FF;
    font-family: 'outfit', sans-serif;
    margin: 0;
}

.testimonial-slide-box .testimonial-slide-box-footer p{
    font-size: 1.2; 
    color: #e5e5e5;
    font-family: 'outfit', sans-serif;
}

.value-box-main{
   background: linear-gradient(45deg, #ffffff12, transparent);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(15px);
}

.value-box{
    text-align: center;
    margin-bottom: 1.5rem;
}

.value-box img{
    width: 60px;
}

.value-box h4{
    font-size: 2rem;
    font-weight: 500;
    font-family: 'outfit', sans-serif;
    color: var(--white-color);
    margin-top: .4rem;
}

/*Start whatwedo-section*/
.what-we-do-section{
    padding: 4rem 7%;
    background-size: cover; background-attachment: fixed;
}

.what-we-do-box{
    width: 100%;
    height: 350px;
    background: linear-gradient(transparent, black),url(../img/steel.jpg);
    background-size: cover; background-position: center;
    border-radius: 14px;
    position: relative;
    display: flex; align-items: end;
    padding: 2rem; transition: .8s all;
    margin-bottom: 2rem;
    position: relative;
}

/*2*/
.what-we-do-box2{
    background: linear-gradient(transparent, black),url(../img/finance.jpg);
    background-size: cover; background-position: center;
}

.what-we-do-box2:hover{
    background: linear-gradient(transparent, #0098FF),url(../img/finance.jpg)!important;
}


/*3*/
.what-we-do-box3:hover{
    background: linear-gradient(transparent, #0098FF),url(../img/crusher.jpg)!important;
}

.what-we-do-box3{
    background: linear-gradient(transparent, black),url(../img/crusher.jpg);
    background-size: cover; background-position: center;
}

/*4*/
.what-we-do-box4:hover{
    background: linear-gradient(transparent, #0098FF),url(../img/paper-manufecturing.jpg)!important;
}

.what-we-do-box4{
    background: linear-gradient(transparent, black),url(../img/paper-manufecturing.jpg);
    background-size: cover; background-position: center;
}

/*5*/
.what-we-do-box5:hover{
    background: linear-gradient(transparent, #0098FF),url(../img/real-estate.png)!important;
}

.what-we-do-box5{
    background: linear-gradient(transparent, black),url(../img/real-estate.png);
    background-size: cover; background-position: center;
}

/*6*/
.what-we-do-box6:hover{
    background: linear-gradient(transparent, #0098FF),url(../img/road.jpg)!important;
}

.what-we-do-box6{
    background: linear-gradient(transparent, black),url(../img/road.jpg);
    background-size: cover; background-position: center;
}

/*7*/
.what-we-do-box7:hover{
    background: linear-gradient(transparent, #0098FF),url(../img/train.jpg)!important;
}

.what-we-do-box7{
    background: linear-gradient(transparent, black),url(../img/train.jpg);
    background-size: cover; background-position: center;
}

/*8*/
.what-we-do-box8:hover{
    background: linear-gradient(transparent, #0098FF),url(../img/polytech.jpg)!important;
}

.what-we-do-box8{
    background: linear-gradient(transparent, black),url(../img/polytech.jpg);
    background-size: cover; background-position: center;
}

/*9*/
.what-we-do-box9:hover{
    background: linear-gradient(transparent, #0098FF),url(../img/white-coal.jpg)!important;
}

.what-we-do-box9{
    background: linear-gradient(transparent, black),url(../img/white-coal.jpg);
    background-size: cover; background-position: center;
}

.what-we-do-box:hover{
    background-size: cover!important; background-position: center;
    width: 100%; height: 350px;
    transition: .8s all;
    background: linear-gradient(transparent, #0098FF),url(../img/steel.jpg);
}

.what-we-do-box:hover .what-we-do-box-arrow{
    transform: scaleX(-1);
}

.what-we-do-box h4{
    color: var(--white-color);
    font-size: 3rem; font-weight: 600;
    font-family: 'outfit', sans-serif;
    letter-spacing: .3px; margin: 0;
    transition: .8s transform;
}


.what-we-do-box p{
    color: var(--white-color);
    font-size: 1.4rem; 
    font-family: 'outfit', sans-serif;
    letter-spacing: .3px;
    padding: .5rem 0;
}

.what-we-do-box-arrow{
    width: 60px;
    position: absolute;
    right: 15px; top: 15px;
    transition: .8s transform;
}

.what-we-do-box .what-we-do-box-count{
    font-weight: 800;
    color: #fff6;
    font-size: 5rem;
    font-family: 'outfit', sans-serif;
    position: absolute; top: 20px;
    left: 20px; transition: .5s all;
}

.what-we-do-box:hover .what-we-do-box-count{
    opacity: 0;
}
/*End Start whatwedo-section*/

/*Start footer*/
.footer-section {
  padding: 4rem 5%;
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000;
}

.discount-box {
  background: var(--main-color);
  border-radius: 1rem;
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  color: #000;
}

.discount-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white-color);
}

.discount-text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--white-color);
    line-height: 1.7;
}

.discount-form {
  display: flex;
  justify-content: center;
}

.email-input {
    padding: 0.75rem 2.4rem;
    border-radius: 33px 0 0 33px;
    border: none;
    flex: 1 1 250px;
    max-width: 400px;
    font-size: 1.6rem;
    height: 45px;
}

.get-started-btn {
    padding: 0.75rem 2rem;
    background-color: #000;
    color: #fff;
    border-radius: 0 2rem 2rem 0;
    border: none;
    font-weight: 600;
    font-size: 1.4rem;
    height: 45px;
}

.get-started-btn {
  padding: 0.75rem 2rem;
  background-color: #000;
  color: #fff;
  border-radius: 0 2rem 2rem 0;
  border: none;
  font-weight: 600;
}

/* Footer Links */
.footer-heading {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2547aa;
}
.footer-text {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--white-color);
}

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 1rem;
}

.footer-list a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}

.footer-list a:hover {
  text-decoration: underline;
}

/* Buttons */
.subscribe-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    background-color: white;
    border: 1px solid #fff;
    color: black;
    font-size: 1.4rem;
}

.store-buttons i {
  color: #fff;
  margin-right: 1rem;
}

.store-buttons i:hover {
  color: #b88bfb;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #333;
  margin-top: 3rem;
  padding-top: 1.5rem;
  gap: 1rem;
  font-size: 0.875rem;
}

.social-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.social-icons a{
    font-size: 1.6rem;
    color: var(--white-color);
}
/*End footer*/

/*Start service page ui*/
.service-section-page{
    padding: 4rem 5%;
}

.service-section-page .row h1{
    font-size: 3rem;
    font-weight: 600;
    color: var(--black-color);
    margin: 0;
    margin-top: 4rem; margin-bottom: 2rem;
    font-family: 'outfit', sans-serif;
}

.service-section-main-digital-container-card{
    text-align: center;
    position: relative;
    padding: 2rem;
    background: #fff; margin-top: 5rem;
    box-shadow: rgb(240 226 251) 0px 7px 29px 0px;
    border-radius: 12px;
    display: flex; align-items: center;
    justify-content: center; min-height: 130px;
}

.service-section-main-digital-container-card-border {
    padding: 3rem;
    border: 5px solid #F6F7FB;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto;
    background: #ffffff;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.lines{
    width: 100px;
    background: #F6F7FB;
    height: 6px;
    border-radius: 33px;
    position: absolute;
    top: 0; z-index: 1;
}

.service-section-main-digital-container-card img{
    width: 50px;
}

.service-section-main-digital-container-card h4{
    color: #333;
    font-size: 1.8rem;
    margin: 0; padding-top: 1.5rem;
    line-height: 1.3;
    margin-top: 2rem;
    font-family: 'outfit', sans-serif;
}

/*End service page ui*/

/*Start portfolio section*/
.portfolio-section {
  padding: 4rem 5%;
  background-color: #f9f9f9;
}

.portfolio-container {
  margin-top: 4;
}

.portfolio-card {
  background-color: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-0.3rem);
}

.portfolio-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.portfolio-content {
  padding: 1.6rem;
}

.portfolio-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.portfolio-author {
  font-size: 1.4rem;
  color: #666;
}

.portfolio-price {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
  font-size: 1.4rem;
}

.rating {
  color: #fbb034;
  font-weight: 700;
}

.sales {
  color: #888;
}

.portfolio-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.portfolio-cart,
.portfolio-preview {
  width: 100%;
  font-size: 1.2rem;
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
  border: 1px solid;
  text-align: center;
  transition: 0.3s ease;
}

.portfolio-cart {
    border-color: #6c757d;
    color: #6c757d;
    background-color: transparent;
    height: 40px;
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.portfolio-cart:hover {
  background-color: #6c757d;
  color: #fff;
}

.portfolio-preview {
  border-color: #0d6efd;
  color: #0d6efd;
  background-color: transparent;
  text-decoration: none;
  height: 40px;
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.portfolio-preview:hover {
  background-color: #0d6efd;
  color: #fff;
}
/*End portfolio section*/

/*Start contact section*/
.contact-section .modal-content {
      border: none;
      border-radius: 1.2rem;
      box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
      padding: 3rem;
      animation: fadeIn 0.5s ease;
    }

    .contact-section .modal-header {
      border-bottom: none;
      padding-bottom: 0;
    }

    .contact-section .modal-title {
      font-size: 2.2rem;
      font-weight: 600;
      color: #333;
    }

    .contact-section .form-label {
      font-size: 1.4rem;
      font-weight: 500;
    }

    .contact-section .form-control {
      font-size: 1.3rem;
      padding: 0.9rem 1.2rem;
      border-radius: 0.6rem;
      border: 1px solid #ccc;
    }

    .contact-section .form-control:focus {
      box-shadow: none;
      border-color: #4e89ff;
    }

    .contact-section .btn-send {
      font-size: 1.4rem;
      padding: 0.8rem 2rem;
      border-radius: 0.6rem;
      background: linear-gradient(135deg, #4e89ff, #6ec8ff);
      color: white;
      border: none;
      transition: 0.3s ease;
    }

    .contact-section .btn-send:hover {
      background: linear-gradient(135deg, #3b70e2, #5bb9ff);
    }

    @keyframes fadeIn {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .contact-section.modal {
      z-index: 1100 !important;
    }

    .contact-section .modal-dialog {
      z-index: 1101;
    }

    .modal-backdrop.show {
      z-index: 1099;
    }
/*End contact section*/
























/*Media quaries*/
@media screen and (max-width: 991px){
html{
    font-size: 55%;
}

.header div #menu-btn{
    color: var(--white-color);
    display: inline-block;
}

.header .navbar{
    position: absolute;
    top: 100%;
    display: block;
    width: 100%;
    background: #030213;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    height: auto;
    z-index: 1000000;
}

.header .navbar.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.header .navbar a{
    color: var(--white-color);
    display: block;
    padding: 1.4rem 1rem;
    font-size: 2rem;
}

.nav-left{
    display: block;
}

.nav-btn{
    display: none;
}

}

@media screen and (max-width: 991px){ 
  .popular-box{
    min-height: auto;
} 

.header .menu-overlay.active{
    visibility: visible;
    opacity: 1;
}

.header .nav-menu{
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    min-height: 100vh;
    top:0;
    overflow-y: auto;
    background-color: var(--white-color);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
}
.header .nav-menu.open{
    visibility: visible;
    right: 0px;
}
.header .menu > .menu-item{
    display: block;
    margin:0;
}
.header .menu > .menu-item-has-children > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .menu > .menu-item > a{
    color: var(--black-color);
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
}
.header .menu > .menu-item:first-child > a{
    border-top: 1px solid #333333;  
}
.header .menu > .menu-item > a .fa-angle-down:before, 
.header .menu > .menu-item > a .fa-angle-down:after{
    background-color: #ffffff;
}
.header .menu > .menu-item-has-children.active > a .fa-angle-down:after{
    transform: translate(-50%,-50%) rotate(0deg);
}
.header .menu > .menu-item > .sub-menu{
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border:none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top:auto;
    max-height: 0;
    overflow: hidden;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
    padding: 12px 45px;
    font-size: 1.6rem;
    color: var(--black-color);
    border-bottom: 1px solid #333333;
}
.header .close-nav-menu,
.header .open-nav-menu{
    display: flex;
}

.header .search-form{
    width: 90%;
    right: 2rem;
}

.member-box{
    margin-bottom: 2rem;
}

.testimonial-right-containers{
    height: 100vh;
}

.carousel-item{
    width: 100%; 
    background-size: cover!important;
    background-position: center;
    animation-play-state: paused;
}

}

@media screen and (max-width: 768px){
    .footer-distributed{
        font: bold 14px sans-serif;
    }

    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right{
        display: block;
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-distributed .footer-center i{
        margin-left: 0;
    }

    .home-text h4{
        position: static!important;
        margin: auto;
        max-width: 170px;
    }

    .home-social-media{
        width: 50px;
        display: none;
    }

    .member-box img{
        width: 50px;
    }

    .member-box .member-box-content h4{
        font-size: 2rem;
    }

    .member-box .member-box-content p{
        font-size: 1.2rem;
    }

    .heading-section h2{
        font-size: 4rem;
    }

    .about-content{
        padding: 0;
    }

    .popular-section-box-count{
        right: 16px;
        top: 10px;
        font-size: 4rem;
    }

    .popular-section-box img{
        width: 50px;
    }

    .popular-section-box h4{
        font-size: 2rem;
    }

    .value-box img{
        width: 50px;
    }

    .home-blur-effect{
        width: 130px;
        height: 130px;
    }

    .footer-bottom {
        flex-direction: row;
    }

    .social-icons a {
        color: #fff;
        margin-left: 1rem;
        font-size: 1.6rem;
    }

    .social-icons a:hover {
      color: #b88bfb;
    }

    .about-img{
        margin-top: 2rem;
    }
}


@media screen and (max-width: 650px){
    .home-box-inner img{
        width: 45px;
    }

    .home-box-inner {
        width: 170px;
        height: 137px;
        max-width: 100%;
        min-height: auto;
    }

    .home-text h2{
        font-size: 5rem;
    }

    .home-text h4{
        font-size: 2rem;
        max-width: 170px;
    }

    .button.is-play{
        width: 80px;
        height: 80px;
    }

    .carousel-control-next{
        top: 84%;
    }

    .carousel-control-prev{
        top: 84%;
    }

    .service-section-main-digital-container-card h4{
        font-size: 2rem;
    }
}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}

}

@media screen and(max-width:400px) {
    
}

