@charset "utf-8";


@import url("font-awesome.min.css");

@font-face {
  font-family: "Flaticon";
  src: url("fonts/Flaticon.eot");
  src: url("fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("fonts/Flaticon.woff") format("woff"), url("fonts/Flaticon.ttf") format("truetype"), url("fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
      font-family: "Flaticon";
      src: url("fonts/Flaticon.svg#Flaticon") format("svg");
  }
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-style: normal;
}

/********** Template CSS **********/
:root {
  --primary: #01bacf;
  --secondary: #34AD54;
  --light: #EEF9FF;
  --dark: :#42bcbc;
}


/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px)
  }

  50% {
    -webkit-transform: perspective(120px) rotateY(180deg)
  }

  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}


/*** Button ***/
.btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: .5s;
}

.btn-primary,
.btn-secondary {
  color: #FFFFFF;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: 'Nunito', sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #0b1e3e;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
  color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #FFFFFF;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, .1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #FFFFFF;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}


/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(18 42 84 / 38%);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}


/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 48%;
  margin-left: -75px;
}

.section-title.all-text-center::before {
  left: 48%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #FFFFFF;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.all-text-center::after {
  -webkit-animation: section-title-run-center1 5s infinite linear;
  animation: section-title-run-center1 5s infinite linear;
}


.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }

  50% {
    left: 145px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }

  50% {
    left: 50%;
    margin-left: 45px;
  }

  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-center1 {
  0% {
    right: 50%;
    margin-right: -75px;
  }

  50% {
    right: 50%;
    margin-right: 45px;
  }

  100% {
    right: 50%;
    margin-right: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }

  50% {
    left: 85px;
  }

  100% {
    left: 0;
  }
}


/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: .5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #DDDDDD;
  border-radius: 2px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #FFFFFF !important;
  box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
  transition: .5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.link-animated a {
  transition: .5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

.bg-primary {
  background-color: #122a54 !important
}

.text-primary {
  color: #01bacf !important
}


#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}

/* The Modal (background) */
.modal1 {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgb(0 0 0 / 24%)
    /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0)
  }

  to {
    -webkit-transform: scale(1)
  }
}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

/* The Close Button */
.close {
  position: absolute;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}


















/* Rows
--------------------------------------------------------------------------------------------------------------- */
.row0,
.row0 a {}

.row1,
.row1 a {}

.row2,
.row2 a {}

.row3,
.row3 a {}

.row4,
.row4 a {}

.row5,
.row5 a {}


/* Top Bar
--------------------------------------------------------------------------------------------------------------- */
#topbar {
  padding: 15px 0;
  font-size: .8rem;
  text-transform: uppercase;
}

#topbar * {
  margin: 0;
  padding: 0;
  list-style: none;
}

#topbar ul li {
  display: inline-block;
  margin-right: 10px;
  padding-right: 15px;
  border-right: 1px solid;
}

#topbar ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

#topbar i {
  margin: 0 5px 0 0;
  line-height: normal;
}


/* Header
--------------------------------------------------------------------------------------------------------------- */
/* #header{padding:50px 0;} */

#header #logo * {
  margin: 0;
  padding: 0;
  line-height: 1;
}

#header #logo h1 {
  margin-top: 8px;
  font-size: 24px;
}

#header #logo p {
  margin-top: -2px;
  font-size: .9rem;
  text-transform: lowercase;
}

#header #quickinfo {
  font-size: .8rem;
  text-transform: uppercase;
}

#header #quickinfo li {
  margin-right: 50px;
}

#header #quickinfo li:last-child {
  margin-right: 0;
}

#header #quickinfo strong {
  display: block;
  margin: 0 0 -5px 0;
  padding: 0;
  font-size: .9rem;
}

#header #quickinfo br {
  display: none;
}


/* Page Intro
--------------------------------------------------------------------------------------------------------------- */
#pageintro {
  padding: 250px 0;
}

#pageintro li article {
  display: block;
  max-width: 75%;
  padding-bottom: 10px;
  overflow: hidden;
}

#pageintro li article * {
  word-wrap: break-word;
}

#pageintro li .heading {
  margin-bottom: 20px;
  font-size: 3rem;
}

#pageintro li p:first-of-type {
  margin: 0 0 20px 0;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 5px;
}

#pageintro li footer {
  margin-top: 50px;
}

#pageintro .flex-prev,
#pageintro .flex-next {
  opacity: 0;
}

#pageintro:hover .flex-prev,
#pageintro:hover .flex-next {
  opacity: .5;
}

#pageintro .flex-prev:hover,
#pageintro .flex-next:hover {
  opacity: 1;
}

#pageintro .flex-direction-nav .flex-disabled {
  cursor: default;
}

#pageintro .flex-direction-nav .flex-disabled:hover {
  opacity: .5;
}


/* Content Area
--------------------------------------------------------------------------------------------------------------- */
/* .container{padding:80px 0;} */

/* Content */
.container .content {}

.sectiontitle {
  margin-bottom: 80px;
}

.sectiontitle * {
  margin: 0;
}

.figures {}

.figures>li {}

.figures>li:last-child {
  margin-bottom: 0;
}

/* Used when elements stack in small viewports */
.figures>li>figure {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 320px;
}

.figures>li>figure figcaption {}

.figures>li>figure figcaption a {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 39px;
  line-height: 39px;
  padding: 0 15px;
  border-top: 1px solid;
  text-transform: uppercase;
}

.figures>li>figure figcaption a::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 15px;
  font-family: "FontAwesome";
  content: "\f105";
  border-left: 1px solid;
}

.figures>li>figure figcaption time {
  display: block;
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: auto;
  padding: 8px 0;
  text-align: center;
}

.figures>li>figure figcaption time * {
  display: block;
  margin: 0;
  padding: 0;
}

.figures>li>figure figcaption time strong {
  margin-bottom: -5px;
}

#stats {}

#stats li * {
  margin: 0;
  padding: 0;
}

#stats li:last-child {
  margin-bottom: 0;
}

/* Used when elements stack in small viewports */
#stats li i {
  margin-bottom: 30px;
}

#stats li p:first-of-type {
  margin-bottom: 15px;
  text-transform: uppercase;
}

#stats li p:last-of-type {
  font-size: 32px;
  font-weight: 700;
}

/* Comments */
#comments ul {
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
}

#comments li {
  margin: 0 0 10px 0;
  padding: 15px;
}

#comments .avatar {
  float: right;
  margin: 0 0 10px 10px;
  padding: 3px;
  border: 1px solid;
}

#comments address {
  font-weight: bold;
}

#comments time {
  font-size: smaller;
}

#comments .comcont {
  display: block;
  margin: 0;
  padding: 0;
}

#comments .comcont p {
  margin: 10px 5px 10px 0;
  padding: 0;
}

#comments form {
  display: block;
  width: 100%;
}

#comments input,
#comments textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid;
}

#comments textarea {
  overflow: auto;
}

#comments div {
  margin-bottom: 15px;
}

#comments input[type="submit"],
#comments input[type="reset"] {
  display: inline-block;
  width: auto;
  min-width: 150px;
  margin: 0;
  padding: 8px 5px;
  cursor: pointer;
}

/* Sidebar */
.container .sidebar {}

.sidebar .sdb_holder {
  margin-bottom: 50px;
}

.sidebar .sdb_holder:last-child {
  margin-bottom: 0;
}


/* Footer
--------------------------------------------------------------------------------------------------------------- */
#footer {
  padding: 80px 0;
}

#footer .group .heading {
  margin-bottom: 50px;
  font-size: 1.2rem;
}

#footer .linklist li {
  display: block;
  margin-bottom: 15px;
  padding: 0 0 15px 0;
  border-bottom: 1px solid;
}

#footer .linklist li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

#footer .linklist li::before,
#footer .linklist li::after {
  display: table;
  content: "";
}

#footer .linklist li,
#footer .linklist li::after {
  clear: both;
}

#footer .contact {}

#footer .contact.linklist li,
#footer .contact.linklist li:last-child {
  position: relative;
  padding-left: 40px;
}

#footer .contact li * {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

#footer .contact li i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  font-size: 16px;
  text-align: center;
}

#footer input,
#footer button {
  border: 1px solid;
}

#footer input {
  display: block;
  width: 100%;
  padding: 8px;
}

