@import url("https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap");
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --dullblue: #00badd;
  --brightblue: #2e97ff;
  --black: #3c556a;
  --highlight: #00ffe9;
}

body {
  background-color: transparent !important;
  color: var(--black);
  font-family: "Open Sans", sans-serif;
  font-family: "Raleway", Arial, sans-serif;
  width: 100%;
}
a {
  color: var(--black);
  text-decoration: none;
  transition: 0.5s;
}
a:hover,
a:active,
a:focus {
  color: var(--dullblue);
  outline: none;
  text-decoration: none;
}
p {
  padding: 0;
  margin: 0 0 20px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin: 0 0 10px 0;
  padding: 0;
}
h1,
h2,
h3 {
  color: var(--black);
}
.subHeader {
  font-size: 16px;
  color: var(--black);
  padding-bottom: 15px;
}
@media (max-width: 562px) {
  .subHeader {
    font-size: 14px !important;
  }
  h6,
  p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
  # Back to arrow down
  --------------------------------------------------------------*/
@-webkit-keyframes scroll-inner {
  from {
    margin-top: 15%;
  }
  to {
    margin-top: 50%;
  }
}
@keyframes scroll-inner {
  from {
    margin-top: 15%;
  }
  to {
    margin-top: 50%;
  }
}
@-webkit-keyframes scroll-mouse {
  from {
    margin-top: 0;
  }
  to {
    margin-top: 15px;
  }
}
@keyframes scroll-mouse {
  from {
    margin-top: 0;
  }
  to {
    margin-top: 15px;
  }
}

div.mouse-container {
  position: absolute;
  bottom: 5%;
  left: 48%;
  display: block;
  height: 100px;
}
div.mouse {
  position: relative;
  margin: 0 auto;
  display: block;
  width: 30px;
  height: 42px;
  border: solid 2px #fff;
  border-radius: 25px;
  -webkit-animation: scroll-mouse 3s;
  animation: scroll-mouse 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
span.scroll-down {
  display: block;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  margin: 15% auto auto auto;

  -webkit-animation: scroll-inner 3s;
  animation: scroll-inner 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}
.mouse-container {
  text-align: center;
}
.mouse-container p {
  color: white;
  padding-top: 5px;
  font-size: 10px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0px 0px 0px;
  z-index: 3;
  background-color: var(--brightblue);
  background-image: url(../../img/homepage/hero-bg.png);
  background-position-x: right;
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-size: 60%;
}

.hero .container {
  z-index: 1;
}

.hero .row {
  align-items: center;
  justify-content: space-between;
}

.hero h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.hero span {
  color: var(--highlight);
}

.hero p {
  color: white;
  margin-bottom: 50px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  transition: 0.5s;
  color: var(--highlight);
  border: 2px solid var(--highlight);
}

.hero .btn-get-started:hover {
  background: var(--highlight);
  color: var(--black);
}
@media (max-width: 992px) {
   .hero{
    background-size: 100%;
   }

   .hero .row{
    position: absolute;
    top: 25%;
   }
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
    line-height: 1;
  }

  .hero .btn-get-started {
    font-size: 13px;
  }
}

@media (max-width: 519px) {
  .hero .row {
    position: absolute;
    top: 20%;
  }

  .hero{
    background-size: 150%;
   }

   .hero p {
    margin-bottom: 20px;
  }
  div.mouse-container {
    bottom: 12%;
  }
}
/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
body {
  background-color: transparent !important;
}
#header {
  height: 80px;
  z-index: 9999;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
  width: 100%;
  position: fixed;
  top: 0px;
}
#header .fixed-top {
  margin-top: 18px;
}

#header.header-scrolled {
  display: none;
}
#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
  }
  #header.header-scrolled {
    display: block;
  }
}
#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  max-height: 45px;
}

@media (max-width: 519px) {
  #header .logo img {
    max-height: 35px;
  }
  #header .fixed-top {
    margin-top: 24px;
}
}
/*--------------------------------------------------------------
  # 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 li:nth-child(4) div {
  border: 2px solid var(--dullblue);
  border-radius: 8px;
  width: fit-content;
}
.navbar li:nth-child(4) a {
  color: var(--dullblue);
}
.navbar li:nth-child(4) a:hover {
  background-color: var(--dullblue);
  color: white;
}
.navbar li:nth-child(5) .copyright {
  display: none;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
  padding: 0.5rem 1rem;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
}
.navbar a:hover,
.navbar li:hover > a {
  color: var(--dullblue);
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: var(--black);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  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(23, 35, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 10px 0;
  background-color: var(--black);
  overflow-y: auto;
  transition: 0.3s;
  width: 50%;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  color: #fff;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--dullblue);
}

.navbar-mobile li {
  top: 15%;
  margin-bottom: 20px;
}
.navbar-mobile li:nth-child(4) div {
  margin: 20px;
  text-align: center;
}
.navbar-mobile li:nth-child(5) .copyright {
  display: block;
}

.navbar-mobile li:nth-child(5){
position: absolute;
bottom: 20px;
top: unset;
}
.navbar-mobile .copyright {
  display: block;
  color: #ffffff !important;
  font-size: 10px;
  margin: 0 20px;
}

/*--------------------------------------------------------------
  # Sections
  --------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}
/* Sections Header
  --------------------------------*/
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Section with background
  --------------------------------*/
