@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* === ALL CSS START === */
body {
  font-family: "DM Sans", sans-serif;;
  font-weight: normal;
  font-style: normal;
  overflow-x: hidden;
  background-image: url(../images/main-background.png);
  background-color: #F8F8F8;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0px;
  color: #000014;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0px;
  color: #7E7F97;
}
/* === ALL CSS END === */

/* === ALL BUTTON STYLE START === */
.main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: #1238BF;
}
/* === ALL BUTTON STYLE END === */

/* === NAVBAR START === */
.bg-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-bottom: 2px solid #ECF4F9;
  background-color: #fff;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-top: -1px;
}

.navbar {
  padding: 20px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand > a{
  padding: 0;
  height: 30px;
  margin-top: auto;
  margin-bottom: auto;
}

.navbar-btn{
  margin-left: 10px;
}

@media (max-width: 320px){
  .navbar-brand h4{
    display:none;
  }

  .navbar-brand > a{
    padding: 0;
    height: 40px;
    margin-top: auto;
    margin-bottom: auto;
  }
}

.btn-lang {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #7E7F97;
  color: #7E7F97;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: transparent;
}

.dropdown-menu{
    border: 1px solid #7E7F97 !important;
    color: #7E7F97 !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}

.navbar-toggler {
  padding: 0;
  border: none;
  background-color: #CFEBFF;
  padding: 10px;
}

.navbar-toggler .toggler-icon {
  width: 25px;
  height: 2px;
  background-color: #58B9FF;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #ECF4F9;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 0px;
    display: none;
    border-radius: 5px;
  }

  .navbar-collapse.show {
    display: block;
  }
}

@media (min-width: 991px){
    .navbar-collapse{
        position: relative;
        width: 100%;
    }

    .navbar-nav{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 0px 30px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
}

.nav-item .main-btn{
    display: none;
    color: #fff !important;
}

.navbar-lang-md{
  display: none;
}

@media (max-width: 991px){
    .nav-item .main-btn{
        display: block;
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .nav-item{
      text-align:right;
    }

    .nav-item a{
      padding-right: 40px !important;
    }

    .nav-item a.active{
      padding-right: 40px !important;
      border-right: 5px solid;
      border-radius: 1px;
    }

    .navbar-btn .main-btn{
        display: none;
    }

    .navbar-collapse {
        width: 100%;
        background-color: #ECF4F9;
        padding: 20px 0px;
    }

    .nav-item{
        margin: 10px 0;
    }

    .navbar-lang-lg .btn-lang{
      display: none !important;
    }

    .navbar-lang-md{
      display: block;
    }

    .navbar-lang-md .btn-lang {
      margin-left: 0px;
      width: 100%;
      text-align: left;
    }

    .navbar-lang-md .btn-lang i{
      float:right;
    }

    .navbar-lang-md .dropdown-menu{
        margin-left: 0px;
        background-color: transparent;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}

.navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 500;
  color: #000014;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 25px 8px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: #000014;
  }
}

.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
  color: #1238BF;
}

.navbar-nav .nav-item > a.active::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0px;
  background-color: #1238BF;
  width: 100%;
  height: 3px;
  border-radius: 50px;
  z-index: 10;
}

@media (max-width: 991px){
    .navbar-nav .nav-item > a.active::after {
        width: 0%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: #1238BF;
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover > a {
  color: #1238BF;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: #1238BF;
    opacity: 1;
  }
}

.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}

.navbar-nav .nav-item.nav-item-has-children > a::after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media (max-width: 565px){
  .navbar-btn{
    display: block !important;
    opacity: 1 !important;
  }
}

.navbar-btn .main-btn:hover{
    background-color: #58B9FF;
}
/* === NAVBAR END === */

/* === HERO START === */
.bg-hero {
  padding-top: 180px;
}

.bg-hero-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.bg-hero-content > img{
    position: absolute;
    top: -50px;
    left: -75px;
    z-index: -1;
}

.bg-hero .bg-hero-sub-title{
    text-decoration: none;
    padding: 10px 20px;
    margin-bottom: 25px;
    color: #000014;
    border-radius: 8px;
    border: 2px solid #1238bf;    
    font-weight: 700;
}

.bg-hero-content .bg-hero-title {
  color: #000014;
  font-weight: 700;
  font-size: 38px;
  line-height: 60px;
  margin-bottom: 25px;
}

.bg-hero .bg-hero-title > span{
    color: #FF922F;
}

.bg-hero-content .bg-hero-desc {
  font-weight: normal;
  font-size: 20px;
  line-height: 35px;
  color: #7E7F97;
  margin-bottom: 30px;
}

.bg-hero .main-btn{
    background-color: #FF922F;
}

.bg-hero .main-btn:hover{
    background-color: #FFDC00;
}

