@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");
/* Font Family */
/* Scss Document */
/* Box Shadow */
/* Transition */
/* Transform Rotate */
/* Width Calc */
/*  Opacity Color */
/* Background Opacity Color */
/* Border Color */
/* Animation Key Frame */
/* translate3d */
/* translate */
/* Background Image */
/* text shadow */
html, body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.service-slider .owl-item .item {
  transform: translate3d(0, 0, 0);
  /* DO NOT REMEMBER WHERE TU PUT THIS, SEARCH FOR 3D ACCELERATION */
}

.service-slider .owl-item a.item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}
.service-slider .owl-item a.item .service {
  margin-top: 90px;
  margin-bottom: 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.service-slider .owl-item.center .item .service {
  margin-top: 50px;
}

.service-slider .owl-nav {
  text-align: center;
}
@media (max-width: 700px) {
  .service-slider .owl-nav {
    display: none;
  }
}

.service-slider .owl-nav button {
  font-size: 24px !important;
  color: #033aff !important;
}

.service-slider .service {
  background: white;
  border-radius: 25px;
  position: relative;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 40px;
  padding-top: 60px;
}
.service-slider .service .pos {
  background: #2b92d5;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 40px;
}
.service-slider .service .pos img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  width: auto;
  margin: auto;
}
.service-slider .service h3 {
  color: 0;
}
.service-slider .service h6 {
  color: #73287b;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}
.service-slider .service .elips-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.service-slider .service .elips-text p {
  margin: 0;
  color: #333;
}
.service-slider .owl-prev {
  width: 15px;
  height: 100px;
  position: absolute;
  top: 40%;
  margin-left: -32px;
  display: block !important;
  border: 0px solid black;
}
.service-slider .owl-next {
  width: 15px;
  height: 100px;
  position: absolute;
  top: 40%;
  right: -25px;
  display: block !important;
  border: 0px solid black;
}
.service-slider .owl-prev i, .service-slider .owl-next i {
  color: #270089;
  background: white;
  border-radius: 50%;
  padding: 5px;
  font-size: 12px;
  display: inline-block;
  width: 22px;
}

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

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #73287b;
}

#top {
  display: inline-block;
  background-color: #73287b;
  width: 40px;
  height: 40px;
  color: white;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer;
  text-decoration: none;
  line-height: 40px;
  font-size: 20px;
}
#top:hover {
  background: #0096c5;
}

#top.show {
  opacity: 1;
  visibility: visible;
}

a.main-readmore {
  background: #73287b;
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 17px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}
a.main-readmore:hover {
  background: #0096c5;
}

.dropdown:hover .dropdown-menu {
  display: block !important;
  margin-top: 0;
  min-width: 275px;
  /* remove the gap so it doesn't close */
  padding: 5px 10px;
}

/*Estilos generales del boton whatsapp*/
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
  text-decoration: none;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 111;
  -webkit-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -moz-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -ms-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -o-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
}
header .top-header {
  background: #73287b;
  padding: 10px 0;
  transition: all 0.1s ease;
}
@media (max-width: 992px) {
  header .top-header {
    display: none;
  }
}
header .top-header .connects a {
  color: white;
  text-decoration: none;
  font-weight: 300;
  margin-right: 15px;
  white-space: nowrap;
}
header .top-header .connects a i {
  margin-right: 5px;
}
header .top-header .social a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
header .top-header .social a:last-child {
  margin-right: 0;
}
header .top-header .social a:hover {
  opacity: 0.8;
}
header .navbar {
  padding: 10px 0;
  background: white;
}
header .navbar .navbar-brand img {
  width: 120px;
  margin-right: 20px;
}
header .navbar .navbar-nav .nav-link {
  font-weight: 300;
  color: #73287b;
  position: relative;
}
header .navbar .navbar-nav .nav-link:hover {
  color: #00485f;
}
header .navbar .navbar-nav .nav-link.active {
  color: #00485f;
}
header .navbar .navbar-nav .nav-link.active::before {
  content: "";
  width: 30px;
  height: 2px;
  background: #00485f;
  position: absolute;
  top: 5px;
}
header.about-header {
  box-shadow: none;
}
header.about-header .navbar {
  background: transparent;
}
header.about-header .navbar .navbar-brand img {
  filter: brightness(0) invert(1);
}
header.about-header .navbar .navbar-nav .nav-link {
  color: white;
}
header.about-header .navbar .navbar-nav .nav-link.active {
  color: white;
}
header.about-header .navbar .navbar-nav .nav-link.active::before {
  background: white;
}
header.about-header.header-animation {
  background: white;
  -webkit-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -moz-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -ms-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -o-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
}
header.about-header.header-animation .navbar-brand img {
  filter: none;
}
header.about-header.header-animation .navbar-nav .nav-link {
  font-weight: 300;
  color: #73287b;
  position: relative;
}
header.about-header.header-animation .navbar-nav .nav-link:hover {
  color: #00485f;
}
header.about-header.header-animation .navbar-nav .nav-link.active {
  color: #00485f;
}
header.about-header.header-animation .navbar-nav .nav-link.active::before {
  content: "";
  width: 30px;
  height: 2px;
  background: #00485f;
  position: absolute;
  top: 5px;
}
header.header-animation .top-header {
  opacity: 0;
  height: 0;
  padding: 0;
}
header.inner-header-white.header-animation {
  background: white;
  -webkit-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -moz-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -ms-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -o-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
}
header.inner-header-white.header-animation .navbar-nav .nav-link {
  font-weight: 300;
  color: #73287b;
  position: relative;
}
header.inner-header-white.header-animation .navbar-nav .nav-link:hover {
  color: #00485f;
}
header.inner-header-white.header-animation .navbar-nav .nav-link.active {
  color: #00485f;
}
header.inner-header-white.header-animation .navbar-nav .nav-link.active::before {
  content: "";
  width: 30px;
  height: 2px;
  background: #00485f;
  position: absolute;
  top: 5px;
}

