@charset "utf-8";
/* Common CSS */
body {
  background: #fff;
  color: #505160;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.42857143;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
}
*, *:focus {
  outline: none;
}
a {
  color: #323232;
  transition: all ease .4s;
}
a:focus {
  outline: none;
  outline-offset: 0;
}
a:hover, a:focus {
  color: #4290d2;
  text-decoration: none;
}
img {
  max-width: 100%;
  border: none;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  padding-bottom: 10px;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.3;
}
button, button:focus {
  outline: none;
  outline-offset: 0;
}
::-webkit-input-placeholder {
  color: #505160 !important;
  opacity: 1;
  font-weight: 400;
}
::-moz-placeholder {
  color: #505160 !important;
  opacity: 1;
  font-weight: 400;
}
:-ms-input-placeholder {
  color: #505160 !important;
  opacity: 1;
  font-weight: 400;
}
:-moz-placeholder {
  color: #505160 !important;
  opacity: 1;
  font-weight: 400;
}
/* Form CSS */
label {
  display: block;
  padding-bottom: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
}
.form-group {
  margin-bottom: 12px;
}
.form-group:after {
  display: block;
  clear: both;
  content: "";
}
.form-control {
  height: 65px;
  padding: 10px 24px;
  background: #ffffff;
  font-weight: 400;
  font-size: 16px;
  border-color: #f0f0f0;
  border-radius: 40px;
  appearance: none;
  transition: all ease .4s;
}
.form-control:focus {
  border-color: #f0f0f0;
  box-shadow: none;
}
textarea.form-control {
  height: 120px;
  resize: none;
  padding-top: 20px;
}
input[type="submit"] {
  border: none;
}
select.form-control {
  padding: 10px 50px 10px 20px;
  background-image: url(../images/select-arrow.png);
  background-position: 90% 50%;
  background-repeat: no-repeat;
}
select.form-control::-ms-expand {
  display: none;
}
/* Normal CSS */
.fa {
  vertical-align: middle;
}
.textright {
  text-align: right;
}
.turf-table-wrap {
  display: table;
  width: 100%;
  height: 100%;
}
.turf-align-wrap {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  transition: all ease .4s;
  font-size: 18px;
  text-transform: uppercase;
  min-width: 220px;
  background: #1890c5;
  color: #ffffff;
}
.btn-primary {
  background-color: #fee026;
  border-color: #fee026;
  color: #17203f;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #4290d2;
  border-color: #4290d2;
  color: #fff;
}
/* Topbar CSS */
.topbar .container {
  background: #ffffff;
  padding: 0;
}
.header-left {
  font-size: 18px;
  color: #a3a3af;
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.social {
  display: flex;
  align-items: center;
}
.social a {
  width: 37px;
  height: 37px;
  border-radius: 100%;
  color: #888992;
  background: #e8e9ee;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 15px;
}
.social a .fa {
  font-size: 18px;
}
.social a:hover {
  background-color: #4290d2;
  color: #fff;
}
/* Header CSS */
header {
background-color: #fff;
}
.toggle {
  display: none;
  vertical-align: middle;
  width: 25px;
  height: 14px;
}
.toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 6px;
  background: #000000;
  position: relative;
  -webkit-transition: all ease .3s;
  -ms-transition: all ease .3s;
  transition: all ease .3s;
}
.toggle span:before, .toggle span:after {
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000000;
  content: "";
  -webkit-transition: all ease .3s;
  -ms-transition: all ease .3s;
  transition: all ease .3s;
  z-index: 1;
}
.toggle span:after {
  top: 7px;
}
.toggle.active span {
  background: none;
}
.toggle.active span:before {
  top: -6px;
  -webkit-transform: translateY(7px) rotateZ(-45deg);
  -ms-transform: translateY(7px) rotateZ(-45deg);
  transform: translateY(7px) rotateZ(-45deg);
}
.toggle.active span:after {
  top: 6px;
  -webkit-transform: translateY(-5px) rotateZ(45deg);
  -ms-transform: translateY(-5px) rotateZ(45deg);
  transform: translateY(-5px) rotateZ(45deg);
}
.header {
	position: static;
	top: 45px;
	left: 0;
	z-index: 1;
	width: 100%;
	-webkit-transition: all ease .3s;
  -ms-transition: all ease .3s;
  transition: all ease .3s;
}
.header .btn {
  min-width: 193px;
  padding: 11px;
}
.topbar {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.header .navbar-brand {
  border-right: 1px solid rgba(0,0,0,0.1);
  padding: 27px 65px 27px 0;
  margin-right: 0;
}
.header .container {
  padding: 0;
}
.header .navbar {
  padding: 0;
}
.header .navbar-nav {
  margin: 0 auto;
}
.header .navbar-nav .nav-item {
  padding: 0;
}
.header .navbar-nav .nav-item .nav-link {
  font-size: 18px;
  color: #505160;
  padding: 25px 15px;
  position: relative;
}
.header .navbar-nav .nav-item .nav-link:hover, .header .navbar-nav .nav-item .nav-link.active {
  font-weight: 600;
  color: #4290d2;
}
.contact-info {
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  padding: 18px 30px;
  margin-right: 13px;
}
.header-call {
  color: #505160;
  font-size: 16px;
}
.header-call a {
  color: #4290d2;
  font-weight: 600;
}
.contact-info ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.contact-info ul li {
  display: flex;
  align-items: center;
}
.contact-info ul li img {
  margin-right: 12px;
}
.contact-info ul li span {
  display: block;
  font-size: 18px;
  color: #505160;
  line-height: 16px;
}
.contact-info ul li a {
  font-size: 16px;
  color: #505160;
  font-weight: 400;
}
.contact-info ul li a:hover {
  color: #4290d2;
}

/* Banner CSS */
.banner {
  background-color: #1c213f;
}
.banner .carousel-inner .carousel-item img {
  opacity: 0.55;
  height: 100vh;
  object-fit: cover;
}
.banner .carousel-inner .carousel-caption {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  left: 0;
  right: 0;
  width: 100%;
}
.banner .carousel-control-next, .banner .carousel-control-prev {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
}
.banner .carousel-control-next {
  margin-top: -85px;
  background-image: url(../images/sliderright-arrow.png);
  background-color: transparent;
  font-size: 0;
  opacity: 1;
}
.banner .carousel-control-next:hover {
  background-image: url(../images/sliderright-hover.png);
}
.banner .carousel-control-prev:hover {
  background-image: url(../images/sliderleft-hover.png);
}
.banner .carousel-control-prev {
  left: auto;
  right: 0;
  margin-bottom: -85px;
  background-image: url(../images/sliderleft-arrow.png);
  background-color: transparent;
  font-size: 0;
  opacity: 1;
}
.banner .carousel-inner .carousel-caption span {
  font-size: 28px;
  font-weight: 900;
}
.banner-arrow {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
}
.banner-arrow .container {
  position: relative;
}
.banner .carousel-inner .carousel-caption h1 {
  font-size: 100px;
  line-height: 100px;
  font-weight: 900;
  text-shadow: 0 6px 5px rgba(0,0,0,0.23);
  margin-bottom: 5px;
}
.banner .carousel-inner .carousel-caption p {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  text-shadow: 0 6px 5px rgba(0,0,0,0.23);
  padding-bottom: 25px;
}
.banner .carousel-inner .carousel-caption .btn {
  min-width: 252px;
}
.carousel-indicators {
  margin-bottom: 50px;
  z-index: 1;
  max-width: 1170px;
  justify-content: flex-start;
  margin: 0 auto;
  padding-left: 10px;
  bottom: 88px;
}
.carousel-indicators li {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: rgba(255,255,255,0.35);
  box-sizing: inherit;
  opacity: 1;
  margin: 0 5px;
}
.carousel-indicators li.active {
  background: #fee026;
}
.owl-carousel.owl-drag .owl-item, .owl-carousel.owl-drag .owl-item .item {
  height: 100%;
}

/* Mid Wrap CSS */
.about-section {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}
.about-left {
  position: relative;
  padding-right: 28px;
}
.about-left img {
  border-radius: 10px;
}
.about-left .icon-box {
  position: absolute;
  top: 130px;
  left: -27px;
  z-index: 1;
  width: 176px;
  height: 176px;
  border-radius: 100%;
  background: #1890c5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about-left .icon-box span {
  display: block;
  clear: both;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  line-height: 22px;
  margin-top: 12px;
}
.about-overlay {
  position: relative;
  bottom: 0;
  right: -40px;
  border: 20px solid #fff;
  border-radius: 10px;
  margin: -260px 0 0;
  float: right;
  background-color: #fff;
}
.sub-title {
  font-size: 20px;
  line-height: 32px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1890c5;
  display: block;
  margin-bottom: 15px;
}
.heading-title {
  font-size: 55px;
  font-weight: 800;
  line-height: 60px;
  color: #1a2040;
  padding-bottom: 25px;
}
.inner-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: -185px -15px 25px;
}
.inner-info span {
  margin: 15px;
}
.inner-info .info-title {
  width: calc(45% - 30px);
  background-color: #f5f6fa;
  border-radius: 20px;
  padding: 38px 15px;
  text-align: center;
  font-size: 22px;
  color: #1a2040;
  font-weight: 500;
}
.inner-info .info-title strong {
  display: block;
  font-size: 28px;
  line-height: 21px;
  font-style: italic;
  color: #4290d2;
}
.inner-info .info-two {
  width: calc(55% - 30px);
  background-color: #4290d2;
  background-image: url(../images/info-big.png);
  background-repeat: no-repeat;
  background-position: left -121px center;
  text-align: center;
  border-radius: 20px;
  padding: 60px 25px 40px;
  color: #fff;
}
.inner-info .info-two em {
  font-size: 20px;
  line-height: 28px;
  display: block;
  margin-top: 20px;
}
.about-right {
  padding-left: 24px;
}
.about-right p {
  font-size: 18px;
  line-height: 30px;
  margin-top: 6px;
  margin-bottom: 40px;
}
.about-right {
  padding-top: 1px;
}
.about-right h6 {
  font-size: 20px;
  color: #1890c5;
  font-weight: 900;
  padding-bottom: 0;
}
.about-right small {
  display: block;
  font-size: 16px;
  color: #848486;
  margin-top: 5px;
}
.about-right ul {
  margin: 20px 0 35px;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}