.bg-hero .bg-hero-img{
    position: relative;
    width: 100%;
    height: 100%;
}

.bg-hero-img img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0, 0, .1 #58B9FF;
}
/* === HERO END === */

/* === TRUSTED START === */
.bg-trust{
    margin: 60px 0px;
    background-color: #ECF4F9;
    padding: 70px;
}

.bg-trust-title{
    color: #58B9FF;
    margin-bottom: 30px;
    font-size: 28px;
}

.bg-trust-title h2{
    font-size: 28px;
    color: #58B9FF;
}

.bg-trust .splide{
  margin: 0 30px;
}

.bg-trust .splide__slide{
  width: 216px !important;
  display: flex;
  align-items: end;
}

.bg-trus .splide__slide img{
    max-width: 250px;
}
/* === TRUSTED END === */

/* === POWERED BY / SERVICE START === */
.bg-services{
  position: relative;
  margin-top: 100px;
}

.bg-services .line-background{
  position: absolute;
  bottom: -250px;
  left: 0;
  z-index: -1;
}

.bg-services .circle-background{
  position: absolute;
  top: 100px;
  right: 100px;
  z-index: -1;
}

.bg-services-title{
    max-width: 75%;
    margin-bottom: 50px;
}

.bg-services-title h2{
    font-size: 28px;
    margin-bottom: 10px;
}

.bg-services-title p{
    color: #7E7F97;
    font-size: 20px;
}

.bg-services .splide{
  margin-left: 100px;
}

.bg-services .splide__list{
  padding: 50px !important;
  padding-left: 100px !important;
}

.bg-services .splide__slide{
  background-color: #F8F8F8;
  padding: 30px;
  margin: 0px 15px;
  height: 350px;
  transition: .5s;
  cursor: pointer;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  text-align: center;
}

.bg-services .splide__slide img{
  max-width: 100px;
  margin-bottom: 20px;
}

.bg-services .splide__slide h2{
  font-size: 24px;
  white-space: pre-wrap;
}

.bg-services .splide__slide p{
  margin-top: 10px;
  font-size: 14px;
  max-height: 50px;
  text-overflow: ellipsis;
  overflow-y: hidden;
}

.bg-services .splide__slide a{
  margin-top: 25px;
  font-size: 18px;
  color: #FF922F;
  font-weight: 500;
}

.bg-services .splide__slide i{
  display: none;
}

.bg-services .splide__slide.is-active{
  padding: 30px 40px;
  height: auto !important;
  border: 3px solid #FF922F;
  box-shadow: none;
  text-align: left;
}

.bg-services .splide__slide.is-active img{
  display: unset !important;
}

.bg-services .splide__slide.is-active h2{
  font-size: 28px;
}

.bg-services .splide__slide.is-active p{
  font-size: 16px;
  max-height: unset;
}

.bg-services .splide__slide.is-active a{
  font-size: 18px;
}

.bg-services .splide__slide.is-active a i{
  display: inline-block;
}

.bg-services .splide__slide:hover {
  padding: 30px 40px;
  height: auto !important;
  border: 3px solid #FF922F;
  box-shadow: none;
  text-align: left;
}
/* === POWERED BY / SERVICE END === */

/* === OUR EXPERTISE START === */
.bg-ourexpertise-content{
  margin-top:300px;
}

.bg-ourexpertise-content .bg-ourexpertise-title {
  color: #000014;
  font-size: 28px;
  margin-bottom: 10px;
  margin-top: 60px;
}

.bg-ourexpertise-content > img{
  position: absolute;
  margin-top: -55px;
  margin-left: -70px;
  z-index: -1;
}

.bg-ourexpertise-content .bg-ourexpertise-desc {
  font-weight: normal;
  font-size: 20px;
  color: #7E7F97;
  margin-bottom: 30px;
}

.bg-ourexpertise .main-btn{
  background-color: #FF922F;
}

.bg-ourexpertise .main-btn:hover{
  background-color: #FFDC00;
}

.bg-ourexpertise .bg-ourexpertise-title > span{
  color: #FF922F;
}

.bg-expertise-img{
  margin-top: 100px;
}

/*===== Expertise Orange =====*/
.bg-expertise-img .bg-orange{
  background-color: #FFEFE0;
  border-radius: 10px;
  height:460px;
  width:auto;
  position:relative;
}

.bg-orange img{
  position:absolute;
  bottom: 0;
  right: 0;
  width:100%;
  z-index: 1;
}

.bg-ourexpertise-project-orange{
  position:absolute;
}

.content-orange-top{
  color: #FF922F;
  font-size: 18px;
  font-weight:bold;
}

.content-orange-title{
  color: #FF922F;
  font-size: 68px;
  font-weight:bold;
}

