/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-colourr:               #00CC99;
  --primary-colour:                #5142fc;
  --secondary-colour:             #0066CC;
  --secondary-color:              #01305c;
  --background-color:             #afeeee;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-colour:         #0066CC;
  --custom-btn-bg-color:          #01305c;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-colour:            #0066CC;
  --link-hover-color:             #01305c;
  --primary-dark:                 #0c1022;
  --glow-color:                   #5142fc;

  --body-font-family:             'Montserrat', sans-serif;
  --title-font-family:            'Sono', sans-serif;

  --h1-font-size:                 58px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px;
  --menu-font-size:               14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
    font-family: var(--body-font-family);
    letter-spacing: 1px;
    /* background-color: var(--primary-dark); */
    background-color: var(--background-color);
    color: var(--secondary-color);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2, h3, h4, h5, h6 {
  color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font-family); 
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-colour);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b, strong {
  font-weight: var(--font-weight-bold);
}

::selection {
  background-color: var(--primary-colour);
  color: var(--white-color);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-title-wrap {
  position: relative;
}

.section-title-wrap::after {
  content: "";
  background: var(--section-bg-color);
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.section-title {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  padding: 10px 25px;
  color: #5142fc;
}

.section-padding {
  padding: 100px 0;
}

main {
  position: relative;
  z-index: 1;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--primary-colour);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--primary-colour);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--primary-colour);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--primary-colour);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: url('../images/wave-header.jpg'), linear-gradient(#348CD2, #FFFFFF);;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 480px;
  position: relative;
}

.site-header h2 {
  color: var(--white-color);
}

/*---------------------------------------
  PRELOADER              
-----------------------------------------*/
#preloader {
    overflow: hidden;
    background-color: #2a2a2a;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    color: #fff;
}
  
#preloader .jumper {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    margin: auto;
    width: 50px;
    height: 50px;
}
  
#preloader .jumper > div {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    opacity: 0;
    width: 50px;
    height: 50px;
    -webkit-animation: jumper 1s 0s linear infinite;
    animation: jumper 1s 0s linear infinite;
}
  
#preloader .jumper > div:nth-child(2) {
    -webkit-animation-delay: 0.33333s;
    animation-delay: 0.33333s;
}
  
#preloader .jumper > div:nth-child(3) {
    -webkit-animation-delay: 0.66666s;
    animation-delay: 0.66666s;
}
  
@-webkit-keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    5% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
  
  @keyframes jumper {
    0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    }
    5% {
    opacity: 1;
    }
    100% {
    opacity: 0;
    }
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background-color: var(--white-color);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
  padding: 0.3rem 0 0.3rem 0;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
  color: var(--white-color);
}

.logo-image {
  width: 2.5rem;
  height: 2.5rem;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--secondary-color);
  font-family: var(--title-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 18px;
  padding-left: 18px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-colour);
}

.navbar .custom-border-btn {
  border-color: var(--white-color);
  color: var(--white-color);
}

.navbar .custom-border-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/**********START INTRO SECTION**********/

.intro {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    padding: 100px 0px 0px 0px !important;
    background: var(--white-color);
}
  
.intro-text {
    position: relative;
    font-size: 35px;
    width: 100%;
    padding: 15% 0px 10% 0px !important;
}

.intro-text h1 {
    font-size: var(--h1-font-size);
}
  
.highlight {
    color: var(--primary-colour);
}