.about-right ul li {
  font-size: 18px;
  width: 50%;
  margin-bottom: 5px;
  padding-left: 36px;
  background: url("../images/checkmark.png") no-repeat left center;
}
blockquote {
  display: block;
  background: #1c8fc6;
  padding: 30px 35px;
  font-size: 17px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 600;
  font-style: italic;
  border-radius: 6px 6px 6px 0;
  position: relative;
}
blockquote:after {
  position: absolute;
  bottom: -28.5px;
  left: 0;
  z-index: 1;
  width: 41px;
  height: 31px;
  background: url("../images/arrow.png") no-repeat 0 0;
  content: "";
}
.user-info {
  display: flex;
  padding-top: 35px;
}
.user-info img {
  border-radius: 100%;
  width: 73px;
  height: 73px;
  object-fit: cover;
  margin-right: 30px;
  margin-top: 8px;
}
.user-info h5 {
  font-size: 18px;
  color: #1c213f;
  font-weight: 900;
  padding-bottom: 1px;
}
.user-info p {
  margin-bottom: 0;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  position: absolute;
}
.owl-carousel .owl-nav button.owl-next {
  background-image: url(../images/sliderright-arrow2.png);
  background-color: transparent;
  font-size: 0;
  opacity: 1;
  right: -110px;
}
.owl-carousel .owl-nav button.owl-next:hover {
  background-image: url(../images/sliderright-hover2.png);
}
.owl-carousel .owl-nav button.owl-prev:hover {
  background-image: url(../images/sliderleft-hover2.png);
}
.owl-carousel .owl-nav button.owl-prev {
  left: -110px;
  background-image: url(../images/sliderleft-arrow2.png);
  background-color: transparent;
  font-size: 0;
  opacity: 1;
}
.service-section {
  position: relative;
  z-index: 1;
  padding: 85px 0 65px;
  background-color: #f5f6fa;
}
.service-section:after {
  content: '';
  height: 100%;
  width: 100%;
  background-image: url(../images/home-servicebg.jpg);
  opacity: 0.3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.service-section .owl-carousel {
  margin-top: 10px;
}
.service-section .service-item {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: all ease .4s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 27px rgba(185,186,193,0.26);
  margin: 20px 0;
}
.service-section .service-item .icon-box {
  width: 106px;
  height: 106px;
  background: url("../images/services-icon.png") no-repeat 26px -114px #f5f6fa;
  border-radius: 100%;
  transition: all ease .4s;
}
.service-section .service-item h3 {
  font-size: 26px;
  font-weight: 800;
  color: #1a2040;
  line-height: 28px;
  padding: 30px 0 15px;
  border-bottom: 1px solid #ffffff;
}
.service-section .service-item p {
  font-size: 18px;
  line-height: 28px;
}
.service-body {
  padding: 20px 36px;
  position: relative;
  z-index: 1;
}
.counter {
  font-size: 90px;
  color: #f5f6fa;
  font-weight: 200;
  position: absolute;
  z-index: -1;
  top: 10px;
  right: 30px;
}
.service-page .counter {
  top: 30px;
}
.service-section .service-item:hover .service-body {
  border-color: #e5e6ed;
}
.service-section .service-item:hover .icon-box {
  background-color: #4290d2;
  background-position: 26px 18px;
}
.service-section .service-item.precios .icon-box {
  background-position: 20px -397px;
}
.service-section .service-item.precios:hover .icon-box {
  background-position: 20px -254px;
}
.service-section .service-item.certificaciones .icon-box {
  background-position: 21px -695px;
}
.service-section .service-item.certificaciones:hover .icon-box {
  background-position: 21px -540px;
}
.owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.owl-dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: rgba(255,255,255,0.2) !important;
  margin: 0 5px;
}
.owl-dot.active {
  background: #fee026 !important;
}