footer {
  padding-top: 50px;
}
footer h2 {
  text-align: center;
  text-transform: capitalize;
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  color: #73287b;
}
footer .find-us h4 {
  color: #73287b;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
footer .find-us p {
  font-size: 12px;
  max-width: 200px;
}
footer .quick-links h4 {
  color: #73287b;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
footer .quick-links div {
  display: inline-grid;
  gap: 15px;
}
footer .quick-links a {
  color: #333;
  text-decoration: none;
  display: block;
  max-width: 150px;
  font-size: 12px;
}
footer .quick-links a:hover {
  color: #73287b;
}
footer .quick-form {
  margin-top: 36px;
}
footer .quick-form .form-control {
  font-size: 12px;
  box-shadow: none;
  margin-bottom: 15px;
}
footer .quick-form .btn {
  background: #73287b;
  color: white;
  border-radius: 0;
  padding: 5px 12px;
  line-height: 11px;
  font-size: 12px;
  box-shadow: none;
}
footer .quick-form .btn:hover {
  background: #0096c5;
}
footer .copy-right {
  -webkit-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -moz-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -ms-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  -o-box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  box-shadow: 0 0px 19px rgba(60, 59, 59, 0.2);
  padding: 20px 0;
}
footer .copy-right .logo {
  width: 100px;
}
footer .copy-right p {
  margin: 0;
  font-size: 12px;
}
footer .copy-right p a {
  color: #73287b;
  text-decoration: none;
}

.contact-strip-footer {
  background: #73287b;
  padding: 10px 0;
  text-align: center;
}
.contact-strip-footer .btn-quick-contact {
  background: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  color: #73287b;
  text-decoration: none;
  display: inline-block;
}
.contact-strip-footer .btn-quick-contact:hover {
  opacity: 0.9;
}
.contact-strip-footer ul {
  list-style: none;
  padding: 5px 0 0 0;
  display: inline-block;
  margin: 0;
}
.contact-strip-footer ul li {
  display: inline-block;
  background: url(../images/ico-phone.png) no-repeat 0 0px;
  background-size: 17px;
  list-style-type: none;
  padding-left: 20px;
  margin-left: 20px;
}
.contact-strip-footer ul li.ico-whatsapp {
  background: url(../images/ico-whatsap.png) no-repeat 0 0px;
  background-size: 17px;
}
.contact-strip-footer ul li.ico-mail {
  background: url(../images/ico-msg.png) no-repeat 0 0px;
  background-size: 17px;
}
.contact-strip-footer ul li a {
  color: #fff;
  text-decoration: none;
}

.banner {
  width: 100%;
  height: 650px;
  background-image: url("../images/banner-img.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 130px;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 992px) {
  .banner {
    margin-top: 95px;
  }
}
.banner h1 {
  color: white;
  font-weight: 600;
  max-width: 600px;
  font-size: 50px;
}
@media (max-width: 767px) {
  .banner h1 {
    font-size: 35px;
  }
}
.banner p {
  color: white;
  max-width: 600px;
  font-weight: 300;
  font-size: 18px;
}
.banner .get-quote {
  position: fixed;
  right: 0;
  top: 255px;
  max-width: 320px;
  z-index: 9999;
}
.banner .get-quote .btn.get {
  transform: rotate(-90deg) translate(0, -100%);
  transform-origin: 100% 0;
  position: absolute;
  right: 0;
  top: -33px;
  background: #73287b;
  color: white;
  z-index: 11;
  border-radius: 25px 25px 0 0;
  text-transform: uppercase;
  font-weight: 600;
  min-width: 150px;
  font-size: 18px;
  padding: 10px 5px;
  box-shadow: none;
}
.banner .get-quote .btn.get:hover {
  background: #0096c5;
}
.banner .get-quote .quote-form {
  background: white;
  border-radius: 25px;
  padding: 30px 25px;
  margin-right: 35px;
  margin-top: 35px;
}
.banner .get-quote .quote-form h5 {
  color: #73287b;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 20px;
}
.banner .get-quote .quote-form label {
  font-size: 12px;
}
.banner .get-quote .quote-form .form-control, .banner .get-quote .quote-form .form-select {
  border: 0 !important;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  margin-bottom: 10px;
}
.banner .get-quote .quote-form .btn.submit {
  background: #73287b;
  color: white;
  border-radius: 0;
  padding: 5px 12px;
  line-height: 11px;
  font-size: 12px;
  box-shadow: none;
}
.banner .get-quote .quote-form .btn.submit:hover {
  background: #0096c5;
}
.banner .get-quote .bg-full {
  background: #73287b;
  width: calc(100% + 10px);
  height: 110px;
  position: absolute;
  top: -16px;
  left: -50px;
  border-radius: 25px 0px 0px 25px;
}
.banner .get-quote .btn.close {
  position: absolute;
  left: -48px;
  top: 8px;
  color: white;
  transform: rotate(-90deg) translate(0, -100%);
  transform-origin: 100% 0;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  box-shadow: none;
}
.banner .get-quote .hide-show {
  display: none;
  transition: 0.3s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.why-choose {
  padding-top: 50px;
}
.why-choose h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
  color: #73287b;
}
.why-choose h2 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 25px;
}
.why-choose p {
  font-weight: 300;
  color: black;
  text-align: justify;
}

.our-service {
  position: relative;
  padding-top: 50px;
  background: #f6f8f9;
}
.our-service h2 {
  text-align: center;
  text-transform: uppercase;
  color: white;
  font-size: 25px;
  margin-bottom: 0;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.our-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 150px);
  background: #73287b;
}

.video-testimonial {
  background: #f6f8f9;
  padding-top: 30px;
}

.testimonial {
  background: #f6f8f9;
  padding-top: 100px;
  padding-bottom: 50px;
}
.testimonial .img-testi {
  text-align: center;
}
.testimonial .img-testi img {
  width: 150px;
  margin: auto;
  display: block;
  margin-bottom: 20px;
}
.testimonial .img-testi .descrp {
  max-width: 700px;
  margin: auto;
  margin-bottom: 20px;
  font-weight: 300;
}
.testimonial .img-testi h5 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;
}
.testimonial .img-testi .date {
  font-size: 12px;
}

