@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700");
@import url(classy-nav.css);

:root {
  --brand: #01ABAA;
  --sub: #FEA680;
  --body: #516171;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

html,
body {
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111111;
  font-weight: 400;
  font-family: "Crimson Text", serif;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 15px;
  font-family: "Josefin Sans", sans-serif;
  color: #707070;
  font-weight: 400;
  line-height: 26px;
}

li {
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  margin: 0;
  padding: 0;
}

a {
  color: var(--body);
  text-decoration: none;
}

a:hover {
  color: var(--brand);
  text-decoration: none;
}

.text-brand {
  font-size: 30px;
  color: #049898;
}

.background-brand {
  background-color: var(--brand);
}

.btn-brand {
  background-color: var(--brand);
  color: white;
}

.btn-brand:hover {
  background-color: white;
  color: var(--brand);
  border: 1px solid var(--brand);
}

/* Topbar */
.topbar .icons a {
  color: black;
  background-color: white;
  border: 1px solid white;
}

.topbar .icons a:hover {
  background-color: black;
  color: white;
  border: 1px solid white;
}

/*** Spinner ***/
#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;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  background-color: #FEA680;
  color: white;
}

/* Float Icons */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 110px;
  left: 20px;
  background-color: #37b6ff;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float-2 {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.my-float {
  margin-top: 16px;
}

.float:hover {
  color: #37b6ff;
  background-color: white;
  border: 1px solid #37b6ff;
}

.float-2:hover {
  color: #25d366;
  background-color: white;
  border: 1px solid #25d366;
}

/*** Footer ***/
.footer {
  background-color: #01ABAA;
}

.footer a {
  text-decoration: none;
}

.footer-head {
  color: rgb(0, 0, 0);
  font-weight: 900;
}

.footer-color {
  color: #ffffff;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: .3s;
}

.footer .btn.btn-social:hover {
  color: black;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: rgb(0, 0, 0);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .3);
}

.footer .copyright a {
  color: rgb(0, 0, 0);
}

.footer .copyright a:hover {
  color: var(--sub);
}

.main-header-area {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
}

.main-header-area .book-now-btn a {
  padding: 10px 20px;
  background-color: var(--brand);
  text-align: center;
  color: #ffffff;
  font-size: 16px;
}

.main-header-area .book-now-btn a i {
  padding-left: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-header-area .book-now-btn a {
    margin-top: 10px;
    margin-left: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .main-header-area .book-now-btn a {
    margin-top: 10px;
    margin-left: 10px;
  }
}

.main-header-area .book-now-btn a:hover,
.main-header-area .book-now-btn a:focus {
  background-color: #2a303b;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .classy-nav-container .classy-navbar .nav-brand {
    /* max-width: 90px; */
    margin-right: 15px;
  }
}

.classy-nav-container {
  background-color: transparent;
  padding: 0;
}

.classy-nav-container .classy-navbar {
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  height: 80px;
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .classy-nav-container .classy-navbar {
    height: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .classy-nav-container .classy-navbar {
    height: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .classy-nav-container .classy-navbar .nav-brand {
    /* max-width: 90px; */
    margin-right: 15px;
  }
}

.classy-nav-container .classy-navbar .classynav ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: black;
  font-weight: 500;
  padding: 0 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .classy-nav-container .classy-navbar .classynav ul li a {
    font-size: 14px;
    padding: 0 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .classy-nav-container .classy-navbar .classynav ul li a {
    font-size: 14px;
    color: black;
  }

  .classy-nav-container .classy-navbar .classynav ul li a:hover,
  .classy-nav-container .classy-navbar .classynav ul li a:focus {
    color: var(--brand);
  }
}

@media only screen and (max-width: 767px) {
  .classy-nav-container .classy-navbar .classynav ul li a {
    font-size: 14px;
    color: black;
  }

  .classy-nav-container .classy-navbar .classynav ul li a:hover,
  .classy-nav-container .classy-navbar .classynav ul li a:focus {
    color: var(--brand);
  }
}

.classy-nav-container .classy-navbar .classynav ul li a:focus,
.classy-nav-container .classy-navbar .classynav ul li a:hover,
.classy-nav-container .classy-navbar .classynav ul li a:focus,
.classy-nav-container .classy-navbar .classynav ul li a:active {
  color: var(--brand);
  font-weight: 500;
}

.classy-nav-container .classy-navbar .classynav ul li.cn-dropdown-item ul li a,
.classy-nav-container .classy-navbar .classynav ul li.megamenu-item ul li a {
  font-size: 14px;
  text-transform: capitalize;
  height: 100%;
  padding: 0 30px;
  color: black;
}

.classy-nav-container .classy-navbar .classynav ul li.cn-dropdown-item ul li a:focus,
.classy-nav-container .classy-navbar .classynav ul li.cn-dropdown-item ul li a:hover,
.classy-nav-container .classy-navbar .classynav ul li.megamenu-item ul li a:focus,
.classy-nav-container .classy-navbar .classynav ul li.megamenu-item ul li a:active {
  background-color: var(--brand);
  color: white;
}

.classynav ul li.active a {
  position: relative;
  z-index: 1;
}

.classynav ul li.active a::before {
  width: 80%;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 10%;
  z-index: 1;
  content: '';
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .classynav ul li.active a::before {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .classynav ul li.active a::before {
    display: none;
  }
}

.classynav ul li.has-down>a::after,
.classynav ul li.has-down.active>a::after,
.classynav ul li.megamenu-item>a::after {
  color: var(--brand);
}

@media only screen and (min-width: 975px) {
  .main-header-area .classy-nav-container .classy-navbar .classy-menu .classynav #nav li .dropdown-laptop {
    /* Your specified width for laptops */
    width: 280px;
  }
}

@media only screen and (min-width: 975px) {
  .main-header-area .classy-nav-container .classy-navbar .classy-menu .classynav #nav li .dropdown-laptop li ul {
    /* Your specified width for laptops */
    margin-left: 80px;
    width: 250px;
  }
}

.points-new li {
  font-size: 15px;
  font-family: "Josefin Sans", sans-serif;
  color: #707070;
  font-weight: 400;
  line-height: 26px;
  margin-left: 20px;
}

.points-new {
  margin-bottom: 20px;
}

/*--- Services --*/
.services-1 .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  margin: 20px 0px;
}