.communicate-section {
  background: #1890c5;
  padding: 45px 0;
}
.communicate-section .btn {
  background: #1c213f;
  border-radius: 5px;
  min-width: 245px;
  padding: 22px;
  color: #ffffff;
}
.communicate-section .btn:hover {
  background: #232b5e;
}
.left-user {
  display: flex;
  align-items: center;
}
.left-user img {
  width: 136px;
  height: 136px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 40px;
}
.left-user p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 2px;
}
.left-user h5 {
  font-size: 36px;
  color: #ffffff;
  font-weight: 900;
}

/* Latest News Css */
.latest-news {
  padding: 90px 0 45px;
  background-color: #4290d2;
  position: relative;
  z-index: 1;
}
.latest-news:after {
  content: '';
  height: 100%;
  width: 100%;
  background-image: url(../images/testimonial-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.latest-news .owl-dots {
  margin-top: 10px;
}
.testimon-items {
  padding: 40px 0 20px;
  height: 100%;
}
.owl-carousel .owl-stage {
  height: 100%;
}
.testimon-box {
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 0 21px rgba(0,45,83,0.26);
  padding: 0 35px 40px;
  min-height: 430px;
  height: 100%;
}
.testimon-box p {
  line-height: 32px;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  padding-top: 15px;
}
.latest-news .quote {
  margin-bottom: 0;
  display: block;
  text-align: right;
  position: relative;
  top: -20px;
}
#detail .quote { position: relative; top: -25px }
.latest-news .quote img {
  width: auto;
}

.testimon-box strong {
  display: block;
  font-size: 22px;
  color: #1a2040;
  font-weight: 600;
}
.testimon-box small {
  display: block;
  font-size: 18px;
  color: #4290d2;
}
.latest-news .sub-title, .latest-news .heading-title {
  color: #fff;
}
.latest-news .row {
  margin-top: 40px;
}
.latest-news img {
  width: 100%;
}
.details {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 1px 2px 6px 3px rgba(0, 0, 0, 0.04);
  padding: 35px 25px;
  position: relative;
  margin-left: 8px;
  margin-right: 8px;
  margin-top: -45px;
  z-index: 1;
}
.news-item span {
  position: absolute;
  bottom: 140px;
  right: 23px;
  z-index: 1;
  background: #1890c5;
  font-size: 16px;
  color: #ffffff;
  padding: 10px 15px 20px;
  border-radius: 5px 5px 0 0;
  font-weight: bold;
  min-width: 155px;
  text-align: center;
}
.news-item h6 {
  font-size: 20px;
  color: #1c213f;
  font-weight: bold;
}
.news-item a {
  font-size: 16px;
  color: #1890c5;
}
.news-item:hover h6 {
  color: #1a8dc4;
}
.news-item:hover span {
  background: #1c213f;
}
.news-item:hover a {
  color: #1c213f;
  text-decoration: underline;
}
.contact-home {
  position: relative;
  background-image: url(../images/cta-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  padding-top: 50px;
}
.contact-home:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(26,32,64,0.4);
}
.contact-home .text-center {
  background: #1a8dc4;
  padding: 60px 0 120px;
}
.contact-home .heading-title {
  color: #ffffff;
}
.contact-inner {
  padding-top: 80px;
}
.contact-home h2 {
  font-size: 65px;
  line-height: 75px;
  text-shadow: 0 6px 5px rgba(0,0,0,0.23);
  padding-top: 35px;
  padding-bottom: 0;
}
.contact-home .btn {
  width: 100%;
  padding: 19px 25px;
}
.contact-home .btn:not(:hover) {
  background-color: #1a2040;
  border-color: #1a2040;
  color: #fff;
}
.contact-home form {
  background-color: #fee026;
  border-radius: 16px;
  padding: 45px;
  margin-left: 50px;
  margin-bottom: -50px;
}
.contact-home h3 {
  font-size: 34px;
  font-weight: 800;
  color: #1a2040;
  margin-bottom: 20px;
  text-align: center;
}

/* Footer CSS */
footer {
  background-color: #1a2040;
  background-image: url(../images/footer-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 80px 0 60px;
}
footer .row {
  justify-content: space-between;
}
footer .socials {
  margin: 30px 0 0;
}
footer .socials span {
  display: block;
  clear: both;
  margin-bottom: 10px;
  font-size: 17px;
  color: #ababab;
  font-family: 'Roboto', sans-serif;
}
footer h6 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  padding-top: 36px;
}
footer p {
  margin: 25px 0 20px;
  font-size: 17px;
  color: #9ea4bc;
  font-weight: 300;
}
footer .social a {
  margin: 0 15px 0 0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #131937;
  color: #888992;
}
footer .social a:hover {
  background: #fee026;
  color: #131937;
}
footer .social a .fa {
  font-size: 22px;
}
footer .contact-info {
  padding: 0;
  margin: 0;
  border: none;
}
.quick-links ul {
  padding: 0;
  margin: 0;
}
.quick-links li {
  position: relative;
  padding: 0 0 10px;
  list-style-type: none;
  display: inline-block;
  width: 49%;
}
.quick-links li a {
  font-size: 17px;
  color: #9ea4bc;
  position: relative;
}
.quick-links li a:hover {
  color: #4290d2;
}
footer .contact-info ul {
  flex-direction: column;
}
footer .contact-info ul li {
  width: 100%;
  margin-bottom: 4px;
  margin-right: 0;
}
footer .contact-info ul li span {
  font-size: 17px;
  color: #9ea4bc;
  margin-bottom: 5px;
}
footer .contact-info ul li a, footer .contact-info ul li:last-child a {
  font-size: 17px;
  color: #9ea4bc;
}
footer .contact-info ul li a:hover {
  color: #1890c5;
}
footer .contact-info ul li img {
  margin-right: 20px;
}
.contact-info a {
  color: #ffffff;
}
.copyright {
  display: block;
  overflow: hidden;
  color: #9ea4bc;
  background: #1a2040;
  border-top: 1px solid #3a4061;
}
.copyright .container {
  padding: 50px 0;
  overflow: hidden;
}
.copyright span {
  color: #ffffff;
}
.copyright img {
  margin: -8px 0 0 10px;
}

#return-to-top {
  position: fixed;
  bottom: 130px;
  right: 20px;
  background: #1a8dc4;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1111;
  line-height: 20px;
}
#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 13px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
  color: #fff;
  top: 10px;
}

