/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body, html {
  font-family: 'Montserrat', sans-serif;
  color: #111;  
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Ubuntu', sans-serif;
}

p{
  font-family: 'Montserrat', sans-serif;
}

hr{ margin-top: 10px;
  padding: 1px 0;
  border: none;
  background-color: #262699;
  width: 30%;}

  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .loader-wrap{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f6f9ff;
    z-index: 999;
    transition: opacity 1s, visibility 1s;
      -webkit-transition: opacity 1s, visibility 1s;
      -moz-transition: opacity 1s, visibility 1s;
      -ms-transition: opacity 1s, visibility 1s;
      -o-transition: opacity 1s, visibility 1s;
  }
  .loader {
      position: fixed;
      left: 50%;
      transform: translate(-50%,-50%) translateZ(0);
      top: 50%;
      width: 90px;
      height: 90px;
      z-index: 9999;
     
      background: url(../images/logos/ganadev.png);
      background-size: contain;
      transition: opacity 1s, visibility 1s;
      -webkit-transition: opacity 1s, visibility 1s;
      -moz-transition: opacity 1s, visibility 1s;
      -ms-transition: opacity 1s, visibility 1s;
      -o-transition: opacity 1s, visibility 1s;
}
  .loader-hidden{
    opacity: 0;
    visibility: hidden;
  }

  .loader::after {
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background-color:rgba(0,0,0,0);
    border-radius:100%;
    margin:-15px;
    box-shadow: 0 4px 0 0 #262699;
    transition: all 1000s linear;
    animation: lds-eclipse 1s linear infinite;
    -webkit-animation: lds-eclipse 1s linear infinite;
    -webkit-transition: all 1000s linear;
    -moz-transition: all 1000s linear;
    -ms-transition: all 1000s linear;
    -o-transition: all 1000s linear;
}
  
  @keyframes lds-eclipse {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    50% {
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #4154f1;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #262699;
  font-family: 'Ubuntu', sans-serif;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# 404 Not Found
--------------------------------------------------------------*/
#notFound img {
    width: 500px;
    height: auto;
    position: relative;    
    z-index: 11111;
}
#notFound h3{
  text-transform: uppercase;
  font-weight: 600;
  color: #262699;
}
#notFound a{
  text-transform: uppercase;
  font-weight: 600;
}
#notFound .btn-detail {
  margin-top: 15px;
  line-height: 0;
  padding: 20px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(4, 23, 189, 0.4);
}
#notFound .btn-detail:hover  {
  transform: scale(1.1);
  background: #013289;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

#breadcrumb{  
  
  width: 100%;
  height: 110%;
  overflow: hidden;
  /* background: #24C6DC;  */
  background: #fff;     
}

#breadcrumb .title {  
  padding: 0;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  color: #262699;
}

.breadcrumbs {
  padding: 0;  
  display: flex;
  justify-content: center;
  border-radius: 0;
  margin: 0;

  text-transform: uppercase;  
  font-weight: 700;
  list-style: none;
}
.breadcrumb-item a{
  color: #6c757d;
}
.breadcrumb-item a:hover{
  color: #4154f1;
}
.breadcrumb-item.active a{
color: #262699 ;
}
.square div {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 6px solid #6776f4;
}

@keyframes animate {
  from {
    transform: scale(0) translateY(-90px) rotate(360deg);
    opacity: 1;
  }
  
  to {
    transform: scale(1.3) translateY(-90px) rotate(-180deg);
    border-radius: 50%;
    opacity: 0;
  }
}

.square div:nth-child(1) {
  top: 12%;
  left: 42%;
  animation: animate 10s linear infinite;
  -webkit-animation: animate 10s linear infinite;
}

.square div:nth-child(2) {
  top: 70%;
  left: 50%;
  animation: animate 7s linear infinite;
  -webkit-animation: animate 7s linear infinite;
}
.square div:nth-child(3) {
  top: 17%;
  left: 6%;
  animation: animate 9s linear infinite;
  -webkit-animation: animate 9s linear infinite;
}

.square div:nth-child(4) {
  top: 20%;
  left: 60%;
  animation: animate 10s linear infinite;
  -webkit-animation: animate 10s linear infinite;
}

.square div:nth-child(5) {
  top: 67%;
  left: 10%;
  animation: animate 6s linear infinite;
  -webkit-animation: animate 6s linear infinite;
}

.square div:nth-child(6) {
  top: 80%;
  left: 70%;
  animation: animate 12s linear infinite;
  -webkit-animation: animate 12s linear infinite;
}