#footer button {
  padding: 8px 18px 10px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}


/* Copyright
--------------------------------------------------------------------------------------------------------------- */
#copyright {
  padding: 20px 0;
}

#copyright * {
  margin: 0;
  padding: 0;
}


/* Transition Fade
This gives a smooth transition to "ALL" elements used in the layout - other than the navigation form used in mobile devices
If you don't want it to fade all elements, you have to list the ones you want to be faded individually
Delete it completely to stop fading
--------------------------------------------------------------------------------------------------------------- */
*,
*::before,
*::after {
  transition: all .3s ease-in-out;
}

#mainav form * {
  transition: none !important;
}


/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */


/* Navigation
--------------------------------------------------------------------------------------------------------------- */
nav ul,
nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

#mainav,
#breadcrumb,
.sidebar nav {
  line-height: normal;
}

#mainav .drop::after,
#mainav li li .drop::after,
#breadcrumb li a::after,
.sidebar nav a::after {
  position: absolute;
  font-family: "FontAwesome";
  font-size: 10px;
  line-height: 10px;
}

/* Top Navigation */
#mainav {
  position: relative;
  margin-bottom: -30px;
  padding: 0;
  z-index: 999;
}

#mainav ul {
  text-transform: uppercase;
}

#mainav ul ul {
  z-index: 9999;
  position: absolute;
  width: 180px;
  text-transform: none;
  text-align: left;
}

#mainav ul ul ul {
  left: 180px;
  top: 0;
}

#mainav li {
  display: block;
  float: left;
  position: relative;
  margin: 0;
  padding: 0;
}

#mainav li:last-child {
  margin-right: 0;
}

#mainav li li {
  width: 100%;
  margin: 0;
}

#mainav li a {
  display: block;
  padding: 20px;
}

#mainav li li a {
  border: solid;
  border-width: 0 0 1px 0;
}

#mainav .drop {
  padding-left: 15px;
}

#mainav li li a,
#mainav li li .drop {
  display: block;
  margin: 0;
  padding: 10px 15px;
}

#mainav .drop::after,
#mainav li li

/* .drop::after{content:"\f0d7";} */
#mainav .drop::after {
  top: 25px;
  left: 5px;
}

#mainav li li .drop::after {
  top: 15px;
  left: 5px;
}

#mainav ul ul {
  visibility: hidden;
  opacity: 0;
}

#mainav ul li:hover>ul {
  visibility: visible;
  opacity: 1;
}

#mainav form {
  display: none;
  margin: 0;
  padding: 0;
}

#mainav form select,
#mainav form select option {
  display: block;
  cursor: pointer;
  outline: none;
}

#mainav form select {
  width: 100%;
  padding: 5px;
  border: none;
}

#mainav form select option {
  margin: 5px;
  padding: 0;
  border: none;
}

/* Breadcrumb */
#breadcrumb {
  padding: 120px 0 30px;
}

#breadcrumb ul {
  margin: 0 0 30px 0;
  padding: 0 0 8px 0;
  list-style: none;
  text-transform: uppercase;
  border-bottom: 1px solid;
}

#breadcrumb li {
  display: inline-block;
  margin: 0 6px 0 0;
  padding: 0;
}

#breadcrumb li a {
  display: block;
  position: relative;
  margin: 0;
  padding: 0 12px 0 0;
  font-size: 12px;
}

#breadcrumb li a::after {
  top: 3px;
  right: 0;
  content: "\f101";
}

#breadcrumb li:last-child a {
  margin: 0;
  padding: 0;
}

#breadcrumb li:last-child a::after {
  display: none;
}

#breadcrumb .heading {
  margin: 0;
  font-size: 2rem;
}

/* Sidebar Navigation */
.sidebar nav {
  display: block;
  width: 100%;
}

.sidebar nav li {
  margin: 0 0 3px 0;
  padding: 0;
}

.sidebar nav a {
  display: block;
  position: relative;
  margin: 0;
  padding: 5px 10px 5px 15px;
  text-decoration: none;
  border: solid;
  border-width: 0 0 1px 0;
}

.sidebar nav a::after {
  top: 9px;
  left: 5px;
  content: "\f101";
}

.sidebar nav ul ul a {
  padding-left: 35px;
}

.sidebar nav ul ul a::after {
  left: 25px;
}

.sidebar nav ul ul ul a {
  padding-left: 55px;
}

.sidebar nav ul ul ul a::after {
  left: 45px;
}

/* Pagination */
.pagination {
  display: block;
  width: 100%;
  text-align: center;
  clear: both;
}

.pagination li {
  display: inline-block;
  margin: 0 2px 0 0;
}

.pagination li:last-child {
  margin-right: 0;
}

.pagination a,
.pagination strong {
  display: block;
  padding: 8px 11px;
  border: 1px solid;
  background-clip: padding-box;
  font-weight: normal;
}

/* Back to Top */
#backtotop {
  z-index: 999;
  display: inline-block;
  position: fixed;
  visibility: hidden;
  bottom: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  text-align: center;
  opacity: .2;
}

#backtotop i {
  display: block;
  width: 100%;
  height: 100%;
  line-height: inherit;
}

#backtotop.visible {
  visibility: visible;
  opacity: .5;
}

#backtotop:hover {
  opacity: 1;
}


/* Tables
--------------------------------------------------------------------------------------------------------------- */
table,
th,
td {
  border: 1px solid;
  border-collapse: collapse;
  vertical-align: top;
}

table,
th {
  table-layout: auto;
}

table {
  width: 100%;
  margin-bottom: 15px;
}

th,
td {
  padding: 5px 8px;
}

td {
  border-width: 0 1px;
}


/* Gallery
--------------------------------------------------------------------------------------------------------------- */
#gallery {
  display: block;
  width: 100%;
  margin-bottom: 50px;
}

#gallery figure figcaption {
  display: block;
  width: 100%;
  clear: both;
}

#gallery li {
  margin-bottom: 30px;
}


/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */


/* Colours
--------------------------------------------------------------------------------------------------------------- */
body {
  color: #4A4A4A;
  background-color: #FFFFFF;
}

a {
  color: #42bcbc;
}

a:active,
a:focus {
  background: transparent;
}

/* IE10 + 11 Bugfix - prevents grey background */
hr,
.borderedbox {
  border-color: #D7D7D7;
}

label span {
  color: #FF0000;
  background-color: inherit;
}

input:focus,
textarea:focus,
*:required:focus {
  border-color: #56AED4;
}

.overlay {
  color: #FFFFFF;
  background-color: inherit;
}

.overlay::after {
  color: inherit;
  background-color: rgba(0, 0, 0, .55);
}

.btn,
.btn.inverse:hover {
  color: #FFFFFF;
  background-color: #42bcbc;
  border-color: #42bcbc;
}

.btn:hover,
.btn.inverse {
  color: inherit;
  background-color: transparent;
  border-color: inherit;
}


/* Flexslider */
.flex-direction-nav a i,
.flex-direction-nav .flex-disabled:hover i {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, .5);
}

.flex-direction-nav a:hover i {
  background-color: #42bcbc;
}


/* Rows */
.row0,
.row0 a {
  color: #4A4A4A;
  background-color: #F6F6F6;
}

.row1 {
  color: #4A4A4A;
  background-color: #FFFFFF;
}

.row2 {
  color: #4A4A4A;
  background-color: #F6F6F6;
}

.row3 {
  color: #4A4A4A;
  background-color: #FFFFFF;
}

.row4 {
  color: #CBCBCB;
}

.row5,
.row5 a {
  color: #4A4A4A;
  background-color: #FFFFFF;
}


/* Top Bar */
#topbar,
#topbar ul li {
  border-color: rgba(0, 0, 0, .1);
}

#topbar>div:last-of-type li:first-child a {
  color: #42bcbc;
}


/* Header */
#header a {
  color: inherit;
}


/* Page Intro */
#pageintro li p:first-of-type {
  color: rgba(255, 255, 255, .5);
}


/* Content Area */
.figures>li>figure figcaption a,
.figures>li>figure figcaption a::after {
  border-color: rgba(255, 255, 255, .3);
}

.figures>li>figure figcaption a {
  color: #FFFFFF;
  background: rgba(0, 0, 0, .55);
}

.figures>li>figure:hover figcaption a {
  background: #42bcbc;
}