.lowlight {
    color: var(--secondary-color);
}
  
  .intro-text p {
    line-height: 25px;
    width: 75%;
    color: var(--secondary-color);
    font-weight: var(--font-weight-medium);
  }
  
  .intro-text button {
    margin: 20px 0px;
    font-size: 12px;
    line-height: 25px;
    border-radius: 50px;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition-duration: .75s;
  }
  
  .intro-text button:hover {
    background: var(--primary-colour);
    color: var(--secondary-color);
  }
  
  .intro-img {
    width: 100%;
    object-fit: contain;
    object-position: bottom;
    border-radius: 5%;
    position: relative;
    margin: 2.5% 0px 0px 0px !important;
    animation: bounce 5s linear infinite;
  }
  
  @keyframes bounce {
    50% {
      transform: translateY(-25px);
    }
  }
  
  .intro-img:hover {
    animation-play-state: paused;
  }
  
  /**********END INTRO SECTION**********/
  
  /**********START FEATURES SECTION**********/
  
  .features {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    padding: 50px 0px 0px 0px !important;
    background: var(--section-bg-color);
  }
  
  .features-text {
    position: relative;
    font-size: 35px;
    width: 100%;
  }
  
  .typed {
    color: var(--primary-colour);
    font-size: var(--h1-font-size);
  }
  
  .features-text p {
    margin: 20px 0px;
    font-size: 16px;
    line-height: 25px;
    width: 100%;
    color: var(--secondary-color);
  }
  
  .features-img {
    width: 70%;
    object-fit: contain;
    object-position: bottom;
    border-radius: 5%;
    position: relative;
    margin: 2.5% 0px 0px 0px !important;
    animation: slide 5s linear infinite;
  }
  
  @keyframes slide {
    50% {
      transform: translateX(2.5%);
    }
  }
  
  .features-img:hover {
    animation-play-state: paused;
  }
  
  .features-content {
    margin: 70px 10px 10px 10px;
  }

  .features-content h2 {
    color: var(--secondary-color);
  }
  
  .features-card {
    position: relative;
    height: 15rem;
    width: 100%;
  }
  
  .cards {
    position: absolute;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    transition: all 1s ease;
  }
  
  .cards:hover {
    transform: rotateY(180deg);
  }
  
  .front-card {
    position: absolute;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    background: var(--primary-colour);
    padding: 10px;
    border-radius: 25px;
  }

  .front-card h5 {
    color: var(--white-color);
  }
  
  .front-card p {
    margin: 1.5%;
    color: var(--secondary-color);
  }
  
  .front-card i {
    color: var(--white-color);
    margin-right: 1.5%;
  } 
  
  .back-card {
    position: absolute;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    background: var(--secondary-color);
    transform: rotateY(180deg);
    padding: 10px;
    border-radius: 25px;
  }

  .back-card h5{
    color: var(--primary-colour);
  }
  
  .back-card p {
    margin: 1.5%;
    color: var(--white-color);
  }
  
  .back-card i { 
    color: var(--primary-colour);
    margin-right: 1.5%;
  }
  
  /**********END FEATURES SECTION**********/