.section-bg {
  background: #ecf5ff;
}

/*  Pages Header
  --------------------------------*/
  .page-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 70px;
  }

  .page-header h1{
    font-weight: 700;
  }

  .page-header span{
    font-weight: 300;
  }

  .page-header p{
    margin-top: 40px;
    margin-bottom: 0;
  }

  
/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
  background: white;
  padding: 0 0 30px 0;
  font-size: 14px;
}
#footer .footer-top {
  background: white;
  padding: 60px 0 30px 0;
  background-image: url(../../img/footer/footer-bg.png);
  background-size: cover;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  color: var(--dullblue);
}
#footer .footer-top .footer-links h3,
#footer .footer-top .footer-contact h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--dullblue);
}
#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}
#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 li {
  padding: 8px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: var(--black);
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--dullblue);
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact a:hover {
  color: var(--dullblue);
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

@media (max-width: 992px) {
  #footer .footer-top {
    background-image: none;
  }
}

/*--------------------------------------------------------------
  # Homepage services
  --------------------------------------------------------------*/
#services-4 .row {
  justify-content: space-between;
}

#services-4 .services-box {
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
  align-items: center;
  padding-top: 26px;
  border-radius: 20px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

#services-4 .services-box img {
  float: left;
}

#services-4 .services-box .text {
  margin-left: 33px;
  margin-right: 40px;
}

@media (max-width: 519px) {
  #services-4 .services-box {
    position: relative;
  }

  #services-4 .services-box img {
    height: 100px;
    width: auto;
    position: absolute;
    bottom: 0;
  }

  #services-4 .services-box .text {
    margin-left: 140px;
    margin-right: 20px;
  }
}

/*--------------------------------------------------------------
  # Homepage expertise
  --------------------------------------------------------------*/
section.slider {
  padding: 0px;
}


.slider a {
  color: inherit;
  text-decoration: none !important;
  font-size: x-large;
}

.slider ul {
  padding: 0;
}

.slider ul li{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.slider ul li::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  height: 15px;
  width: 15px;
  background-image: url(../../img/homepage/dot.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.slider ul > * + * {
  margin-top: 50px;
}

.slider li a.active,
.slider li a:hover {
  color: var(--highlight);
}

.slider h3 {
  color: white;
}

.slider p {
  margin-bottom: 50px;
}

.slider {
  color: #fff;
  grid-template-columns: 40% 60%;
  position: relative;
  display: grid;
  align-items: stretch;
}

.slider .content_container {
  padding: 40px;
  padding-left: 70px;
  background-color: var(--brightblue);
}

.slider .slides {
  overflow-y: hidden;
  max-height: 500px;
  scrollbar-width: none;
}

.slider .slides::-webkit-scrollbar {
  display: none;
}

.slider .slides .slide {
  min-height: calc(100%);
  background-color: white;
  display: flex;
  padding: 40px;
  color: var(--black);
  align-items: center;
}

.slider .slides .slide:nth-child(even) {
  background-color: white;
}

.slider .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  transition: 0.5s;
  color: var(--dullblue);
  border: 2px solid var(--dullblue);
}

.slider .btn-get-started:hover {
  background: var(--dullblue);
  color: white;
}

@media (min-width: 1200px) {
  .slider .content_container {
    padding-left: 150px;
  }
}

@media (max-width: 992px) {
  .slider .slides .slide {
    min-height: calc(100% + 80px);
  }

  .slider a {
    font-size: large;
  }

  .slider .content_container {
    padding-left: 60px;
  }

  .slider ul li::before {
    height: 10px;
    width: 10px;
  }

  .slider .slides {
    max-height: 700px;
    height: auto;
  }

  .slider .slides .slide {
    align-items: flex-start;
  }
}

@media (max-width: 519px) {
  .slider .slides .slide {
    min-height: calc(100% + 100px);
  }

  .slider a {
    font-size: x-small;
  }

  .slider h1,
  .slider h3 {
    font-size: large;
  }

  .slider p {
    font-size: x-small;
  }

  .slider .content_container {
    padding: 20px;
  }

  .slider ul > * + * {
    margin-top: 20px;
  }

  .slider .btn-get-started {
    font-size: 12px;
    padding: 8px;
  }

  .slider .slides {
    max-height: 570px;
    height: auto;
  }

  .slider .slides .slide {
    align-items: flex-start;
    padding-left: 30px;
    padding-right: 30px;
  }

  .slider ul li::before {
    height: 5px;
    width: 5px;
    margin-right: 5px;
  }
}

/*--------------------------------------------------------------
  # Homepage review
  --------------------------------------------------------------*/

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin: auto;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D9D9D9;
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;    
  -ms-transition: all .5s ease-in-out;    
  -moz-transition: all .5s ease-in-out;    
  -o-transition: all .5s ease-in-out;    
  transition: all .5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: var(--dullblue);
  border-color: var(--dullblue);
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale .5s ease-in-out forwards;   
  -moz-animation: testim-scale .5s ease-in-out forwards;   
  -ms-animation: testim-scale .5s ease-in-out forwards;   
  -o-animation: testim-scale .5s ease-in-out forwards;   
  animation: testim-scale .5s ease-in-out forwards;   
}
  