.figures>li>figure figcaption time {
  color: #FFFFFF;
  background-color: rgba(98, 155, 175, .5);
  /* teal */
}


/* Footer */
#footer .heading {
  color: #FFFFFF;
}

#footer hr,
#footer .borderedbox,
#footer .linklist li {
  border-color: rgba(255, 255, 255, .1);
}

#footer nav a {
  color: inherit;
}

#footer nav a:hover,
#footer nav li:first-child a {
  color: #42bcbc;
}

#footer input,
#footer button {
  border-color: transparent;
}

#footer input {
  color: #FFFFFF;
  background-color: #4E4E4E;
}

#footer input:focus {
  border-color: #42bcbc;
}

#footer button {
  color: #FFFFFF;
  background-color: #42bcbc;
}


/* Navigation */
#mainav {
  color: #FFFFFF;
  /* background-color: #42bcbc; */
  background: linear-gradient(166deg, rgb(15 148 159) 20%, rgba(81,207,214,1) 100%);
}

#mainav li a {
  color: inherit;
}

#mainav .active a,
#mainav a:hover,
#mainav li:hover>a {
  color: #2B4953;
  background-color: inherit;
}

#mainav li li a,
#mainav .active li a {
  color: #FFFFFF;
  background-color: rgba(98, 155, 175, 0.68);
  /* teal */
  border-color: rgba(0, 0, 0, .6);
}

#mainav li li:hover>a,
#mainav .active .active>a {
  color: #FFFFFF;
  background-color: #42bcbc;
}

#mainav form select {
  color: #4A4A4A;
  background-color: #FFFFFF;
}

#breadcrumb ul {
  border-color: rgba(255, 255, 255, .1);
}

#breadcrumb a {
  color: inherit;
  background-color: inherit;
}

#breadcrumb li:last-child a {
  color: #42bcbc;
}

.container .sidebar nav a {
  color: inherit;
  border-color: #D7D7D7;
}

.container .sidebar nav a:hover {
  color: #42bcbc;
}

.pagination a,
.pagination strong {
  border-color: #D7D7D7;
}

.pagination .current * {
  color: #FFFFFF;
  background-color: #42bcbc;
}

#backtotop {
  color: #FFFFFF;
  background-color: #42bcbc;
}


/* Tables + Comments */
table,
th,
td,
#comments .avatar,
#comments input,
#comments textarea {
  border-color: #D7D7D7;
}

#comments input:focus,
#comments textarea:focus,
#comments *:required:focus {
  border-color: #42bcbc;
}

th {
  color: #FFFFFF;
  background-color: #373737;
}

tr,
#comments li,
#comments input[type="submit"],
#comments input[type="reset"] {
  color: inherit;
  background-color: #FBFBFB;
}

tr:nth-child(even),
#comments li:nth-child(even) {
  color: inherit;
  background-color: #F7F7F7;
}

table a,
#comments a {
  background-color: inherit;
}


/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------ */


/* Media Queries
--------------------------------------------------------------------------------------------------------------- */
@-ms-viewport {
  width: device-width;
}


/* Max Wrapper Width - Laptop, Desktop etc.
--------------------------------------------------------------------------------------------------------------- */
@media screen and (min-width:978px) {
  .hoc {
    max-width: 978px;
  }
}


/* Mobile Devices
--------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width:900px) {
  .hoc {
    max-width: 90%;
  }

  #topbar {}

  #header {}

  #mainav {
    padding: 15px;
  }

  #mainav ul {
    display: none;
  }

  #mainav form {
    display: block;
  }

  #breadcrumb {}

  .container {}

  #comments input[type="reset"] {
    margin-top: 10px;
  }

  .pagination li {
    display: inline-block;
    margin: 0 5px 5px 0;
  }

  #footer {}

  #copyright {}

  #copyright p:first-of-type {
    margin-bottom: 10px;
  }
}


@media screen and (max-width:750px) {

  .imgl,
  .imgr {
    display: inline-block;
    float: none;
    margin: 0 0 10px 0;
  }

  .fl_left,
  .fl_right {
    display: block;
    float: none;
  }

  .group .group>*:last-child,
  .clear .clear>*:last-child,
  .clear .group>*:last-child,
  .group .clear>*:last-child {
    margin-bottom: 0;
  }

  /* Experimental - Needs more testing in different situations, stops double margin when stacking */
  .one_half,
  .one_third,
  .two_third,
  .one_quarter,
  .two_quarter,
  .three_quarter {
    display: block;
    float: none;
    width: auto;
    margin: 0 0 30px 0;
    padding: 0;
  }

  #topbar {
    text-align: center;
  }

  #topbar>div:first-of-type>ul {
    margin-bottom: 15px;
  }

  #header {
    text-align: center;
  }

  #header #logo {
    margin: 0 0 30px 0;
  }

  #pageintro {
    padding: 150px 0 100px;
  }

  #pageintro li article {
    max-width: none;
    width: 100%;
  }
}


@media screen and (max-width:450px) {
  #topbar ul li {
    margin: 2px;
    padding-right: 0;
    border-right: none;
  }
}


/* Other
--------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width:650px) {
  .scrollable {
    display: block;
    width: 100%;
    margin: 0 0 30px 0;
    padding: 0 0 15px 0;
    overflow: auto;
    overflow-x: scroll;
  }

  .scrollable table {
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

  .inline li {
    display: block;
    margin-bottom: 10px;
  }

  .pushright li {
    margin-right: 0;
  }

  .font-x2 {
    font-size: 1.4rem;
  }

  .font-x3 {
    font-size: 1.6rem;
  }

  #header #quickinfo li {
    display: block;
    margin-right: 0;
  }
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.capitalise {
  text-transform: capitalize;
}

.hidden {
  display: none;
}

.nospace {
  margin: 0;
  padding: 0;
  list-style: none;
}

.block {
  display: block;
}

.inline * {
  display: inline-block;
}

.inline *:last-child {
  margin-right: 0;
}

.pushright li {
  margin-right: 20px;
}

.pushright li:last-child {
  margin-right: 0;
}

.borderedbox {
  border: 1px solid;
}

.overlay {
  position: relative;
  z-index: 1;
}

.overlay::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

.bgded {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.circle {
  border-radius: 50%;
  background-clip: padding-box;
}

.btn {
  display: inline-block;
  padding: 10px 13px 11px;
  text-transform: uppercase;
  border: 1px solid;
}

.clear,
.group {
  display: block;
}

.clear::before,
.clear::after,
.group::before,
.group::after {
  display: table;
  content: "";
}

.clear,
.clear::after,
.group,
.group::after {
  clear: both;
}

a {
  outline: none;
  text-decoration: none;
}

.fl_left,
.imgl {
  float: left;
}

.fl_right,
.imgr {
  float: right;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  line-height: normal;
  vertical-align: middle;
}

.imgl {
  margin: 0 15px 10px 0;
  clear: left;
}

.imgr {
  margin: 0 0 10px 15px;
  clear: right;
}


/* Fonts
--------------------------------------------------------------------------------------------------------------- */
body,
input,
textarea,
select {
  font-family: Verdana, Geneva, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  font-family: Georgia, "Times New Roman", Times, serif;
}


/* Forms
--------------------------------------------------------------------------------------------------------------- */
form,
fieldset,
legend {
  margin: 0;
  padding: 0;
  border: none;
}

legend {
  display: none;
}

label,
input,
textarea,
select,
button {
  display: block;
  resize: none;
  outline: none;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  vertical-align: middle;
}

label {
  margin-bottom: 5px;
}

:required,
:invalid {
  outline: none;
  box-shadow: none;
}


/* Generalise
--------------------------------------------------------------------------------------------------------------- */
/* h1, h2, h3, h4, h5, h6, .heading{margin:0 0 20px 0; font-size:22px; line-height:normal; font-weight:normal; text-transform:uppercase;} */
.heading.nospace {
  margin-bottom: 0;
}

address {
  font-style: normal;
  font-weight: normal;
}

hr {
  display: block;
  width: 100%;
  height: 1px;
  border: solid;
  border-width: 1px 0 0 0;
}

.font-xs {
  font-size: .8rem;
}

.font-x1 {
  font-size: 1.2rem;
}

.font-x2 {
  font-size: 1.8rem;
}

.font-x3 {
  font-size: 2.8rem;
}

