@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.eot');
  src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-Bold.woff2') format('woff2'),
    url('../fonts/Poppins-Bold.woff') format('woff'),
    url('../fonts/Poppins-Bold.ttf') format('truetype'),
    url('../fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.eot');
  src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-Medium.woff2') format('woff2'),
    url('../fonts/Poppins-Medium.woff') format('woff'),
    url('../fonts/Poppins-Medium.ttf') format('truetype'),
    url('../fonts/Poppins-Medium.svg#Poppins-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/Poppins-Regular.woff') format('woff'),
    url('../fonts/Poppins-Regular.ttf') format('truetype'),
    url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.eot');
  src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
    url('../fonts/Poppins-SemiBold.woff') format('woff'),
    url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
    url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}




/* Reset css  */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins';
}

ul {
  list-style: none;
}

ul,
li {
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  transition: all 0.5s ease !important;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.sub-heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.common-sub-heading {
  font-size: 20px;
  letter-spacing: 2px;
  text-decoration: underline;
  text-transform: uppercase;
  color: #f7cf71;
  font-weight: 700;
  text-underline-offset: 5px;
  margin-bottom: 25px;
}


.common-heading {
  font-size: 38px;
  line-height: 44px;
  text-transform: uppercase;
  color: #253355;
  font-weight: 700;
  filter: drop-shadow(1.678px 2.487px 0.5px #f7cf71);
}

.common-text {
  font-size: 14px;
  line-height: 30px;
  color: #282828;
}

.common-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 13px 22px;
  width: fit-content;
  border-radius: 10px;
  background: #f7cf71;
  font-size: 16px;
  color: #253355;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.common-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #051f59;
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.3s ease;
}

.common-btn img {
  width: 13px;
  transition: all 0.5s ease;
}

.common-btn:hover {
  color: #ffffff;
}

.common-btn:hover .btn-icon {
  background-color: #6c9e00;
}

.common-btn:hover .btn-icon img {
  rotate: 0deg;
}

.common-btn:hover::before {
  transform: scaleX(1);
}

.common-btn:hover {
  box-shadow: 0 0 5px #a5a5a5;
}

.common-btn-2 {
  color: #ffffff;
  background: #253355;
}

.common-btn-2:hover {
  color: #253355;
}

.common-btn-2::before {
  background-color: #f7cf71;
}

.common-btn-3 {
  color: #ffffff;
  background: #678e29;
}

.common-btn-3:hover {
  color: #000000;
}

.common-btn-3::before {
  background-color: #ffffff;
}

.animate {
  animation: slideDown 0.7s ease-in-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-150%);
  }

  to {
    transform: translateY(0);
  }
}

.padding-0 {
  padding: 0;
}

/* main header section css here  */

.main-header {
  position: fixed;
  background: #ffffff;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.5s ease;
}

.logo-container {
  position: relative;
  transition: all 0.5s ease;
  margin-right: -30px;
}

.logo-container img {
  width: 150px;
  transition: all 0.5s ease;
}

.header-manu-container {
  transition: all 0.5s ease;
}

.main-header ul li {
  transition: all 0.5s ease;
  margin-right: 55px;
}

.main-header ul li:last-child {
  margin-right: 0;
}

.main-header ul li a {
  font-size: 16px;
  color: #253355;
  padding: 0;
  line-height: 45px;
  text-transform: capitalize;
}

.header-btn-container {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  transition: all 0.5s ease;
}

.pos-fixed {
  top: 0;
  background: #fff;
  transition: all 0.5s ease;
  box-shadow: 0 0 5px #c7c7c7;
}

.main-header.pos-fixed ul li {
  margin-right: 60px;
}


.main-header.pos-fixed ul li {
  margin-right: 60px;
}

.main-header.pos-fixed ul li:last-child {
  margin-right: 0;
}



/* banner css here  */
.banner-sec {
  position: relative;
  margin-top: 90px;
}