.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont > div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont > div.inactive {
  opacity: 1;
}
  

.testim .cont > div.active {
  position: relative;
  opacity: 1;
}
  

.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h6 {
  color: var(--black);
  font-size: 1em;
  margin: 15px 0;
}

.testim .cont div p {
  color: var(--black);
  width: 80%;
  margin: auto;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show .5s ease-in-out forwards;            
  -moz-animation: testim-show .5s ease-in-out forwards;            
  -ms-animation: testim-show .5s ease-in-out forwards;            
  -o-animation: testim-show .5s ease-in-out forwards;            
  animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h6 {
  -webkit-animation: testim-content-in .4s ease-in-out forwards;    
  -moz-animation: testim-content-in .4s ease-in-out forwards;    
  -ms-animation: testim-content-in .4s ease-in-out forwards;    
  -o-animation: testim-content-in .4s ease-in-out forwards;    
  animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in .5s ease-in-out forwards;    
  -moz-animation: testim-content-in .5s ease-in-out forwards;    
  -ms-animation: testim-content-in .5s ease-in-out forwards;    
  -o-animation: testim-content-in .5s ease-in-out forwards;    
  animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide .5s ease-in-out forwards;            
  -moz-animation: testim-hide .5s ease-in-out forwards;            
  -ms-animation: testim-hide .5s ease-in-out forwards;            
  -o-animation: testim-hide .5s ease-in-out forwards;            
  animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out .4s ease-in-out forwards;        
  -moz-animation: testim-content-out .4s ease-in-out forwards;        
  -ms-animation: testim-content-out .4s ease-in-out forwards;        
  -o-animation: testim-content-out .4s ease-in-out forwards;        
  animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive h6 {
  -webkit-animation: testim-content-out .5s ease-in-out forwards;    
  -moz-animation: testim-content-out .5s ease-in-out forwards;    
  -ms-animation: testim-content-out .5s ease-in-out forwards;    
  -o-animation: testim-content-out .5s ease-in-out forwards;    
  animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
  0% {
      -webkit-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -webkit-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -webkit-box-shadow: 0px 0px 10px 5px var(--highlight);        
      box-shadow: 0px 0px 10px 5px var(--highlight);        
  }

  100% {
      -webkit-box-shadow: 0px 0px 0px 0px var(--highlight);        
      box-shadow: 0px 0px 0px 0px var(--highlight);        
  }
}

@-moz-keyframes testim-scale {
  0% {
      -moz-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -moz-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -moz-box-shadow: 0px 0px 10px 5px var(--highlight);        
      box-shadow: 0px 0px 10px 5px var(--highlight);        
  }

  100% {
      -moz-box-shadow: 0px 0px 0px 0px var(--highlight);        
      box-shadow: 0px 0px 0px 0px var(--highlight);        
  }
}

@-ms-keyframes testim-scale {
  0% {
      -ms-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -ms-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -ms-box-shadow: 0px 0px 10px 5px var(--highlight);        
      box-shadow: 0px 0px 10px 5px var(--highlight);        
  }

  100% {
      -ms-box-shadow: 0px 0px 0px 0px var(--highlight);        
      box-shadow: 0px 0px 0px 0px var(--highlight);        
  }
}

@-o-keyframes testim-scale {
  0% {
      -o-box-shadow: 0px 0px 0px 0px #eee;
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      -o-box-shadow: 0px 0px 10px 5px #eee;        
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      -o-box-shadow: 0px 0px 10px 5px var(--highlight);        
      box-shadow: 0px 0px 10px 5px var(--highlight);        
  }

  100% {
      -o-box-shadow: 0px 0px 0px 0px var(--highlight)e;        
      box-shadow: 0px 0px 0px 0px var(--highlight);        
  }
}

@keyframes testim-scale {
  0% {
      box-shadow: 0px 0px 0px 0px #eee;
  }

  35% {
      box-shadow: 0px 0px 10px 5px #eee;        
  }

  70% {
      box-shadow: 0px 0px 10px 5px var(--highlight);        
  }

  100% {
      box-shadow: 0px 0px 0px 0px var(--highlight);        
  }
}

@-webkit-keyframes testim-content-in {
  from {
      opacity: 0;
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -webkit-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-moz-keyframes testim-content-in {
  from {
      opacity: 0;
      -moz-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -moz-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-ms-keyframes testim-content-in {
  from {
      opacity: 0;
      -ms-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -ms-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-o-keyframes testim-content-in {
  from {
      opacity: 0;
      -o-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -o-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@keyframes testim-content-in {
  from {
      opacity: 0;
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      transform: translateY(0);        
  }
}

@-webkit-keyframes testim-content-out {
  from {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -webkit-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-moz-keyframes testim-content-out {
  from {
      opacity: 1;
      -moz-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -moz-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-ms-keyframes testim-content-out {
  from {
      opacity: 1;
      -ms-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -ms-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-o-keyframes testim-content-out {
  from {
      opacity: 1;
      -o-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@keyframes testim-content-out {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      transform: translateY(-100%);        
  }
}

@-webkit-keyframes testim-show {
  from {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -webkit-transform: scale(1);       
      transform: scale(1);       
  }
}

@-moz-keyframes testim-show {
  from {
      opacity: 0;
      -moz-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -moz-transform: scale(1);       
      transform: scale(1);       
  }
}

@-ms-keyframes testim-show {
  from {
      opacity: 0;
      -ms-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -ms-transform: scale(1);       
      transform: scale(1);       
  }
}

@-o-keyframes testim-show {
  from {
      opacity: 0;
      -o-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -o-transform: scale(1);       
      transform: scale(1);       
  }
}

@keyframes testim-show {
  from {
      opacity: 0;
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      transform: scale(1);       
  }
}

@-webkit-keyframes testim-hide {
  from {
      opacity: 1;
      -webkit-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
      opacity: 1;
      -moz-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -moz-transform: scale(0);
      transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
      opacity: 1;
      -ms-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -ms-transform: scale(0);
      transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
      opacity: 1;
      -o-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -o-transform: scale(0);
      transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
      opacity: 1;
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      transform: scale(0);
  }
}

@media all and (max-width: 300px) {
body {
  font-size: 14px;
}
}

@media all and (max-width: 500px) {
.testim .arrow {
  font-size: 1.5em;
}
}

.testim .right-quote{
  position: absolute;
  bottom: 40%;
  right: 0;
}
@media (max-width: 519px) {
.testim .right-quote {
  bottom: 25%;
}
}

/*--------------------------------------------------------------
  # Contact-banner
  --------------------------------------------------------------*/

#contact-banner{
  width: 100%;
  background-image: linear-gradient(to right, var(--brightblue), var(--highlight));
}
#contact-banner .row {
  justify-content: space-between;
  align-items: center;
}
#contact-banner h1{
  color: white;
}

#contact-banner .col-lg-3{
  text-align: right;
}

#contact-banner .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  transition: 0.5s;
  color: var(--dullblue);
  background-color: white;
}

#contact-banner .btn-get-started:hover {
  background: var(--dullblue);
  color: white;
}

@media (max-width: 992px) {
#contact-banner .col-lg-3{
  text-align: left;
  padding-top: 20px;
}
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
#about {
    padding-bottom: 0;
}

#about .row{
  justify-content: space-between;
  align-items: center;
}

#about h2{
  padding-bottom: 20px;
}

#about .who{
  padding-bottom: 100px;
}


#about .mission{
  background-color: var(--brightblue);
  color: white;
}

#about .mission h2{
  color: white;
}

#about .mission img, #about .vision img{
width: 100%;
height: 100%;
object-fit: cover;
}

#about .row>*{
  padding-left: 0;
  padding-right: 0;
}

#about .mission .text, #about .vision .text{
  padding: 0 60px;
}

@media (max-width: 992px) {
  #about .who img{
    margin-bottom: 50px;
    height: 50%;
    width: 50%;
  }
  #about .who .col-12{
    text-align: center;
  }
  #about .mission .text, #about .vision .text{
    padding: 60px calc(var(--bs-gutter-x) * .5);
  }
  #about .row>* {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
}
  }

