@import url(https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lobster&display=swap);
ul {
  list-style-type: none;
}

* {
  color: hsl(0, 0%, 7%);
  scroll-behavior: smooth;
  font-family: "Sen", sans-serif;
  font-weight: 300;
  padding: 0px;
  margin: 0px;
}

p,
span {
  font-size: 18px;
}

a {
  text-decoration: none;
  color: hsl(0, 0%, 7%);
}
a:hover {
  color: #13455e;
}

.bg-primary {
  background-color: #13455e !important;
}

.bg-secondary {
  background-color: #63cecf !important;
}

.text-grey {
  color: #84757d;
}

.image-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn-primary {
  background-color: #13455e;
  border-radius: 0px;
}

.text-primary {
  color: #13455e !important;
}

.text-secondary {
  color: #63cecf !important;
}

.form-control {
  margin-bottom: 10px;
}

.btn-primary {
  border-width: 0px;
  color: white !important;
}
.btn-primary:hover {
  background-color: #13455e !important;
  opacity: 0.8;
}

.btn-secondary {
  border-width: 0px;
  background-color: #63cecf !important;
  color: white !important;
  border-radius: 0px;
}
.btn-secondary:hover {
  background-color: #63cecf !important;
  opacity: 0.8;
}

.btn-outline-secondary {
  border-color: #63cecf;
  border-radius: 0px;
  color: #63cecf !important;
}
.btn-outline-secondary i {
  color: #63cecf !important;
}
.btn-outline-secondary:hover {
  background-color: #63cecf !important;
  opacity: 0.8;
  border-color: #63cecf !important;
  color: white !important;
}
.btn-outline-secondary:hover i {
  color: white !important;
}

.btn-outline-primary {
  border-color: #13455e;
  border-radius: 0px;
  color: #13455e !important;
}
.btn-outline-primary i {
  color: #13455e !important;
}
.btn-outline-primary:hover {
  background-color: #13455e !important;
  opacity: 0.8;
  border-color: #13455e !important;
  color: white !important;
}
.btn-outline-primary:hover i {
  color: white !important;
}