.wrapper {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  word-wrap: break-word;
}

/*
The "hoc" class is a generic class used to centre a containing element horizontally
It should be used in conjunction with a second class or ID
*/
.hoc {
  display: block;
  margin: 0 auto;
}


/* HTML 5 Overrides
--------------------------------------------------------------------------------------------------------------- */
address,
article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
}


/* Grid
--------------------------------------------------------------------------------------------------------------- */
.one_half,
.one_third,
.two_third,
.one_quarter,
.two_quarter,
.three_quarter {
  display: inline-block;
  float: left;
  margin: 0 0 0 3.06748466257669%;
  list-style: none;
}

.first {
  margin-left: 0;
  clear: left;
}

.one_quarter {
  width: 22.69938650306748%;
}

.one_third {
  width: 31.28834355828221%;
}

.one_half,
.two_quarter {
  width: 48.46625766871166%;
}

.two_third {
  width: 65.6441717791411%;
}

.three_quarter {
  width: 74.23312883435584%;
}


/* Spacing
--------------------------------------------------------------------------------------------------------------- */
.btmspace-10 {
  margin-bottom: 10px;
}

.btmspace-15 {
  margin-bottom: 15px;
}

.btmspace-30 {
  margin-bottom: 30px;
}

.btmspace-50 {
  margin-bottom: 50px;
}

.btmspace-80 {
  margin-bottom: 80px;
}

.inspace-5 {
  padding: 5px;
}

.inspace-10 {
  padding: 10px;
}

.inspace-15 {
  padding: 15px;
}

.inspace-30 {
  padding: 30px;
}

.inspace-50 {
  padding: 50px;
}

.inspace-80 {
  padding: 80px;
}
























.layout_padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 120px;
}

.layout_padding-bottom {
  padding-bottom: 120px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading_container img {
  max-width: 50px;
}

.heading_container h2 {
  font-weight: bold;
}

/*header section*/
.hero_area {
  height: 100vh;
  background-image: url(../images/hero-bg.jpg);
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.hero_area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 88%;
  background-image: url(../images/hero-bg2.png);
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.sub_page .hero_area {
  height: auto;
  background: none;
}

.sub_page .hero_area::before {
  width: 225px;
  height: 110px;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding: 10px 15px;
  color: #060606;
  text-align: center;
  text-transform: uppercase;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link,
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
  color: #e7d619;
}

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

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: center;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-brand img {
  width: 65px;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
  height: 80px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 50px;
  width: 30px;
  height: 30px;
}

.lg_toggl-btn {
  background-color: transparent;
  border: none;
  outline: none;
  width: 56px;
  height: 40px;
  cursor: pointer;
}

.lg_toggl-btn:focus {
  outline: none;
}

.User_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: 75px;
}

.User_option .form-inline {
  position: relative;
  margin-right: 15px;
}

.User_option .form-inline input {
  display: none;
}

.custom_menu-btn {
  z-index: 9;
  position: absolute;
  right: 15px;
  top: 7px;
}

.custom_menu-btn button {
  margin-top: 14px;
  outline: none;
  border: none;
  background-color: transparent;
}

.custom_menu-btn button span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
}

.menu_btn-style {
  position: fixed;
  right: 29px;
  top: 7px;
}

.custom_menu-btn .s-2 {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  width: 22px;
  margin-left: auto;
}

.menu_btn-style button .s-1 {
  -webkit-transform: rotate(45deg) translateY(16px);
  transform: rotate(45deg) translateY(16px);
}

.menu_btn-style button .s-2 {
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
}

.menu_btn-style button .s-3 {
  -webkit-transform: rotate(-45deg) translateY(-16px);
  transform: rotate(-45deg) translateY(-16px);
}


.overlay-content {
  position: relative;
  top: 30%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.menu_width {
  width: 100%;
}

.menu_width.overlay a {
  opacity: 1;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.slider_section .detail-box {
  margin: 45px 5% 0 5%;
  padding-bottom: 45px;
  border-right: 2px solid #e7d619;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  color: #010001;
  font-size: 3rem;
  padding-bottom: 15px;
  position: relative;
}

.slider_section .detail-box h1 span {
  color: #e7d619;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px -5px 0 -5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  width: 165px;
  text-align: center;
}

.slider_section .detail-box .btn-box .btn-1 {
  display: inline-block;
  padding: 10px 0px;
  background-color: #0a2050;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #0a2050;
  border-radius: 0;
}

.slider_section .detail-box .btn-box .btn-1:hover {
  background-color: transparent;
  color: #0a2050;
}

.slider_section .detail-box .btn-box .btn-2 {
  display: inline-block;
  padding: 10px 0px;
  background-color: #e7d619;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #e7d619;
  border-radius: 0;
}

.slider_section .detail-box .btn-box .btn-2:hover {
  background-color: transparent;
  color: #e7d619;
}

.slider_section .img-box img {
  max-width: 100%;
}

.slider_section #carouselExampleIndicators {
  width: 100%;
}

.slider_section .carousel-indicators {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section .carousel-indicators li {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: none;
  border: 2px solid #e7d619;
  color: #000000;
  position: relative;
  margin: 0 4px;
  border-radius: 100%;
}

.slider_section .carousel-indicators li.active {
  width: 18px;
  height: 18px;
}

.slider_section .li_before::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 3.5px;
  width: 1.5px;
  height: 17px;
  background-color: #e7d619;
  border-radius: 5px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}

.about_section .detail-box {
  text-align: center;
  width: 80%;
  margin: auto;
}

.about_section .detail-box .heading_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.about_section .detail-box .heading_container h2 {
  color: #151515;
}

.about_section .detail-box p {
  color: #0e0e0e;
  margin-top: 15px;
}

.about_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 25px;
}

.about_section .detail-box .btn-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #e7d619;
  text-transform: uppercase;
}

.about_section .detail-box .btn-box a img {
  margin-left: 5px;
}

.animal_section {
  background-image: url(../images/animal-bg.jpg);
  background-size: cover;
  color: #ffffff;
}

.animal_section .animal_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.animal_section .animal_container .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 45px 2%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 9%;
}

.animal_section .animal_container .box .img-box {
  border-radius: 25px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}

.animal_section .animal_container .box .img-box img {
  width: 100%;
}

.animal_section .animal_container .box .detail-box {
  margin-top: 15px;
}

.animal_section .animal_container .box .detail-box h5 {
  font-weight: bold;
}

.animal_section .animal_container .box.b1 {
  -webkit-animation: odd-box-animate 3s infinite;
  animation: odd-box-animate 3s infinite;
}

.animal_section .animal_container .box.b2 {
  -webkit-animation: even-box-animate 3s infinite;
  animation: even-box-animate 3s infinite;
}

@-webkit-keyframes odd-box-animate {
  0% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }

  50% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }

  100% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }
}

@keyframes odd-box-animate {
  0% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }

  50% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }

  100% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }
}

@-webkit-keyframes even-box-animate {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }

  50% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }

  100% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }
}

@keyframes even-box-animate {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }

  50% {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
  }

  100% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
  }
}

.pet_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pet_section .img-box {
  position: relative;
  padding-right: 45px;
}

.pet_section .img-box img {
  width: 100%;
  position: relative;
  z-index: 2;
}

.pet_section .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -145px;
  width: 100%;
  height: 110%;
  background-image: url(../images/pet-bg.png);
  z-index: 1;
  background-repeat: no-repeat;
}

.pet_section .detail-box p {
  color: #0e0e0e;
  margin-top: 15px;
}

.pet_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}

.pet_section .detail-box .btn-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #e7d619;
  text-transform: uppercase;
}

.pet_section .detail-box .btn-box a img {
  margin-left: 5px;
}

.us_section .us_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.us_section .us_container .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 9%;
}

@media (max-width: 500px) {
  .us_section .us_container .box {
    width: 50%;
    margin: auto;
  }

  .us_section .us_container {
    display: block;
  }
}

.us_section .us_container .box img {
  max-width: 100%;
}