.we-work {
  padding: 50px 0;
  padding-bottom: 30px;
}
.we-work h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  color: #73287b;
}
.we-work .enquiry {
  background: #73287b;
  color: white;
  border-radius: 25px 0 0 25px;
  height: 100%;
  display: table;
  width: 100%;
  padding: 15px 40px;
}
@media (max-width: 991px) {
  .we-work .enquiry {
    border-radius: 25px 25px 0px 0px;
    padding: 30px;
  }
}
.we-work .enquiry .mid {
  vertical-align: middle;
  display: table-cell;
}
.we-work .enquiry h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 10px;
  max-width: 240px;
}
.we-work .enquiry p {
  font-weight: 300;
  margin-bottom: 25px;
  max-width: 280px;
}
.we-work .enquiry .btn {
  border: 1px solid white;
  border-radius: 25px;
  padding: 2px 12px;
  font-size: 12px;
  color: white;
  box-shadow: none;
}
.we-work .enquiry .btn:hover {
  background: white;
  color: #73287b;
}
.we-work .enquiry-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0 25px 25px 0;
}
@media (max-width: 991px) {
  .we-work .enquiry-img {
    border-radius: 0px 0px 25px 25px;
  }
}

.find {
 
}
.find h2 {
  text-align: center;
  font-weight: 600;
  line-height: 28px;
  font-size: 25px;
}

