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

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

@font-face {
  font-family: 'Uncut Sans';
  src: url('../fonts/UncutSans-SmBd.eot');
  src: url('../fonts/UncutSans-SmBd.eot?#iefix') format('embedded-opentype'),
    url('../fonts/UncutSans-SmBd.woff2') format('woff2'),
    url('../fonts/UncutSans-SmBd.woff') format('woff'),
    url('../fonts/UncutSans-SmBd.ttf') format('truetype'),
    url('../fonts/UncutSans-SmBd.svg#UncutSans-SmBd') format('svg');
  font-weight: 600;
  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;
}

@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-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;
}



/* Reset css  */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

ul {
  list-style: none;
}

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

a {
  color: #000;
  text-decoration: none;
}

/* main header section css here  */
.main-header {
  background-color: #cecece29;
  transition: all 0.5s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

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

.pos-fixed {
  /* position: fixed; */
  background-color: #ffffff;
  box-shadow: 0 0 5px #e0e0e0;
}

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

  to {
    transform: translateY(0);
  }
}

.logo-container {
  padding: 10px 0;
}

.logo-container img {
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.main-header ul {
  align-items: center;
  position: relative;
}

.main-header ul li a {
  font-size: 17px;
  line-height: 35px;
  color: #282828;
  font-weight: 600;
  transition: all 0.5s ease;
  margin-right: 26px;
  /* padding-top: 42px; */
}

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

.link-active a {
  color: #e2395f !important;
  font-weight: 600;
  border-top: 4px solid #874794;
}

.header-right {
  padding: 0;
}

.header-btn-container {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.header-btn-1 {
  padding: 6px 15px;
  font-size: 15px;
  line-height: 35px;
  color: #181616;
  font-weight: 600;
  border-radius: 22px;
  background-color: #f1abab;
  border: 1px solid #f1abab;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.5s ease;
}

.header-btn-1:hover {
  border: 1px solid #abb3f1;
  background-color: #abb3f1;
}

.header-btn-2 {
  font-size: 16px;
  line-height: 35px;
  color: #000000;
  font-weight: 600;
  border-radius: 22px;
  /* background-color: #1c9ad5; */
  border: 2px solid #000000;
  padding: 6px 18px;
  transition: all 0.5s ease;
}

.header-btn-2:hover {
  color: #ffffff;
  border: 2px solid #1c9ad5;
  background-color: #1c9ad5;
}


/* banner css here  */
.banner {
  position: relative;
}

.banner::before {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 20%;
}

.banner-img {
  width: 100%;
  margin-top: 47px;
}

.ms-slide::after {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(2, 2, 2, 1) 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner .banner-main-container {
  position: absolute;
  /* top: 50%; */
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  z-index: 1;
}

.banner-text {
  font-size: 37px;
  line-height: 44px;
  color: #ffffff;
  font-weight: 700;
  font-family: "Uncut Sans";
  text-align: center;
}

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

.banner-btn-1 {
  padding: 7px 20px;
  font-size: 16px;
  line-height: 35px;
  color: #000000;
  font-weight: 500;
  font-family: "Poppins";
  border-radius: 22px;
  background-color: #f1abab;
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner a,
.banner a {
  transition: all 0.5s ease !important;
}

.banner-btn-1:hover {
  color: #ffffff;
  background-color: #1c9ad5;
}

.banner-btn-2 {
  padding: 7px 20px;
  font-size: 15px;
  line-height: 35px;
  color: #030303;
  font-weight: 500;
  border-radius: 22px;
  background-color: #abb3f1;
  transition: all 0.5s ease;
}

.banner-btn-2:hover {
  color: #ffffff;
  background-color: #1c9ad5;
}

.ms-slide-info {
  position: absolute !important;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -40%);
  max-width: 100%;
  z-index: 1;
}

.ms-skin-light-6 .ms-nav-next {
  background: url("../images/banner-right-arrow.png") no-repeat !important;
  border: 0 !important;
}

.ms-skin-light-6 .ms-nav-prev {
  background: url("../images/banner-right-arrow.png") no-repeat !important;
  border: 0 !important;
  rotate: 180deg;
}

.ms-skin-light-6.round-skin .ms-nav-next,
.ms-skin-light-6.round-skin .ms-nav-prev,
.ms-skin-light-6.round-skin .ms-slide .ms-slide-vpbtn,
.ms-skin-light-6.round-skin .ms-video-btn {
  border-radius: 0 !important;
}

.ms-skin-light-6 .ms-nav-next,
.ms-skin-light-6 .ms-nav-prev {
  height: 53px !important;
}


/* why choose us sec  */
.why-choose-us-sec {
  padding: 50px 0;
  position: relative;
}

.why-choose-us-sec::before {
  content: '';
  background: url("../images/banner-divider-img.png");
  background-size: cover;
  position: absolute;
  top: -41px;
  width: 100%;
  height: 45px;
}

.why-choose-us-heading {
  font-size: 33px;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
  color: #0c0b0b;
  font-weight: 700;
  font-family: "Uncut Sans";
  padding-bottom: 30px;
}

.why-choose-us-mt {
  margin-top: 30px;
}

.why-choose-us-card {
  min-height: 100%;
  padding-right: 25px;
  margin-right: 16px;
}

.why-choose-us-icon-container {
  border-radius: 35px;
  background-color: #abb3f1;
  width: fit-content;
  padding: 17px;
}

.why-choose-us-heding {
  font-size: 18px;
  line-height: 24px;
  padding: 10px 0;
  color: #000000;
  font-weight: 600;
  font-family: "Poppins";
}

.why-choose-us-text {
  font-size: 14px;
  line-height: 23px;
  color: #1f1f1f;
  font-weight: 400;
  font-family: "Poppins";
}

.why-choose-us-br {
  border-right: 1px solid #eeeeee;
}

/* about-us-and-serviec-sec css here */
.about-us-and-serviec-sec {
  padding: 50px 0;
  background: linear-gradient(0deg, #ffffff00 0%, #ffecec 110%);
}

.about-left-sub-heading {
  font-size: 17px;
  line-height: 27px;
  color: #abb3f1;
  font-weight: 600;
  font-family: "Uncut Sans";
}

.about-left-heading {
  font-size: 40px;
  line-height: 45px;
  color: #000000;
  font-weight: 700;
  font-family: "Uncut Sans";
}

.about-left-img {
  display: flex;
  justify-content: end;
  margin-top: 10px;
  padding-right: 30px;
}

.about-right-mt {
  margin-top: 10px;
}

.about-right-text {
  font-size: 17px;
  line-height: 27px;
  color: #000000;
  font-weight: 500;
  font-family: "Uncut Sans";
}

.about-right-text-link {
  margin-top: 15px;
}

.about-right-text-link a {
  font-size: 18px;
  line-height: 27px;
  text-decoration: underline;
  color: #000000;
  font-weight: 600;
  transition: all 0.5s ease;
  font-family: "Uncut Sans";
  text-underline-offset: 5px;
}

.about-right-text-link a:hover {
  color: #1c9ad5;
  text-underline-offset: 2px;
}

.our-service-whole-container {
  padding: 100px 0px 50px;
}

.our-service-container {
  border-radius: 15px;
  position: relative;
}

.our-service-img-container img {
  max-width: 100%;
  z-index: 0;
  border-radius: 15px;
}

.our-service-text-container {
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, #ffffff00 0%, #131313 80%);
  width: 100%;
  border-radius: 0 0 15px 15px;
  padding: 0px 20px 28px 20px;;
}

.our-service-arrow {
  position: absolute;
  width: fit-content !important;
  right: 20px;
  top: 20px;
  transition: all 0.5s ease;
}

.our-service-container:hover .our-service-arrow {

  background: #f1abab;
  border-radius: 50%;
}

.our-service-btn {
  font-size: 13px;
  line-height: 28px;
  text-transform: uppercase;
  color: #292929;
  font-weight: 600;
  font-family: "Uncut Sans";
  border-radius: 16px;
  background-color: #e9adb5;
  width: fit-content;
  padding: 0 12px;
  margin-bottom: 10px;
}

.our-service-text {
  font-size: 22px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 700;
  font-family: "Uncut Sans";
}

.first-owl-carousel .owl-nav {
  margin-top: 36px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.first-owl-carousel .owl-prev::before {
  content: '';
  background: url('../images/service-left-arrow.png') no-repeat;
  position: absolute;
  width: 16px;
  height: 30px;
}

.first-owl-carousel .owl-prev span {
  display: none;
}

.first-owl-carousel .owl-next::before {
  content: '';
  background: url('../images/service-right-arrow.png') no-repeat;
  position: absolute;
  width: 16px;
  height: 30px;
}

.first-owl-carousel .owl-next span {
  display: none;
}


/* news-letter-sec css here */
.news-letter-sec {
  background: url("../images/news-letter-bg.png") #abb3f1;
}

.news-letter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 53px 0;
}

.news-letter-heading {
  font-size: 30px;
  line-height: 39px;
  text-transform: uppercase;
  color: #131313;
  font-weight: 700;
  font-family: "Uncut Sans";
}

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

.news-letter-btn-1 {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 39px;
  color: #000000;
  font-weight: 700;
  font-family: "Uncut Sans";
  padding: 0 20px;
  border-radius: 22px;
  background-color: #f1abab;
  border: 2px solid #e9adb5;
  transition: all 0.5s ease;
}

.news-letter-btn-1:hover {
  color: #ffffff;
  border: 2px solid #1c9ad5;
  background-color: #1c9ad5;
}

.news-letter-btn-2 {
  font-size: 17px;
  line-height: 39px;
  color: #1b1818;
  font-weight: 600;
  font-family: "Uncut Sans";
  border-radius: 22px;
  padding: 0 20px;
  background-color: #abb3f1;
  border: 2px solid #1b1a1a;
  transition: all 0.5s ease;
}

.news-letter-btn-2:hover {
  color: #ffffff;
  border: 2px solid #1c9ad5;
  background-color: #1c9ad5;
}

.skilled-professionals-sec {
  padding: 90px 0;
}

.skilled-professionals-heading {
  font-size: 40px;
  line-height: 44px;
  color: #000000;
  font-weight: 700;
  font-family: "Uncut Sans";
}

.skilled-professionals-heading strong {
  color: #abb3f1;
}

.skilled-professionals-text {
  font-size: 17px;
  line-height: 28px;
  color: #000000;
  font-weight: 500;
  font-family: "Uncut Sans";
  margin-top: 20px;
  padding-right: 55px;
}

.skilled-professionals-btn {
  font-size: 16px;
  line-height: 28px;
  color: #181717;
  font-weight: 600;
  font-family: "Uncut Sans";
  border-radius: 24px;
  width: fit-content;
  padding: 10px 20px;
  margin-top: 15px;
  background-image: linear-gradient(89deg, #f1abab 0%, #abb3f1 100%);
  display: flex;
  align-items: center;
  gap: 15px;
}

.skilled-professionals-btn:hover {
  background-image: linear-gradient(89deg, #abb3f1 0%, #f1abab 100%);
}

.skilled-professionals-right {
  display: flex;
  gap: 10px;
}

.skilled-professionals-right-container img {
  border-radius: 10px;
}

.skilled-professionals-right-heading {
  font-size: 22px;
  line-height: 29px;
  color: #1b1b1b;
  font-weight: 700;
  font-family: "Uncut Sans";
  padding: 15px 0 10px;
}

.skilled-professionals-right-text {
  font-size: 16px;
  line-height: 24px;
  color: #454545;
  font-weight: 600;
  font-family: "Uncut Sans";
  padding-right: 15px;
}

/* testimonial-sec css here  */
.testimonial-sec {
  background-image: linear-gradient(0deg, #f1abab 0%, #abb3f1 100%);
  padding: 50px 0;
  position: relative;
}

.testimonial-sub-heading {
  font-size: 17px;
  line-height: 27px;
  color: #0e0d0d;
  font-weight: 600;
  font-family: "Uncut Sans";
}

.testimonial-heading {
  font-size: 40px;
  line-height: 47px;
  text-transform: uppercase;
  color: #070707;
  font-weight: 700;
  font-family: "Uncut Sans";
  padding: 10px 0 20px;
}

.testimonial-btn {
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 43px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  font-family: "Uncut Sans";
  border-radius: 25px;
  background-color: #1f1f1f;
  width: fit-content;
  padding: 0 25px;
  transition: all 0.5s ease;
}

.testimonial-btn:hover {
  background-color: #1c9ad5;
}

.testimonial-container {
  display: flex;
  /* align-items: center; */
  gap: 60px;
}

.testimonial-img-container img {
  border-radius: 10px;
  width: fit-content !important;
}
.testimonial-star {
  margin-top: 15px;
}
.testimonial-text {
  font-size: 18px;
  line-height: 28px;
  color: #141414;
  font-weight: 500;
  font-family: "Uncut Sans";
  padding: 30px 0;
}

.testimonial-star img {
  width: fit-content !important;
}

.testimonial-name {
  font-size: 18px;
  line-height: 28px;
  color: #100f0f;
  font-weight: 700;
  font-family: "Uncut Sans";
}

.testimonial-designation {
  font-size: 16px;
  line-height: 28px;
  color: #080707;
  font-weight: 500;
  font-family: "Uncut Sans";
}

/* .testimonial-line img {
  width: 60% !important;
} */
.testimonial-line {
    position: absolute;
    bottom: 32px;
}
.second-owl-carousel {
  position: relative;
}

.second-owl-carousel .owl-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 72px;
  bottom: 47px;
}

.second-owl-carousel .owl-prev::before {
  content: '';
  background: url('../images/left-triangle.png') no-repeat #abb3f1;
  position: absolute;
  width: 39px;
  height: 39px;
  border-radius: 19px;
  border: 1px solid #0f0f0f;
  background-position: center;
}

.second-owl-carousel .owl-prev span {
  display: none;
}

.second-owl-carousel .owl-next::before {
  content: '';
  background: url('../images/right-triangle.png') no-repeat #abb3f1;
  position: absolute;
  width: 39px;
  height: 39px;
  border-radius: 19px;
  border: 1px solid #0f0f0f;
  background-position: center;
}

.second-owl-carousel .owl-next span {
  display: none;
}



/* footer */
footer {
  background-color: #e5e8ff;
  padding: 60px 0 0;
}

.footer ul li,
.footer ul li a {
  transition: all 0.3s ease;
  font-size: 15px;
  color: #000000;
  font-weight: 500;
  font-family: "Uncut Sans";
}

.footer ul li a:hover {
  color: #4ebb81;
}

.footer-btn-1 {
  width: 230px;
  font-size: 17px;
  line-height: 16px;
  color: #161616;
  font-weight: 700;
  font-family: "Uncut Sans";
  border-radius: 27px;
  background-color: #e5e8ff;
  border: 1px solid #000000;
  padding: 10px 0;
  text-align: center;
  margin: 25px 0 15px;
  transition: all 0.5s ease;
}

.footer-btn-1 strong {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-btn-1:hover,
.footer-btn-2:hover {
  color: #ffffff;
  border: 1px solid #1c9ad5;
  background-color: #1c9ad5;
}

.footer-btn-2 {
  width: 230px;
  font-size: 17px;
  line-height: 16px;
  color: #161616;
  font-weight: 700;
  font-family: "Uncut Sans";
  border-radius: 27px;
  background-color: #e9adb5;
  border: 1px solid #e9adb5;
  padding: 10px 0;
  text-align: center;
  transition: all 0.5s ease;
}

.footer-btn-2 strong {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}


.footer-main-links-heading {
  font-size: 22px;
  line-height: 31px;
  color: #111112;
  font-weight: 700;
  font-family: "Uncut Sans";
  margin-bottom: 25px;
}

.service-ul-container {
	display: flex;
	justify-content: space-between;
}
.service-ul-container ul li{
	margin-bottom: 6px;
}
.contact-container {
  padding-left: 25px;
}

.contact-container .contact-container-img {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background-image: linear-gradient(0deg, #f1abab 0%, #abb3f1 100%);
}

.contact-container ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

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

.mid-footer {
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  font-weight: 500;
  font-family: "Uncut Sans";
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 70px;
  margin-top: 33px;
  transition: all 0.5s ease;
  border-top: 1px solid #d2d5ea;
}

.lower-footer {
  font-size: 14px;
  line-height: 26px;
  color: #000000;
  font-weight: 500;
  font-family: "Uncut Sans";
  text-align: center;
  padding: 25px 0;
  transition: all 0.5s ease;
  border-top: 1px solid #d2d5ea;
}

.lower-footer-padding {
  padding: 0;
}

.lower-footer a {
  color: #000000;
  transition: all 0.3s ease;
}

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

.space {
  display: inline-block;
  padding: 0 7px;
}

/* scroll to top  */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 1000;
}

.scroll-top img {
  background-image: linear-gradient(0deg, #f1abab 0%, #abb3f1 100%);
  padding: 16px 10px;
  border-radius: 50%;
}

.site-content,
.site-main .widecolumn {
  margin-left: 0px !important;
}

.page .entry-header,
.blog_page_header {
  background: url(../images/banner-img-1.jpg) #eee no-repeat !important;
  background-size: cover !important;
  max-width: 100% !important;
  padding: 250px 0 150px !important;
  margin: 0 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; */
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 20%;
}

.page .entry-header::after,
.blog_page_header::after {
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  left: 0;
  height: 60%;
}

.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_title {
    color: #131313;
    font-size: 26px;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.inner_title strong {
    color: #1c9ad5;
}

.inner_title::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #1c9ad5;
}

.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;
}

.inner_list_txt ul li {
    background: url("../images/list-img.png");
    background-position: top 4px 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: #1c9ad5;
    padding: 30px 20px;
    text-align: center;
}

.inner_bottm_sec .inner_title:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    height: 3px;
    background: #ffffff;
}

.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_title {
    color: #131313;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.core-box_title strong {
    color: #1c9ad5;
}

.core-box_title::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #1c9ad5;
}

.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;
    padding-bottom: 15px;
    position: relative;
}

.contact_page_heading::before {
    position: absolute;
    content: "";
    bottom: 8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: #1c9ad5;
}

.contact_page_heading strong {
    color: #1c9ad5;
}

.contact_page_info {
    position: relative;
    color: #000;
    margin-top: 25px;
    padding-left: 60px;
}

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

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

.contact-img {
    position: absolute;
    top: 3px;
    left: 0;
    background: #ffffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    padding-top: 10px;
}

.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 25px 0;
    border-radius: 5px;
}

/* thank you page   */
.thankyou-btn {
    border-radius: 27px;
    background: #abb3f1;
    transition: all 0.8s ease !important;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    padding: 15px 30px;
}
.thankyou-btn:hover{
	background-color: #f1abab;
}

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

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

.footer_btn1 {
    background: #f1abab;
    width: 50%;
    float: left;
    color: #000 !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_btn3 {
    background: #abb3f1;
    width: 50%;
    float: left;
    color: #000 !important;
    padding: 10px 0;
    text-decoration: none !important;
    text-transform: capitalize;
}

.common_paragraph {
    font-size: 18px;
    font-weight: 600;
    padding: 30px 0;
}

/* contact page  */
.contact-page input {
    width: 100%;
    padding: 12px 10px 12px 20px;
    border-radius: 7px;
    color: #515151;
    font-size: 16px;
    text-transform: capitalize;
	border: 1px solid #1c9ad5;
	outline: none;
}
.contact-page input:focus,.contact-page select:focus,.contact-page textarea:focus{
	border: 1px solid #f1abab;
}
.contact-page select {
    width: 100%;
    padding: 12px;
    border-radius: 7px;
    color: #515151;
    font-size: 16px;
    text-transform: capitalize;
	border: 1px solid #1c9ad5;
	outline: none;
}
.contact-page textarea {
    width: 100%;
    padding: 12px 12px 12px 20px;
    border-radius: 7px;
    color: #515151;
    font-size: 16px;
	height: 90px;
	border: 1px solid #1c9ad5;
}
.contact-page 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: #53bc81;
    padding: 13px 50px;
    transition: all 0.5s ease;
}
.contact-page input[type="submit"]:hover{
	background-color: #1e99d5;
}


/* inner form css here  */

.inner-form-container a {
	text-decoration: none !important;
}

.inner-form-page .inner_txt a {
	text-decoration: none;
}

.inner-form-label {
	font-size: 17px;
	font-weight: 500;
}

.inner-form-label p {
	margin-bottom: 8px;
}

.inner-form-input input {
	width: 100%;
	border: 1px solid #1d98db;
	border-radius: 10px;
	color: #2b2b2b;
	padding: 10px 20px;
}

.inner-form-textarea textarea {
	width: 100%;
	border: 1px solid #1d98db;
	border-radius: 10px;
	color: #2b2b2b;
	padding: 10px 20px;
	height: 100px;
}

.inner-form-container {
	margin-top: 30px;
	padding: 40px 30px 0;
	border-radius: 20px;
	box-shadow: 0 0 5px #dfdfdf;
}

.inner-form-heading p {
	margin-bottom: 0;
}

.inner-form-heading {
	color: #131313;
	font-size: 26px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 24px;
}

.inner-form-heading strong {
	color: #1d98db;
}

.inner-form-heading::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 12px;
	width: 30px;
	height: 3px;
	background: #1d98db;
}

.inner-form-radio .wpcf7-list-item {
	display: block;
	margin: 0;
}

.inner-form-text {
	font-size: 17px;
	text-align: center;
	font-weight: 600;
}
.inner-form-page input:focus,.inner-form-page select:focus,.inner-form-page textarea:focus{
	border: 1px solid #f1abab;
}
.inner-form-submit-btn {
	display: flex;
	justify-content: center;
}

.inner-form-submit-btn 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: #53bc81;
    padding: 13px 50px;
    transition: all 0.5s ease;
}