.us_section .us_container .box .img1-box {
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.us_section .us_container .box .img2-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.us_section .us_container .box .detail-box {
  margin-top: 15px;
}

.us_section .us_container .box .detail-box h6 {
  text-transform: uppercase;
  font-weight: bold;
  color: #0e0e0e;
  text-align: center;
}

.us_section .us_container::before {
  content: "";
  position: absolute;
  top: 27%;
  left: 50%;
  width: 100%;
  height: 1.5px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #01bacf));
  background-image: linear-gradient(to right, transparent 50%, #01bacf 50%);
  background-size: 20px 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-animation: border-dance 4s infinite linear;
  animation: border-dance 4s infinite linear;
}

@-webkit-keyframes border-dance {
  0% {
    background-position: 0px 0px;
  }

  100% {
    background-position: 300px 0px;
  }
}

@keyframes border-dance {
  0% {
    background-position: 0px 0px;
  }

  100% {
    background-position: 300px 0px;
  }
}

.us_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 55px;
}

.us_section .btn-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #01bacf;
  text-transform: uppercase;
}

.us_section .btn-box a img {
  margin-left: 5px;
}

.food_section {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #0a2050), color-stop(60%, transparent));
  background: linear-gradient(to bottom, #0a2050 60%, transparent 60%);
}

.food_section .heading_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.food_section .food_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.food_section .food_container .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 45px 20px 0 20px;
}

.food_section .food_container .box .img-box img {
  max-width: 100%;
}

.food_section .food_container .box .detail-box {
  margin-top: 15px;
}

.food_section .food_container .box .detail-box h6 {
  color: #e7d619;
  text-transform: uppercase;
}

.food_section .food_container .box .detail-box h3 {
  font-weight: bold;
  color: #e7d619;
}

.food_section .food_container .box .detail-box h3 span {
  color: #0a2050;
}

.food_section .food_container .box .detail-box a {
  display: inline-block;
  padding: 8px 45px;
  background-color: #0a2050;
  color: #e7d619;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #0a2050;
  border-radius: 0;
  margin-top: 15px;
}

.food_section .food_container .box .detail-box a:hover {
  background-color: transparent;
  color: #0a2050;
}

.client_section {
  background-image: url(../images/client-bg.jpg);
  background-size: cover;
}

.client_section #carouselExampleControls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 75px;
}

.client_section .box .img-box {
  margin-right: 25px;
  min-width: 250px;
}

.client_section .box .img-box img {
  width: 100%;
}

.client_section .box .detail-box h4 {
  text-transform: uppercase;
  font-size: 24px;
}

.client_section .box .detail-box img {
  width: 25px;
}

.client_section .carousel_btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.client_section .carousel_btn-box .carousel-control-prev,
.client_section .carousel_btn-box .carousel-control-next {
  position: unset;
  width: 45px;
  height: 45px;
  background-color: #e7d619;
  opacity: 1;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 3px;
}

.client_section .carousel_btn-box .carousel-control-prev:hover,
.client_section .carousel_btn-box .carousel-control-next:hover {
  background-color: #000000;
}

.client_section .carousel_btn-box .carousel-control-prev {
  background-image: url(../images/prev.png);
}

.client_section .carousel_btn-box .carousel-control-next {
  background-image: url(../images/next.png);
}

.contact_section {
  position: relative;
}

.contact_section .form_container {
  padding: 0 35px;
}

.contact_section form {
  margin-top: 45px;
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  background-color: #ebebeb;
  outline: none;
  color: #101010;
}

.contact_section input::-webkit-input-placeholder {
  color: #979696;
}

.contact_section input:-ms-input-placeholder {
  color: #979696;
}

.contact_section input::-ms-input-placeholder {
  color: #979696;
}

.contact_section input::placeholder {
  color: #979696;
}

.contact_section input.message-box {
  height: 120px;
}

.contact_section button {
  display: inline-block;
  padding: 10px 45px;
  background-color: #e7d619;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #e7d619;
  border-radius: 0;
  color: #fff;
  margin-top: 35px;
}

.contact_section button:hover {
  background-color: transparent;
  color: #e7d619;
}

.contact_section .map_container {
  height: 725px;
  border-radius: 100% 0 0 0;
  overflow: hidden;
  margin-left: 45px;
}

.contact_section .map_container .map-responsive {
  height: 100%;
}

.info_section {
  background-color: #0a2050;
  color: #ffffff;
  padding: 40px 0 75px 0;
  font-family: "Open Sans",
    sans-serif;
}

.info_section .row>div {
  margin-top: 35px;
}

.info_section h5 {
  text-transform: uppercase;
  margin-bottom: 25px;
}

.info_time p {
  text-transform: uppercase;
}

.info_form input {
  width: 100%;
  border: none;
  height: 40px;
  margin-bottom: 10px;
  padding-left: 25px;
  background-color: #eaeaea;
  outline: none;
  color: #101010;
}

.info_form button {
  width: 100%;
  outline: none;
  border: none;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 45px;
  background-color: #e7d619;
  color: #0a2050;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #e7d619;
  border-radius: 0;
}

.info_form button:hover {
  background-color: transparent;
  color: #e7d619;
}

.info_social .social_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_social .social_container a {
  margin: 0 5px;
}

.info_social .social_container a img {
  width: 35px;
}

.info_contact>div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 0;
}

.info_contact>div img {
  height: auto;
  margin-right: 12px;
}

.info_contact>div p {
  margin: 0;
}

/* footer section*/
.footer_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #e7d619;
}

.footer_section p {
  color: #ffffff;
  margin: 0;
  padding: 25px 0 20px 0;
  margin: 0 auto;
  text-align: center;
}

.footer_section a {
  color: #ffffff;
}

/* end footer section*/
/*# sourceMappingURL=style.css.map */


















/*
 * Solution by GetTemplates.co
 * URL: https://GetTemplates.co
 */
@font-face {
  font-family: "Lato-Regular";
  src: url(../fonts/Lato-Regular.ttf);
}

@font-face {
  font-family: "Lato-Black";
  src: url(../fonts/Lato-Black.ttf);
}

@font-face {
  font-family: "Lato-Bold";
  src: url(../fonts/Lato-Bold.ttf);
}

@font-face {
  font-family: "Lato-Light";
  src: url(../fonts/Lato-Light.ttf);
}

@font-face {
  font-family: "Lato-Medium";
  src: url(../fonts/Lato-Medium.ttf);
}

@font-face {
  font-family: "Lato-Semibold";
  src: url(../fonts/Lato-Semibold.ttf);
}

@font-face {
  font-family: "OpenSans-Bold";
  src: url(../fonts/OpenSans-Bold.ttf);
}

@font-face {
  font-family: "OpenSans-Regular";
  src: url(../fonts/OpenSans-Regular.ttf);
}

@font-face {
  font-family: "OpenSans-Semibold";
  src: url(../fonts/OpenSans-Semibold.ttf);
}

p {
  font-family: "OpenSans-Regular";
  color: #666666;
  font-size: 18px;
}

body {
  overflow: hidden;
  overflow-y: auto;
  font-family: "OpenSans-Regular";
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

#gtco-main-nav {
  padding: 20px 0;
}

#gtco-main-nav .navbar-brand {
  font-size: 36px;
  font-family: "Lato-Black";
  text-transform: uppercase;
  background: -webkit-linear-gradient(left, #42bcbc, #01e6f8);
  background: -ms-linear-gradient(left, #42bcbc, #01e6f8);
  background: -moz-linear-gradient(left, #42bcbc, #01e6f8);
  background: -o-linear-gradient(left, #42bcbc, #01e6f8);
  -webkit-background-clip: text;
  -ms-background-clip: text;
  -o-background-clip: text;
  -webkit-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -o-text-fill-color: transparent;
}

#gtco-main-nav .bar1,
#gtco-main-nav .bar2,
#gtco-main-nav .bar3 {
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
  display: block;
  position: relative;
}

#gtco-main-nav .change .bar1 {
  -webkit-transform: rotate(-42deg) translate(-2px, 6px);
  transform: rotate(-42deg) translate(-2px, 6px);
}

#gtco-main-nav .change .bar2 {
  opacity: 0;
}

#gtco-main-nav .change .bar3 {
  -webkit-transform: rotate(46deg) translate(-4px, -8px);
  transform: rotate(46deg) translate(-4px, -8px);
}

#gtco-main-nav .navbar-nav li a {
  font-family: "OpenSans-Regular";
  font-size: 18px;
  color: #666666;
  padding: 5px 15px !important;
  text-transform: uppercase;
}