/*--------------------------------------------------------------
  # Products
  --------------------------------------------------------------*/
  
  #products .row{
    align-items: center;
    margin-top: 100px;
  }

  #products .row>*{
    padding-left: 0;
    padding-right: 0;
  }

  #products .btn-get-started {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 10px;
    transition: 0.5s;
    color: var(--dullblue);
    background-color: white;
  }
  
  #products .btn-get-started:hover {
    background: var(--dullblue);
    color: white;
  }

  #products img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    #products h2{
      color: white;
    }
  
    #products hr{
      width: 60px;
      border: 4px solid white;
      border-radius: 4px;
      margin: 50px auto;
      opacity: initial;
  
    }
  
  #products .product-1 .text{
    background-color: var(--brightblue);
    padding: 100px 85px;
    text-align: center;
    color: white;
  }

  #products .product-1 .product-img{
    margin-bottom: 300px;
  }
  #products .product-2{
    background-color: var(--black);
  }

  #products .product-2 .text{
    background-color: var(--black);
    padding: 100px 85px;
    text-align: center;
    color: white;
  }


  #products .product-3 .text{
    background-color: var(--brightblue);
    padding: 100px 85px;
    text-align: center;
    color: white;
  }

  @media (max-width: 992px) {
    #products .product-1 .product-img{
      margin-bottom: 0;
    }

    #products .product-2{
      margin-top: 100px;
    }
  }
  

  /*--------------------------------------------------------------
  # Contact page
  --------------------------------------------------------------*/
  
  #contact .contact-text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  #contact .contact-row-title{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  #contact .contact-row-title h3{
    margin-bottom: 0;
    margin-left: 10px;
    line-height: unset;
  }

  #contact .contact-row img {
    width: 30px;
  }

  #contact a{
    color: var(--black);
  }

  #contact a:hover{
    color: var(--dullblue);
  }

  #contact .contact-map{
    height: 400px;
  }

  @media (max-width: 992px) {
    #contact .contact-text{
      flex-direction: row;
      margin-bottom: 20px;
    }
  }

  @media (max-width: 768px) {
    #contact .contact-text{
      flex-direction: column;
      margin-bottom: 20px;
    }
  }

  /*--------------------------------------------------------------
  # Services page
  --------------------------------------------------------------*/
  .service-card {
    box-sizing: border-box;
    height: 400px;
    overflow: hidden;
    transition: 0.5s;
    margin-bottom: 20px;
    position: relative;
  }
  
  .service-card:hover {
    height: auto;
  }
  
  .card__top {
    box-sizing: border-box;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    color: white;
    align-items: flex-start;
    height: 400px;
    width: auto;
    background: var(--black);
    transition: 0.8s;
    padding: 60px;
    position: relative;
  }

  .service-card:nth-child(1) .card__top , .service-card:nth-child(4) .card__top{
    background-color: var(--brightblue);
  }
  
  .service-card .card__top h3{
    color: white;
    margin-top: 40px;
  }

  #services i{
    font-size: xxx-large;
    position: absolute;
    top: 45px;
    right: 45px;
    font-weight: 300;
  }
  
  .card__bottom {
    box-sizing: border-box;
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    padding: 60px;
    background: var(--black);
  }

  .service-card:hover > .card__bottom  {
    position: absolute;
    top: 0px;
    z-index: 999;
    margin-right: 12px;
    height: 100vh;
  }
  
  .card__bottom > p {
    color: white;
    font-size: 16px;
    line-height: 1.3em;
  }
  
  @media (max-width: 992px) {
    .service-card:hover {
      height: 400px;
    }
    .service-card:nth-child(3) .card__top{
      background-color: var(--brightblue);
    }

    .service-card:nth-child(4) .card__top{
      background-color: var(--black);
    }

    .service-card:hover > .card__top {
      background: var(--brightblue);
      color: white;
    }

    .service-card:hover {
      overflow:visible;
      height: auto;
    }

    .service-card:hover > .card__bottom {
      height: auto;
      position: relative;
      width: 100%;
    }
  }

  @media (max-width: 519px) {
    #services img{
      height: 25%;
    }
  }