@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 14px;
  overflow-x: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

.defaultfont {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none !important;
}

.primary-color {
  color: #cc2225;
}

.top-header {
  background: #274687;
  padding: 0;
}

.contact-list {
  color: #fff;
  display: flex-wrap;
  margin: 0;
  padding: 0;
}

.contact-list li {
  padding: 7px 10px;
  display: inline-block;
}

.contact-list li i {
  margin-right: 7px;
}

.contact-list a {
  color: #fff;
  font-size: 12px;
}

.contact-list.social-list li {
  background: #cc2225;
}

.contact-list.social-list li i {
  margin-right: 0px;
  padding: 0 5px;
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-header {
  padding: 10px;
}

.main-header .header-logo {
  height: 90px;
}

.main-header .navbar {
  padding: 0;
}

.main-header .navbar-nav .nav-item {
  margin-right: 15px;
  text-transform: capitalize;
}

.main-header .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.main-header .navbar-nav .nav-item .dropdown-menu {
  padding: 0;
}

.main-header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
}

.main-header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background: #cc2225;
  color: #fff;
}

.main-header .navbar-nav .nav-link {
  color: #000;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.main-header .navbar-nav .nav-link:hover {
  color: #cc2225;
}

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

.swiper {
  overflow: hidden;
}

.home-swiper {
  position: relative;
}

.home-swiper .swiper-slide img {
  min-height: 350px;
  max-height: 600px;
}

.home-swiper .swiper-slide {
  position: relative;
}

.home-swiper .caption {
  background: rgba(0, 0, 0, 0.77);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  padding-bottom: 0;
  color: #fff;
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
  padding: 0 20px;
}

.home-swiper .caption .slider-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}

.home-swiper .caption .slider-main-title {
  font-size: 38px;
  font-weight: bold;
  margin: 20px 0;
}

.home-swiper .caption .slider-text {
  font-size: 14px;
}

.home-swiper .swiper-button-next.swiper-button-disabled, .home-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.btn {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  padding: 16px 30px;
  position: relative;
}

