@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #222;
  position: relative;
}

body::before {
  content: "";
  background-image: url("../images/logo-background.png");
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  opacity: 0.04;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: 'Poppins', sans-serif;
  color: #222;
  margin: 0;
}

a {
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 100%;
  }
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

#loader {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

#loader .logoLoader {
  width: 300px;
  display: block;
  margin: 0 auto 30px;
}

@media screen and (max-width: 480px) {
  #loader .logoLoader {
    width: 200px;
  }
}

#loader .spinLoader {
  width: 32px;
  height: auto;
  -webkit-animation: spin 1s infinite steps(12);
          animation: spin 1s infinite steps(12);
  display: block;
  margin: 0 auto;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

.topbar {
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#eeeeee));
  background: linear-gradient(to bottom, #f8f8f8 0%, #eeeeee 100%);
  border-bottom: 2px solid #cfcfcf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 35px;
  width: 100%;
}

.topbar .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.topbar .details ul {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .topbar .details ul {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
}

.topbar .details ul li {
  padding: 0 9px;
  border-right: 1px solid rgba(34, 34, 34, 0.2);
}

.topbar .details ul li a {
  font-size: 14px;
  color: #2d71ab;
}

.topbar .details ul li:first-child {
  padding-left: 0;
}

.topbar .details .contact {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 20px;
}

@media screen and (max-width: 1199px) {
  .topbar .details .contact {
    padding-right: 0;
  }
}

.topbar .details .contact form {
  position: relative;
}

.topbar .details .contact form input {
  background-color: #fff;
  width: 100%;
  height: 28px;
  font-size: 12px;
  color: #222;
  border: 1px solid rgba(34, 34, 34, 0.2);
}

.topbar .details .contact form input:focus {
  outline: none;
  border: 1px solid #2d71ab;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.topbar .details .contact form input::-webkit-input-placeholder {
  /* Edge */
  opacity: 0.4;
}

.topbar .details .contact form input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  opacity: 0.4;
}

.topbar .details .contact form input::-ms-input-placeholder {
  opacity: 0.4;
}

.topbar .details .contact form input::placeholder {
  opacity: 0.4;
}

.topbar .details .contact form button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  background-color: transparent;
  border: none;
  font-size: 12px;
  border-left: 1px solid #2d71ab;
  color: #2d71ab;
  cursor: pointer;
}

.topbar .details .contact p {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.topbar .details .contact p::after {
  content: "";
  background-color: #2d71ab;
  width: 100%;
  height: 16px;
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  z-index: 2222;
  border-radius: 0 0 6px 6px;
}

.topbar .details .contact p a {
  font-size: 14px;
  color: #fff;
  background-color: #2d71ab;
  padding: 7px 25px;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .topbar .details .contact p a {
    font-size: 12px;
    padding: 7px;
  }
}

.topbar .details .contact p a:last-child {
  font-size: 20px;
  margin-top: -5px;
  padding: 0;
  width: 50px;
  height: 28px;
  display: block;
  text-align: center;
  padding-top: 5px;
}

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: relative;
  top: 0;
  width: 100%;
  background-color: transparent;
  padding: 18px 0;
}

.site-navbar.transparent {
  background: transparent;
}

.site-navbar.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.site-navbar .site-logo {
  position: relative;
  left: 0;
  font-size: 24px !important;
}

.site-navbar .site-menu-toggle {
  color: #222;
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu .active > a span {
  background: #2d71ab;
  color: #fff;
  border-radius: 30px;
  display: inline-block;
  padding: 5px 20px;
}

.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
}

.site-navbar .site-navigation .site-menu > li > a {
  padding: 10px 0px;
  color: #2d71ab;
  font-size: 16px;
  text-decoration: none !important;
}

.site-navbar .site-navigation .site-menu > li > a > span {
  padding: 5px 20px;
  display: inline-block;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
  border-radius: 30px;
}