.paginate {
  margin-top: 50px;
}
.paginate nav {
  background-color: rgba(255, 255, 255, 0);
}
.paginate nav .pagination {
  justify-content: center;
}
.paginate nav .pagination li {
  padding: 0px 3px;
}
.paginate nav .pagination li span,
.paginate nav .pagination li a {
  height: 30px;
  width: 30px;
  padding: 0px;
  border-radius: 50% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

body {
  overflow-x: hidden;
}

header .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header .header-logo img {
  width: 280px;
}
header .header ul {
  margin-bottom: 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
header .header ul li {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
header .header ul li .icon {
  cursor: pointer;
}
header .header ul li .icon i {
  font-size: 15px;
  background-color: rgba(99, 206, 207, 0.2);
  color: #13455e;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
header .header ul li .icon i:hover {
  background-color: #13455e;
  color: hsl(0, 0%, 100%);
}
header .header ul li .info {
  padding-left: 10px;
}
header .header ul li .info h5 {
  margin-bottom: 0px;
  font-size: 18px;
}
header .header ul li .info p {
  margin-bottom: 0px;
  font-size: 16px;
  color: #6c757d;
}

nav {
  background-color: #13455e;
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 99999;
}
nav .navbar .fa-bars {
  display: none;
}
nav .navbar-links {
  margin: 0px;
  display: flex;
  flex-direction: row;
  gap: 5px;
  padding: 10px 0px;
  margin-bottom: 0px;
}
nav .navbar-links li {
  position: relative;
}
nav .navbar-links li a {
  padding: 20px 8px;
  font-size: 16px !important;
  color: white;
  transition: all 0.5s ease;
}
nav .navbar-links li a i {
  padding-left: 5px;
  color: white;
}
nav .navbar-links li a:hover {
  background-color: hsl(0, 0%, 100%);
  color: #13455e;
}
nav .navbar-links li a:hover i {
  color: #13455e;
}
nav .navbar-links li:hover .nav-list {
  display: block;
}
nav .navbar-links li .nav-list {
  display: none;
  position: absolute;
  top: 40px;
  left: 0px;
  width: 250px;
  z-index: 9;
  background-color: hsl(0, 0%, 100%);
  padding: 0px;
  border-top: 2px solid hsl(0, 0%, 7%);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
nav .navbar-links li .nav-list li {
  position: relative;
}
nav .navbar-links li .nav-list li:hover .nav-list-list {
  display: block;
}
nav .navbar-links li .nav-list li a {
  display: block;
  color: hsl(0, 0%, 7%);
  padding: 10px;
  border-bottom: 1px solid hsl(206, 33%, 96%);
  font-weight: bold;
  font-size: 16px !important;
}
nav .navbar-links li .nav-list li a:hover {
  color: #13455e;
  background-color: #e0f5f5;
}
nav .navbar-links li .nav-list li .nav-list-list {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  display: none;
  position: absolute;
  top: 0px;
  right: -300px;
  width: 300px;
  background-color: white;
  overflow: scroll;
  max-height: 80vh;
  z-index: 99;
}

@media screen and (max-width: 1024px) {
  nav {
    background-color: #13455e;
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 99999;
  }
  nav .navbar {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
  nav .navbar .fa-bars {
    display: block;
    color: white;
    font-size: 30px;
  }
  nav .navbar-links {
    background-color: #13455e;
    position: absolute;
    top: 40px;
    left: 0px;
    width: 100%;
    margin: 0px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0px;
    margin-bottom: 0px;
  }
  nav .navbar-links li {
    width: 90%;
    margin: auto;
    position: relative;
  }
  nav .navbar-links li a {
    display: block;
    padding: 10px 0px;
    color: white;
  }
  nav .navbar-links li a i {
    padding-left: 5px;
    color: white;
  }
  nav .navbar-links li:hover .nav-list {
    display: block;
  }
  nav .navbar-links li .nav-list {
    display: none;
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9;
    background-color: hsl(0, 0%, 100%);
    padding: 0px;
    border-top: 2px solid hsl(0, 0%, 7%);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  }
  nav .navbar-links li .nav-list li {
    margin: auto;
    position: relative;
  }
  nav .navbar-links li .nav-list li:hover .nav-list-list {
    display: flex;
  }
  nav .navbar-links li .nav-list li a {
    display: block;
    color: hsl(0, 0%, 7%);
    padding: 10px;
    border-bottom: 1px solid hsl(206, 33%, 96%);
    font-weight: bold;
  }
  nav .navbar-links li .nav-list li a:hover {
    color: #13455e;
  }
  nav .navbar-links li .nav-list li .nav-list-list {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    display: none;
    flex-direction: column;
    position: relative;
    left: 0px;
    width: 100%;
    background-color: white;
  }
}
@media screen and (max-width: 1024px) {
  header .header {
    flex-direction: column;
  }
  header .header .header-logo img {
    width: 200px;
  }
  header .header ul {
    padding-left: 0px;
    margin-bottom: 10px;
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  header .header ul li {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  header .header ul li .icon {
    cursor: pointer;
  }
  header .header ul li .icon i {
    font-size: 15px;
    background-color: rgba(99, 206, 207, 0.2);
    color: #13455e;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  header .header ul li .icon i:hover {
    background-color: #13455e;
    color: hsl(0, 0%, 100%);
  }
  header .header ul li .info {
    padding-left: 10px;
  }
  header .header ul li .info h5 {
    display: none;
  }
  header .header ul li .info p {
    display: none;
  }
  .about-description {
    padding: 0px;
    text-align: center;
    margin-top: 30px;
  }
  .about-description h4 {
    font-size: 16px;
  }
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-container .swiper-btn {
  color: white;
}
.swiper-container .swiper-slide {
  position: relative;
  width: 100%;
  height: 85vh;
  background-color: #13455e;
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .swiper-container .swiper-slide {
    height: 70vh;
  }
}
.swiper-container .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-container .swiper-slide .s-gradient {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(360deg, rgba(19, 69, 94, 0.6) 0%, rgba(19, 69, 94, 0) 100%);
  z-index: 1;
}
.swiper-container .swiper-slide .swiper-text {
  width: 100%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  padding-left: 10%;
  padding-right: 3%;
  padding-bottom: 7%;
  z-index: 9;
}
.swiper-container .swiper-slide .swiper-text h4 {
  font-size: 2em;
  margin-bottom: 20px;
  color: white;
  font-weight: bold;
}
.swiper-container .swiper-slide .swiper-text a {
  float: left;
}

.header-title {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #13455e 10%, #63cecf 100%);
}
.header-title h2 {
  font-size: 50px;
  color: white;
  font-weight: 800;
  margin-bottom: 15px;
}
.header-title p {
  color: white;
}
.header-title .underline {
  width: 80px;
  margin: auto;
  height: 2px;
  background-color: white;
}

#contact-us {
  padding-top: 20px;
  padding-bottom: 20px;
  margin: auto;
}
#contact-us .cm-info {
  padding: 10px 50px;
}
#contact-us .cm-info h1 {
  margin-top: 20px;
  font-weight: bold;
}
#contact-us .cm-info .contact-infos {
  margin-top: 20px;
}
#contact-us .cm-info .contact-infos .ci-item {
  margin-bottom: 5px;
}
#contact-us .cm-info .contact-infos .ci-item .ci-icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, #13455e 10%, #63cecf 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#contact-us .cm-info .contact-infos .ci-item .ci-icon i {
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  color: white;
}
#contact-us .contact-us {
  margin-top: 20px;
  margin-bottom: 30px;
}
#contact-us .contact-us .contact-form {
  padding: 5%;
  background-color: #13455e;
}
#contact-us .contact-us .contact-form h6,
#contact-us .contact-us .contact-form h2 {
  color: white;
}
#contact-us .contact-us .contact-form h2 {
  font-weight: bold;
  margin-bottom: 30px;
}
#contact-us .contact-us .contact-map img,
#contact-us .contact-us .contact-map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1200px) {
  #contact-us .contact-us .contact-map img,
  #contact-us .contact-us .contact-map iframe {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about-us .video iframe {
  border: 5px solid #13455e;
}
.about-us .teams {
  margin: auto;
  margin-bottom: 20vh;
  margin-top: 80px;
}
.about-us .teams .about-title {
  position: relative;
}
.about-us .teams .about-title h5 {
  font-size: 80px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  color: rgba(0, 0, 0, 0.03);
  text-align: center;
  font-weight: bold;
}
.about-us .teams .about-title h4 {
  text-align: center;
  font-weight: bold;
  color: #63cecf;
  font-weight: bold;
  text-align: center;
  font-size: 40px;
}
.about-us .teams .teams-title {
  position: relative;
}
.about-us .teams .teams-title h5 {
  font-size: 80px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  color: rgba(0, 0, 0, 0.03);
  text-align: center;
  font-weight: bold;
}
.about-us .teams .teams-title h4 {
  text-align: center;
  font-weight: bold;
  color: #63cecf;
  font-weight: bold;
  text-align: center;
}
.about-us .teams .teams-list .teams-item {
  cursor: pointer;
  margin-bottom: 50px;
}
.about-us .teams .teams-list .teams-item .bg-image {
  position: absolute;
  top: -60px;
  right: 20px;
  width: 90%;
  z-index: -1;
}
.about-us .teams .teams-list .teams-item .t-image {
  position: relative;
  width: 100%;
  height: 0px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  padding-top: 100%;
  border: 5px solid #13455e;
}
.about-us .teams .teams-list .teams-item .t-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.about-us .teams .teams-list .teams-item h4 {
  margin-top: 30px;
  text-transform: capitalize;
  font-weight: bold;
  text-align: center;
}
.about-us .teams .teams-list .teams-item p {
  margin-top: 10px;
  color: #6c757d;
  text-align: center;
}