.inner-form-submit-btn input[type="submit"]:hover {
	background-color: #179cd4;
}

.inner-form-submit-btn .wpcf7-spinner {
	display: none;
}

.review-page .testimonial-text {
    font-size: 15px;
    line-height: 23px;
    color: #141414;
    font-weight: 500;
    font-family: "Uncut Sans";
    padding: 10px 0;
}
.review-page .testimonial-container {
    gap: 20px;
}
.review-page .testimonial-right-container {
    width: 90%;
}

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

    .back_btn {
        margin: 35px 0;
    }

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

.common-btn1 {
	background-color: #abb3f1;
	padding: 18px 25px !important;
	color: #000 !important;
	outline: 0;
	border: none;
	border-radius: 20px;
	transition: all 0.5s ease;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	font-weight: bold;
}
.common-btn1:hover{
	background-color: #f1abab;
}

/* media query */
@media only screen and (min-width : 320px) and (max-width : 1023px) {

}
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {

}

@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {

}
/* mobile screen  */
@media only screen and (min-width : 321px) and (max-width : 480px) {
	.header-mid {
		display: none;
	}
	.header-right {
		display: none;
	}
	.main-header {
		background-color: #ffffff;
	}
	.animate {
		animation: none;
	}
	.ms-view,.ms-slide {
		height: 440px !important;
	}
	.ms-slide-bgcont img {
		object-fit: cover !important;
	}
	.ms-slide .ms-slide-bgcont, .ms-slide .ms-slide-bgvideocont {
		height: 100% !important;
	}
	.banner::before {
		content: none;
	}
	.banner {
		margin-top: 118px;
	}
	.banner .banner-main-container {
		width: 100%;
	}
	.ms-skin-light-6 .ms-nav-next {
		right: 0px !important;
	}
	.ms-skin-light-6 .ms-nav-prev {
		left: 0px !important;
	}
	
	.why-choose-us-sec {
		padding: 25px 0;
	}
	.why-choose-us-br {
		border-right: 0;
	}
	.why-choose-us-heading {
		font-size: 30px;
	}
	.about-left-container {
		padding-bottom: 15px;
	}
	.about-left-heading {
		font-size: 30px;
	}
	
	.news-letter-container {
		flex-direction: column;
		padding: 53px 10px;
	}
	.news-letter-heading {
		font-size: 25px;
		text-align: center;
	}
	.news-letter-btn-1, .news-letter-btn-2 {
		padding: 0 15px;
	}
	
	.skilled-professionals-sec {
		padding: 50px 0;
	}
	.skilled-professionals-heading {
		font-size: 30px;
		line-height: 38px;
	}
	.skilled-professionals-text {
		padding-right: 0;
	}
	.skilled-professionals-btn {
		margin-bottom: 25px;
	}
	.skilled-professionals-right {
		flex-direction: column;
		gap: 40px;
	}
	.skilled-professionals-right-container img {
		width: 100%;
	}
	
	.testimonial-heading {
		font-size: 30px;
		line-height: 35px;
	}
	.testimonial-btn {
		margin-bottom: 25px;
	}
	.testimonial-container {
		gap: 20px;
		flex-direction: column;
	}
	.testimonial-text {
		font-size: 17px;
		padding: 15px 0;
	}
	.testimonial-img-container img {
		width: 100% !important;
	}
	.second-owl-carousel .owl-nav {
		right: 50px;
		bottom: 0;
	}
	.testimonial-line {
		display: none;
	}
	
	footer {
		padding: 50px 0 0;
	}
	.service-container {
		margin-top: 35px;
	}
	.footer-main-links-heading {
		margin-bottom: 15px;
	}
	.service-ul-container {
		flex-direction: column;
	}
	.contact-container {
		padding-left: 0;
		margin-top: 35px;
	}
	.mid-footer {
		flex-direction: column;
		text-align: center;
		padding: 30px 10px;
	}
	.lower-footer {
		padding: 25px 0 55px;
	}

	.page .entry-header:before, .blog_page_header:before {
		content: none;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 119px 0 50px !important;
	}
	.inner_title {
		margin-top: 25px;
	}
	.core-box-mt {
		margin-top: 48px;
	}
	.review-mt{
		margin-top: 3rem;
	}
	.contact_right {
		margin-top: 48px;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.scroll-top {
		bottom: 7rem;
	}
	.inner-form-container {
		padding: 25px 10px 0;
	}
}
/* mobile rotate screen  */
@media only screen and (min-width : 481px) and (max-width : 767px) {
	.header-mid {
		display: none;
	}
	.header-right {
		display: none;
	}
	.main-header {
		background-color: #ffffff;
	}
	.animate {
		animation: none;
	}
	.ms-view,.ms-slide {
		height: 440px !important;
	}
	.ms-slide-bgcont img {
		object-fit: cover !important;
	}
	.ms-slide .ms-slide-bgcont, .ms-slide .ms-slide-bgvideocont {
		height: 100% !important;
	}
	.banner::before {
		content: none;
	}
	.banner {
		margin-top: 118px;
	}
	.banner .banner-main-container {
		width: 100%;
	}
	.ms-skin-light-6 .ms-nav-next {
		right: 0px !important;
	}
	.ms-skin-light-6 .ms-nav-prev {
		left: 0px !important;
	}
	
	.why-choose-us-sec {
		padding: 25px 0;
	}
	.why-choose-us-br {
		border-right: 0;
	}
	.why-choose-us-heading {
		font-size: 30px;
	}
	.about-left-container {
		padding-bottom: 15px;
	}
	.about-left-heading {
		font-size: 30px;
	}
	.our-service-text {
		font-size: 14px;
		line-height: 18px;
	}
	.news-letter-container {
		flex-direction: column;
		padding: 53px 10px;
	}
	.news-letter-btn-container {
		justify-content: center;
	}
	.news-letter-heading {
		font-size: 25px;
		text-align: center;
	}
	.news-letter-btn-1, .news-letter-btn-2 {
		padding: 0 15px;
	}
	
	.skilled-professionals-sec {
		padding: 50px 0;
	}
	.skilled-professionals-heading {
		font-size: 30px;
		line-height: 38px;
	}
	.skilled-professionals-text {
		padding-right: 0;
	}
	.skilled-professionals-btn {
		margin-bottom: 25px;
	}
	.skilled-professionals-right {
		flex-direction: column;
		gap: 40px;
	}
	.skilled-professionals-right-container img {
		width: 100%;
	}
	
	.testimonial-heading {
		font-size: 30px;
		line-height: 35px;
	}
	.testimonial-btn {
		margin-bottom: 25px;
	}
	.testimonial-container {
		gap: 20px;
		flex-direction: column;
	}
	.testimonial-text {
		font-size: 17px;
		padding: 15px 0;
	}
	.testimonial-img-container img {
		width: 100% !important;
	}
	.second-owl-carousel .owl-nav {
		right: 50px;
		bottom: 0;
	}
	.testimonial-line {
		display: none;
	}
	
	footer {
		padding: 50px 0 0;
	}
	.service-container {
		margin-top: 35px;
	}
	.footer-main-links-heading {
		margin-bottom: 15px;
	}
	.service-ul-container {
		flex-direction: column;
	}
	.contact-container {
		padding-left: 0;
		margin-top: 35px;
	}
	.mid-footer {
		flex-direction: column;
		text-align: center;
		padding: 30px 10px;
	}
	.lower-footer {
		padding: 25px 0 55px;
	}

	.page .entry-header:before, .blog_page_header:before {
		content: none;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 119px 0 50px !important;
	}
	.inner_title {
		margin-top: 25px;
	}
	.core-box-mt {
		margin-top: 48px;
	}
	.review-mt{
		margin-top: 3rem;
	}
	.contact_right {
		margin-top: 48px;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.scroll-top {
		bottom: 6rem;
	}
		.inner-form-container {
		padding: 25px 10px 0;
	}
}
/* 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) {

}

/* iPhone 12 Pro */
@media only screen and (min-device-width: 390px) and (max-device-width: 844px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {

}

/* 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) {
	.header-mid {
		display: none;
	}
	.header-right {
		display: none;
	}
	.main-header {
		background-color: #ffffff;
	}
	.animate {
		animation: none;
	}
	.banner {
		margin-top: 100px;
	}
	.why-choose-us-heading {
		font-size: 30px;
	}
	.about-left-heading {
		font-size: 31px;
		line-height: 45px;
		color: #000000;
		font-weight: 700;
		font-family: "Uncut Sans";
	}
	.skilled-professionals-btn {
		margin-bottom: 25px;
	}
	.news-letter-btn-container {
		justify-content: center;
	}
	.testimonial-heading {
		font-size: 30px;
	}
	.testimonial-btn {
		margin-bottom: 25px;
	}
	.service-container {
		margin: 35px 0;
		padding-left: 0px !important;
	}
	.contact-container {
		padding-left: 0;
		margin-left: 0 !important;
	}
	.mid-footer {
		flex-direction: column;
		text-align: center;
		padding: 20px 0;
	}
	.lower-footer {
		padding: 20px 0 60px;
	}
	.review-mt{
		margin-top: 48px;
	}
	.scroll-top {
		bottom: 3rem;
	}
		.inner-form-container {
		padding: 25px 10px 0;
	}
}
/* iPhone 14 Pro Max */
@media only screen and (min-device-width: 430px) and (max-device-width: 932px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
	.header-mid {
		display: none;
	}
	.header-right {
		display: none;
	}
	.main-header {
		background-color: #ffffff;
	}
	.animate {
		animation: none;
	}
	.banner {
		margin-top: 100px;
	}
	.why-choose-us-heading {
		font-size: 30px;
	}
	.about-left-heading {
		font-size: 31px;
		line-height: 45px;
		color: #000000;
		font-weight: 700;
		font-family: "Uncut Sans";
	}
	.skilled-professionals-btn {
		margin-bottom: 25px;
	}
	.news-letter-btn-container {
		justify-content: center;
	}
	.testimonial-heading {
		font-size: 30px;
	}
	.testimonial-btn {
		margin-bottom: 25px;
	}
	.service-container {
		margin: 35px 0;
		padding-left: 0px !important;
	}
	.contact-container {
		padding-left: 0;
		margin-left: 0 !important;
	}
	.mid-footer {
		flex-direction: column;
		text-align: center;
		padding: 20px 0;
	}
	.lower-footer {
		padding: 20px 0 60px;
	}
	.review-mt{
		margin-top: 48px;
	}
	.scroll-top {
		bottom: 3rem;
	}
		.inner-form-container {
		padding: 25px 10px 0;
	}
}
/* tab screen  */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.header-mid {
		display: none;
	}
	.header-right {
		display: none;
	}
	.main-header {
		background-color: #ffffff;
	}
	.animate {
		animation: none;
	}
	.banner {
		margin-top: 100px;
	}
	.why-choose-us-heading {
		font-size: 30px;
	}
	.about-left-heading {
		font-size: 31px;
		line-height: 45px;
		color: #000000;
		font-weight: 700;
		font-family: "Uncut Sans";
	}
	.skilled-professionals-btn {
		margin-bottom: 25px;
	}
	.news-letter-btn-container {
		justify-content: center;
	}
	.testimonial-heading {
		font-size: 30px;
	}
	.testimonial-btn {
		margin-bottom: 25px;
	}
	.service-container {
		margin: 35px 0;
	}
	.contact-container {
		padding-left: 0;
	}
	.mid-footer {
		flex-direction: column;
		text-align: center;
		padding: 20px 0;
	}
	.lower-footer {
		padding: 20px 0 60px;
	}
	.review-mt{
		margin-top: 48px;
	}
	.scroll-top {
		bottom: 3rem;
	}
		.inner-form-container {
		padding: 25px 10px 0;
	}
}
/* tab rotate screen  */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.main-header ul li a {
		font-size: 13px;
	}
	.header-btn-2 {
		font-size: 15px;
		padding: 6px 10px;
	}
	.header-btn-1 {
		padding: 6px 10px;
	}
	.news-letter-heading {
		font-size: 27px;
	}
	.skilled-professionals-heading {
		font-size: 33px;
	}
	.testimonial-heading {
		font-size: 35px;
	}
	.testimonial-container {
		gap: 20px;
	}
	.testimonial-line {
		width: 150px;
	}
	.service-container {
		padding-left: 90px;
	}
	.service-ul-container {
		flex-direction: column;
	}
	.contact-container {
		padding-left: 0;
		margin-left: -45px;
	}
		.inner-form-container {
		padding: 25px 10px 0;
	}
}

/* iPad */
@media only screen and (min-width : 810px) and (max-width : 1080px) and (orientation : portrait) {

}
/* iPad rotate*/
@media only screen and (min-width : 810px) and (max-width : 1080px) and (orientation : landscape) {
.main-header ul li a {
		font-size: 13px;
	}
	.header-btn-2 {
		font-size: 15px;
		padding: 6px 10px;
	}
	.header-btn-1 {
		padding: 6px 10px;
	}
	.why-choose-us-heding {
		font-size: 15px;
	}
	.news-letter-heading {
		font-size: 27px;
	}
	.skilled-professionals-heading {
		font-size: 33px;
	}
	.testimonial-heading {
		font-size: 35px;
	}
	.testimonial-container {
		gap: 20px;
	}
	.testimonial-line {
		width: 150px;
	}
	.service-container {
		padding-left: 90px;
	}
	.service-ul-container {
		flex-direction: column;
	}
	.contact-container {
		padding-left: 0;
		margin-left: -45px;
	}
		.inner-form-container {
		padding: 25px 10px 0;
	}
}

/* iPad Air */
@media only screen and (min-width : 820px) and (max-width : 1180px) and (orientation : landscape) {
		.main-header ul li a {
		font-size: 13px;
	}
	.header-btn-2 {
		font-size: 15px;
		padding: 6px 10px;
	}
	.header-btn-1 {
		padding: 6px 10px;
	}
	.why-choose-us-heding {
		font-size: 15px;
	}
	.news-letter-heading {
		font-size: 27px;
	}
	.skilled-professionals-heading {
		font-size: 33px;
	}
	.testimonial-heading {
		font-size: 35px;
	}
	.testimonial-container {
		gap: 20px;
	}
	.testimonial-line {
		width: 150px;
	}
	.service-container {
		padding-left: 90px;
	}
	.service-ul-container {
		flex-direction: column;
	}
	.contact-container {
		padding-left: 0;
		margin-left: -45px;
	}
		.inner-form-container {
		padding: 25px 10px 0;
	}
}

/* iPad Pro */
@media only screen and (min-width : 1024px) and (max-width : 1366px) and (orientation : portrait) {
	.header-mid {
		display: block;
	}
	.header-right {
		display: block;
	}
	.main-header ul li a {
		font-size: 13px;
	}
	.header-btn-2 {
		font-size: 15px;
		padding: 6px 10px;
	}
	.header-btn-1 {
		padding: 6px 10px;
	}
		.news-letter-heading {
		font-size: 27px;
	}
	.skilled-professionals-heading {
		font-size: 33px;
	}
	.testimonial-heading {
		font-size: 35px;
	}
	.testimonial-container {
		gap: 20px;
	}
	.testimonial-line {
		width: 150px;
	}
	.service-container {
		padding-left: 90px;
		margin: 0;
	}
	.service-ul-container {
		flex-direction: column;
	}
	.lower-footer {
		padding: 25px 0;
	}
}

/* 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 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) {
	
} 