* {
  font-family: "Manrope", sans-serif;
}

.normal-header {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .normal-header {
    display: none;
  }
}
.normal-header .logo-sec {
  width: 18%;
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.normal-header .logo-sec .logo-img {
  width: 150px;
  height: 42px;
  display: inline-block;
  float: left;
}
.normal-header .logo-sec .logo-img img {
  width: 100%;
  display: inline-block;
}
.normal-header .nav-link-sec {
  width: 82%;
}
.normal-header .nav-link-sec .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.normal-header .nav-link-sec .nav-link li {
  padding: 0px 20px;
}
.normal-header .nav-link-sec .nav-link li a {
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
.normal-header .nav-link-sec .nav-link li a:hover {
  color: #800000;
  font-weight: 600;
}
.normal-header .nav-link-sec .nav-link li a:hover:after {
  width: 100%;
}
.normal-header .nav-link-sec .nav-link li a:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  bottom: -0.1rem;
  left: 0;
  transition: 200ms ease-in;
  background: #800000;
}
.normal-header .nav-link-sec .nav-link .current-menu-item a {
  color: #800000;
  border-bottom: 2px solid #800000;
}

.sticky-header {
  position: fixed;
  top: -120px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.3s;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
@media (max-width: 992px) {
  .sticky-header {
    display: none;
  }
}
.sticky-header .logo-sec {
  width: 18%;
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.sticky-header .logo-sec .logo-img {
  width: 150px;
  height: 42px;
  display: inline-block;
  float: left;
}
.sticky-header .logo-sec .logo-img img {
  width: 100%;
  display: inline-block;
}
.sticky-header .nav-link-sec {
  width: 82%;
}
.sticky-header .nav-link-sec .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.sticky-header .nav-link-sec .nav-link li {
  padding: 0px 20px;
}
.sticky-header .nav-link-sec .nav-link li a {
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.sticky-header .nav-link-sec .nav-link li a:hover {
  color: #800000;
  font-weight: 600;
}
.sticky-header .nav-link-sec .nav-link li a:hover:after {
  width: 100%;
}
.sticky-header .nav-link-sec .nav-link li a:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  bottom: -0.1rem;
  left: 0;
  transition: 200ms ease-in;
  background: #800000;
}
.sticky-header .nav-link-sec .nav-link .current-menu-item a {
  color: #800000;
  border-bottom: 2px solid #800000;
}

.mobile-menu-sec {
  display: none;
}
@media (max-width: 992px) {
  .mobile-menu-sec {
    display: block;
  }
}
.mobile-menu-sec #phone-container {
  margin: 11px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 5px;
  padding: 7px 0px;
}
.mobile-menu-sec #phone-container #nav {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  height: 50px;
  background-color: transparent;
  transition: all 0.8s ease-in-out;
}
.mobile-menu-sec #phone-container #nav .logo {
  width: 150px;
  height: 42px;
  display: inline-block;
}
.mobile-menu-sec #phone-container #nav .logo a img {
  width: 100%;
  height: 100%;
}
.mobile-menu-sec #phone-container #nav #close {
  position: absolute;
  top: -5px;
  right: 0;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
}
.mobile-menu-sec #phone-container #nav #close .bar {
  position: absolute;
  width: 50%;
  height: 1px;
  background-color: #000;
}
.mobile-menu-sec #phone-container #nav #close .bar:nth-last-of-type(2) {
  top: 70%;
}
.mobile-menu-sec #phone-container #nav #close .bar:first-of-type {
  top: 46%;
}
.mobile-menu-sec #phone-container #nav #close .bar:last-of-type {
  top: 57%;
}
.mobile-menu-sec #phone-container #nav-items {
  display: none;
  visibility: hidden;
  opacity: 0;
  padding: 20px 0px;
}
.mobile-menu-sec #phone-container #nav-items ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.mobile-menu-sec #phone-container #nav-items ul li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 0px;
  display: inline-block;
  cursor: pointer;
}
.mobile-menu-sec #phone-container #nav-items ul li a:hover {
  color: #800000;
  font-weight: 600;
}
.mobile-menu-sec #phone-container #nav-items.active {
  display: block;
  visibility: visible;
  opacity: 1;
}