#detailModal {
  z-index: 99999;
}
#detailModal .modal-header {
  border: 0px solid white;
}
#detailModal .modal-header button span {
  font-size: 50px;
}
#detailModal .modal-body {
  text-align: center;
}
#detailModal .modal-body .m-image {
  position: relative;
  width: 100%;
  height: 0px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  padding-top: 100%;
  border: 5px solid #13455e;
}
#detailModal .modal-body .m-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
#detailModal .modal-body #m-title {
  margin-top: 20px;
}
#detailModal .modal-body #m-role {
  border-bottom: 1px solid hsl(206, 33%, 96%);
  padding-bottom: 10px;
  color: #6c757d;
}
#detailModal .modal-body #m-desc {
  margin: auto;
  margin-bottom: 20px;
  color: #6c757d;
}
#detailModal .modal-body #m-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#detailModal .modal-body #m-social a {
  display: none;
  padding: 5px;
}
#detailModal .modal-body #m-social a i {
  font-size: 20px;
  color: #13455e;
}

.blogs {
  padding-bottom: 70px;
  padding-top: 40px;
}
.blogs .blog-title {
  position: relative;
}
.blogs .blog-title h5 {
  font-size: 80px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  color: rgba(0, 0, 0, 0.03);
  text-align: center;
  font-weight: bold;
}
.blogs .blog-title h4 {
  text-align: center;
  font-weight: bold;
  color: #63cecf;
  font-weight: bold;
  text-align: center;
}
.blogs h4 {
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
  font-size: 40px;
}
.blogs .mySwiper-blog {
  width: 100%;
  height: 100%;
}
.blogs .mySwiper-blog .swiper-wrapper .swiper-slide .blog-item {
  margin-top: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.blogs .mySwiper-blog .swiper-wrapper .swiper-slide .blog-item:hover {
  margin-top: 0px;
  margin-bottom: 10px;
}
.blogs .mySwiper-blog .swiper-wrapper .swiper-slide .blog-item:hover .blog-info .si-wrapper {
  border-color: rgba(99, 206, 207, 0.2);
}
.blogs .mySwiper-blog .swiper-wrapper .swiper-slide .blog-item .blog-image {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.blogs .mySwiper-blog .swiper-wrapper .swiper-slide .blog-item .blog-image img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.blogs .mySwiper-blog .swiper-wrapper .swiper-slide .blog-item .blog-info {
  margin-top: -50px;
  padding: 0px 15px;
}
.blogs .mySwiper-blog .swiper-wrapper .swiper-slide .blog-item .blog-info .si-wrapper {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 10px;
  background-color: hsl(0, 0%, 100%) !important;
  z-index: 999;
  border: 2px solid hsl(206, 33%, 96%);
  position: relative;
}
.blogs .mySwiper-blog .swiper-wrapper .swiper-slide .blog-item .blog-info .si-wrapper h4 {
  margin-top: 5px;
  font-size: 24px;
  text-align: left !important;
}
.blogs .mySwiper-blog .swiper-wrapper .swiper-slide .blog-item .blog-info .si-wrapper p {
  color: #6c757d;
}
.blogs .mySwiper-blog .swiper-wrapper .swiper-slide .blog-item .blog-info .si-wrapper .date {
  display: block;
  color: #13455e;
  font-weight: bold;
  font-size: 18px;
}
.blogs .mySwiper-blog .swiper-wrapper .swiper-slide .blog-item .blog-info .si-wrapper .date i {
  color: #13455e;
}

.gradient {
  background: linear-gradient(90deg, #13455e 10%, #63cecf 100%);
}

.swiper-pagination {
  display: none !important;
}

.notice {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999999;
}
.notice .notice-wrapper {
  width: 100%;
  height: 100%;
}
.notice .notice-wrapper .notice-content {
  height: 100%;
  width: 100%;
}
.notice .notice-wrapper .notice-content .image-link {
  margin: auto;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.notice .notice-wrapper .notice-content .img-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  min-width: 40vw;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  overflow-y: auto;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .notice .notice-wrapper .notice-content .img-wrapper {
    height: 90vh;
  }
}
.notice .notice-wrapper .notice-content i {
  position: absolute;
  top: 2.5vh;
  right: 12px;
  z-index: 999999;
  background-color: #13455e;
  color: white;
  padding: 2px 4px;
  cursor: pointer;
}

.about {
  background-color: rgba(99, 206, 207, 0.2);
  padding: 50px 0px;
}
.about .about-image {
  margin-top: 30px;
}
.about .about-image:hover .img-info small {
  display: block;
}
.about .about-image .img-info {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}
.about .about-image .img-info h4 {
  font-size: 2em;
  font-weight: bold;
}
.about .about-image .img-info h6 {
  font-weight: bold;
}
.about .about-image .img-info small {
  display: none;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.about .about-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about .about-description h5 {
  font-size: 24px;
  color: #13455e;
}
.about .about-description h4 {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 3em;
  font-weight: bold;
}
.about .about-description p {
  margin-bottom: 30px;
  font-weight: bold;
  color: #6c757d;
}
.about .about-description ul li {
  margin-bottom: 20px;
}
.about .about-description ul li i {
  padding: 5px;
  color: #13455e;
  background-color: white;
  margin-right: 5px;
  border-radius: 3px;
}
.about .about-description ul li span {
  font-weight: bold;
  color: #6c757d;
}
.about .about-description .more-btn a i {
  color: white;
}

.messageModal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  background-color: rgba(255, 255, 255, 0.8);
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: zoomin 0.2s ease-in-out;
}
@keyframes zoomin {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.messageModal .fa-times {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  background-color: #13455e;
  padding: 10px 15px;
  color: white;
  z-index: 9999999;
}
.messageModal .message-wrapper {
  width: 90%;
  height: 90vh;
  overflow-y: auto;
  margin: auto;
  background-color: white;
  position: relative;
}
.messageModal .message-wrapper .message-body .message-des h4 {
  font-weight: bold;
}
.messageModal .message-wrapper .message-body .message-des .par * {
  font-size: 14px;
}

.service-years .years-items {
  width: 20%;
  padding: 5px;
  margin-bottom: 10px;
}
.service-years .years-items .wrapper {
  border: 1px solid hsl(206, 33%, 96%);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.service-years .years-items .wrapper img {
  max-width: 120px;
  margin: auto;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
.service-years .years-items .wrapper h3,
.service-years .years-items .wrapper h5 {
  color: #13455e;
  font-weight: bold;
}
.service-years .years-items .wrapper h5 {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .service-years .years-items {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .service-years .years-items {
    width: 100%;
  }
}
.services {
  padding-bottom: 70px;
}
.services .service-title {
  position: relative;
}
.services .service-title h5 {
  font-size: 80px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  color: rgba(0, 0, 0, 0.03);
  text-align: center;
  font-weight: bold;
}
.services .service-title h4 {
  text-align: center;
  font-weight: bold;
  color: #63cecf;
  font-weight: bold;
  text-align: center;
}
.services h4 {
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
  font-size: 40px;
}
.services .mySwiper-services {
  width: 100%;
  height: 100%;
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item {
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item:hover {
  margin-top: 0px;
  margin-bottom: 10px;
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item:hover .service-info .si-wrapper {
  border-color: rgba(99, 206, 207, 0.2);
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item .service-image {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item .service-image img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item .service-info {
  margin-top: -50px;
  padding: 0px 15px;
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item .service-info .si-wrapper {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 10px;
  background-color: hsl(0, 0%, 100%) !important;
  z-index: 999;
  border: 2px solid hsl(206, 33%, 96%);
  position: relative;
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item .service-info .si-wrapper .service-icon {
  margin: auto;
  width: 60px;
  height: 60px;
  background-color: rgba(99, 206, 207, 0.2);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item .service-info .si-wrapper .service-icon i {
  font-size: 30px;
  color: #13455e;
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item .service-info .si-wrapper h4 {
  margin-top: 30px;
  font-size: 24px;
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item .service-info .si-wrapper p {
  color: #6c757d;
  text-align: center;
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item .service-info .si-wrapper .more-button {
  display: block;
  text-align: center;
  color: #13455e;
  font-weight: bold;
  font-size: 18px;
}
.services .mySwiper-services .swiper-wrapper .swiper-slide .service-item .service-info .si-wrapper .more-button i {
  color: #13455e;
}

#appointment {
  background-color: rgba(99, 206, 207, 0.2);
  padding: 50px 0px;
  margin-bottom: 50px;
}
#appointment .appointment h4 {
  font-size: 40px;
  font-weight: bold;
}
#appointment .appointment .number h5 {
  font-weight: bold;
  font-size: 30px;
}

.testimonials {
  padding-bottom: 70px;
  padding-top: 40px;
}
.testimonials .testimonial-title {
  position: relative;
}
.testimonials .testimonial-title h5 {
  font-size: 80px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  color: rgba(0, 0, 0, 0.03);
  text-align: center;
  font-weight: bold;
}
.testimonials .testimonial-title h4 {
  text-align: center;
  font-weight: bold;
  color: #63cecf;
  font-weight: bold;
  text-align: center;
}
.testimonials h4 {
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
  font-size: 40px;
}
.testimonials .testimonial-lists {
  margin-top: 50px;
}
.testimonials .testimonial-lists .swiper-pagination {
  bottom: 0px;
}
.testimonials .testimonial-lists .swiper-container {
  padding-bottom: 50px;
  overflow-x: hidden;
}
.testimonials .testimonial-lists .swiper-slide {
  display: flex;
  flex-direction: column;
  background-color: #63cecf;
  height: auto;
  padding: 20px;
  border-radius: 20px;
}
.testimonials .testimonial-lists .swiper-slide .people {
  display: flex;
  flex-direction: row;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}
.testimonials .testimonial-lists .swiper-slide .people .image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  padding: 0px;
}
.testimonials .testimonial-lists .swiper-slide .people .image img {
  padding: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .testimonial-lists .swiper-slide .people .name {
  padding-left: 20px;
}
.testimonials .testimonial-lists .swiper-slide .people .name h4 {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-align: left;
}
.testimonials .testimonial-lists .swiper-slide .people .name p {
  color: white;
  text-align: left;
}
.testimonials .testimonial-lists .swiper-slide .description p {
  color: white;
  line-height: 30px;
  text-align: left;
}
.testimonials .testimonial-lists .swiper-slide .description .rating {
  text-align: left;
}
.testimonials .testimonial-lists .swiper-slide .description .rating i {
  color: hsl(0, 0%, 100%);
}
.testimonials .testimonial-lists .swiper-slide .description .quotes {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.testimonials .testimonial-lists .swiper-slide .description .quotes i {
  font-size: 40px;
  color: white;
}

.partners {
  padding-top: 40px;
}
.partners .testimonial-title {
  position: relative;
}
.partners .testimonial-title h5 {
  font-size: 80px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  color: rgba(0, 0, 0, 0.03);
  text-align: center;
  font-weight: bold;
}
.partners .testimonial-title h4 {
  text-align: center;
  font-weight: bold;
  color: #63cecf;
  font-weight: bold;
  text-align: center;
}
.partners h4 {
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
  font-size: 40px;
}
.partners .testimonial-lists {
  margin-top: 50px;
}
.partners .testimonial-lists .swiper-pagination {
  bottom: 0px;
}
.partners .testimonial-lists .swiper-container {
  padding-bottom: 50px;
  overflow-x: hidden;
}
.partners .testimonial-lists .swiper-slide {
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  height: auto;
  padding: 20px;
  border-radius: 20px;
}
.partners .testimonial-lists .swiper-slide .people {
  display: flex;
  flex-direction: row;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}
.partners .testimonial-lists .swiper-slide .people .image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  padding: 0px;
}
.partners .testimonial-lists .swiper-slide .people .image img {
  padding: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.partners .testimonial-lists .swiper-slide .people .name {
  padding-left: 20px;
}
.partners .testimonial-lists .swiper-slide .people .name h4 {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-align: left;
}
.partners .testimonial-lists .swiper-slide .people .name p {
  color: white;
  text-align: left;
}
.partners .testimonial-lists .swiper-slide .description p {
  color: white;
  line-height: 30px;
  text-align: left;
}
.partners .testimonial-lists .swiper-slide .description .rating {
  text-align: left;
}
.partners .testimonial-lists .swiper-slide .description .rating i {
  color: hsl(0, 0%, 100%);
}
.partners .testimonial-lists .swiper-slide .description .quotes {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.partners .testimonial-lists .swiper-slide .description .quotes i {
  font-size: 40px;
  color: white;
}

@media screen and (max-width: 524px) {
  .testimonial-title,
  .blog-title,
  .service-title {
    margin-bottom: 0px;
  }
  .testimonial-title h5,
  .blog-title h5,
  .service-title h5 {
    display: none;
  }
}
.career-section {
  padding: 3rem 0;
}
.career-section .accordion-item {
  padding: 1em 0.5em;
  margin: 2em 0;
}
.career-section .accordion-item .job-title {
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.career-section .accordion-item .job-numbers {
  display: flex;
  justify-content: space-around;
}
.career-section .accordion-item .job-numbers span {
  color: rgb(136, 132, 132);
}
.career-section .career-form {
  padding: 2em;
  background: #13455e;
}
.career-section .career-form h2 {
  color: #fff;
  text-align: center;
}
.career-section .career-form .file-upload {
  position: relative;
}
.career-section .career-form .file-upload label.upload-cv {
  position: absolute;
  top: 8px;
  left: 8px;
  border-right: 1px solid #444;
  padding-right: 10px;
}
.career-section .career-form .file-upload input[type=file] {
  padding-left: 7em;
}
.career-section .career-form .submit-button {
  margin: auto;
  display: block;
}

.accordion-button.p-2.btn.btn-primary.col-12 {
  background-color: #13455E !important;
}

.eye-donation-form {
  border: 4px solid #222;
  border-radius: 10px;
  padding: 2rem;
}
.eye-donation-form input[type=text], .eye-donation-form input[type=text]:focus, .eye-donation-form input[type=text]:active {
  border: none;
  border-bottom: 1px dashed #222;
  outline: 0;
}
.eye-donation-form .form-header .form-company-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.eye-donation-form .form-header input[type=file] {
  display: none;
}
.eye-donation-form .form-header .custom-file-upload {
  border: 1px solid #333;
  width: 150px;
  height: 150px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.eye-donation-form .form-subject {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.eye-donation-form .form-subject h3 {
  text-decoration: underline;
}
.eye-donation-form .form-body {
  margin-top: 1.5rem;
}
.eye-donation-form .form-body p:nth-child(-n+2) {
  text-indent: 10rem;
}
.eye-donation-form .form-body .no-indent p {
  text-indent: 0;
}
.eye-donation-form .form-body .no-indent p span {
  min-width: 4rem;
  display: inline-block;
}