.square div:nth-child(7) {
  top: 60%;
  left: 80%;
  animation: animate 15s linear infinite;
  -webkit-animation: animate 15s linear infinite;
}

.square div:nth-child(8) {
  top: 32%;
  left: 25%;
  animation: animate 16s linear infinite;
  -webkit-animation: animate 16s linear infinite;
}

.square div:nth-child(9) {
  top: 90%;
  left: 25%;
  animation: animate 9s linear infinite;
  -webkit-animation: animate 9s linear infinite;
}

.square div:nth-child(10) {
  top: 20%;
  left: 80%;
  animation: animate 10s linear infinite;
  -webkit-animation: animate 10s linear infinite;
}
.square div:nth-child(11) {
  top: 30%;
  left: 50%;
  animation: animate 5s linear infinite;
  -webkit-animation: animate 5s linear infinite;
}

.page-title{
  display: block;
    position: relative;
    padding: 200px 0;
}

.wave{
  bottom: 0;
  position: absolute;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 80px;
  z-index: 99999;
  background: #262699;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 20px;
  margin: auto;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  transform: scale(1.3);
  background: #4154f1;
  color: #fff;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #262699;
  font-family: 'Montserrat', sans-serif;
  margin-top: 3px;
}

@media (min-width: 320px) {
  .header .logo span {
    font-size: 20px;
  }
  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #013289;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #4154f1;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #4154f1;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #5969f3;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #262699;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  margin-top: 20px;
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 75px;
  right: 15px;
  /* bottom: 15px; */
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #262699;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #4154f1;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%; 
  height: auto;
  background: url("../images/bg/hero-bg.png") top  no-repeat;
  background-size: cover;   
   padding: 150px 0 100px !important;
}

.hero .hero-img {
  text-align: right;
}

#hero .hero-container {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9;
  padding: 0 15px;
}
.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #262699;
}

.hero h2 {
  color: #444444;
  margin: 15px 0 0 0;
  font-size: 26px;
}

.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);  
}

.hero .btn-get-started span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;  
}

.hero .btn-get-started:hover  {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.hero .btn-get-started:hover i {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}


@keyframes rotate360 {
  from  { transform:rotate(0deg) ; -webkit-transform:rotate(0deg) ; -moz-transform:rotate(0deg) ; -ms-transform:rotate(0deg) ; -o-transform:rotate(0deg) ; }
  to { transform: rotate(360deg); -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); }
}

.hero .back1-img {
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 0;
  max-width: 100%;
  transition-timing-function: ease-in-out;
  animation: 40s rotate360 infinite linear;
  -webkit-animation: 40s rotate360 infinite linear;
}
 .hero .back2-img {
   position: relative;
   left: 20px;
   top: 2%;
   opacity: 0.8;
   z-index: -1;
   transition-timing-function: ease-in-out;
   animation: 30s rotate360 infinite reverse;
   -webkit-animation: 30s rotate360 infinite reverse;
}
.hero .main-img{
 position: absolute;
 z-index: 1;
 left: 100px;
 max-width: 70%;
 height: auto;
   transition: transform 0.5s ease-in-out;
 top: 25%;
}
@media (min-width: 320px) {
  #hero {
    width: 100%; 
    height: auto;
    background: url("../images/bg/hero-bg.png") top  no-repeat;
    background-size: cover;   
     padding: 150px 0 80px !important;
  }
  .mt-sm-4{
    margin-top: 6rem !important;
  }
  .hero {
      height: auto;
      transition: transform 0.5s ease-in-out;
      padding: 120px 0 60px 0;
      -webkit-transition: transform 0.5s ease-in-out;
      -moz-transition: transform 0.5s ease-in-out;
      -ms-transition: transform 0.5s ease-in-out;
      -o-transition: transform 0.5s ease-in-out;
}
  .hero .back1-img {
     position: absolute;
     top: 0%;
     left: 0px;
     z-index: 0;
     max-width: 100%;
     transition-timing-function: ease-in-out;
     animation: 40s rotate360 infinite linear;
     -webkit-animation: 40s rotate360 infinite linear;
}
    .hero .back2-img {
      position: relative;
      left: 10px;
      top: 4%;
      opacity: 0.8;
      z-index: -1;
      width: 130%;
      transition-timing-function: ease-in-out;
      animation: 30s rotate360 infinite reverse;
      -webkit-animation: 30s rotate360 infinite reverse;
}
  .hero .main-img{
      position: absolute;
      z-index: 1;
      max-width: 70%;
      height: auto;
      transition: transform 0.5s ease-in-out;
      left: 56px;
      top: 25%;
      -webkit-transition: transform 0.5s ease-in-out;
      -moz-transition: transform 0.5s ease-in-out;
      -ms-transition: transform 0.5s ease-in-out;
      -o-transition: transform 0.5s ease-in-out;
}

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 24px;
  }
}