.banner-sec {
  padding-bottom: 60px;
}
@media only screen and (max-width: 500px) {
  .banner-sec {
    padding: 10px;
  }
}
.banner-sec .home-banner {
  padding: 0px;
}
.banner-sec .swiper .swiper-wrapper .swiper-slide .banner-img {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.banner-sec .swiper .swiper-wrapper .swiper-slide .banner-img .banner-overlay {
  background-color: rgba(0, 0, 0, 0.75);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-sec .swiper .swiper-wrapper .swiper-slide .banner-img .banner-overlay h4 {
  border: 5px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  font-family: Roboto, sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 30px;
  padding: 20px 6rem;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (max-width: 760px) {
  .banner-sec .swiper .swiper-wrapper .swiper-slide .banner-img .banner-overlay h4 {
    font-size: 36px;
    padding: 10px 1rem;
  }
}
@media only screen and (max-width: 500px) {
  .banner-sec .swiper .swiper-wrapper .swiper-slide .banner-img .banner-overlay h4 {
    font-size: 25px;
    padding: 6px 1rem;
  }
}
.banner-sec .swiper .swiper-wrapper .swiper-slide .banner-img .banner-overlay p {
  color: darkgray;
  font-size: 19px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 760px) {
  .banner-sec .swiper .swiper-wrapper .swiper-slide .banner-img .banner-overlay p {
    padding: 10px;
  }
}
@media only screen and (max-width: 500px) {
  .banner-sec .swiper .swiper-wrapper .swiper-slide .banner-img .banner-overlay p {
    font-size: 17px;
  }
}
.banner-sec .swiper .swiper-wrapper .swiper-slide .banner-img .banner-overlay .detail-btn {
  display: inline-block;
  border: 1px solid darkgray;
  padding: 8px 30px;
  border-radius: 6px;
}
.banner-sec .swiper .swiper-wrapper .swiper-slide .banner-img .banner-overlay .detail-btn a {
  text-decoration: none;
  color: darkgray;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}
.banner-sec .swiper .swiper-wrapper .swiper-slide-active .banner-img .banner-overlay .slide-text h4 {
  position: relative;
  animation: myfirst 2s ease backwards;
}
.banner-sec .swiper .swiper-wrapper .swiper-slide-active .banner-img .banner-overlay .slide-text p {
  position: relative;
  animation: myfirst 4s ease backwards;
}
.banner-sec .swiper .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
}
.banner-sec .swiper .swiper-pagination-bullet-active {
  background: #fff;
}

.about-us-page {
  margin-bottom: 70px;
  margin-top: 50px;
  padding-bottom: 25px;
}
@media only screen and (max-width: 500px) {
  .about-us-page {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 998px) {
  .about-us-page .about {
    width: 100%;
  }
}
.about-us-page .about-img {
  position: relative;
}
@media only screen and (max-width: 760px) {
  .about-us-page .about-img {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 500px) {
  .about-us-page .about-img {
    margin-bottom: 10px;
  }
}
.about-us-page .about-img .about-us-img1 {
  width: 340px;
  position: relative;
  /* bottom: -396px; */
}
@media only screen and (max-width: 998px) {
  .about-us-page .about-img .about-us-img1 {
    display: none;
  }
}
@media only screen and (max-width: 1422px) {
  .about-us-page .about-img .about-us-img1 {
    width: 290px;
  }
}
.about-us-page .about-img .about-us-img1 img {
  width: 100%;
}
.about-us-page .about-img .about-us-img2 {
  width: 340px;
  position: absolute;
  top: 135px;
  right: 39px;
}
@media only screen and (max-width: 1422px) {
  .about-us-page .about-img .about-us-img2 {
    width: 290px;
  }
}
@media only screen and (max-width: 1182px) {
  .about-us-page .about-img .about-us-img2 {
    top: 152px;
    right: 17px;
  }
}
@media only screen and (max-width: 998px) {
  .about-us-page .about-img .about-us-img2 {
    width: 100%;
    position: relative;
    top: 0px;
    right: 0px;
    margin-bottom: 10px;
  }
}
.about-us-page .about-img .about-us-img2 img {
  width: 100%;
}
@media only screen and (max-width: 998px) {
  .about-us-page .info {
    width: 100%;
  }
}
@media only screen and (max-width: 998px) {
  .about-us-page .about-us-info {
    width: 100%;
  }
}
.about-us-page .about-us-info h4 {
  border-bottom: 1px solid maroon;
  font-size: 40px;
  letter-spacing: 3px;
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .about-us-page .about-us-info h4 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 500px) {
  .about-us-page .about-us-info h4 {
    font-size: 30px;
  }
}
.about-us-page .about-us-info h4 span {
  color: maroon;
  font-weight: 800;
  font-size: 35px;
}
.about-us-page .about-us-info h4::first-letter {
  color: maroon;
  font-weight: 800;
  font-size: 43px;
}
@media only screen and (max-width: 760px) {
  .about-us-page .about-us-info h4::first-letter {
    font-size: 38px;
  }
}
@media only screen and (max-width: 500px) {
  .about-us-page .about-us-info h4::first-letter {
    font-size: 33px;
  }
}
.about-us-page .about-us-info p {
  font-size: 16px;
}

.why-us-sec {
  padding-bottom: 40px;
}
.why-us-sec .why-us-title {
  text-align: center;
  padding: 30px 0px 50px;
}
@media only screen and (max-width: 760px) {
  .why-us-sec .why-us-title {
    padding: 20px 0px 20px;
  }
}
@media only screen and (max-width: 500px) {
  .why-us-sec .why-us-title {
    padding: 10px 0px 10px;
  }
}
.why-us-sec .why-us-title h4 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  position: relative;
  letter-spacing: 3px;
  font-weight: 700;
}
.why-us-sec .why-us-title h4::before {
  content: "";
  width: 60px;
  height: 3px;
  background: maroon;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 760px) {
  .why-us-sec .why-us-title h4 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 500px) {
  .why-us-sec .why-us-title h4 {
    font-size: 30px;
  }
}
.why-us-sec .why-us-title h4 span {
  font-weight: 800;
  color: maroon;
  font-size: 43px;
}
@media only screen and (max-width: 760px) {
  .why-us-sec .why-us-title h4 span {
    font-size: 38px;
  }
}
@media only screen and (max-width: 500px) {
  .why-us-sec .why-us-title h4 span {
    font-size: 33px;
  }
}
.why-us-sec .why-us-info {
  background-color: rgba(128, 0, 0, 0.0392156863);
  margin-bottom: 40px;
  padding: 40px;
  overflow: hidden;
}
@media only screen and (max-width: 760px) {
  .why-us-sec .why-us-info {
    padding: 10px;
  }
}
@media only screen and (max-width: 500px) {
  .why-us-sec .why-us-info {
    padding: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .why-us-sec .why-us-info .sec-2 {
    order: 2;
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .why-us-sec .why-us-info .sec-1 {
    order: 1;
    width: 100%;
  }
}
.why-us-sec .why-us-info .why-us-img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.why-us-sec .why-us-info .why-us-img img {
  width: 100%;
  height: 100%;
}
.why-us-sec .why-us-info .why-us-text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 35px;
  overflow: hidden;
}
@media only screen and (max-width: 760px) {
  .why-us-sec .why-us-info .why-us-text {
    padding: 10px;
  }
}
@media only screen and (max-width: 500px) {
  .why-us-sec .why-us-info .why-us-text {
    padding: 0px;
  }
}
.why-us-sec .why-us-info .why-us-text h4 {
  font-size: 30px;
  color: #800000;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 760px) {
  .why-us-sec .why-us-info .why-us-text h4 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 500px) {
  .why-us-sec .why-us-info .why-us-text h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.why-us-sec .why-us-info .why-us-text p {
  font-size: 18px;
  line-height: 30px;
}
@media only screen and (max-width: 760px) {
  .why-us-sec .why-us-info .why-us-text p {
    font-size: 19px;
  }
}
@media only screen and (max-width: 500px) {
  .why-us-sec .why-us-info .why-us-text p {
    font-size: 17px;
    line-height: 25px;
  }
}

.service-banner .service-wrapper {
  padding: 0px;
}
.service-banner .banner-img {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.service-banner .banner-img .banner-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.31);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-banner .banner-img .banner-overlay .banner-info h4 {
  border: 5px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  font-family: Roboto, sans-serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 25px;
  padding: 20px 6rem;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  animation: myfirst 2s ease backwards;
}
@media only screen and (max-width: 760px) {
  .service-banner .banner-img .banner-overlay .banner-info h4 {
    font-size: 46px;
    padding: 19px 3rem;
  }
}
@media only screen and (max-width: 500px) {
  .service-banner .banner-img .banner-overlay .banner-info h4 {
    font-size: 30px;
    padding: 10px 1rem;
  }
}

.service-page {
  background-color: rgba(13, 12, 12, 0.03);
  padding: 40px 0px;
}
.service-page .service-title h4 {
  font-size: 40px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid maroon;
}
@media only screen and (max-width: 760px) {
  .service-page .service-title h4 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 500px) {
  .service-page .service-title h4 {
    font-size: 30px;
  }
}
.service-page .service-title h4 span {
  color: #800000;
  font-size: 43px;
}
@media only screen and (max-width: 760px) {
  .service-page .service-title h4 span {
    font-size: 38px;
  }
}
@media only screen and (max-width: 500px) {
  .service-page .service-title h4 span {
    font-size: 33px;
  }
}
.service-page .service-title p {
  font-size: 16px;
}
@media only screen and (max-width: 1306px) {
  .service-page .service {
    width: 33%;
  }
}
@media only screen and (max-width: 992px) {
  .service-page .service {
    width: 50%;
  }
}
@media only screen and (max-width: 766px) {
  .service-page .service {
    width: 100%;
  }
}
.service-page .service-card {
  position: relative;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
  height: 334px;
}
.service-page .service-card:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}
.service-page .service-card:hover .card-info .card-icon {
  background-color: #fff;
}
.service-page .service-card:hover .card-info .card-icon .fa {
  color: #800000;
}
.service-page .service-card:hover .card-info .card-heading h4 {
  color: #fff;
}
.service-page .service-card:hover .card-info .card-heading p {
  color: #fff;
}
.service-page .service-card:hover .card-info .card-heading a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.service-page .service-card .card-info {
  position: relative;
  z-index: 20;
}
.service-page .service-card .card-info .card-icon {
  display: inline-block;
  /* margin-bottom: 26px; */
  width: 65px;
  height: 62px;
  background-color: maroon;
  border-radius: 5px;
  line-height: 57px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  transition: all 0.3s;
}
.service-page .service-card .card-info .card-icon .fa {
  font-size: 30px;
  color: #fff;
}
.service-page .service-card .card-info .card-heading {
  margin-top: 30px;
}
.service-page .service-card .card-info .card-heading h4 {
  font-size: 23px;
  font-weight: 600;
}
.service-page .service-card .card-info .card-heading p {
  font-size: 14px;
  color: rgba(128, 128, 128, 0.7882352941);
  text-shadow: 0px 0px 0px #000;
}
.service-page .service-card .card-info .card-heading a {
  font-size: 14px;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid;
}
.service-page .service-card .circle-before {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: #800000;
  border: 6px solid #504f93;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all 0.6s;
}

.service-popup .modal-dialog {
  max-width: 1000px;
}
.service-popup .modal-content .modal-title {
  font-size: 25px;
  font-weight: 700;
  color: #000;
}
.service-popup .modal-content .modal-title::first-letter {
  color: #800000;
  font-size: 29px;
  font-weight: 700;
}
.service-popup .modal-content .modal-body {
  background-image: -webkit-linear-gradient(90deg, rgba(108, 19, 19, 0.14) 0%, rgba(32, 32, 32, 0) 100%);
}
.service-popup .modal-content .modal-body .popup-title h4 {
  font-size: 27px;
  color: #800000;
  font-weight: 600;
  margin-bottom: 24px;
}
.service-popup .modal-content .modal-body h6 {
  font-size: 17px;
  font-weight: 400;
  color: #800000;
}
.service-popup .modal-content .modal-body .popup-para {
  margin-bottom: 40px;
}
.service-popup .modal-content .modal-body .popup-para p {
  font-size: 16px;
}
.service-popup .modal-content .modal-body .popup-list h6 {
  font-size: 17px;
  font-weight: 400;
  color: #800000;
}
.service-popup .modal-content .modal-body .popup-list ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.service-popup .modal-content .modal-body .popup-list ul li {
  font-size: 16px;
  padding: 5px 0px;
}
.service-popup .modal-content .modal-body .popup-list ul li .fa {
  padding: 0px 10px 0px 0px;
  color: maroon;
}
.service-popup .modal-content .modal-body .popup-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.service-popup .modal-content .modal-body .popup-img img {
  width: 100%;
}

.contact-sec {
  margin-bottom: 50px;
}
.contact-sec .padding-0 {
  padding: 0px;
}
.contact-sec .contact-img {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.contact-sec .contact-img .overlay-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.77);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-sec .contact-img .overlay-wrapper .wrapper-text h4 {
  font-weight: 500;
  border: 5px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  font-family: Roboto, sans-serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
  margin: 0 0 25px;
  padding: 20px 6rem;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  animation: myfirst 2s ease backwards;
}
@media only screen and (max-width: 760px) {
  .contact-sec .contact-img .overlay-wrapper .wrapper-text h4 {
    font-size: 46px;
    padding: 19px 3rem;
  }
}
@media only screen and (max-width: 500px) {
  .contact-sec .contact-img .overlay-wrapper .wrapper-text h4 {
    font-size: 30px;
    padding: 10px 1rem;
  }
}

.contact-info-sec {
  padding: 70px 0px;
}
.contact-info-sec .contact-title {
  text-align: center;
}
.contact-info-sec .contact-title h4 {
  font-size: 52px;
  font-weight: 700;
  color: #800000;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1031px) {
  .contact-info-sec .contact-card {
    width: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .contact-info-sec .contact-card {
    width: 50%;
  }
}
@media only screen and (max-width: 766px) {
  .contact-info-sec .contact-card {
    width: 100%;
  }
}
.contact-info-sec .contact-wrapper {
  width: 100%;
  max-height: 274px;
  border: 1px solid gray;
  background: #fff;
  border: 3px solid #f5f5f5;
  text-align: center;
  margin-bottom: 20px;
  min-height: 310px;
}
@media only screen and (max-width: 1400px) {
  .contact-info-sec .contact-wrapper {
    max-height: 310px;
  }
}
@media only screen and (max-width: 1300px) {
  .contact-info-sec .contact-wrapper {
    max-height: 310px;
  }
}
@media only screen and (max-width: 500px) {
  .contact-info-sec .contact-wrapper {
    max-height: 310px;
  }
}
.contact-info-sec .contact-wrapper .wrapper-info {
  padding: 30px;
  position: relative;
  transition: all 0.5s;
}
.contact-info-sec .contact-wrapper .wrapper-info .wrapper-icon {
  width: 12%;
  display: inline-block;
  text-align: center;
  margin-bottom: 12px;
}
.contact-info-sec .contact-wrapper .wrapper-info .wrapper-icon img {
  width: 100%;
}
.contact-info-sec .contact-wrapper .wrapper-info h4 {
  font-size: 20px;
  color: maroon;
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-info-sec .contact-wrapper .wrapper-info h4 span {
  font-size: 15px;
  color: #864f4f;
  font-weight: 400;
  padding-left: 20px;
}
.contact-info-sec .contact-wrapper .wrapper-info p {
  color: #797979;
}
.contact-info-sec .contact-wrapper .wrapper-info h5 {
  font-size: 16px;
  color: #797979;
}
.contact-info-sec .contact-wrapper .wrapper-info h5 .fa {
  padding-right: 10px;
  font-size: 18px;
}

.contact-form-sec {
  margin-bottom: 60px;
  background-color: rgba(213, 152, 152, 0.04);
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow: hidden;
}
@media only screen and (max-width: 500px) {
  .contact-form-sec {
    padding: 0px;
  }
}
.contact-form-sec .form-wrapper .contact-form {
  padding: 25px;
}
.contact-form-sec .form-wrapper .contact-form h4 {
  font-size: 40px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 30px;
  border-bottom: 1px solid maroon;
}
@media only screen and (max-width: 760px) {
  .contact-form-sec .form-wrapper .contact-form h4 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 500px) {
  .contact-form-sec .form-wrapper .contact-form h4 {
    font-size: 30px;
  }
}
.contact-form-sec .form-wrapper .contact-form h4 span {
  color: #800000;
  font-size: 45px;
}
@media only screen and (max-width: 760px) {
  .contact-form-sec .form-wrapper .contact-form h4 span {
    font-size: 38px;
  }
}
@media only screen and (max-width: 500px) {
  .contact-form-sec .form-wrapper .contact-form h4 span {
    font-size: 35px;
  }
}
.contact-form-sec .form-wrapper .contact-form input {
  width: 100%;
  padding: 6px;
}
.contact-form-sec .form-wrapper .contact-form textarea {
  width: 100%;
}
.contact-form-sec .form-wrapper .contact-form .btn-sec {
  display: inline-block;
}
.contact-form-sec .form-wrapper .contact-form .btn-sec input {
  background-color: maroon;
  padding: 12px 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  border: none;
}
.contact-form-sec .map-box {
  height: 100%;
}
.contact-form-sec .map-box p {
  height: 100%;
}
.contact-form-sec .map-box p iframe {
  width: 100%;
  height: 100%;
}

.footer-sec {
  padding: 30px;
}
.footer-sec .footer-logo {
  width: 25%;
  margin-bottom: 20px;
}
.footer-sec .footer-logo img {
  width: 100%;
}
.footer-sec .footer-info {
  margin: 10px 0px;
}
.footer-sec .footer-info h5 {
  font-size: 16px;
  color: rgba(128, 128, 128, 0.7098039216);
  font-weight: 300;
}

@keyframes myfirst {
  0% {
    transform: translate(0px, 100px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}
.wp-block-image {
  width: 100%;
}
.wp-block-image img {
  width: 100%;
  height: 100%;
}

.entry-header {
  display: none;
}

.entry-content {
  padding: 56px 0px;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px;
}
.entry-content h3 {
  border-bottom: 1px solid maroon;
}
.entry-content h3::first-letter {
  color: maroon;
  font-weight: 800;
  font-size: 43px;
}
.entry-content ul {
  margin: 0px;
  padding-left: 20px;
  padding-bottom: 20px;
}/*# sourceMappingURL=style.css.map */