#gtco-main-nav form a {
  font-family: "OpenSans-Semibold";
  font-size: 18px;
  color: #fff;
  padding: 5px 25px;
  border-radius: 20px;
  border-width: 2px;
}

#gtco-main-nav form a.btn-info {
  background: #01e6f8;
  border-color: #01e6f8;
}

#gtco-main-nav form a.btn-outline-dark {
  border-color: #fff;
  background-color: transparent;
}

@media (max-width: 991px) {
  #gtco-main-nav form a.btn-outline-dark {
    border-color: #42bcbc;
    color: #42bcbc;
  }
}

#gtco-main-nav::after {
  position: absolute;
  content: "";
  height: 600px;
  width: 900px;
  background-image: -webkit-linear-gradient(-220deg, #42bcbc, #01e6f8);
  background-image: -moz-linear-gradient(-220deg, #42bcbc, #01e6f8);
  background-image: -ms-linear-gradient(-220deg, #42bcbc, #01e6f8);
  background-image: -o-linear-gradient(-220deg, #42bcbc, #01e6f8);
  background-image: linear-gradient(-220deg, #42bcbc, #01e6f8);
  left: 49.5%;
  top: -50px;
  z-index: -1;
  border-radius: 50% 0 50% 50%;
}

@media (max-width: 1400px) {
  #gtco-main-nav::after {
    height: 550px;
    width: 800px;
  }
}

@media (max-width: 1199px) {
  #gtco-main-nav::after {
    width: 700px;
  }
}

@media (max-width: 991px) {
  #gtco-main-nav::after {
    width: 55%;
    left: auto;
    right: 0;
  }
}

@media (max-width: 600px) {
  #gtco-main-nav::after {
    width: 100%;
    height: 400px;
  }
}

#gtco-main-nav::before {
  position: absolute;
  content: "";
  height: 590px;
  width: 930px;
  background-image: -webkit-linear-gradient(to right, #e8eefc, #e6fafe);
  background-image: -moz-linear-gradient(to right, #e8eefc, #e6fafe);
  background-image: -ms-linear-gradient(to right, #e8eefc, #e6fafe);
  background-image: -o-linear-gradient(to right, #e8eefc, #e6fafe);
  background-image: linear-gradient(to right, #e8eefc, #e6fafe);
  left: 47.5%;
  top: -25px;
  z-index: -1;
  border-radius: 50% 0 50% 50%;
}

@media (max-width: 1400px) {
  #gtco-main-nav::before {
    height: 540px;
    width: 810px;
  }
}

@media (max-width: 1199px) {
  #gtco-main-nav::before {
    width: 710px;
  }
}

@media (max-width: 991px) {
  #gtco-main-nav::before {
    width: 55%;
    left: auto;
    right: 0;
  }
}

@media (max-width: 600px) {
  #gtco-main-nav::before {
    width: 100%;
    height: 390px;
  }
}

.gtco-banner-area a,
.gtco-feature a,
.gtco-features a,
.gtco-news .owl-carousel .card a,
#gtco-footer .submit-button {
  background-image: -moz-linear-gradient(0deg, #06c6f9 0%, #38eaf9 100%);
  background-image: -webkit-linear-gradient(0deg, #06c6f9 0%, #38eaf9 100%);
  background-image: -ms-linear-gradient(0deg, #06c6f9 0%, #38eaf9 100%);
  font-size: 18px;
  font-family: "OpenSans-Semibold";
  color: #fff;
  border-radius: 50px;
  padding: 5px 30px;
  display: inline-block;
  text-transform: uppercase;
  padding-right: 5px;
  text-decoration: none !important;
}

.gtco-banner-area a .fa,
.gtco-feature a .fa,
.gtco-features a .fa,
.gtco-news .owl-carousel .card a .fa,
#gtco-footer .submit-button .fa {
  background: #fff;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  color: #37eaf9;
  font-size: 22px;
  text-align: center;
  padding-top: 5px;
  margin-left: 15px;
}

.gtco-feature h2,
.gtco-features h2 {
  font-family: "Lato-Regular";
  color: #000000;
  font-size: 36px;
  margin-bottom: 30px;
}

.card {
  border: none;
  background: transparent;
}

.gtco-banner-area {
  margin-top: 20px;
  min-height: 500px;
}

.gtco-banner-area h1 {
  font-family: "Lato-Light";
  font-size: 48px;
  color: #000000;
  max-width: 500px;
  margin-top: 70px;
}

.gtco-banner-area h1 span {
  font-family: "Lato-Medium";
}

@media (max-width: 1199px) {
  .gtco-banner-area h1 {
    margin-top: 30px;
  }
}

.gtco-banner-area p {
  max-width: 450px;
  margin: 20px 0;
  margin-bottom: 40px;
}

.gtco-banner-area a {
  display: inline;
  padding: 10px 30px;
  padding-right: 5px;
}

.gtco-banner-area .col-md-6 .card .card-img-top {
  max-width: 430px;
  margin: 0 auto;
  margin-top: 30px;
  margin-right: 0;
}

@media (max-width: 1400px) {
  .gtco-banner-area .col-md-6 .card .card-img-top {
    max-width: 400px;
    margin-top: 20px;
    margin-right: auto;
  }
}

@media (max-width: 1199px) {
  .gtco-banner-area .col-md-6 .card .card-img-top {
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  .gtco-banner-area .col-md-6 .card .card-img-top {
    margin-top: 100px;
  }
}

.gtco-feature {
  margin-top: 100px;
}

.gtco-feature .card .back-bg {
  margin-left: -30px !important;
  margin-top: -20px;
}

.gtco-feature .card svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.gtco-feature .card svg.defs {
  position: absolute;
  width: 0;
  height: 0;
}

.gtco-feature .card .squircle {
  width: 100%;
  height: 450px;
  background: url(../images/learn-img.jpg) center/cover, #aaa;
  clip-path: url(#clip-path);
  background-position-x: -50px;
}

.gtco-feature p small {
  font-size: 16px;
}

.gtco-feature a {
  margin-top: 20px;
  display: inline-block;
}

.gtco-features {
  margin-top: 30px;
}

.gtco-features svg {
  position: absolute;
  margin-left: -100px;
  margin-top: 100px;
}

@media (max-width: 767px) {
  .gtco-features svg {
    margin: 0 auto;
    margin-top: 200px;
  }
}

.gtco-features h2 {
  margin-top: 200px;
}

@media (max-width: 991px) {
  .gtco-features h2 {
    margin-top: 0;
  }
}

.gtco-features .col-lg-4 p {
  max-width: 320px;
  margin-bottom: 30px;
}

.gtco-features .col-lg-6 {
  padding: 10px 100px;
}

@media (max-width: 767px) {
  .gtco-features .col-lg-6 {
    padding: 10px 0;
  }
}

.gtco-features .col-lg-6 .row .col:first-child {
  margin-top: 80px;
}

@media (max-width: 600px) {
  .gtco-features .col-lg-6 .row .col:first-child {
    margin-top: 50px;
  }
}

@media (max-width: 600px) {
  .gtco-features .col-lg-6 .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.gtco-features .col-lg-6 .card {
  background: #fff;
  margin: 30px 5px;
  padding: 20px 10px;
  border-radius: 20px;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
}

.gtco-features .col-lg-6 .card .oval {
  background: linear-gradient(to right, #f1f6fd, #f0fbfe);
  padding: 10px;
  width: 150px;
  border-radius: 50%;
  margin: auto;
  transform: rotate(20deg);
  margin-top: 20px;
}

.gtco-features .col-lg-6 .card .card-img-top {
  max-width: 0.8in;
  margin: 0 auto;
  transform: rotate(-20deg);
}

.gtco-features .col-lg-6 .card h3 {
  font-family: "Lato-Regular";
  font-size: 24px;
  color: #42bcbc;
}

.gtco-features .col-lg-6 .card p {
  font-size: 16px;
}

.gtco-numbers-block {
  margin: 100px auto;
  margin-top: 200px;
  color: #fff;
}

@media (max-width: 600px) {
  .gtco-numbers-block {
    margin-top: 100px;
  }
}

@media (max-width: 1299px) {
  .gtco-numbers-block .row {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .gtco-numbers-block .row .col-3 {
    padding: 0;
  }
}

.gtco-numbers-block #custom-map::before {
  position: absolute;
  content: "";
  height: 100px;
  width: 100%;
  border: 2px solid red;
}

.gtco-numbers-block svg {
  margin-top: -100px;
  position: absolute;
  left: 0;
  max-width: 1500px;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1299px) {
  .gtco-numbers-block svg {
    margin-top: -90px;
  }
}

@media (max-width: 1199px) {
  .gtco-numbers-block svg {
    margin-top: -60px;
  }
}

@media (max-width: 991px) {
  .gtco-numbers-block svg {
    margin-top: -40px;
  }
}

@media (max-width: 650px) {
  .gtco-numbers-block svg {
    margin-top: -20px;
  }
}

@media (max-width: 600px) {
  .gtco-numbers-block svg {
    margin-top: -10px;
  }
}

.gtco-numbers-block h5 {
  font-family: "Lato-Bold";
  font-size: 60px;
}

@media (max-width: 1299px) {
  .gtco-numbers-block h5 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .gtco-numbers-block h5 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .gtco-numbers-block h5 {
    margin: 0;
    font-size: 18px;
  }
}

.gtco-numbers-block p {
  font-family: "Lato-Semibold";
  font-size: 24px;
  color: #fff;
}

@media (max-width: 1299px) {
  .gtco-numbers-block p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .gtco-numbers-block p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .gtco-numbers-block p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .gtco-numbers-block p {
    line-height: 1.1;
  }
}

@media (max-width: 500px) {
  .gtco-numbers-block p {
    font-size: 8px;
  }
}

.gtco-testimonials {
  position: relative;
  margin-top: 200px;
}

@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 100px;
  }
}

.gtco-testimonials h2 {
  font-family: "Lato-Medium";
  font-size: 36px;
  text-align: center;
  color: #333333;
  margin-bottom: 100px;
}

.gtco-testimonials .owl-stage-outer {
  padding-bottom: 30px;
}

.gtco-testimonials .owl-nav {
  display: none;
}

.gtco-testimonials .owl-dots {
  text-align: center;
}

.gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid #01e6f8;
  margin: 0 5px;
}

.gtco-testimonials .owl-dots .active {
  box-shadow: none;
}

.gtco-testimonials .owl-dots .active span {
  background: #01e6f8;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}

.gtco-testimonials .card {
  background: #fff;
  box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.08);
  margin: 0 30px;
  padding: 0 20px;
  border-radius: 50px;
}

.gtco-testimonials .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: 0 auto;
  border: 5px solid #42bcbc;
  width: 100px;
  height: 100px;
}

.gtco-testimonials .card h5 {
  color: #42bcbc;
  font-size: 21px;
  line-height: 1.3;
  font-family: "Lato-Medium";
}

.gtco-testimonials .card h5 span {
  font-size: 18px;
  color: #666666;
  font-family: "OpenSans-Regular";
}

.gtco-testimonials .card p {
  font-size: 18px;
}

.gtco-testimonials .active {
  opacity: 0.5;
  transition: all 0.3s;
}

.gtco-testimonials .center {
  opacity: 1;
}

.gtco-testimonials .center h5 {
  font-size: 24px;
}

.gtco-testimonials .center h5 span {
  font-size: 20px;
}

.gtco-testimonials .center p {
  font-size: 20px;
}

.gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 120px;
  width: 120px;
}