.content-plus-orange {
  color: #FF922F;
  font-size: 68px;
  font-weight:bold;
  position: absolute;
  margin-left:160px;
}

.content-orange-bottom{
  color: #FF922F;
  position:relative;
  font-size: 16px;
  font-weight:600;
  z-index: 2;
}

.content-bg-orange{
  max-width:70%;
  margin:0 auto;
}

.content-orange-title > span{
  position:absolute;
}

/*===== Expertise Green =====*/
.bg-expertise-img .bg-green{
  background-color: #E0FFE1;
  border-radius: 10px;
  height: 207px;
  width: auto;
  position:relative;
}

.bg-green img{
  position:absolute;
  bottom: 0;
  right: 0;
  width:100%;
}

.content-plus-green {
  color: #008502;
  font-size: 52px;
  font-weight:bold;
  position: absolute;
  margin-left:77px;
}

.content-green-title{
  color: #008502;
  font-size: 52px;
  font-weight:bold;
  margin-bottom: 20px;
}

.content-green-title > span{
  color: #008502;
  font-size: 16px;
  margin-left: -8px;
  font-weight:bold;
}

.content-green-bottom{
  color: #50C352;
  font-size: 18px;
  max-width: 65%;
  font-weight:bold;
  position: absolute;
  position: relative;
  z-index: 1;
}

/*===== Expertise Blue =====*/
.bg-expertise-img .bg-blue{
  background-color: #DCF0FF;
  border-radius: 10px;
  margin-top: 28px;
  position:relative;
  height: 207px;
  width: auto;
}

.bg-blue img{
  position:absolute;
  bottom: 0;
  right: 0;
  width:100%;
}

.content-percent-blue {
  color: #007FDA;
  font-size: 30px;
  font-weight:bold;
  position: absolute;
  margin-left:77px;
}

.content-blue-title > span{
  color: #007FDA;
  font-size: 17px;
  margin-left: 7px;
  font-weight:bold;
}