.abt-banner {
  width: 100%;
  height: 300px;
  background-image: url("../images/banner-img.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  margin-top: 130px;
  padding-top: 130px;
  position: relative;
}
@media (max-width: 767px) {
  .abt-banner {
    margin-top: 96px;
  }
}
.abt-banner h1 {
  color: white;
  font-weight: 600;
  text-align: center;
  font-size: 50px;
}
@media (max-width: 767px) {
  .abt-banner h1 {
    font-size: 35px;
  }
}
.abt-banner .get-quote {
  position: fixed;
  right: 0;
  top: 275px;
  max-width: 320px;
  z-index: 1;
}
.abt-banner .get-quote .btn.get {
  transform: rotate(-90deg) translate(0, -100%);
  transform-origin: 100% 0;
  position: absolute;
  right: 0;
  top: -33px;
  background: #73287b;
  color: white;
  z-index: 11;
  border-radius: 25px 25px 0 0;
  text-transform: uppercase;
  font-weight: 600;
  min-width: 150px;
  font-size: 18px;
  padding: 10px 5px;
  box-shadow: none;
}
.abt-banner .get-quote .btn.get:hover {
  background: #0096c5;
}
.abt-banner .get-quote .quote-form {
  background: white;
  border-radius: 25px;
  padding: 30px 25px;
  margin-right: 35px;
  margin-top: 35px;
}
.abt-banner .get-quote .quote-form h5 {
  color: #73287b;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 20px;
}
.abt-banner .get-quote .quote-form label {
  font-size: 12px;
}
.abt-banner .get-quote .quote-form .form-control, .abt-banner .get-quote .quote-form .form-select {
  border: 0;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
  padding-left: 0;
  margin-bottom: 10px;
}
.abt-banner .get-quote .quote-form .btn.submit {
  background: #73287b;
  color: white;
  border-radius: 0;
  padding: 5px 12px;
  line-height: 11px;
  font-size: 12px;
  box-shadow: none;
}
.abt-banner .get-quote .quote-form .btn.submit:hover {
  background: #0096c5;
}
.abt-banner .get-quote .bg-full {
  background: #73287b;
  width: calc(100% + 10px);
  height: 110px;
  position: absolute;
  top: -16px;
  left: -50px;
  border-radius: 25px 0px 0px 25px;
}
.abt-banner .get-quote .btn.close {
  position: absolute;
  left: -48px;
  top: 8px;
  color: white;
  transform: rotate(-90deg) translate(0, -100%);
  transform-origin: 100% 0;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  box-shadow: none;
}
.abt-banner .get-quote .hide-show {
  display: none;
  transition: 0.3s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.blog-banner {
  background-image: url("../images/banner-04.jpg");
}

.video-banner {
  background-image: url("../images/banner-04.jpg");
}

.infographics-banner {
  background-image: url("../images/banner-05.jpg");
}

.contact-banner {
  background-image: url("../images/banner-06.jpg");
}

.guide-banner {
  background-image: url("../images/banner-07.jpg");
}

.video-banner {
  background-image: url("../images/banner-08.jpg");
}

.about-nav {
  display: block;
}

.vision-mission {
  padding: 100px 0;
}
.vision-mission .btn {
  background: #f7f7f7;
  border: 1px solid #d5d5d5;
  width: 260px;
  height: 130px;
  margin-bottom: 20px;
  border-radius: 0;
  box-shadow: none;
}
.vision-mission .btn img {
  max-width: 80px;
}
.vision-mission .btn:last-child {
  margin-bottom: 0;
}
.vision-mission .btn span {
  font-size: 18px;
  color: #73287b;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  margin-top: 10px;
}
.vision-mission .btn.active {
  background: white;
  border: 1px solid #d5d5d5;
}
.vision-mission h4 {
  font-size: 40px;
  color: #73287b;
  font-weight: 600;
  margin-bottom: 25px;
}
.vision-mission h5 {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 15px;
}
.vision-mission p {
  text-align: justify;
}
.vision-mission .abt-img {
  max-height: 430px;
}
@media (max-width: 1199px) {
  .vision-mission .vm-respo {
    flex-wrap: wrap;
  }
  .vision-mission .vm-respo .abt-img {
    display: none;
  }
  .vision-mission .vm-respo .nav {
    justify-content: center;
  }
}

.relationships h2 {
  color: #73287b;
  font-size: 40px;
  font-weight: 600;
  max-width: 720px;
  margin: auto;
  margin-bottom: 80px;
  text-align: center;
}
.relationships img {
  width: 100%;
  margin: auto;
}

.we-work.about-enquiry .enquiry h4 {
  max-width: 280px;
}
.we-work.about-enquiry .enquiry p {
  max-width: 430px;
}

.section-contactus {
  padding: 100px 0 50px 0;
}
.section-contactus h2 {
  font-weight: 500;
  font-size: 30px;
}
.section-contactus label {
  font-size: 16px;
}
.section-contactus input.form-control {
  height: 40px;
}
.section-contactus .btn {
  background: #73287b;
  color: #fff;
  border-radius: 50px;
  padding: 1px 20px;
  font-size: 17px;
}
.section-contactus .btn:hover {
  background: #0096c5;
}
.section-contactus .contact-left-box {
  font-size: 18px;
}
.section-contactus .contact-left-box h3 {
  font-size: 26px;
  color: #73287b;
}
.section-contactus .contact-left-box ul {
  padding: 0;
}
.section-contactus .contact-left-box ul li {
  background: url(../images/ico-phone.png) no-repeat 0 5px;
  background-size: 17px;
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 5px;
}
.section-contactus .contact-left-box ul li.ico-whatsapp {
  background: url(../images/ico-whatsap.png) no-repeat 0 5px;
  background-size: 17px;
}
.section-contactus .contact-left-box ul li.ico-mail {
  background: url(../images/ico-msg.png) no-repeat 0 5px;
  background-size: 17px;
}
.section-contactus .contact-right-box {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.section-contactus .contact-right-box h2 {
  font-size: 40px;
  font-weight: bold;
  color: #73287b;
}
.section-contactus .contact-right-box input.form-control, .section-contactus .contact-right-box .form-select {
  background-color: #f2f2f2;
  border: none;
  height: 40px;
  color: #28549c;
  border-radius: 8px;
}
.section-contactus .contact-right-box textarea.form-control {
  background-color: #f2f2f2;
  border: none;
  color: #28549c;
  border-radius: 8px;
}

.section-service {
  padding: 100px 0 80px 0;
  background: #e9faff;
}
.section-service h2 {
  color: #73287b;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 80px;
  text-align: center;
}
.section-service .service-box {
  border-radius: 25px;
  min-height: 300px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.section-service .service-box img {
  border-radius: 20px 20px 0 0;
}
.section-service .service-box .service-content {
  padding: 20px;
  text-align: center;
}
.section-service .service-box .service-content h3 {
  text-align: center;
  color: #73287b;
  font-weight: 600;
  font-size: 24px;
}
.section-service .service-box .service-content p {
  text-align: left;
  font-size: 15px;
}
.section-service .service-box .service-content .btn {
  background: #73287b;
  color: #fff;
  border-radius: 50px;
  padding: 1px 20px;
  font-size: 17px;
}
.section-service .service-box .service-content .btn:hover {
  background: #0096c5;
}

.blog .service-content {
  text-align: left !important;
}
.blog .service-content h3 {
  font-weight: 500 !important;
  text-align: left !important;
  margin-bottom: 10px;
}
.blog .service-content .readmore {
  color: #73287b;
  text-decoration: none;
  font-size: 16px;
  margin-top: 20px;
}
.blog .service-content .readmore:hover {
  color: #0096c5;
}
.blog .service-content .readmore:hover i {
  margin-left: 5px;
}

.section-blog {
  padding: 100px 0 0 0;
}
.section-blog h2 {
  color: #000;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: left;
  margin-top: 40px;
}
.section-blog .blog-block {
  border-right: 1px solid #ccc;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .section-blog .blog-block img {
    width: 100%;
  }
}
.section-blog .blog-block ul {
  margin: 30px 0;
}
.section-blog .blog-right-box h4 {
  font-size: 22px;
}
.section-blog .blog-right-box p {
  font-size: 12px;
}
.section-blog .blog-right-box img {
  margin-bottom: 10px;
}
.section-blog .btn {
  background: #73287b;
  color: #fff;
  border-radius: 50px;
  padding: 1px 20px;
  font-size: 17px;
}
.section-blog .btn:hover {
  background: #0096c5;
}

.section-service-details {
  padding: 130px 0 0 0;
}
@media (max-width: 767px) {
  .section-service-details {
    padding-top: 100px;
  }
}
.section-service-details h2 {
  color: #73287b;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: left;
  margin-top: 40px;
  font-weight: 500;
}
.section-service-details p {
  font-size: 16px;
}
.section-service-details ul {
  padding: 0;
  list-style-type: none;
}
.section-service-details ul li {
  font-size: 16px;
  background: url(../images/hand-bullet.png) no-repeat 0px 5px;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
}

/*# sourceMappingURL=style.css.map */