.gtco-features-list {
  margin-top: 100px;
}

.gtco-features-list .media {
  margin: 20px 0;
}

.gtco-features-list .oval {
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
  padding: 15px;
  height: 60px;
  width: 60px;
}

.gtco-features-list .oval .align-self-start {
  width: 100%;
  padding: 3px;
}

.gtco-features-list .media-body {
  font-family: "OpenSans-Regular";
  font-size: 16px;
  color: #666666;
  padding-right: 20px;
}

.gtco-features-list .media-body h5 {
  font-family: "Lato-Semibold";
  margin-bottom: 20px !important;
  font-size: 22px;
}

.gtco-logo-area {
  margin: 50px auto;
}

.gtco-logo-area .col .img-fluid {
  max-height: 32px;
}

@media (max-width: 600px) {
  .gtco-logo-area .col {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 20px 0;
  }
}

.gtco-news {
  background: #fcfcfc;
  padding: 50px 0;
  margin: 100px auto;
}

.gtco-news h2 {
  font-size: 36px;
  font-weight: "Lato-Medium";
  text-align: center;
  margin-bottom: 50px;
}

.gtco-news .owl-carousel .owl-nav {
  display: block !important;
  position: absolute;
  top: 25%;
  width: 100%;
}

@media (max-width: 600px) {
  .gtco-news .owl-carousel .owl-nav {
    display: none !important;
  }
}

.gtco-news .owl-carousel .owl-nav .owl-prev,
.gtco-news .owl-carousel .owl-nav .owl-next {
  font-size: 120px;
  color: #666666;
  position: absolute;
}

.gtco-news .owl-carousel .owl-nav .owl-prev {
  left: -50px;
}

.gtco-news .owl-carousel .owl-nav .owl-next {
  right: -50px;
}

.gtco-news .owl-carousel .card {
  padding: 0 25px;
}

.gtco-news .owl-carousel .card .card-img-top {
  border-radius: 40px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
}

.gtco-news .owl-carousel .card h5 {
  font-family: "Lato-Medium";
  font-size: 22px;
  color: #333333;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .gtco-news .owl-carousel .card h5 {
    font-size: 18px;
  }
}

.gtco-news .owl-carousel .card p {
  font-size: 17px;
}

@media (max-width: 767px) {
  .gtco-news .owl-carousel .card p {
    font-size: 15px;
  }
}

.gtco-news .owl-carousel .card a {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}

#gtco-footer {
  padding-bottom: 20px;
}

#gtco-footer h4 {
  font-family: "Lato-Medium";
  font-size: 24px;
  color: #42bcbc;
  margin-bottom: 30px;
}

#gtco-footer input,
#gtco-footer textarea {
  background-color: white;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  max-width: 450px;
  width: 100%;
  height: 60px;
  border: none;
  margin-bottom: 30px;
  padding-left: 30px;
  color: #000;
}

#gtco-footer input::-webkit-input-placeholder,
#gtco-footer input::-moz-placeholder,
#gtco-footer input:-ms-input-placeholder,
#gtco-footer input:-moz-placeholder,
#gtco-footer textarea::-webkit-input-placeholder,
#gtco-footer textarea::-moz-placeholder,
#gtco-footer textarea:-ms-input-placeholder,
#gtco-footer textarea:-moz-placeholder {
  color: #999999;
  font-family: "OpenSans-Regular";
  font-size: 18px;
}

#gtco-footer textarea {
  min-height: 200px;
  border-radius: 30px;
  padding-top: 20px;
  padding-right: 20px;
  resize: none;
}

#gtco-footer .company-nav,
#gtco-footer .services-nav {
  font-family: "OpenSans-Regular";
  font-size: 20px;
}

#gtco-footer .company-nav a,
#gtco-footer .services-nav a {
  color: #666666;
  margin: 0;
  padding: 0;
}

#gtco-footer .follow-us-nav a {
  padding: 0 10px;
  color: #666666;
}

@media (max-width: 385px) {
  #gtco-footer .follow-us-nav a {
    padding-right: 0;
  }
}

#gtco-footer .follow-us-nav a .fa {
  font-size: 24px;
}

#gtco-footer .col-12 {
  margin-top: 90px;
}

#gtco-footer .col-12 p {
  font-family: "Lato-Regular";
  font-size: 18px;
  color: #999999;
}

@media (max-width: 991px) {
  #gtco-footer .col-12 {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  #gtco-footer .col-lg-6 {
    margin-bottom: 50px;
  }
}


.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}


.justify-content-center {
  justify-content: center !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.page-hero-section .hero-caption {
  height: 100%;
}



/* Image */
.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}


.hero-mini {
  height: 462px;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}


.page-hero-section {
  position: relative;
  height: 85vh;
}

.page-hero-section h1 {
  font-size: 3.5rem;
}

.page-hero-section .hero-caption {
  height: 100%;
}

.h-100 {
  height: 100% !important;
}

.text-center {
  text-align: center !important;
}

.align-items-center {
  align-items: center !important;
}

/* Breadcrumb */
.breadcrumb {
  background-color: #F0EEF5;
}