.services-1 .icon-box .icon {
  margin-bottom: 10px;
}

.services-1 .icon-box .icon i {
  color: var(--sub);
  font-size: 36px;
  transition: 0.3s;
}

.services-1 .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services-1 .icon-box h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px !important;
}

.services-1 .icon-box h4 a {
  color: var(--sub);
  transition: ease-in-out 0.3s;
}

.services-1 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-1 .icon-box:hover {
  transform: translateY(-10px);
}


/* CONTACT PAGE */
.contact-address {
  border: 2px solid black;
  padding: 10px;
}

.contact-address p {
  font-size: 16px;
  font-weight: 600;
}

/* CODE BOOKING PAGE */
.code-booking-section .code-booking-sub-head {
  font-size: 22px !important;
  font-weight: 500;
}

.code-booking-section img {
  border-radius: 15px;
  box-shadow:
    0 6px 8px rgba(0, 0, 0, 1.7),
    0 8px 24px rgba(0, 0, 0, 1.5);
}


/* HOME */

.home-service-offerings .home-service-offerings-title h4 {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  padding: 10px 15px;
  font-size: 18px !important;
  text-align: center;
  background-color: #01ABAA;
  color: white;
}

.all-list-increament {
  counter-reset: global-department;
}

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

.departments-item {
  display: block;
  counter-increment: global-department;
  padding-bottom: 4rem;
  font-size: 1.1rem;
  line-height: 1.375;
  position: relative;
}

.departments-item:before {
  content: counter(global-department);
  width: 4rem;
  height: 4rem;
  float: left;
  margin: 0 1.5rem 0.75rem 0;
  color: white;
  background: #01ABAA linear-gradient(to bottom right, #58b1b1 25%, #027878);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  shape-outside: ellipse();
  z-index: 1;
}

.departments-item:after {
  width: 1.7rem;
  height: 1.7rem;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #58b1b1;
  z-index: -1;
  border-top-left-radius: 3px;
}

.headline {
  padding: 0;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.departments-sub-list {
  padding-left: 2em;
  margin: 0;
}

.departments-sub-list li {
  position: relative;
  padding-left: 2em;
  margin: 0.5em 0;
}

.departments-sub-list li::before {
  content: '►';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
  line-height: 1;
  color: #01ABAA;
}


/* phd services special features */

.services-special-features .border-bottom {
  border-bottom: 1px solid rgb(36, 34, 34) !important;
}

/* home page bar moving */

.em_bar {
  height: 2px;
  margin: 0;
  width: 65px;
}

.em_bar_bg {
  height: 5px;
  width: 90px;
  background: #07dede;
  position: relative;
  border-radius: 30px
}

.em_bar_bg:before {
  content: '';
  position: absolute;
  left: 0;
  top: -2.7px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #018181;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG
}

@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  to {
    -webkit-transform: translateX(88px);
    transform: translateX(88px)
  }
}

@keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  to {
    -webkit-transform: translateX(88px);
    transform: translateX(88px)
  }
}


/* home card hover  */

.icon-box-2 {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.icon-box-2 .icon-box-card-2 {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
  padding: 50px 30px;
  background: #fff;
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.icon-box-2 .icon-box-card-2 .icon-box-card-layer {
  z-index: 1;
  position: absolute;
  top: calc(100% - 2px);
  height: 100%;
  width: 100%;
  left: 0;
  background: linear-gradient(to left, #018181, #53a9a9);
  transition: 0.5s;
}

.icon-box-2 .icon-box-card-2 .icon-box-card-content-2 {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.icon-box-2 .icon-box-card-2:hover .icon-box-card-layer {
  top: 0;
}

.icon-box-2 .icon-box-card-2:hover .icon-box-card-content-2 p,
.icon-box-2 .icon-box-card-2:hover .icon-box-card-content-2 h3,
.icon-box-2 .icon-box-card-2:hover .icon-box-card-content-2 ul li {
  color: white !important;
}

.icon-box-2 .icon-box-card-2 .icon-box-card-content-2 p {
  font-size: 14px;
  line-height: 24px;
  color: #707070;
}

.icon-box-2 .icon-box-card-2 .icon-box-card-content-2 h3 {
  font-size: 24px;
  color: black;
  margin-bottom: 15px;
}