.content-blue-title{
  color: #007FDA;
  font-size: 52px;
  font-weight:bold;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.content-blue-bottom{
  color: #58B9FF;
  font-size: 18px;
  max-width:65%;
  font-weight:bold;
  position: absolute;
  position: relative;
  z-index: 1;
}

.content-blue-bottom > span{
  color: #007FDA;
}

/*===== Expertise Purple =====*/
.bg-expertise-img .bg-purple{
  border-radius: 10px;
  margin-top: 25px;
  width: auto;
  height: 200px;
  position:relative;
  background-color: #FBE5FF;
}

.bg-purple img{
  position:absolute;
  bottom: 0;
  right: 0;
  width:100%;
  height:98%;
}

.content-plus-purple {
  color: #A500C2;
  font-size: 40px;
  font-weight:bold;
  position: absolute;
  margin-left:37px;
}

.content-purple-title > span{
  color: #A500C2;
  font-size: 17px;
  margin-left: 5px;
  font-weight:bold;
}

.content-purple-title{
  color: #A500C2;
  font-size: 52px;
  font-weight:bold;
  margin-bottom: 20px;
}

.content-purple-bottom{
  color: #EA73FF;
  font-size: 18px;
  max-width: 75%;
  position: absolute;
  font-weight:bold;
  position: relative;
  z-index: 1;
}

.content-purple-bottom > span{
  color: #A500C2;
}

/*===== Expertise Yellow =====*/
.bg-expertise-img .bg-yellow{
  background-color: #FFFBE2;
  height: 200px;
  width: auto;
  border-radius: 10px;
  margin-top: 25px;
  position:relative;
}

.bg-yellow img{
  position:absolute;
  bottom: 0;
  right: 0;
  width:80%;
}

.content-plus-yellow {
  color: #D99C27;
  font-size: 40px;
  font-weight:bold;
  position: absolute;
  margin-left:75px;
}

.content-yellow-title > span{
  color:#D99C27;
  font-size: 17px;
  margin-left: 5px;
  font-weight:bold;
}

.content-yellow-title{
  color: #D99C27;
  font-size: 52px;
  font-weight:bold;
  margin-bottom: 40px;
}

.content-yellow-bottom{
  color: #C7AE15;
  font-size: 18px;
  max-width: 65%;
  position: absolute;
  font-weight:bold;
  position: relative;
  z-index: 1;
}
/* === OUR EXPERTISE END === */

/* === PROJECT START === */
.bg-project{
  margin-top: 180px;
}

.bg-project .main-btn{
  background-color: #CFEBFF;
}
.bg-project a{
  color:#58B9FF;
}

.bg-project .main-btn:hover{
  background-color: #8dc8f2;
  color: #fff;
}

.bg-project-title-bottom{
  max-width: 100%;
  margin-bottom: 50px;
}

.bg-project-title-bottom p{
  color: #7E7F97;
  font-size: 20px;
  margin-bottom:20px;
}

.bg-project-title-bottom .main-btn{
  background-color: #FF922F;
  color:#fff;
}

.bg-project-title-bottom .main-btn:hover{
  background-color: #FFDC00;
}

.single-project{
  margin-bottom: 40px;
  border-radius: 12px;
  background-color: #fff;
}

.single-project .project-image {
  border-radius: 15px 15px 0px 0px;
  overflow: hidden;
  width: 100%;
  height: 350px;
  position: relative;
}

.single-project .project-image a {
  display: block;
}

.single-project .project-image img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content{
  padding: 28px;
}

.project-content img{
  max-height: 30px;
}

.project-title{
  margin-top: 20px;
}

.project-desc{
  color: #7E7F97;
  font-size: 18px;
  margin: 5px 0px 20px 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bg-project-title h2{
  max-width: 100%;
  font-size: 28px;
  margin-bottom: 7px;
}

.bg-project-title p{
  color: #7E7F97;
  font-size: 20px;
  margin-bottom:20px;
}

.bg-project-title .main-btn{
  background-color: #FF922F;
  color:#fff;
}

.bg-project-title .main-btn:hover{
  background-color: #FFDC00;
}
/* === PROJECT END === */

/* === TESTIMONI START === */
.bg-testimoni{
  margin-top: 100px;
  overflow-x: hidden !important;
}

.bg-testimoni-title h2{
  font-size: 28px;
}

.bg-testimoni-title p{
  margin-top: 10px;
  font-size: 20px;
  color: #7E7F97;
}

.bg-testimoni-img img{
  max-height: 210px;  
}

.bg-testimoni .splide{
  margin-right: 10px;
}

.bg-testimoni .splide__track{
  overflow: unset !important;
}

.bg-testimoni .splide__pagination{
  top: -600px;
  left: -1000px;
}

.bg-testimoni .splide__pagination .splide__pagination__page{
  background: #CFEBFF;
}

.bg-testimoni .splide__pagination .splide__pagination__page.is-active{
  width: 20px;
  height: 7px;
  margin-left: 8px;
  margin-right: 8px;
  margin-top: -2px !important;
  border-radius: 50px;
  background: #58B9FF;
}

.bg-testimoni .splide__arrow{
  height: 50px;
  width: 50px;
  border-radius: 15px;
  color: #58B9FF;
  background-color: #CFEBFF;
  font-size: 40px;
}

.bg-testimoni .splide__arrow--prev{
  top: -150px;
  left: 110px;
}

.bg-testimoni .splide__arrow--next{
  top: -150px;
  left: 355px;
}

.bg-testimoni .splide{
  margin-top: 100px;
}

.bg-testimoni .splide__slide{
  position: relative;
  width: 30% !important;
  height: auto;
  margin: 0px 15px;
  background: #F8F8F8;
  border-radius: 5px;
  border: 5px solid #F0F0F0;
  border-radius: 15px;
  padding: 30px;
  cursor: pointer;
}

.bg-testimoni .splide__slide .user-testimoni{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  border: 5px solid #F0F0F0;
  max-width: 100px;
}

.bg-testimoni .splide__slide .user-testimoni img{
  width: 100px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}


.bg-testimoni .splide__slide .user-testimoni .logo-user-testimoni{
  position: absolute;
  bottom: 0px;
  right: -10px;
  background-color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 100%;
}

.bg-testimoni .splide__slide .user-testimoni .logo-user-testimoni img{
  max-width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 50%;
}

.bg-testimoni .bg-card-testimoni{
  position: absolute;
  top: 0;
  left: 0;
}

.bg-testimoni .text-testimoni{
  width: 100%;
  height: 100%;
  text-align: center;
  margin-top: 30px;
}

.bg-testimoni .text-testimoni .testimoni-name{
  font-size: 20px;
  color: #000014;
}

.bg-testimoni .text-testimoni .testimoni-sub-title{
  font-size: 14px;
  font-weight: bold;
  margin-top: -3px;
  color: #000014;
}

.bg-testimoni .text-testimoni .testimoni-user-text{
  margin-top: 20px;
  color: #7E7F97;
  line-height: 21px;
}
/* === TESTIMONI END === */

/* === HAPPY CLIENT START === */
.bg-client{
  margin-top: 100px;
}

.bg-client .splide__slide{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bg-client .client-img img{
  max-width: 250px;
  margin: 40px;
}

.bg-testimoni .splide{
  padding-right: 15px;
}

.bg-client-title{
  max-width: 70%;
  margin-bottom: 50px;
}

.bg-client-title h2{
  font-size: 28px;
  margin-bottom: 7px;
}

.bg-client-title p{
  color: #7E7F97;
  font-size: 20px;
}
/* === HAPPY CLIENT END === */

/* === OURSERVICE START === */
.bg-ourservice {
  padding-top: 180px;
  margin-bottom: 180px;
}

.bg-ourservice-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.bg-ourservice .bg-ourservice-sub-title{
    text-decoration: none;
    padding: 10px 20px;
    margin-bottom: 25px;
    color: #000014;
    background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #58b9ff, #1238bf) border-box;
    border-radius: 8px;
    border: 2px solid transparent;
}

.bg-ourservice-content .bg-ourservice-title {
  color: #000014;
  margin-bottom: 10px;
  margin-top: 60px;
  font-size: 28px;
}

.bg-ourservice-content .bg-ourservice-desc {
  font-weight: normal;
  font-size: 20px;
  color: #7E7F97;
  margin-bottom: 30px;
}

.bg-ourservice .main-btn{
    background-color: #FF922F;
}

.bg-ourservice .main-btn:hover{
    background-color: #FFDC00;
}

.bg-ourservice .bg-ourservice-img-bottom{
    position: relative;
    width: 100%;
    height: 100%;
}

.bg-ourservice-img-bottom img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0, 0, .1 #58B9FF;
}

.bg-ourservice .bg-ourservice-img-top{
  position: relative;
  width: 100%;
  height: 100%;
}

.bg-ourservice-img-top img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0, 0, .1 #58B9FF;
}
/* === OURSERVICE END === */

/* === FOOTER START === */
.bg-footer{
    margin-top: 150px;
    background-color: #000014;
    position: relative;
}

.bg-footer-img img{
    position: absolute;
    bottom: 0;
    right: 0;
}

.bg-footer-desc{
    padding: 50px 0px;
    color: #fff;
    border-bottom: 2px solid rgba(126, 127, 151, 0.14);
    margin-bottom: 50px;
}

.bg-footer-desc p{
  color: #fff;
  font-weight: 600;
}

.bg-footer .main-footer{
    color: #fff;
    max-width: 75%;
    position: relative;
    z-index: 2;
}

.bg-footer .main-footer .address{
    color: #fff;
}

.bg-footer .main-footer img{
    margin-bottom: 15px;
}

.bg-footer .main-footer .contact{
    margin-top: 15px;
    color: #FF922F;
    font-weight: 500;
}

.bg-footer .footer{
    color: #fff;
    position: relative;
    z-index: 2;
}

.bg-footer h5{
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.bg-footer .footer a{
    margin: 10px 0px;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
}

.bg-footer .bg-footer-service{
    margin-top: 50px;
    padding: 35px 0;
    border-top: 2px solid rgba(126, 127, 151, 0.14);
    border-bottom: 2px solid rgba(126, 127, 151, 0.14);
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.bg-footer .bg-footer-service a{
    color: #fff;
    font-weight: 300;
    padding: 5px 0;
}

.bg-footer .bg-footer-service .title-service{
    font-weight: 600;
    color: #58B9FF;
    border-right: 1px solid #fff;
    padding-right: 100px;
}

.bg-footer .bg-footer-copyright p{
    position: relative;
    z-index: 1;
    color: #fff;
    margin-top: 60px;
    margin-bottom: 100px;
}

.footer-flex > li a:hover{
  color: #58B9FF;
}

.bg-footer-service > a:hover{
  color: #58B9FF;
}
/* === FOOTER END === */

/* === RESPONSIVE START === */
@media only screen and (min-width: 1540px){
  .bg-testimoni .splide__arrow--prev{
    top: -140px;
    left: 190px;
  }

  .bg-testimoni .splide__arrow--next{
    top: -140px;
    left: 420px;
  }

  .bg-testimoni .splide__pagination{
    top: -565px;
    left:-1000px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px){
  .bg-testimoni .splide__pagination{
    top: -600px;
    left: -800px;
  }

  .bg-testimoni .splide__arrow--prev{
    left: 80px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px){
  .bg-testimoni .splide__arrow--prev{
    left: 80px;
  }

  .bg-testimoni .splide__pagination{
    left: -800px;
  }
}

@media only screen and (min-width: 1366px) and (max-width: 1440px){
  .bg-testimoni .splide__arrow--prev{
    top: -140px;
    left: 120px;
  }

  .bg-testimoni .splide__arrow--next{
    top: -140px;
  }

  .bg-testimoni .splide__pagination{
    top: -570px;
    left:-850px;
  }
}

@media (max-width: 992px){
  .bg-hero .bg-hero-img{
      margin-top: 200px;
  }

  .bg-client .client-img img{
    max-width: 100px;
    margin: 20px;
  }

  .bg-trust{
    margin-top: 500px;
  }

  .bg-trust-title{
      margin-bottom: 30px;
  }

  .bg-trust-img img{
      max-width: 100px;
  }

  .bg-services-title{
    max-width: 100%;
  }

  .bg-services .splide{
    margin-left: 30px;
  }

  .bg-ourexpertise-content{
    margin-top: 100px;
  }

  .content-green-bottom{
    max-width:70%;
  }

  .content-blue-bottom{
    max-width: 70%;
  }

  .bg-testimoni-title{
    text-align: center;
  }

  .bg-testimoni-title h2{
    font-size: 24px;
  }
  
  .bg-testimoni-title p{
    font-size: 18px;
  }

  .bg-testimoni-img{
    display: none;
  }

  .bg-testimoni .splide__slide{
    width: 50% !important;
  }

  .bg-testimoni .splide__arrow--prev{
    top: 360px;
    left: 250px;
  }

  .bg-testimoni .splide__arrow--next{
    top: 360px;
    left: 500px;
  }

  .bg-testimoni .splide__pagination{
    top: 350px;
    left: 0;
  }

  .bg-testimoni{
    margin-top : 0;
    padding: 100px 0;
  }

  .bg-client{
    margin-top: 100px;
  }

  .bg-client-title h2{
    font-size: 24px;
    margin-bottom: 10px;
  }

  .bg-ourservice .bg-ourservice-img-bottom{
    margin-top: 200px;
    margin-bottom: 200px;
    display:none;
  }

  .bg-ourservice .bg-ourservice-img-top{
    margin-top: 200px;
    margin-bottom: 200px;
    display:block !important;
  }

  .bg-ourservice-content {
    max-width:90%;
    margin:0 auto;
    text-align: center;
  }

  .bg-ourservice .main-btn {
    padding: 5px 12px 5px 12px;
    font-size: 30px;
  }

  .bg-ourservice {
    padding-top: 180px;
    margin-bottom: 110px;
  }

  .bg-footer .bg-footer-service a{
    margin-left: 0 !important;
  }

  .bg-footer .bg-footer-service .title-service{
    margin-right: 30px;
    padding-right: 30px;
    padding-top: 15px;
    font-size: 18px;
  }

  .footer{
      margin-top: 50px;
  }

  .bg-footer .main-footer{
      max-width: 100%;
  }

  .bg-footer .footer .footer-flex{
    display: flex;
  }

  .bg-footer .footer-flex li{
    margin-right: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .bg-hero {
    padding-top: 160px;
  }

  .bg-hero-content .bg-hero-title {
    font-size: 38px;
    line-height: 50px;
  }

  .bg-ourexpertise-content .bg-ourexpertise-title {
    line-height: 50px;
  }

  .bg-ourservice {
    padding-top: 130px;
    margin-bottom: 320px;
  }

  .bg-ourservice-content .bg-ourservice-title {
    font-size: 38px;
    line-height: 50px;
  }

  .bg-services .splide__slide{
    width: 400px !important;
  }

  .content-green-bottom{
    max-width:50%;
  }

  .content-blue-bottom{
    max-width:50%;
  }

  .bg-testimoni .splide__arrow--next{
    left: 460px;
  }

  .bg-testimoni .splide__arrow--prev{
    left: 280px;
  }
  .content-plus-orange {
    margin-left:180px;
  }
}

@media (max-width: 768px){  
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .bg-hero {
    padding-top: 130px;
  }

  .bg-hero-content .bg-hero-title {
    font-size: 24px;
    line-height: 38px;
  }

  .bg-hero .bg-hero-sub-title{
    font-size: 14px;
  }

  .bg-hero-content .bg-hero-desc {
    font-size: 16px;
    line-height: 30px;
  }

  .bg-hero-buttons .bg-main-btn {
    margin: 5px;
  }

  .bg-hero .bg-hero-img{
      margin-top: 120px;
  }

  .bg-hero{
    text-align: center;
  }

  .bg-hero-desc{
    display: none;
  }

  .bg-trust{
    margin-top: 250px;
  }

  .bg-trust .bg-trust-title h2{
      margin-bottom: 30px;
      font-size: 24px;
  }

  .bg-trust-img{
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }

  .bg-trust-img img{
      max-width: 250px;
      margin: 20px;
  }

  .bg-trust{
    padding: 70px 0px;
  }

  .bg-trust .splide{
    margin: 0px;
  }

  .bg-services-title{
    max-width: 90%;
  }

  .bg-services .circle-background{
    display: none;
  }

  .bg-services-title h2{
    font-size: 24px;
    margin-bottom: 10px;
  }

  .bg-services-title p{
    font-size: 18px;
  }

  .bg-services .splide{
    margin-left: 0px;
  }

  .bg-services .splide__slide.is-active{
    background-color: #F8F8F8;
    padding: 30px;
    margin: 0px 10px;
    transition: .3s;
    cursor: pointer;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    text-align: center;
    border: none;
  }

  .bg-services .splide__slide.is-active h2{
    font-size: 24px;
  }

  .bg-services .splide__slide.is-active p{
    font-size: 14px;
  }

  .bg-services .splide__slide.is-active a i{
    display: none;
  }

  .bg-services .splide__slide.is-active p{
    max-height: 50px;
    text-overflow: ellipsis;
    overflow-y: hidden;
  }

  .bg-ourexpertise-content .bg-ourexpertise-title {
    font-size: 24px;
    line-height: 38px;
  }

  .bg-ourexpertise-content{
    text-align:center;
    max-width:100%;
    margin-bottom: -60px;
  }

  .bg-ourexpertise .main-btn{
    display:none;
  }

  .bg-ourexpertise .main-btn{
    background-color: #FF922F;
  }

  .bg-bottom .main-btn{
    display:block !important;
    margin-top: 30px;
  }

  .bg-ourexpertise-content > img{
    display:none;
  }

  .bg-ourexpertise-content .bg-ourexpertise-desc {
    font-size: 18px;
    line-height: 30px;
  }

  .bg-expertise-img .bg-orange{
    background-color: #FFEFE0;
    border-radius: 10px;
    height:520px;
    width: auto;
    position:relative;
    margin-top: -40px;
    margin-bottom: 30px;
  }

  .content-plus-orange {
    color: #FF922F;
    font-size: 78px;
    font-weight:bold;
    position: absolute;
    margin-left:180px;
  }

  .bg-project .bg-project-title-bottom p {
    display:none;
  }

  .bg-project .bg-project-title p {
    font-size: 18px;
    line-height: 30px;
  }

  .bg-project-title h2{
    max-width: 100%;
    font-size: 24px;
  }

  .bg-testimoni .splide__slide{
    width: 75% !important;
    padding: 20px;
  }

  .bg-testimoni .splide__arrow--prev{
    top: 360px;
    left: 100px;
  }

  .bg-testimoni .splide__arrow--next{
    top: 360px;
    left: 275px;
  }

  .bg-testimoni .splide__pagination{
    top: 350px;
    left: 0;
  }

  .bg-client .bg-client-title p {
    font-size: 18px;
    line-height: 25px;
  }

  .bg-client-title{
    max-width: 90%;
  }

  .bg-trust-title{
      margin-bottom: 30px;
  }

  .bg-ourservice {
    padding-top: 130px;
    padding-bottom: 10px;
  }

  .bg-ourservice-content .bg-ourservice-title {
    font-size: 28px;
    line-height: 38px;
  }

  .bg-ourservice-content .bg-ourservice-desc {
    font-size: 18px;
    line-height: 30px;
  }

  .bg-ourservice .bg-ourservice-img-bottom{
      margin-top: 120px;
      margin-bottom: 120px;
      display:none;
  }

  .bg-ourservice .bg-ourservice-img-top{
    margin-top: 120px;
    margin-bottom: 120px;
    display:block !important;
  }

  .bg-ourservice-content {
    max-width:90%;
    margin:0 auto;
    text-align: center;
  }

  .bg-ourservice .main-btn {
    padding: 5px 12px 5px 12px;
    font-size: 30px;
  }

  .bg-ourservice {
    padding-top: 80px;
    margin-bottom: 100px;
  }

  .bg-footer .bg-footer-service{
      flex-direction: column;
  }

  .bg-footer .bg-footer-service a{
      margin: 10px;
  }

  .bg-footer .footer .footer-flex{
    display: unset;
  }

  .bg-footer .bg-footer-service .title-service{
      border: 0px;
  }

  .bg-footer .bg-footer-copyright{
    text-align: center;
  }

  .content-green-bottom{
    max-width:50%;
  }

  .content-blue-bottom{
    max-width:50%;
  }
}

@media (min-width: 768px) and (max-width:769px){
  .bg-testimoni .splide__arrow--next{
    left: 435px;
  }

  .bg-testimoni .splide__arrow--prev{
    left: 270px;
  }

  .bg-bottom .main-btn{
    display:block !important;
    margin-top: 30px;
  }
  .bg-hero .bg-hero-img{
    margin-top: 200px;
  }

  .bg-trust {
    margin-top: 450px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}


@media (max-width: 576px){
  .bg-testimoni .splide__slide{
    padding: 15px;
    margin: 0px 8px;
  }

  .bg-testimoni .testimoni-user-text{
    font-size: 14px;
  }

}

@media (max-width: 416px){
  .bg-testimoni .splide__arrow--next{
    left: 260px;
  }

  .bg-testimoni .splide__arrow--prev{
    left: 95px;
  }
}

@media (max-width: 400px){
  .bg-testimoni .splide__arrow--next{
    left: 250px;
  }

  .bg-testimoni .splide__arrow--prev{
    left: 78px;
  }

  .bg-hero .bg-hero-title{
    font-size: 20px;
  }

  .content-plus-orange {
    margin-left:160px;
  }  
}

@media (max-width: 376px){
  .bg-testimoni .splide__arrow--next{
    left: 245px;
  }

  .bg-testimoni .splide__arrow--prev{
    left: 75px;
  }

  .content-plus-orange {
    margin-left:155px;
  }

  .bg-bottom .main-btn{
    display:block !important;
    margin-top: 30px;
  }
}

@media (max-width: 366px){
  .bg-testimoni .splide__arrow--prev{
    left: 65px;
  }

  .bg-bottom .main-btn{
    display:block !important;
    margin-top: 30px;
  }

  .bg-testimoni .splide__arrow--next{
    left: 235px;
  }

  .bg-testimoni .splide__arrow--prev{
    left: 65px;
  }
}

@media (max-width: 322px){
  .nav-item{
    margin: 0 !important;
  }

  .nav-item .dropdown{
    margin-bottom: 10px;
  }

  .navbar-brand {
    width: 170px;
  }

  .bg-services .splide__slide{
    width: 250px !important;
  }

  .bg-testimoni .splide__slide{
    width: 90% !important;
  }

  .bg-testimoni .splide__slide .user-testimoni .logo-user-testimoni{
    width: 25px;
    height: 25px;
  }

  .bg-testimoni .splide__slide .user-testimoni .logo-user-testimoni img{
    max-width: 15px;
  }

  .bg-testimoni .splide__slide .user-testimoni{
    max-width: 75px;
  }

  .bg-testimoni .text-testimoni .testimoni-name{
    font-size: 16px;
  }

  .bg-testimoni .splide__arrow--prev{
    left: 30px;
  }

  .bg-client .client-img img{
    max-width:  75px;
  }

  .bg-hero .bg-hero-title{
    font-size: 18px;
    line-height: 30px;
  }

  .bg-trust .bg-trust-title h2{
    font-size: 18px;
  }

  .bg-services .bg-services-title h2{
    font-size: 18px;
  }

  .bg-services .bg-services-title p{
    font-size: 14px;
    line-height: 20px;
  }

  .bg-ourexpertise-content .bg-ourexpertise-title{
    font-size: 18px;
    line-height: 25px;
  }

  .bg-ourexpertise-content .bg-ourexpertise-desc{
    font-size: 14px;
    line-height: 20px;
  }

  .content-plus-orange {
    margin-left:135px;
  }

  .content-purple-bottom{
    max-width:64%;
  }

  .bg-bottom .main-btn{
    display:block !important;
    margin-top: 30px;
  }

  .bg-project .bg-project-title h2{
    font-size: 18px;
  }

  .bg-project .bg-project-title p{
    font-size: 14px;
    line-height: 20px;
  }

  .bg-project .project-title{
    font-size: 18px;
  }

  .bg-project .project-desc{
    font-size: 14px;
  }

  .bg-testimoni .bg-testimoni-title h2{
    font-size: 18px;
  }

  .bg-testimoni .bg-testimoni-title p{
    font-size: 14px;
    line-height: 20px;
  }

  .bg-client .bg-client-title h2{
    font-size: 18px;
  }

  .bg-client .bg-client-title p{
    font-size: 14px;
    line-height: 20px;
  }

  .bg-ourservice .bg-ourservice-title {
    font-size: 20px;
    line-height: 25px;
  }

  .bg-ourservice .bg-ourservice-desc {
    font-size: 14px;
    line-height: 20px;
  }

  .bg-ourservice .main-btn {
    padding: 5px 12px 5px 12px;
    font-size: 20px;
  }

  .bg-ourservice{
    margin-bottom: -80px;
    margin-top: -50px;
  }

  .bg-ourservice .bg-ourservice-img-top{
    margin-bottom: 40px;
  }

  .bg-project{
    margin-top: 110px;
  }

  .content-blue-bottom{
    max-width:60%;
  }

  .content-orange-top{
    font-size: 16px;
  }
  
  .content-orange-title{
    font-size: 58px;
  }
  
  .content-plus-orange {
    font-size: 68px;
  }
  
  .content-orange-bottom{
    font-size: 16px;
  }

  .content-green-bottom{
    font-size: 16px;
  }
  .content-blue-bottom{
    font-size: 16px;
    position: relative;
    z-index: 1;
  }
  .content-purple-bottom{
    font-size: 16px;
    position: relative;
    z-index: 1;
  }

  .bg-purple .content-purple-bottom{
    max-width: 95%;
  }
  .content-yellow-bottom{
    font-size: 16px;
  }
}

/* === RESPONSIVE END === */