.btn.btn-default {
  background: #cc2225;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.btn.btn-default:before {
  content: "";
  height: calc(100% + 6px);
  width: 1px;
  background: #cc2225;
  position: absolute;
  top: 0;
  left: -8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.btn.btn-default:after {
  content: "";
  height: 1px;
  width: calc(100% + 8px);
  background: #cc2225;
  position: absolute;
  bottom: -7px;
  left: -8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.btn.btn-default:hover {
  background: #274687;
}

.btn.btn-default:hover:before, .btn.btn-default:hover:after {
  background: #274687;
}

.btn.btn-default:hover:before {
  left: 0;
  height: 100%;
}

.btn.btn-default:hover:after {
  left: 0;
  width: 100%;
  left: 0;
  bottom: 0;
}

.btn.btn-default.btn-default-outline {
  background: transparent;
  color: #cc2225;
  border: 1px solid #cc2225;
}

.btn.btn-default.btn-default-outline:hover:before, .btn.btn-default.btn-default-outline:hover:after {
  background: transparent;
}

.btn.btn-default-sm {
  padding: 7px 16px;
  font-weight: 400;
}

.section-space {
  padding: 70px 0;
}

.section-title {
  font-size: 34px;
  line-height: 48px;
  font-weight: bold;
  position: relative;
  margin-bottom: 50px;
}

.section-title:after {
  content: "";
  height: 5px;
  width: 180px;
  background: #cc2225;
  position: absolute;
  bottom: -20px;
  left: 0px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.section-title.section-title-sm {
  font-size: 30px;
  line-height: 40px;
}

.discription-text {
  font-size: 14px;
  margin: 30px 0;
  color: #000;
  opacity: 0.6;
  line-height: 24px;
}

.section-center-title:after {
  left: 0;
  right: 0;
  margin: auto;
}

.services {
  background: url("assets/imgs/company-bg.jpg");
  background-size: cover;
  color: #fff;
}

.services .discription-text {
  color: #fff;
  opacity: 0.8;
}

.more-services {
  margin-top: -80px;
}

.more-service-box {
  text-align: center;
  margin-bottom: 80px;
}

.more-service-box .stitle {
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 15px;
}

.more-service-box .simg {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.newsletters {
  background: #eff7ff;
}

.newsletters .contact-img {
  border-radius: 10px;
}

.newsletters .newsletters-content {
  padding: 40px 40px;
  margin-left: -140px;
  background: #F4F7FC;
  position: absolute;
  bottom: -50px;
  border: 15px solid #fff;
  -webkit-box-shadow: 0 7px 22px rgba(0, 0, 0, 0.4);
          box-shadow: 0 7px 22px rgba(0, 0, 0, 0.4);
}

.newsletters .newsletters-content .section-title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 40px;
}

.newsletters .newsletters-content .btn {
  margin-bottom: 15px;
}

.newsletters .newsletters-content .discription-text {
  margin: 0 0 20px;
}

.md-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
}

.bg-light {
  background: #eff7ff;
}

.news-box {
  padding-bottom: 8px;
}

.news-box .img-box {
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

.news-box .list-inline {
  margin: 10px 0;
}

.news-box .list-inline li {
  font-size: 12px;
  font-weight: 600;
}

.news-box .blog-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  color: #000;
}

.news-box .blog-title:hover {
  color: #274687;
}

.news-box .discription-text {
  margin: 10px 0;
}

.footer {
  background: url("assets/imgs/footer-bg.jpg") #4d6496;
  background-size: cover;
  color: #fff;
  position: relative;
}

.footer:after {
  content: "";
  opacity: 0.9;
  background: #274687;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 100%;
}

.footer .position-relative {
  z-index: 1;
}

.footer .ftitle {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer .discription-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #fff;
  opacity: 1;
}

.footer .discription-text i {
  margin-right: 10px;
}

.footer a.discription-text {
  padding-left: 20px;
  position: relative;
}

.footer a.discription-text:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 12px;
}

.footer a.discription-text:hover {
  opacity: 0.7;
}

.footer a.discription-text:hover:before {
  left: 6px;
}

.footer .footer-social-links a.discription-text {
  padding-left: 0;
}

.footer .footer-social-links a.discription-text:before {
  content: none;
}

.page-banner {
  position: relative;
  padding: 100px 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
}

.page-banner .border-content {
  padding-left: 25px;
  border-left: 7px solid #274687;
}

.page-banner .position-relative {
  z-index: 1;
}

.page-banner .page-title {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.page-banner .breadcrumb {
  background: transparent;
  padding: 10px 0;
  margin: 0;
}

.page-banner .breadcrumb li, .page-banner .breadcrumb a {
  color: #fff;
}

.about-bg {
  background-image: url("assets/imgs/about-bg-2.jpg");
}

.content-boxes {
  background: #f4f6f9;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mb-50 {
  margin-bottom: 50px;
}

.expertise-bg {
  background-image: url("assets/imgs/company.jpg");
}

.blog-bg {
  background-image: url("assets/imgs/blog.jpg");
}

.default-list {
  padding: 20px 0;
  list-style: none;
  margin: 0;
}

.default-list li {
  position: relative;
  padding-left: 20px;
  line-height: 24px;
  margin-bottom: 10px;
  font-size: 14px;
}

.default-list li:before {
  content: "\f054";
  color: #cc2225;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0px;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 12px;
}

.search-form {
  border: 0;
  -webkit-box-shadow: 0 4px 5px #f1f1f1;
          box-shadow: 0 4px 5px #f1f1f1;
  padding: 10px 10px;
  border-radius: 50px;
  background: #fff;
}

.search-form .form-control {
  border: 0;
  font-size: 14px;
  -webkit-box-shadow: 0 0 0 !important;
          box-shadow: 0 0 0 !important;
}

.search-form .input-group-text {
  border: 0;
  background: transparent;
}

.blog-post {
  margin-bottom: 50px;
}

.blog-post .btn {
  margin-left: 10px;
}

.blog-bg-color {
  background: #f9f9f9;
}

.news-card {
  -webkit-box-shadow: 0 4px 15px #f1f1f1;
          box-shadow: 0 4px 15px #f1f1f1;
  border: 0;
  padding: 10px;
  margin: 15px 0;
}

.news-card .main-title {
  font-size: 22px;
  font-weight: bold;
  margin: 20px;
}

.news-card .number {
  padding: 0 15px;
  font-size: 24px;
  font-weight: bold;
  color: #274687;
}

.news-card .media-title {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
}

.news-card ul li {
  font-size: 12px;
}

.contact-bg {
  background-image: url("assets/imgs/contact-bg.jpg");
}

.contact-box {
  -webkit-box-shadow: 0 4px 25px rgba(245, 245, 245, 0.8);
          box-shadow: 0 4px 25px rgba(245, 245, 245, 0.8);
  padding: 40px;
  margin: -100px 0 50px;
  background: #fff;
  border-radius: 5px;
}

.form-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 0 0 10px;
}

.contact-box .form-control {
  border-radius: 0;
  padding: 10px 15px;
  font-size: 14px;
}

.addresss {
  border: 1px solid #f2f2f2;
  background: #f9f9f9;
}

.services-bg {
  background-image: url("assets/imgs/services.jpg");
}

.services-bg-color {
  background: #f4f7fc;
  background: -webkit-gradient(linear, left top, right top, color-stop(29%, #f4f7fc), color-stop(29%, white));
  background: linear-gradient(90deg, #f4f7fc 29%, white 29%);
}

.leftside {
  padding: 50px 0;
  background: #F4F7FC;
}

.leftside .list-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 40px;
}

.leftside .list-menu li {
  position: relative;
  background: #fff;
}

.leftside .list-menu li::after {
  position: absolute;
  content: " ";
  display: inline-block;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: width 0.3s linear;
  transition: width 0.3s linear;
  background-color: #0067ed;
}

.leftside .list-menu li:hover:after, .leftside .list-menu li.active:after {
  width: 100%;
}

.leftside .list-menu li:hover a, .leftside .list-menu li.active a {
  color: #fff;
}

.leftside .list-menu li:hover a:after, .leftside .list-menu li.active a:after {
  color: #fff;
}

.leftside .list-menu li a {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  padding: 20px 25px 20px 25px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  color: #000;
  font-size: 15px;
  line-height: 16px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-shadow: 0 0 6px 0px rgba(29, 33, 67, 0.1);
          box-shadow: 0 0 6px 0px rgba(29, 33, 67, 0.1);
}

.leftside .list-menu li a:after {
  content: "\f0dd";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 36%;
  right: 20px;
  color: inherit;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: width 0.3s linear;
  transition: width 0.3s linear;
  z-index: 1;
  opacity: .4;
  font-size: 13px;
  font-weight: 700;
}

.leftside .list-menu.download-list li a .fas {
  font-size: 28px;
  margin-right: 20px;
  color: #274687;
}

.leftside .list-menu.download-list li a .text-sm {
  opacity: 0.8;
  font-weight: normal;
  margin: 5px 0;
}

.leftside .list-menu.download-list li a:hover .fas {
  color: #fff;
}

.shadow-card {
  background: #fff;
  -webkit-box-shadow: 0 0 6px 0px rgba(29, 33, 67, 0.1);
          box-shadow: 0 0 6px 0px rgba(29, 33, 67, 0.1);
  margin-bottom: 40px;
}

.shadow-card .contact-img {
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.shadow-card .text-sm {
  font-size: 12px;
  display: block;
  margin: 10px 0;
}

.quick-contact {
  margin-top: 0px;
  padding: 20px;
}

.quick-contact .form-control {
  padding: 8px 10px;
}

.right-side-content {
  padding: 50px 0 50px 30px;
}

.right-side-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.right-side-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
}

.right-side-content p {
  font-size: 14px;
  margin: 10px 0;
  color: #000;
  opacity: 0.6;
  line-height: 24px;
}

.right-side-content .discription-text {
  margin: 10px 0;
}

.right-side-content .default-list {
  margin: 10px 0;
  padding: 0;
}

.right-side-content .default-list li {
  font-size: 14px;
  margin: 10px 0 0;
  color: #000;
  opacity: 0.6;
  line-height: 24px;
}

.price-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  margin: 30px 0;
  background: #274687;
  color: #fff;
}

.price-card .fas {
  font-size: 42px;
  margin-right: 20px;
}

.price-card .discription-text {
  margin-bottom: 0;
  color: #fff;
}

.blog-details img {
  width: 100%;
}

.user-datails {
  margin: 20px 0;
}

.user-datails li {
  font-size: 12px;
  font-weight: 600;
}

.pagination-btn {
  background: #F4F7FC;
  display: block;
  padding: 15px;
  color: #274687;
}

.comment-form {
  margin: 0;
  padding: 25px;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  background: #F4F7FC;
}

.comment-form .form-title {
  text-align: left;
}

.comment-form .btn-default-sm {
  margin-left: 10px;
}

@media (max-width: 1100px) {
  .newsletters .newsletters-content {
    padding: 20px 30px;
  }
}

@media (max-width: 991px) {
  .main-header .navbar-collapse {
    border-top: 3px solid #cc2225;
    position: absolute;
    top: calc(100% + 10px);
    background: #fff;
    width: calc(100% + 79px);
    margin: 0 -40px;
  }
  .main-header .navbar-collapse .nav-link {
    padding: 10px 15px;
  }
  .main-header .navbar-collapse .navbar-nav .nav-item {
    margin-right: 0;
  }
  .main-header .navbar-toggler {
    background: #274687;
    width: 40px;
    height: 40px;
    padding: 0 8px;
  }
  .main-header .navbar-toggler .navbar-toggler-icon {
    display: block;
    background: #fff;
    height: 2px;
    margin: 5px 0;
    width: 100%;
  }
  .newsletters .newsletters-content {
    position: relative;
    margin: -140px 20px 0 20px;
  }
  .more-service-box {
    margin-bottom: 40px;
  }
  .more-services {
    margin-bottom: 30px;
  }
  .page-banner {
    padding: 70px 40px;
  }
  .contact-box {
    margin: 0 0 30px;
  }
  .services-bg-color {
    background: transparent;
  }
  .right-side-content {
    padding: 30px 15px;
  }
  .leftside {
    margin: 0 15px;
    max-width: calc(100% - 30px);
    padding: 20px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .main-header .header-logo {
    height: 70px;
  }
  .home-swiper .caption .slider-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
  }
  .home-swiper .caption .slider-main-title {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
  }
  .home-swiper .caption .slider-text {
    font-size: 12px;
  }
  .section-title {
    margin-bottom: 40px;
    font-size: 26px;
    line-height: 36px;
  }
  .services.section-space {
    padding: 20px 15px 80px;
    margin-top: 20px;
  }
  .discription-text {
    margin: 20px 0;
  }
  .newsletters .newsletters-content {
    border: 8px solid #fff;
    bottom: -90px;
    padding: 20px 20px 0;
  }
  .why-choose-us {
    margin-top: 30px;
  }
  .page-banner {
    padding: 40px 20px;
  }
  .page-banner .page-title {
    font-size: 20px;
  }
  .content-boxes {
    padding: 20px 20px;
  }
  .content-boxes .section-title {
    font-size: 22px;
    line-height: 30px;
  }
  .section-title.section-title-sm {
    font-size: 22px;
    line-height: 33px;
  }
  .contact-box {
    padding: 20px;
  }
  .form-title {
    font-size: 20px;
  }
  .contact-bg {
    padding: 60px;
  }
  .right-side-content {
    padding: 20px;
  }
}

@media (max-width: 567px) {
  .btn {
    padding: 12px 20px;
  }
  .main-header .navbar-collapse {
    width: calc(100% + 50px);
    margin: 0 -40px;
    left: 15px;
  }
  .section-space {
    padding: 40px 0;
  }
  .footer .ftitle {
    font-size: 18px;
    margin-top: 10px;
  }
  .addresss, .contact-details {
    margin: 10px;
  }
}
/*# sourceMappingURL=style.css.map */