@media (min-width: 768px)  {
  #hero {
    width: 100%; 
    height: auto;
    background: url("../images/bg/hero-bg.png") top  no-repeat;
    background-size: cover;   
     padding: 150px 0 80px !important;
  }
  .hero {
    height: auto;
      transition: transform 0.5s ease-in-out;
    padding: 120px 0 60px 0;
  }
  .hero .back1-img {
     position: absolute;
     top: 0%;
     left: 0px;
     z-index: 0;
     max-width: 100%;
     transition-timing-function: ease-in-out;
     animation: 40s rotate360 infinite linear;
     -webkit-animation: 40s rotate360 infinite linear;
}
    .hero .back2-img {
      position: relative;
      left: 10px;
      top: 4%;
      opacity: 0.8;
      z-index: -1;
      width: 130%;
      transition-timing-function: ease-in-out;
      animation: 30s rotate360 infinite reverse;
      -webkit-animation: 30s rotate360 infinite reverse;
}
  .hero .main-img{
    position: absolute;
    z-index: 1;
    max-width: 70%;
    height: auto;
      transition: transform 0.5s ease-in-out;
    left: 100px;
    top: 25%;
  }
 

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 24px;
  }

}

@media (min-width: 1024px) {
  #hero {   
    width: 100%; 
    height: auto;
    background: url("../images/bg/hero-bg.png") top  no-repeat;
    background-size: cover;   
     padding: 150px 0 100px !important;
  }
  .hero .back1-img {
    position: absolute;
    top: 0%;
    left: 0px;
    z-index: 0;
    max-width: 100%;
    transition-timing-function: ease-in-out;
    animation: 40s rotate360 infinite linear;
    -webkit-animation: 40s rotate360 infinite linear;
}
   .hero .back2-img {
     position: relative;
     left: 10px;
     top: 5%;
     opacity: 0.8;
     z-index: -1;
     width: 130%;
     transition-timing-function: ease-in-out;
     animation: 30s rotate360 infinite reverse;
     -webkit-animation: 30s rotate360 infinite reverse;
}
 .hero .main-img{
   position: absolute;
   z-index: 1;
   max-width: 70%;
   height: auto;
     transition: transform 0.5s ease-in-out;
   left: 80px;
   top: 25%;
 }
 .hero {
   background-attachment: fixed;
 }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  background-color: #f6f9ff;
  padding: 40px;
}
.about .title{
  font-weight: 600;
}
.about .nav .nav-item a.active{
  color: #262699;
}
.about .btn-detail {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}
.about .btn-detail:hover  {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.about .btn-detail:hover i {
  transform: translateX(5px);
}
.about h3 {
  font-size: 14px;
  font-weight: 700;
  color: #4154f1;
  text-transform: uppercase;
}

.about h1 {  
  font-weight: 700;
}

.about p {
  font-weight: 500;  
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.about .btn-read-more span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services{
  width: 100%;  

}
.services .box {
  padding: 20px;
  box-shadow: 0px 0 5px rgba(1, 42, 112, 0.34);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}
.services .service-icon{
  width: 60px;
  height: 60px;   
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.services .box img {
  transition: 0.5s;
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}

.services .box h3 {
  text-align: center;
  font-size: 20px;
  color: #262699;
  font-weight: 700;
  margin-bottom: 18px;
}

.services .box p {
  text-align:  justify;  
}

.services .box:hover {
  box-shadow: 0px 0 30px rgba(4, 68, 179, 0.386);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values{
  width: 100%;  
  background: url(../images/bg/hero-bg-right.jpg) top center no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.values .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(1, 42, 112, 0.34);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}
/* .values .service-icon{
  width: 60px;
  height: 60px;   
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
} */

.values .box img {
  transition: 0.5s;
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}

.values .box h3 {
  font-size: 20px;
  color: #262699;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgba(4, 68, 179, 0.386);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing{
  width: 100%;
  background: url(../images/bg/hero-bg-right.jpg) top center no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.pricing .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.pricing .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing .price {
  font-size: 36px;
  color: #444444;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing img {
  padding: 30px 40px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: #4154f1;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #4154f1;
}

.pricing .btn-buy:hover {
  background: #4154f1;
  color: #fff;
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #4154f1;
  color: #fff;
}

/*--------------------------------------------------------------
# Tentang Kami
--------------------------------------------------------------*/


.nav-warp{
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #262699;
}

.choose{
  width: 100%;  
  background: url(../images/bg/hero-bg-right.jpg) top center  no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.choose .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(1, 42, 112, 0.34);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}
/* .tentang .service-icon{
  width: 60px;
  height: 60px;   
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
} */

.choose .box img {
  width: 150px;
  height: 150px;
  transition: 0.5s;
  transform: scale(1.1);
}

.choose .box h3 {
  font-size: 20px;
  color: #262699;
  font-weight: 700;  
}

.tentang p{
  font-family: 'Montserrat', sans-serif;
}

.choose .box:hover {
  box-shadow: 0px 0 30px rgba(4, 68, 179, 0.386);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}



@media (min-width: 1024px) {
  .tentang .box {
    padding: 30px;
    box-shadow: 0px 0 5px rgba(1, 42, 112, 0.34);
    text-align: center;
    transition: 0.3s;
    height: 100%;
}
}

@media (max-width: 991px) {
  .choose .box {
    padding: 30px;
    box-shadow: 0px 0 5px rgba(1, 42, 112, 0.34);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    width: 90%;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .choose .box {
    padding: 30px;
    box-shadow: 0px 0 5px rgba(1, 42, 112, 0.34);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    width: 90%;
    margin: auto;
  }
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #4154f1;
  border-bottom: 0;
}

.faq .accordion-body {
  padding: 0 0 25px 0;
  border: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portoflio-items{
  margin-bottom: 20px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #444444;
  margin: 0 4px 8px 4px;
  transition: 0.3s;
  border-radius: 50px;
  border: 1px solid #fff;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #4154f1;
  border-color: #4154f1;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 1s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid rgba(1, 41, 112, 0.2);
  border-left: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid rgba(1, 41, 112, 0.2);
  border-right: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #262699;
  font-weight: 700;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #262699;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  background: #4154f1;
  margin: 10px 2px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  font-size: 20px;
  display: flex;
  align-items: center;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #5969f3;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(1, 42, 112, 0.325);
  background: #fff;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
  background-size: cover;
   background-position: top center;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 10px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    /* transform: scale(1.12); */
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team-web{
  display: none;
}
.team-mobile{
  display: none;
}
.team .member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
}
.team .member img{
  width: 100%;
  height: auto;
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}

/* .team .member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../images/tentangKami/wave.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
} */

.team .member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.team .member .social a {
  transition: color 0.3s;
  color: rgba(1, 41, 112, 0.5);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.team .member .social a:hover {
  color: rgba(1, 41, 112, 0.8);
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 10px 15px 20px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #262699;
}
.team .member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.team .member:hover .social {
  right: 8px;
  opacity: 1;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients h1{
  font-weight: 700;
  color: #262699;  
}
.clients .clients-slider .swiper-slide img {
  transition: 0.3s;

}
.logo{    
  padding: 10px 10px 10px 10px;
}
.clients img{
  max-width: 160px;
height: auto;
width: auto;
}



.clients .clients-slider .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(1, 42, 112, 0.34);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}
.contact .box img {
  width: 100px;
  transition: 0.5s;
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}

.contact .box span {
  font-size: 40px; margin-top: 10px; text-transform: uppercase; font-weight: 700; color: #262699;
}

.contact .box:hover {
  box-shadow: 0px 0 30px rgba(4, 68, 179, 0.386);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

@media (max-width: 768px) {
  .contact .box img {
    width: 80px;
    transition: 0.5s;
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
  }
  
  .contact .box span {
    font-size: 20px; margin-top: 10px; text-transform: uppercase; font-weight: 700; color: #262699;
  }
  .contact .box p {
    font-size: 15px;
  }
}
.contact .email-form {
  background: #fafbff;
  box-shadow: 0px 0px 27px 3px rgba(0,0,0,0.1);
  padding: 30px; 
  height: 100%;
}



.contact .email-form input:focus,
.contact .email-form textarea:focus {
  border-color: #4154f1;
}

.contact .email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .email-form button[type=submit]:hover {
  background: #7683f4;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 14px;
}

.footer .footer-top {  
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #262699;
  font-family: 'Montserrat', sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
}

.footer .footer-top .social-links i {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links i:hover {
  color: #262699;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #262699;  
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #d0d4fc;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  color: #013289;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: #4154f1;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
}

.footer .copyright {  
  padding-top: 30px;
  color: #262699;
}

.footer .credits {  
  padding-top: 30px;  
  padding-left: 10px;
  font-size: 13px;
  color: #262699;
}
@media (min-width: 320px) {
  .footer .footer-top .footer-info .logo span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #262699;
    font-family: 'Montserrat', sans-serif;
    margin-top: 3px;
  }
}