/*---------------------------------------
  CAROUSEL        
-----------------------------------------*/
.hero-section {
  background-image: url('../images/wave-banner.jpg'), linear-gradient(#348CD2, #FFFFFF);
  background-repeat: no-repeat;
  background-size: 108% 76%;
  background-position: top;
  padding-top: 200px;
}

.owl-carousel {
  text-align: center;
}

.owl-carousel-image {
  display: block;
}

.owl-carousel .owl-item .owl-carousel-verified-image {
  display: inline-block;
  width: 30px;
  height: auto;
  position: relative;
  right: 5px;
}

.verified-image {
  display: inline-block;
  width: 20px;
  height: auto;
}

.owl-carousel .owl-item {
  opacity: 0.35;
}

.owl-carousel .owl-item.active.center {
  opacity: 1;
}

.owl-carousel-info-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.owl-carousel-info {
  background-color: var(--section-bg-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.badge {
  background-color: var(--custom-btn-bg-color);
  font-family: var(--title-font-family);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  padding-bottom: 5px;
}

.owl-carousel-info-wrap .social-share,
.team-thumb .social-share {
  position: absolute;
  right: 0;
  bottom: 0;
}

.owl-carousel-info-wrap .social-icon,
.team-thumb .social-icon {
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(0);
  padding-right: 20px;
  padding-left: 20px;
}

.owl-carousel .owl-item.active.center .owl-carousel-info-wrap:hover .social-icon,
.team-thumb:hover .social-icon {
  transform: translateY(-100%);
  opacity: 1;
}

.owl-carousel-info-wrap .social-icon-item,
.owl-carousel-info-wrap .social-icon-link,
.team-thumb .social-icon-item,
.team-thumb .social-icon-link {
  display: block;
  margin-bottom: 10px;
  margin-left: auto;
}

.owl-carousel-info-wrap .social-icon-link {
  margin-top: 5px;
  margin-bottom: 5px;
}

.owl-carousel .owl-dots {
  background-color: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  margin: auto;
  margin-top: 40px;
  padding: 15px 25px;
  padding-bottom: 7px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 2px solid var(--primary-colour);
}

.custom-block:hover {
  background: transparent;
  transform: translateY(-3px);
}

.custom-block-info {
  display: block;
  padding: 10px 20px;
  padding-bottom: 0;
}

.custom-block-image-wrap {
  position: relative;
  display: block;
  height: 100%;
}

.custom-block-image-wrap > a {
  display: block;
}

.custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.custom-block-image-detail-page .custom-block-image {
  width: 100%;
  height: 212px;
}

.custom-block .custom-block-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-block-icon-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block-icon-wrap .section-overlay {
  opacity: 0.25;
}

.custom-block-btn-group {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
}

.custom-block-btn-group .custom-block-icon {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
}

.custom-block-icon {
  background: var(--primary-colour);
  border-radius: var(--border-radius-medium);
  font-size: var(--p-font-size);
  color: var(--white-color);
  text-align: center;
  width: 32.5px;
  height: 32.5px;
  line-height: 32.5px;
  transition: all 0.3s;
}

.custom-block-icon:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.custom-block .custom-btn {
  font-size: var(--menu-font-size);
  padding: 7px 15px;
}

.custom-block .custom-block-info + div .badge {
  background-color: var(--dark-color);
  color: var(--white-color);
  border-radius: 50px !important;
  font-size: var(--menu-font-size);
  display: flex;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 30px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.custom-block .custom-block-info + div .badge:hover {
  background-color: var(--secondary-color);
}

.custom-block-full {
  background-color: var(--section-bg-color);
  border-color: transparent;
}

.custom-block-full:hover {
  border-color: var(--primary-colour);
}

.custom-block-full .custom-block-info {
  padding: 20px;
  padding-bottom: 0;
}

.custom-block-full .custom-block-image {
  width: 100%;
  height: 210px;
}

.custom-block-full .social-share {
  position: absolute;
  top: 0;
  right: 0;
  margin: 50px;
}

.custom-block-top small {
  color: var(--p-color);
  font-family: var(--title-font-family);
}

.custom-block-top .badge {
  background-color: var(--secondary-color);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  height: 26.64px;
  line-height: 20px;
}

.custom-block-bottom a:hover span {
  color: var(--primary-colour);
}

.custom-block-bottom a span {
  font-family: var(--title-font-family);
  color: var(--p-color);
  text-transform: uppercase;
  margin-left: 3px;
}

.custom-block-overlay {
  border-color: transparent;
  padding: 0;
}

.custom-block-overlay .custom-block-image {
  margin: auto;
  width: 100%;
  height: 210px;
  transition: all 0.3s;
}

.custom-block-overlay:hover .custom-block-image {
  padding: 15px;
  padding-bottom: 0;
}

.custom-block-overlay-info {
  padding: 15px 20px 20px 20px;
}

/*---------------------------------------
  PROIFLE BLOCK               
-----------------------------------------*/
.profile-block {
  margin-top: 10px;
}

.profile-block-image {
  border-radius: var(--border-radius-large);
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}

.profile-block p strong {
  display: block;
  font-family: var(--title-font-family);
}

.profile-detail-block {
  border: 1px solid #dee2e6;
  border-radius: var(--border-radius-large);
  padding: 25px 35px;
}

.profile-detail-block p {
  margin-bottom: 0;
}

/*---------------------------------------
  ABOUT & TEAM SECTION               
-----------------------------------------*/
.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.team-thumb {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.team-info {
  background-color: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 30px;
}


/*---------------------------------------
  PAGINATION               
-----------------------------------------*/
.pagination {
  border: 1px solid #dee2e6;
  border-radius: var(--border-radius-large);
  padding: 20px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.active>.page-link, .page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-info p strong {
  font-family: var(--title-font-family);
  min-width: 90px;
}

.contact-info p a {
  color: var(--p-color);
  border-bottom: 1px solid;
  padding-bottom: 3px;
}

.contact-info p a:hover {
  color: var(--secondary-color);
}

.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}

/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  border: 1px solid var(--white-color);
  border-radius: var(--border-radius-small);
  position: relative;
  top: 12px;
  padding: 35px;
}

.subscribe-form-wrap h6 {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  color: var(--primary-colour);
  text-align: center;
  position: relative;
  bottom: 55px;
  margin-bottom: -25px;
  padding: 8px;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  margin-bottom: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  outline: none;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-colour);
  border-color: transparent;
}

/*---------------------------------------
  SEARCH FORM               
-----------------------------------------*/
.search-form .form-control {
  border: 0;
  margin-bottom: 0;
}

.search-form button[type="submit"] {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  max-width: 50px;
  height: 100%;
  padding-left: 15px;
}

.search-form button[type="submit"]:hover {
  background: var(--primary-colour);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-image: url('../images/wave-footer.jpg'), linear-gradient(#fff, #348cd2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* padding-top: 100px; */
}

.site-footer > .container {
  position: relative;
  top: 50px;
  padding-top: 100px;
}

.site-footer-title,
.site-footer p {
  color: var(--white-color);
}

.site-footer p strong {
  font-family: var(--title-font-family);
}

.site-footer p a {
  color: var(--white-color);
  border-bottom: 1px solid;
  padding-bottom: 3px;
}

.site-footer p a:hover {
  color: var(--secondary-color);
}

.site-footer-thumb a img {
  display: block;
  width: 120px;
  min-width: 120px;
  height: auto;
}

.site-footer-links {
  margin-bottom: 0;
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  margin-right: 10px;
  margin-left: 10px;
}

.site-footer-link {
  color: var(--white-color);
  font-size: var(--p-font-size);
  line-height: inherit;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-colour);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 2160px) {
	.hero-section {
	  background-size: 100% 90%;
	}
}


@media screen and (min-width: 1600px) {
  /* .site-footer {
    padding-top: 250px;
  } */
}

@media screen and (max-width: 1240px) {
	.hero-section {
	  background-size: 116%;
	}
}

@media screen and (max-width: 992px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
  
  .hero-section {
	  background-size: 160% 66%;
	}

  .section-padding {
    padding: 50px 0;
  }

  .navbar-nav {
    background-color: var(--section-bg-color);
    border-radius: var(--border-radius-medium);
    padding: 30px;
  }

  .navbar-nav .nav-link {
    padding: 5px 0;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  /* .site-footer {
    margin-top: -200px;
    padding-top: 200px;
  } */
}

@media screen and (max-width: 540px) {
	.hero-section {
  		background-size: 180% 65%;
	}

  .custom-block .custom-block-top {
    flex-direction: column;
  }

  .custom-block .custom-block-top small:last-child {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

@media screen and (max-width: 414px) {
  .search-form {
    max-width: 200px;
  }

}

/* REGISTER/lOGIN PAGES */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .form_container{
      position: relative;
      /* width: 25rem; */
      /* height: 100%; */
      max-width: 42rem;
      /* max-height: 470px; */
      background: #040717;
      border-radius: 50px;
      /* display: flex; */
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin: 10rem 0;
  }
  @keyframes moving_lines{
      0%{
          transform: rotate(0deg);
      }
      100%{
          transform: rotate(360deg);
      }
  }
  .form_div{
      padding: 2.5rem;
      color: var(--glow-color);
  }
  .form_div span {
      transition: 5s;
  }
  .form_div span:nth-child(1) {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right, transparent, var(--primary-colour));
      animation: animate1 5s linear infinite;
    }
    
    @keyframes animate1 {
      
      0% {
        transform: translateX(-100%);
      }
    
      100% {
        transform: translateX(100%);
      }
    }
    
    .form_div span:nth-child(2) {
      position: absolute;
      top: 0;
      right: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(to bottom, transparent, var(--primary-colour));
      animation: animate2 5s linear infinite;
    }
    
    @keyframes animate2 {
    
      0% {
        transform: translateY(-100%);
      }
    
      100% {
        transform: translateY(100%);
      }
    }
    
    .form_div span:nth-child(3) {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to left, transparent, var(--primary-colour));
      animation: animate3 5s linear infinite;
    }
    
    @keyframes animate3 {
    
      0% {
        transform: translateX(100%);
      }
    
      100% {
        transform: translateX(-100%);
      }
    }
    
    .form_div span:nth-child(4) {
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(to top, transparent, var(--primary-colour));
      animation: animate4 5s linear infinite;
    }
    
    @keyframes animate4 {
    
      0% {
        transform: translateY(100%);
      }
    
      100% {
        transform: translateY(-100%);
      }
    }
  .form_div h5{
      font-weight: 600;
      color: var(--glow-color);
  }
  .input_group{
      margin-top: 2.5rem;
      position:relative;
      align-items: center;
      justify-content: start;
  }
  .input_field {
      display: flex;
  }
  .input_field .fa, .input_field .fab{
      font-size: 20px;
  
  }
  .input_text{
      width: 95%; 
      height: 30px;
      background: transparent;
      border: none;
      outline: none;
      border-bottom: 1px solid var(--glow-color);
      font-size: 20px;
      padding-left: 10px;
      color: var(--glow-color);
  
  }
  .input_text::placeholder{
      font-size: 15px;
      color: var(--secondary-color);
      letter-spacing: 1px;
  
  }

  .password-policies {
    position: relative;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 0px;
    height: 0px;
    background: var(--section-bg-color);
    border-radius: 5px;
    margin-top: 10px;
    opacity: 1;
    overflow: hidden;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }

  .password-policies.active {
    opacity: 1;
    padding: 10px;
    height: 160px;
  }
  .password-policies > div {
    margin: 15px 10px;
    font-weight: 600;
    color: #888;
  }

  .password-policies > div.active {
    color: var(--glow-color);
  }

  .checkbox {
    font-size: 1.1rem;
  }
  .checkbox a {
    color: var(--white-color);
  }
  .checkbox a:hover {
    color: #5142fc;
  }
  .glowIcon {
    text-shadow: 0 0 10px var(--glow-color);
  }

/* END REGISTER/LOGIN PAGES */

/* FAQ PAGE */

.accordion {
    width: 100%;
    padding: 0 .5rem;
    border: 2px solid var(--primary-colour);
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    margin: 1.2rem 0;
    align-items: center;
}

.accordion .icon {
    margin: 0 1.2rem 0 0;
    width: 2rem;
    height: 2rem;
    background: url(images/plus.png) no-repeat .5rem .45rem var(--primary-colour);
    border-radius: 50%;
    float: left;
    transition: all .5s ease-in;
}

.accordion h5 {
    font-size: 1rem;
    margin: 0;
    padding: .2rem 0 0 0;
    font-weight: normal;
    color: var(--secondary-color);
    transition: all .5s ease-in;
}

.active-i .icon {
    background: url(images/plus.png) no-repeat .5rem -1.5rem var(--white-color);
}

.active-i {
    background-color: var(--primary-colour);
    color: var(--white-color);
}

.active-i h5 {
    color: var(--white-color);
}

.panel {
    padding: 0 1rem;
    border-left: 1px solid var(--primary-colour);
    margin-left: 1.5rem;
    font-size: .5rem;
    text-align: justify;
    overflow: hidden;
    max-height: 0;
    transition: all .5s ease-in;
}

/* END FAQ PAGE */