/* Service Page CSS */
.inner-banner {
  background-image: url(../images/service-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.inner-banner:after {
  content: '';
  background-color: rgba(26,32,64,0.3);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.inner-banner h1 {
  padding-bottom: 0;
  text-align: center;
  color: #fff;
  font-size: 70px;
  font-weight: 800;
  text-shadow: 0 6px 5px rgba(0,0,0,0.23);
}
.date-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fee026;
  color: #1a2040;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1;
  transition: all ease .4s;
}
.service-item:hover .date-box {
  color: #fff;
  background-color: #4290d2;
}
.service-page .service-body {
  padding-top: 0;
  margin-top: -35px;
}
.service-page .service-item h3 {
  padding: 25px 0 12px;
}
.service-page .service-item h3 a {
  color: #1a2040;
}
.hover-check, .service-page .service-item:hover .date-box img {
  display: none;
}
.service-page .service-item:hover .date-box .hover-check  {
  display: block;
}
.sort-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.sort-box span {
  font-size: 18px;
  font-weight: 600;
  color: #4c4f63;
  padding-right: 20px;
}
.sort-box .form-control {
  font-size: 16px;
  color: #505160;
  height: 49px;
  width: 243px;
  border-radius: 8px;
  border: 1px solid #c0c2ca;
}
/* Detail Page CSS */
.detail-section .about-right ul li {
  width: 100%;
}
.about-right h6 {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 32px;
  color: #1a2040;
  font-weight: 600;
  padding-bottom: 0;
}
.detail-section .about-right {
  padding-left: 30px;
}
.detail-section .about-left {
  padding-right: 0;
  padding-left: 28px;
  position: relative;
  z-index: 1;
}
.detail-section .about-left:after {
  content: '';
  width: 100%;
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  z-index: -1;
  height: calc(100% - 56px);
  background-color: #4290d2;
  border-radius: 10px;
}
.enquiry-section {
  padding-top: 65px;
  margin-top: 70px;
  border-top: 3px solid #ececf3;
}
.enquiry-box p {
  line-height: 28px;
  font-size: 16px;
}
.enquiry-box .social {
  padding-top: 20px;
}
.enquiry-box .social a {
  width: 44px;
  height: 44px;
  margin-left: 0;
  margin-right: 15px;
}
.enquiry-box .social a .fa {
  font-size: 22px;
}
.detail-form {
  padding-left: 28px;
}
.detail-form .form-group {
  margin-bottom: 20px;
}
.detail-form .form-control {
  background-color: #f5f6fa;
  height: 67px;
  border-radius: 10px;
  border-color: #f5f6fa;
}
.detail-form textarea.form-control {
  height: 167px;
}
.map {
  height: 495px;
  z-index: 1;
}
.map-section {
  position: relative;
}
.map-section .contact-info {
  border: none;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 27px rgba(0,0,0,0.06);
  padding: 35px 45px;
  border-radius: 100px;
  position: relative;
  margin-bottom: -95px;
  z-index: 2;
}
.map-section .contact-info ul {
  margin: 0 -20px;
}
.map-section .contact-info li {
  padding: 10px 20px; 
}
.map-section .contact-info ul li img {
  margin-right: 25px;
}
.map-section .contact-info ul li a {
  font-size: 18px;
  color: #1a2040;
  font-weight: 600;
}
.map-section .contact-info ul li a:hover {
  color: #4290d2;
}
.map-section .contact-info ul li span {
  padding-bottom: 5px;
}
.cover-list { object-fit: cover; height: 267px; width: 100% }
.border-none { border: none; }
@media screen and (min-width: 1299px) {
  .container {
    max-width: 1170px;
  }
}