.breadcrumb-item {
  font-size: 16px;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "\2022";
  color: var(--primary);
}

.breadcrumb-item a {
  color: #6b6872;
}

.breadcrumb-item.active {
  color: var(--primary);
}

.breadcrumb-dark {
  background-color: #383340;
}

.breadcrumb-dark .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.breadcrumb-dark .breadcrumb-item a {
  color: rgba(228, 225, 235, 0.7);
}

.breadcrumb-dark .breadcrumb-item.active {
  color: #fff;
}


.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 300px) {

  .container,
  .container-sm {
    max-width: 540px;
  }

  .img-class {
    width: 65%;
  }
  .us_section .us_container::before {
    background: transparent;
  }
}

@media (min-width: 768px) {

  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }

  .img-class {
    width: 75%;
  }
  .us_section .us_container::before {
    content: "";
    position: absolute;
    top: 27%;
    left: 50%;
    width: 100%;
    height: 1.5px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #01bacf));
    background-image: linear-gradient(to right, transparent 50%, #01bacf 50%);
    background-size: 20px 100%;
    z-index: -1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: border-dance 4s infinite linear;
    animation: border-dance 4s infinite linear;
  }
}

@media (min-width: 992px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }

  .cutom-class {
    width: 100%;
  }

  .img-class {
    width: 35%;
  }
  .class-flex{
    display: flex;
    justify-content: center;
  }
  .us_section .us_container::before {
    content: "";
    position: absolute;
    top: 27%;
    left: 50%;
    width: 100%;
    height: 1.5px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #01bacf));
    background-image: linear-gradient(to right, transparent 50%, #01bacf 50%);
    background-size: 20px 100%;
    z-index: -1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: border-dance 4s infinite linear;
    animation: border-dance 4s infinite linear;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }

  .img-class {
    width: 35%;
  }
  .us_section .us_container::before {
    content: "";
    position: absolute;
    top: 27%;
    left: 50%;
    width: 100%;
    height: 1.5px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #01bacf));
    background-image: linear-gradient(to right, transparent 50%, #01bacf 50%);
    background-size: 20px 100%;
    z-index: -1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: border-dance 4s infinite linear;
    animation: border-dance 4s infinite linear;
  }
}


.home-page-img{
  background:linear-gradient(45deg, rgb(117 255 249) 0%, rgb(142 255 240) 35%, rgb(0 212 255) 100%);
  min-width: 120px;
}

/******************************************
COURSE MODULES
******************************************/

.course-box {
  /*border-radius: 6px 6px 0 0;*/
  background-color: #ffffff;
  /* border: 3px solid #01bacf; */
}

.course-box img {
  border-radius: 6px 6px 0 0;
  width: 100%;
}

.course-details {
  padding: 3rem 2rem;
}

.course-details h4 {
  font-size: 18px;
  padding: 0 0 1.5rem;
  font-weight: 700;
  margin: 0;
}

.course-box small {
  display: block;
  font-size: 80%;
  margin-bottom: 10px;
}

.course-details p {
  padding-bottom: 0;
  margin-bottom: 0;
}

.course-footer ul {
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.course-footer a {
  color: #aaa;
}

.course-footer i {
  padding-right: 3px;
}

.course-footer {
  border-top: 1px solid #eaeaea;
  padding: 15px;
}

.course-footer .pull-right a {
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  font-family: Arial
}

.entry {
  position: relative;
}

.magnifier {
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
  right: 0;
  opacity: 0;
  top: 0;
  background-color: rgb(63 190 204 / 47%);
  -webkit-transition: visibility 0.35s ease-in-out, opacity 0.35s ease-in-out, top 0.35s ease-in-out, bottom 0.35s ease-in-out, left 0.35s ease-in-out, right 0.35s ease-in-out;
  -moz-transition: visibility 0.35s ease-in-out, opacity 0.35s ease-in-out, top 0.35s ease-in-out, bottom 0.35s ease-in-out, left 0.35s ease-in-out, right 0.35s ease-in-out;
  -o-transition: visibility 0.35s ease-in-out, opacity 0.35s ease-in-out, top 0.35s ease-in-out, bottom 0.35s ease-in-out, left 0.35s ease-in-out, right 0.35s ease-in-out;
  transition: visibility 0.35s ease-in-out, opacity 0.35s ease-in-out, top 0.35s ease-in-out, bottom 0.35s ease-in-out, left 0.35s ease-in-out, right 0.35s ease-in-out;
}

.entry:hover .magnifier {
  opacity: 1;
  z-index: 1000;
  left: 5%;
  top: 5%;
  right: 5%;
  bottom: 5%;
  position: absolute;
  visibility: visible;
}

.magnifier a {
  position: absolute;
  top: 50%;
  text-align: center;
  left: 0;
  right: 0;
  margin: -20px auto;
  font-size: 30px;
  color: #fff !important;
}



.image-wrap img {
  width: 100%;
}

.image-wrap:after {
  content: "";
  width: 60px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #111;
  right: 0;
}

.shop-media .image-wrap::after {
  display: none;
}

.image-wrap:before,
.image-wrap:after,
.btn-primary {
    border-color: #01bacf;
    background-color: #01bacf;
    box-shadow: inset 0 0 0 0 #00a8bd;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    transition: all ease 0.5s;
}


.flaticon-add:before {
  content: "\f10c";
}


.boxed {
  box-shadow: 0 30px 50px 0 rgba(1, 1, 1, 0.18);
  padding: 0rem 4rem 0rem;
  background-color: #f3f3f3;
  margin-top: -60px;
}


@media (max-width: 992px) {
  .boxed {
      margin-top: 4rem;
  }
}


.boxed.boxedp4 {
  padding-top: 4rem;
}




.waviy {
  position: relative;
  color: #000;
}
.sec12 {
  position: relative;
  display: inline-block;
  font-size: 25px;
  animation: flip 12s infinite;
  animation-delay: calc(.2s * var(--i));
}
.sec18 {
  position: relative;
  display: inline-block;
  font-size: 25px;
  animation: flip 18s infinite;
  animation-delay: calc(.2s * var(--i));
}
.sec35 {
  position: relative;
  display: inline-block;
  font-size: 25px;
  animation: flip 35s infinite;
  animation-delay: calc(.2s * var(--i));
}
@keyframes flip {
  0%,80% {
    transform: rotateY(360deg) ;
    color: #01bacf;
  }
}



/* Blog */
.blog-entry {
  position: relative;
  padding: 24px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid #ecedf3;
}

.blog-entry a:not(.btn) {
  font-weight: 500;
}

.blog-entry .post-thumbnail {
  position: relative;
  display: block;
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  border-radius: 4px;
}

.blog-entry .post-thumbnail img {
  width: auto;
  max-width: 100%;
}

.entry-header {
  position: relative;
  margin-bottom: 24px;
}

.entry-header .post-date {
  position: absolute;
  left: 24px;
  bottom: -16px;
  width: 68px;
  height: 65px;
  text-align: center;
  background: linear-gradient(to bottom right, #084b51, #4dcbd2);
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(95, 90, 104, 0.342);
}

.entry-header .post-date h3 {
  margin-bottom: -4px;
  color: inherit;
  font-weight: 400;
}

.entry-header .post-date span {
  font-size: 12px;
}

.blog-entry .post-title {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

.blog-entry .post-title a {
  color: #5F5A68;
  font-weight: 500;
  transition: color .2s ease;
}

.blog-entry .post-title a:hover {
  color: #3852e7;
}

.entry-meta {
  position: relative;
  display: block;
  padding-left: 0;
  list-style: none;
}

.meta-item {
  display: inline-block;
  margin-right: 12px;
  font-size: 14px;
}

.meta-item .icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-size: 14px;
  background: linear-gradient(to bottom right, #084b51, #4dcbd2);
  color: #fff;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .blog-entry {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.blog-single-entry {
  display: block;
  padding: 24px 16px;
  border-bottom: 1px solid #E4E1EB;
}

.blog-single-entry .post-thumbnail {
  position: relative;
  display: block;
  margin-bottom: 24px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.blog-single-entry .post-thumbnail img {
  width: 100%;
  height: 100%;
}

.blog-single-entry .post-title {
  font-size: 40px;
}

.blog-single-entry .post-date {
  font-weight: 500;
  color: #9b99a1;
}