.banner-sec::before {
  content: '';
  background: linear-gradient(90deg, rgba(37, 51, 85, 0.75) 0%, rgba(237, 221, 83, 0) 100%);
  width: 60%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.banner-img img {
  width: 100%;
}

.banner-container {
  max-width: 500px;
  width: 100%;
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  z-index: 1;
}

.banner-container .common-heading {
  font-size: 50px;
  line-height: 60px;
  color: #ffffff;
}

.banner-btn-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

/* .our-service-sec */
.our-service-sec {
  padding: 90px 0;
  position: relative;
}

.our-service-sec::before {
  content: '';
  background: url("../images/our-service-shape.png") no-repeat;
  background-size: cover;
  width: 187px;
  height: 242px;
  position: absolute;
  left: 0;
  top: 0;
}

.our-service-sec .common-heading {
  text-align: center;
  margin-bottom: 40px;
}

.service-card {
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0 0 15px #eeeeee;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 25px 18px;
  min-height: 100%;
}

.service-card-img {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-card-img::before {
  content: '';
  background: url("../images/service-icon-shape.png") no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.service-card-img img {
  width: 50px;
  position: relative;
}

.service-card-heading {
  font-size: 20px;
  line-height: 22px;
  color: #253355;
  font-weight: 700;
  text-align: center;
  padding: 20px 0 15px;
}

.service-card-text {
  font-size: 14px;
  line-height: 23px;
  color: #253355;
  text-align: center;
  padding-bottom: 15px;
}

.service-card .common-btn-2 {
  padding: 9px 25px;
  font-size: 14px;
}

/* about-sec */
.about-sec {
  background-color: #e8efff;
  position: relative;
  padding: 50px 0;
}

.about-sec::before {
  content: '';
  background: url("../images/about-bg.png") no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 240px;
  position: absolute;
  left: 0;
  top: 0;
}

.about-sec-right {
  margin-left: -35px;
  position: relative;
}

.about-sec-right .common-text {
  padding: 10px 0 25px;
}

.about-sec-right .common-btn {
  padding: 13px 30px;
}

/* info-sec */
.info-sec-container {
  background-color: #253355;
  padding: 20px 40px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 2px solid #485470;
}

.info-sec .col-lg-3:last-child .info-card {
  border-right: 0;
}

.info-card-icon {
  width: 62px;
  min-width: 62px;
  height: 62px;
  border-radius: 31px;
  background-color: #f7cf71;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon img {
  width: 30px;
}

.info-card-text {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  font-weight: 500;
}

/* cta-sec */
.cta-sec {
  padding: 90px 0;
  position: relative;
}

.cta-sec::before {
  content: '';
  background: url("../images/cta-shape-2.png") no-repeat;
  background-size: cover;
  width: 199px;
  height: 162px;
  position: absolute;
  left: 30px;
  bottom: 20px;
}

.cta-sec::after {
  content: '';
  background: url("../images/cta-shape-1.png") no-repeat;
  background-size: cover;
  width: 185px;
  height: 242px;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.cta-inner .common-heading {
  text-align: center;
}

/* contact-sec */
.contact-sec {
  background: #ffeec7;
  padding: 90px 0;
  position: relative;
}

.contact-sec::before {
  content: '';
  background: url("../images/contact-shape.png") no-repeat;
  background-size: cover;
  width: 365px;
  height: 373px;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-sec .common-heading {
  font-size: 30px;
  margin-bottom: 20px;
}

.contact-sec-left {
  padding-right: 70px;
}

.contact-sec-right {
  padding-left: 70px;
}

.contact-sec-right .contact-form-sec input {
  font-size: 14px;
  padding: 8px 10px 8px 20px;
  border: 1px solid #ffffff;
  background: #ffffff;
}

.contact-sec-right .contact-form-sec select {
  font-size: 14px;
  padding: 8px 10px 8px 20px;
  border: 1px solid #ffffff;
  background: #ffffff;
}

.contact-sec-right .contact-form-sec textarea {
  font-size: 14px;
  border: 1px solid #ffffff;
  background: #ffffff;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
  padding: 30px 0 0 !important;
  text-align: left !important;
  font-size: 14px !important;
  line-height: 28px !important;
  color: #282828 !important;
}

#sp-testimonial-free-wrapper-44 .sp-testimonial-free-section .sp-testimonial-client-name {
  color: #282828 !important;
  font-weight: 700 !important;
  text-align: right !important;
}

#sp-testimonial-free-wrapper-44 .sp-testimonial-free-section .sp-testimonial-client-rating {
  display: flex !important;
  position: absolute;
  left: 0;
  top: 0;
}

#sp-testimonial-free-wrapper-44 .sp-testimonial-free-section .testimonial-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #253355 !important;
}

/* gallery-sec */
.gallery-sec {
  padding: 90px 0;
  position: relative;
}

.gallery-sec::before {
  content: '';
  background: url("../images/our-service-shape.png") no-repeat;
  width: 340px;
  height: 443px;
  position: absolute;
  left: 0;
  top: 0;
}

.gallery-sec .common-heading {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-sec .container {
  max-width: 1366px;
  padding: 0;
}

#sp-wp-carousel-free-id-45.sp-wpcp-45 .wpcp-single-item {
  border: 0 !important;
  border-radius: 15px;
}

/* footer */
.footer {
  position: relative;
  z-index: 1;
  background-color: #040916;
}

.footer::before {
  content: '';
  background: url("../images/footer-shape.png") no-repeat;
  background-size: cover;
  max-width: 934px;
  height: 244px;
  position: absolute;
  left: 0;
  top: 0;
}

.f-logo-container {
  display: flex;
  align-items: center;
  gap: 35px;
}

.footer-outer {
  padding-top: 80px;
  position: relative;
}

.f-logo {
  width: 150px;
}

.footer-text {
  font-size: 14px;
  line-height: 27px;
  color: #19a99d;
  font-weight: 400;
  margin: 30px 0 20px;
}

.footer-text strong {
  font-weight: 400;
  color: #ffffff;
}

.f-media {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.f-media a {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  filter: drop-shadow(1px 1.1px 0px #f7cf71);
  background-color: #253355;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-media a img {
  width: 12px;
}

.footer-heading {
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  margin: 0;
  position: relative;
  z-index: 3;
}

.footer ul li {
  font-size: 14px;
  color: #ffffff;
  padding-bottom: 5px;
}

.footer ul li a {
  font-size: 14px;
  color: #ffffff;
}

.footer ul li a:hover {
  color: #f7cf71;
  padding-left: 2px !important;
}

.f-sec-4 ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.f-contact-img {
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 14px;
  background-color: #253355;
  filter: drop-shadow(1px 1.1px 0px #f7cf71);
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-sec-4 ul li img {
  width: 12px;
}

.f-contact-heading {
  font-size: 16px;
  line-height: 24px;
  color: #323232;
  font-weight: 600;
}

.f-sec-1 {}

.f-sec-2 {
  margin-left: 50px;
}

.f-sec-2 ul li {
  margin-bottom: 5px;
}

.f-sec-4 {
  margin-left: 100px;
}

.f-sec-3 {
  margin-left: 85px;
  margin-right: -40px;
}

.media-container .footer-heading {
  margin: 0;
}

.lower-footer {
  position: relative;
  font-size: 14px;
  color: #ffffff;
  padding: 15px 0;
  margin-top: 75px;
  text-align: center;
  z-index: 5;
  border-top: 2px solid #ffffff;
}

.lower-footer a {
  color: #ffffff;
}

.lower-footer a:hover {
  color: #f7cf71;
}

.lower-footer strong {
  font-weight: 400;
  text-transform: uppercase;
}


/* scroll to top  */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 9999;
  width: 57px;
  height: 57px;
  border-radius: 28px;
  filter: drop-shadow(1px 1.1px 0px #f7cf71);
  background-color: #253355;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}


.scroll-top img {
  width: 25px;
  animation: bounce2 2s ease infinite;
}


@keyframes bounce2 {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}


/* banner css here */
.site-content,
.site-main .widecolumn {
  margin-left: 0px !important;
}

.page .entry-header,
.blog_page_header {
  background: url("../images/banner-img.jpg") #eee no-repeat !important;
  background-size: cover !important;
  max-width: 100% !important;
  padding: 150px 0 150px !important;
  margin: 90px 0 50px !important;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page .entry-header:before,
.blog_page_header:before {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.page .entry-content {
  max-width: 100% !important;
  padding: 0px !important;
}

.content-area,
.content-sidebar {
  padding-top: 0px !important;
}

.page .entry-title,
.blog_page_title {
  color: #fff;
  position: relative;
  font-size: 32px;
  font-weight: 600;
  text-transform: none;
  z-index: 99;
  margin-bottom: 3px;
}

.breadcrumb-container {
  width: 100%;
  color: #ea0700;
  position: relative;
  font-size: 15px;
}

.breadcrumb-container a {
  color: #ea0700;
}

.page {
  margin-top: 0 !important;
}


/* inner page css  */
.inner_content p {
  margin-bottom: 0;
}

.inner_title {
  color: #131313;
  font-size: 26px;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
}

.inner_title strong {
  color: #253355;
}

.inner_txt {
  font-size: 16px;
  color: #2b2b2b;
  font-weight: normal;
  margin-top: 20px;
}

.margin-top {
  margin-top: 48px;
}

.inner_list_txt {
  margin-top: 20px;
}

.inner_list_txt ul {
  padding: 0;
  margin: 0;
}

.half-li ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.half-li ul li {
  width: 49%;
}

.inner_list_txt ul li {
  background: url("../images/list-img.png");
  background-position: top 2px left;
  padding-left: 28px;
  background-repeat: no-repeat;
  background-size: 18px;
  font-size: 16px;
  color: #2b2b2b;
  font-weight: normal;
  list-style: none;
  padding-bottom: 6px;
}

.inner_bottm_sec {
  background: #f7cf71;
  padding: 30px 20px;
  text-align: center;
}

.core-box {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 5px;
  min-height: 100%;
}

.core-box img {
  width: 80px;
  padding-bottom: 20px;
}

.core-box .inner_title {
  font-size: 20px;
}

.core-box .inner_txt {
  margin-top: 10px;
}

.core-box_title {
  color: #131313;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
}

.core-box_title strong {
  color: #253355;
}

.core-box_txt {
  font-size: 14px;
  color: #2b2b2b;
  font-weight: normal;
  margin-top: 20px;
}

.m-top {
  margin-top: 20px;
}

/* contact page css  */

.contact_page_heading {
  color: #131313;
  font-size: 26px;
  text-transform: capitalize;
  font-weight: bold;
  position: relative;
}

.contact_page_heading strong {
  color: #253355;
}

.contact_page_info {
  position: relative;
  color: #000;
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.contact-text strong {
  color: #000000;
  font-weight: 600;
}

.contact-img {
  background-color: #253355;
  filter: drop-shadow(2px 3px 0px #f7cf71);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  padding-top: 10px;
}

.contact-img img {
  width: 22px;
}

.contact_right {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  padding: 25px;
  border-radius: 5px;
}

/* thank you page   */
.thankyou-btn-container {
  display: flex;
  justify-content: center;
}

.thankyou-btn-container a {
  text-decoration: none !important;
}

.thankyou-text {
  font-size: 18px;
  font-weight: 500;
  padding-top: 20px;
}

/* 404 page */

.not_found-text {
  font-size: 18px;
  font-weight: 500;
  padding: 10px;
}

.back_btn {
  display: flex;
  justify-content: center;
  margin: 15px 0 60px;
}

.back_btn a {
  text-decoration: none !important;
}

/* footer_fixed_buttons css  */
.footer_fixed_buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
}

.footer_btn1 {
  background: #253355;
  width: 50%;
  float: left;
  color: #fff !important;
  padding: 10px 0;
  text-decoration: none !important;
  text-transform: capitalize;
}

.footer_btn2 {
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  padding-top: 9px;
}

.footer_btn2 img {
  width: 18px;
}

.footer_btn3 {
  background: #f7cf71;
  width: 50%;
  float: left;
  color: #fff !important;
  padding: 10px 0;
  text-decoration: none !important;
  text-transform: capitalize;
}



/* blog page css  */
.more-link {
  display: block;
  background: #253355;
  width: fit-content;
  margin: 15px 0;
  padding: 15px 25px;
  border-radius: 15px;
  color: #fff;
  text-transform: capitalize;
  transition: all 0.5s ease;
  text-decoration: none !important;
}

.more-link:hover {
  background: #f7cf71 !important;
  color: #253355 !important;
}

.post .entry-title {
  font-size: 30px !important;
  font-weight: 600 !important;
}

.widget_block {
  position: relative;
}

.widget_block::before {
  content: '';
  width: 100%;
  height: 3px;
  background: #000;
  position: absolute;
  left: 0;
  top: -15px;
}

#block-8::before {
  content: none;
}

#block-7 {
  margin-bottom: 10px;
}

/* contact page  */
.contact-form-sec input {
  width: 100%;
  padding: 12px 10px 12px 20px;
  border-radius: 7px;
  color: #515151;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #efefef;
  background: #efefef;
  outline: none;
}

.contact-form-sec input:focus,
.contact-form-sec select:focus,
.contact-form-sec textarea:focus {
  border: 1px solid #f7cf71;
}

.contact-form-sec select {
  width: 100%;
  padding: 12px;
  border-radius: 7px;
  color: #515151;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #efefef;
  background: #efefef;
  outline: none;
}

.contact-form-sec textarea {
  width: 100%;
  padding: 12px 12px 12px 20px;
  border-radius: 7px;
  color: #515151;
  font-size: 16px;
  height: 90px;
  border: 1px solid #efefef;
  background: #efefef;
}

.contact-form-sec input[type="submit"] {
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  width: fit-content;
  background-color: #253355;
  padding: 13px 50px;
  transition: all 0.5s ease;
}

.contact-form-sec input[type="submit"]:hover {
  background-color: #f7cf71;
  color: #253355;
}

.contact-form-sec p {
  margin-bottom: 0 !important;
}

.inner_content .img-fluid {
  border-radius: 10px;
}

.rmp-container .rmp-menu-title .rmp-menu-title-image {
    width: 200px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}


/* mediaquery start here */

@media only screen and (min-width : 300px) and (max-width : 1023px) {
    .top-header {
        display: none;
    }

    .header-mid {
        display: none;
    }

    .header-right {
        display: none;
    }

    .animate {
        animation: none;
	}
	.logo-container img {
		width: 125px;
	}
    .banner-sec .container {
		width: auto;
	}
	.banner-sec {
		margin-top: 75px;
	}
	.banner-img img {
		width: 100%;
		height: 450px;
		object-fit: cover;
	}
	.banner-container .common-heading {
		font-size: 30px;
		line-height: 40px;
	}
	.banner-container {
		max-width: 350px;
	}

	.our-service-sec {
		padding: 50px 0;
	}
	.our-service-sec::before {
		width: 90px;
		height: 120px;
	}
	.common-heading {
		font-size: 26px;
		line-height: 30px;
	}
	.our-service-sec .common-heading {
		margin-bottom: 30px;
	}
	.about-sec-left {
		position: relative;
	}
	.about-sec-right {
		margin-left: 0;
	}
	.info-card {
		border-right: 0;
	}
	.cta-sec {
		padding: 50px 0 100px;
	}
	.cta-sec::before {
		width: 122px;
		height: 100px;
		left: 10px;
		bottom: 10px;
	}
	.cta-sec::after {
		width: 110px;
		height: 150px;
	}
	.contact-sec {
		padding: 50px 0;
	}
	.contact-sec-left {
		padding-right: 0;
	}
	.contact-sec-right {
		padding-left: 0;
	}
	.gallery-sec {
		padding: 50px 0;
	}
	.gallery-sec::before {
		background-size: cover;
		width: 100px;
		height: 140px;
	}
	.footer {
		overflow: hidden;
	}
	.footer::before {
		width: 100%;
		height: 180px;
	}
	.f-sec-2 {
		margin-left: 0;
	}
	.f-sec-3 {
		margin-left: 0;
		margin-right: 0;
	}
	.f-sec-4 {
		margin-left: 0;
	}
	.lower-footer {
		padding: 15px 0 60px;
		margin-top: 20px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 75px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 28px;
	}
	
}


@media only screen and (max-width : 320px) {}

/* mobile screen  iphone SE */
@media only screen and (min-width : 321px) and (max-width : 480px) {}

/* mobile screen rotate */
@media only screen and (min-width : 481px) and (max-width : 767px) {
	.info-sec .col-sm-12 {
		flex: 0 0 auto;
		width: 50%;
	}
}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
	.f-sec-3 {
		margin-left: 0px !important;
	}
	.f-sec-4 {
		margin-left: 0px !important;
	}
}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
	.f-sec-3 {
		margin-left: 0px !important;
	}
	.f-sec-4 {
		margin-left: 0px !important;
	}
}

/* iPhone XS Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {}

/* ipad screen  */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {}

/* ipad rotate */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.top-header {
        display: none;
    }

    .header-mid {
        display: none;
    }

    .header-right {
        display: none;
    }

    .animate {
        animation: none;
	}
	.logo-container img {
		width: 125px;
	}
    .banner-sec .container {
		width: auto;
	}
	.banner-sec {
		margin-top: 75px;
	}
	.banner-img img {
		width: 100%;
		height: 450px;
		object-fit: cover;
	}
	.banner-container .common-heading {
		font-size: 30px;
		line-height: 40px;
	}
	.banner-container {
		max-width: 350px;
	}

	.our-service-sec .col-lg-3 {
		width: 50%;
	}
	.about-sec-right {
		margin-left: 0;
	}
	.common-heading {
		font-size: 30px;
	}
	.f-sec-3 {
		margin-left: 40px;
	}
	.f-sec-4 {
		margin-left: 30px;
	}
}

/* iPad Pro 10.5 inch */
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {}

@media screen and (min-width: 1424px) {}

@media screen and (min-width: 1624px) {}

@media screen and (min-width: 1920px) {}

@media screen and (min-width: 2048px) {}

@media screen and (min-width: 2550px) {}



@media (min-width: 1025px) and (max-width: 1199px) {
	.header-btn-container {
		margin-left: -5px;
	}
		.f-sec-3 {
		margin-left: 40px;
	}
	.f-sec-4 {
		margin-left: 30px;
	}
}