.site-navbar .site-navigation .site-menu > li > a:hover > span {
  background: #2d71ab;
  color: #fff;
  border-radius: 30px;
  display: inline-block;
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children > a span {
  position: relative;
  padding-right: 30px;
}

.site-navbar .site-navigation .site-menu .has-children > a span::before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'icomoon';
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid #2d71ab;
  -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  -webkit-transition: 0.2s 0s;
  transition: 0.2s 0s;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
  position: absolute;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top::before {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #2d71ab;
  border-width: 10px;
  margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  -webkit-transition: 0s all;
  transition: 0s all;
  color: #343a40;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {
  color: #2d71ab !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
  padding: 9px 20px;
  display: block;
  font-size: 14px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover, .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a.active {
  background: #2d71ab;
  color: #fff;
}

.site-navbar .site-navigation .site-menu .has-children:hover, .site-navbar .site-navigation .site-menu .has-children:active, .site-navbar .site-navigation .site-menu .has-children:focus {
  cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children:active > a, .site-navbar .site-navigation .site-menu .has-children:focus > a {
  color: #2d71ab;
}

.site-navbar .site-navigation .site-menu .has-children:hover > a span, .site-navbar .site-navigation .site-menu .has-children:active > a span, .site-navbar .site-navigation .site-menu .has-children:focus > a span {
  background: #2d71ab;
  color: #fff;
}

.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown, .site-navbar .site-navigation .site-menu .has-children:active > .dropdown, .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.offcanvas-menu .site-mobile-menu {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
  color: #f8f9fa;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
  float: left;
  margin-top: 10px;
  margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
  display: inline-block;
  text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
  max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo:hover {
  text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: #212529;
}

.site-mobile-menu .site-nav-wrap a:hover, .site-mobile-menu .site-nav-wrap a.active {
  color: #2d71ab;
}

.site-mobile-menu .site-nav-wrap > li {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.site-mobile-menu .site-nav-wrap > li.active > a {
  color: #2d71ab;
}

.site-mobile-menu .site-nav-wrap > li > a {
  padding-left: 20px;
  font-size: 20px;
}

.site-mobile-menu .site-nav-wrap > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-mobile-menu .site-nav-wrap > li > ul > li {
  display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > a {
  padding-left: 40px;
  font-size: 16px;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 20;
  width: 36px;
  height: 36px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
  background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse::before {
  font-size: 12px;
  z-index: 20;
  font-family: "icomoon";
  content: "\f078";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed::before {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
  float: left;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li {
  width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
  padding-left: 15px !important;
}

.bannerSection .carousel-inner .carousel-item {
  width: 100%;
  height: 470px;
}

.bannerSection .carousel-inner .carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}

.bannerSection .carousel-inner .carousel-item .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.bannerSection .carousel-inner .carousel-item .bannerText h3 {
  font-size: 44px;
  line-height: 62px;
  color: #2d71ab;
  font-weight: 600;
  margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
  .bannerSection .carousel-inner .carousel-item .bannerText h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

.bannerSection .carousel-inner .carousel-item .bannerText p {
  font-size: 24px;
  line-height: 34px;
  color: #222;
  margin-bottom: 30px;
}

@media screen and (max-width: 575px) {
  .bannerSection .carousel-inner .carousel-item .bannerText p {
    font-size: 16px;
    line-height: 26px;
  }
}

.bannerSection .carousel-inner .carousel-item .bannerText a {
  background: -webkit-gradient(linear, left top, left bottom, from(#578dbc), to(#2d71ab));
  background: linear-gradient(to bottom, #578dbc 0%, #2d71ab 100%);
  text-align: center;
  border-radius: 7px 7px 7px 7px;
  border-color: white;
  font-weight: 600;
  width: 250px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .bannerSection .carousel-inner .carousel-item .bannerText a {
    width: 100%;
  }
}

.bannerSection .carousel-control-prev, .bannerSection .carousel-control-next {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.bannerSection .carousel-control-prev span, .bannerSection .carousel-control-next span {
  background-color: #222;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bannerSection:hover .carousel-control-prev, .bannerSection:hover .carousel-control-next {
  opacity: 1;
}

.serviceSection .callBackBtn a {
  display: block;
  background-color: #2d71ab;
  width: 100%;
  padding: 15px;
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;
  color: #fff;
  border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 991px) {
  .serviceSection .callBackBtn a {
    font-size: 20px;
    line-height: 30px;
  }
}

.serviceSection .serviceList {
  background-color: #2d71ab;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.serviceSection .serviceList i {
  color: #2d71ab;
  background-color: #fff;
  font-size: 32px;
  text-align: center;
  border-radius: 50px;
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px auto 0;
}

@media screen and (max-width: 991px) {
  .serviceSection .serviceList i {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

.serviceSection .serviceList h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .serviceSection .serviceList h3 {
    font-size: 20px;
    line-height: 30px;
  }
}

.serviceSection .serviceList a {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  margin: 20px 0 10px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  padding: 6px 12px;
  display: inline-block;
}

.serviceSection .heading {
  margin-top: 30px;
}

.serviceSection .heading h4 {
  color: #2d71ab;
  font-size: 32px;
  font-weight: 400;
  position: relative;
  display: block;
  padding: 8px 0 0 0px;
  line-height: 42px;
  margin-bottom: 28px;
}

@media screen and (max-width: 991px) {
  .serviceSection .heading h4 {
    font-size: 22px;
    line-height: 32px;
  }
}

.serviceSection .heading h6 {
  font-size: 24px;
  color: #2d71ab;
  font-weight: 500;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .serviceSection .heading h6 {
    font-size: 16px;
    line-height: 26px;
  }
}

.serviceSection .heading p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
}

.serviceSection .msOffice {
  background-color: #ec5b29;
  border-radius: 8px;
  padding-bottom: 20px;
  margin-top: 20px;
}

.serviceSection .msOffice.itSupport {
  background-color: #2d71ab;
}

.serviceSection .msOffice h5 {
  padding: 10px;
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.serviceSection .msOffice .image {
  background: #fff;
  padding: 15px 10px;
  float: left;
  display: block;
  width: 84%;
  height: 111px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 575px) {
  .serviceSection .msOffice .image {
    width: 100%;
    margin-bottom: 10px;
  }
}

.serviceSection .msOffice h6 {
  font-size: 14px;
  padding: 0 10px;
  color: #fff;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
}

.serviceSection .msOffice p {
  font-size: 14px;
  padding: 0 10px;
  color: #fff;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
}

@media screen and (max-width: 575px) {
  .serviceSection .msOffice p {
    width: 240px;
  }
}

.serviceSection .msOffice a {
  font-size: 14px;
  padding: 0 10px;
  color: #fff;
  font-weight: 400;
  line-height: 24px;
}

.aboutSection .heading {
  margin-top: 50px;
}

.aboutSection .heading h2 {
  background-color: #2d71ab;
  padding: 12px 15px 12px 0;
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .aboutSection .heading h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (max-width: 575px) {
  .aboutSection .heading h2 {
    font-size: 16px;
    line-height: 26px;
  }
}

.aboutSection .details p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-align: justify;
}

.aboutSection .details h4 {
  font-size: 20px;
  line-height: 30px;
  color: #2d71ab;
  font-weight: 600;
  text-align: justify;
}

.aboutSection .callBackBtn {
  margin-bottom: 20px;
}

.aboutSection .callBackBtn:last-child {
  margin-bottom: 0;
}

.aboutSection .callBackBtn a {
  display: block;
  background-color: #2d71ab;
  width: 100%;
  padding: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .aboutSection .callBackBtn a {
    font-size: 14px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .aboutSection .callBackBtn a {
    margin: 0;
  }
}

@media screen and (max-width: 480px) {
  .aboutSection .callBackBtn a {
    width: 100%;
  }
}

.contactDetails .heading {
  margin-top: 50px;
}

.contactDetails .heading h2 {
  background-color: #2d71ab;
  padding: 12px 15px 12px 0;
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contactDetails .heading h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (max-width: 575px) {
  .contactDetails .heading h2 {
    font-size: 16px;
    line-height: 26px;
  }
}

.contactDetails .heading .details {
  margin-top: 30px;
}

@media screen and (max-width: 575px) {
  .contactDetails .heading .details {
    margin-top: 15px;
  }
}

.contactDetails .heading .details h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

@media screen and (max-width: 575px) {
  .contactDetails .heading .details h4 {
    font-size: 14px;
    line-height: 24px;
  }
}

.contactDetails .heading .details a {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #2d71ab;
}

@media screen and (max-width: 575px) {
  .contactDetails .heading .details a {
    font-size: 14px;
    line-height: 24px;
  }
}

.contactDetails .heading .details p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  width: 400px;
}

@media screen and (max-width: 575px) {
  .contactDetails .heading .details p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .contactDetails .heading .details p {
    width: 100%;
  }
}

.contactDetails .heading .callBackBtn {
  margin-bottom: 20px;
}

.contactDetails .heading .callBackBtn:last-child {
  margin-bottom: 0;
}

.contactDetails .heading .callBackBtn a {
  display: block;
  background-color: #2d71ab;
  width: 100%;
  padding: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  width: 300px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .contactDetails .heading .callBackBtn a {
    font-size: 14px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .contactDetails .heading .callBackBtn a {
    margin: 0;
  }
}

@media screen and (max-width: 480px) {
  .contactDetails .heading .callBackBtn a {
    width: 100%;
  }
}

.mapSection iframe {
  margin-top: 50px;
  width: 100%;
  height: 500px;
}

@media screen and (max-width: 767px) {
  .mapSection iframe {
    height: 300px;
  }
}

.subServiceSection .heading {
  margin-top: 50px;
}

.subServiceSection .heading h2 {
  background-color: #2d71ab;
  padding: 12px 15px 12px 0;
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .subServiceSection .heading h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (max-width: 575px) {
  .subServiceSection .heading h2 {
    font-size: 16px;
    line-height: 26px;
  }
}

.subServiceSection .details p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-align: justify;
}

.subServiceSection .details h4 {
  font-size: 20px;
  line-height: 30px;
  color: #2d71ab;
  font-weight: 600;
  text-align: justify;
}

.subServiceSection .callBackBtn {
  margin-bottom: 20px;
}

.subServiceSection .callBackBtn:last-child {
  margin-bottom: 0;
}

.subServiceSection .callBackBtn a {
  display: block;
  background-color: #2d71ab;
  width: 100%;
  padding: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .subServiceSection .callBackBtn a {
    font-size: 14px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .subServiceSection .callBackBtn a {
    margin: 0;
  }
}

@media screen and (max-width: 480px) {
  .subServiceSection .callBackBtn a {
    width: 100%;
  }
}

.ServicePoint {
  background-image: url("../images/cloud-computing-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  background-position: center center;
  position: relative;
  margin-bottom: -50px;
  margin-top: 70px;
}

.ServicePoint::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}

.ServicePoint .ServiceDetails {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.ServicePoint .ServiceDetails i {
  color: #fff;
  background-color: #2d71ab;
  font-size: 40px;
  text-align: center;
  border-radius: 50px;
  width: 66px;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 10px auto 0;
}

@media screen and (max-width: 991px) {
  .ServicePoint .ServiceDetails i {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

.ServicePoint .ServiceDetails h4 {
  font-size: 22px;
  color: #2d71ab;
  line-height: 32px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .ServicePoint .ServiceDetails h4 {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (max-width: 575px) {
  .ServicePoint .ServiceDetails h4 {
    font-size: 16px;
    line-height: 26px;
  }
}

.ServicePoint .ServiceDetails p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  text-align: center;
}

footer {
  color: #fff;
  font-size: 14px;
  background-color: #222222;
  padding: 20px 0;
  margin-top: 50px;
}

footer p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
}

footer p span {
  display: block;
}

footer p a {
  color: #2d71ab;
}