.scrollup {
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  position: fixed;
  bottom: 30px;
  right: 10px;
  display: none;
  z-index: 2222222;
  background-image: url(../images/icon_top.png);
  background-repeat: no-repeat;
  opacity: 0.95;
}
body {
  font-family: "DM Sans", sans-serif;
  padding-top: 90px;
  font-weight: normal;
  overflow-x: hidden;
}
.container {
  width: 1290px;
  margin: auto;
}
ul,
ol {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", sans-serif;
}
a,
a:hover {
  transition: all 0.3s;
  text-decoration: none;
}
.header {
  width: 100%;
  display: table;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #fff;
  z-index: 9999;
}

.header.fixed {
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.logo {
  float: left;
  padding-top: 10px;
}
.logo a {
  text-decoration: none;
  display: block;
  text-align: center;
}

.logo a img {
  height: 72px;
}

.header_right {
  clear: both;
  width: 100%;
  display: table;
}

.menu {
  float: right;
}

.menu ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  float: left;
}

.menu > ul > li {
  position: relative;
  display: inline-block;
  padding: 0px 10px;
}

.menu > ul > li > a {
  line-height: 90px;
  height: 90px;
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  transition: all 0.3s;
  text-transform: uppercase;
}
.menu > ul > li > a.active::before {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  content: "";
  width: 20px;
  height: 5px;
  background-color: #ea7309;
  border-radius: 3px;
}
.menu > ul > li > a i {
  font-size: 12px;
  position: relative;
  top: -2px;
  margin-left: 2px;
  color: #ea7309;
}
.menu > ul > li > a span {
  position: absolute;
  top: 23px;
  right: -3px;
  width: 5px;
  height: 5px;
  background-color: #000;
}
.menu > ul > li:hover > a img {
  transform: scaleY(-1);
}
.menu > ul > li:last-child > a img {
  height: 6px;
  top: 0;
  margin-right: 2px;
}
.menu > ul > li:last-child:hover > a img {
  transform: scaleY(1);
}
.menu > ul > li:last-child > a {
  background: #ea7309;
  color: #fff;
  padding: 0 20px 0 45px;
  height: 40px;
  line-height: 40px;
  font-family: "DM Sans", sans-serif;
  font-weight: normal;
  display: flex;
  gap: 3px;
  align-items: center;
  position: relative;
  top: -3px;
  text-transform: capitalize;
  border-radius: 30px;
}
.menu > ul > li:last-child span {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #fff;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu > ul > li:last-child span svg {
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.menu > ul > li:last-child:hover span svg {
  visibility: visible;
  opacity: 1;
}
.menu > ul > li:last-child:hover span {
  width: 30px;
  height: 30px;
  left: 8px;
  border-radius: 30px;
}

.menu > ul > li:last-child > a:hover {
  background: #0e293e;
  color: #fff;
}
/*
.menu > ul > li > a:before {
  transition: transform 0.3s ease-in-out;
  content: "";
  position: absolute;
  bottom: 25px;
  left: 0px;
  right: 0px;
  height: 5px;
  transform: scaleX(0);
  transform-origin: center center;
  background-color: #EA7309;
  opacity: 0.13;
}
.menu > ul > li:last-child > a:before {
  display: none;
}
.menu > ul > li:hover > a:before,
.menu > ul > li > a.active:before {
  transform: scaleX(100%);
} */
.menu > ul > li:hover > a,
.menu > ul > li > a.active {
  color: #ea7309;
}

.megamenu {
  position: absolute;
  left: 0px;
  top: 100%;
  background-color: #fff;
  width: 275px;
  z-index: 9999;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.55);
  transition: all 0.1s ease-in-out 0s;
  visibility: hidden;
  transform: translateY(30px);
  opacity: 0;
  border-top: 3px solid #ea7309;
}

.megamenu:before {
  position: absolute;
  left: 40px;
  top: -10px;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ea7309;
}

.menu > ul > li:hover .megamenu {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
}

.megamenu ul {
  list-style: none;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.megamenu ul li {
  float: left;
  display: inline-block;
  width: 100%;
  margin-right: 0px;
  padding: 0;
}

.megamenu ul li a {
  text-decoration: none;
  color: #000;
  padding: 10px 15px;
  line-height: 22px;
  display: block;
  font-size: 14px;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  font-weight: 600;
  text-transform: uppercase;
}

.megamenu ul li:last-child a {
  border: 0;
}

.megamenu ul li a:hover {
  background-color: #ddd;
  color: #000;
  transition: all 0.3s ease 0s;
}

/*----------banner-----------*/

.mtop1 {
  height: 90px;
}
.main_banner {
}
.main_banner_shape1 {
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: calc(50% - 125px);
  background: rgba(255, 255, 255, 1);
  height: 60px;
  z-index: 9;
  display: block;
}
.main_banner_shape1::before {
  content: "";
  position: absolute;
  right: -125px;
  bottom: 0px;
  width: 125px;
  height: 60px;
  z-index: 1;
  border-bottom: 60px solid rgb(255, 255, 255);
  border-right: 80px solid transparent;
  display: block;
}
.main_banner_shape2 {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -1px;
  width: calc(50% - 125px);
  background: rgba(255, 255, 255, 1);
  height: 60px;
  z-index: 9;
  display: block;
}
.main_banner_shape2::before {
  content: "";
  position: absolute;
  left: -125px;
  bottom: 0px;
  width: 125px;
  height: 60px;
  display: block;
  z-index: 1;
  border-bottom: 60px solid rgb(255, 255, 255);
  border-left: 80px solid transparent;
}

.carousel-inner .item img {
  width: 100%;
}

.banner_txt {
  top: 0 !important;
  left: 0%;
  color: #fff;
  position: absolute;
  text-align: left;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  visibility: visible !important;
  display: flex !important;
  align-items: center;
}
.banner_txt::before {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0px;
  width: 70%;
  height: 100%;
  /* z-index: -1; */
  display: block;
  background: linear-gradient(to right, #000b55, transparent);
  /* transform: skew(-15deg); */
  opacity: 0.7;
  /* animation: banneranim1 1.5s linear; */
}
/*
.banner_txt::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 0px;
  width: 27%;
  height: 100%;
  z-index: -2;
  display: block;
  background: linear-gradient(to right, transparent, #EA7309);
  transform: skew(-15deg);
  opacity: 0.32;
  animation: banneranim2 2s linear;
} */
@keyframes banneranim1 {
  0% {
    left: 100%;
  }
  100% {
    left: -18%;
  }
}
@keyframes banneranim2 {
  0% {
    left: 100%;
  }
  100% {
    left: 15%;
  }
}
.banner_txt_in {
  position: relative;
  width: 65%;
  display: table;
  visibility: hidden !important;
}
/* .banner_txt_in::before {
  position: absolute;
  left: -50px;
  bottom: -40px;
  content: "";
  width: 50%;
  height: 300px;
  background: linear-gradient(
    to right,
    rgba(233, 63, 111, 0.44) 0%,
    rgba(138, 71, 165, 0.44) 100%
  );
  border-radius: 30px;
  z-index: -1;
} */
.banner_hd,
.banner_cont,
.banner_r_more {
  width: 100%;
  float: left;
}

.banner_hd {
  color: #fff;
  font-size: 60px;
  line-height: 1.2;
  padding-bottom: 0px;
  position: relative;
  font-weight: 600;
  /* margin-top: -90px; */
}
.banner_cont {
  color: #fff;
  font-size: 21px;
  line-height: 1.4;
  font-weight: 500;
  margin: 10px 0 20px;
  display: block;
  padding: 0px;
  width: 60%;
}

.banner_r_more {
  clear: both;
}

.banner_r_more a {
  text-decoration: none;
  color: #ff7800;
  text-transform: capitalize;
  font-weight: 400;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  /* transition: all 0.3s ease 0s; */
  outline: 0px;
  font-size: 18px;
  position: relative;
  gap: 10px;
  align-items: center;
  padding-left: 15px;
  height: 30px;
  overflow: hidden;
}
.banner_r_more a span {
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.banner_r_more a:hover span {
  transform: translate3d(0, -100%, 0);
}
.banner_r_more a::before {
  width: 5px;
  height: 5px;
  background-color: #ff7800;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  content: "";
}
.banner_r_more a:hover {
  color: #fff;
}
.banner_r_more a::after {
  content: attr(data-text);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: none;
  transform-origin: 100% 50%;
  transform: translate3d(15px, 100%, 0);
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.banner_r_more a:hover::after {
  transform: translate3d(15px, 0, 0);
}

/*----------banner-----------*/

/*------section1---------*/
.section1 {
  clear: both;
  width: 100%;
  display: block;
  padding: 75px 0;
  /* background-color: #fff; */
  position: relative;
  /* background-image: url(../images/aboutbg.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80%; */
}
.effect {
  position: absolute;
  z-index: -1;
}
.effect1 {
  left: 200px;
  top: 50px;

  animation-name: animation1;
  animation-duration: 40s;
  animation-iteration-count: infinite;
  backface-visibility: hidden;
}
.effect2 {
  right: 200px;
  bottom: 50px;

  animation-name: animation2;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  backface-visibility: hidden;
}
.effect3 {
  right: 200px;
  bottom: 50px;

  animation-name: animation3;
  animation-duration: 55s;
  animation-iteration-count: infinite;
  backface-visibility: hidden;
}
.effect4 {
  right: 200px;
  bottom: 50px;

  animation-name: animation4;
  animation-duration: 55s;
  animation-iteration-count: infinite;
  backface-visibility: hidden;
}
.effect1 img {
  width: 75px;
}
.effect2 img {
  width: 100px;
}
@keyframes animation1 {
  0% {
    left: 20px;
    top: 160px;
  }
  50% {
    left: 200px;
    top: 200px;
  }
  75% {
    left: 200px;
    top: 50px;
  }
  100% {
    left: 20px;
    top: 160px;
  }
}
@keyframes animation2 {
  0% {
    right: 80px;
    bottom: 20px;
  }
  50% {
    right: 300px;
    bottom: 200px;
  }
  75% {
    right: 150px;
    bottom: 50px;
  }
  100% {
    right: 80px;
    bottom: 20px;
  }
}
@keyframes animation3 {
  0% {
    right: 5%;
    top: 0;
  }
  50% {
    right: 5%;
    top: 100px;
  }
  75% {
    right: 5%;
    top: 200px;
  }
  100% {
    right: 5%;
    top: 50px;
  }
}
@keyframes animation4 {
  0% {
    right: 5%;
    bottom: 0;
  }
  50% {
    right: 5%;
    bottom: 100px;
  }
  75% {
    right: 5%;
    bottom: 200px;
  }
  100% {
    right: 5%;
    bottom: 50px;
  }
}
.section1 .grid {
  display: grid;
  justify-content: center;
  text-align: center;
  /* grid-template-columns: 43fr 55fr;
  gap: 50px;
  align-items: center; */
}
.section1 .grid img {
  width: 100%;
}
.section1 h2,
h2.main_heading {
  color: #212937;
  font-size: 50px;
  line-height: 1.4;
  padding-bottom: 0px;
  position: relative;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
}
.section1 h2 i,
h2.main_heading i,
.section1 h2 em,
h2.main_heading em {
  font-style: normal;
}
.section1 p,
p {
  width: 100%;
  color: #a4a4a4;
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.section1 p {
  text-align: center;
  padding: 0 15%;
}
.main_btn {
}
.main_btn a {
  position: relative;
  color: #fff;
  background-color: #ea7309;
  padding: 10px 20px 10px 45px;
  text-transform: capitalize;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 30px;
  transition: all 0.3s;
}
.main_btn a span {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #fff;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_btn a span svg {
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.main_btn a:hover span svg {
  visibility: visible;
  opacity: 1;
}
.main_btn a:hover span {
  width: 30px;
  height: 30px;
  left: 8px;
  border-radius: 30px;
}
.main_btn a:hover {
  background-color: #0e293e;
}
/*-------section1---------*/

/*-------section2---------*/
.section2 {
  width: 100%;
  display: block;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background-image: url(../images/servbg.svg);
  background-repeat: no-repeat;
  background-position: right 0;
  background-size: 95%;
  margin-top: 50px;
}
.section2in {
  position: relative;
  width: 100%;
  z-index: 9;
  padding-left: 100px;
}
.section2in h2 {
  color: #fff;
  font-size: 55px;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 0px;
  padding-left: 50px;
}
.servicessec a {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  display: block;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.161);
}

.servicessec a img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.servicessec a h4 {
  color: #181818;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
  transition: all 0.3s;
}
.servicessec a p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  font-weight: 500;
  margin-bottom: 15px;
  height: 100px;
  overflow: hidden;
}
.servicessec a span {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 10px;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  transition: all 0.3s;
  padding-left: 15px;
  position: relative;
  overflow: hidden;
  height: 30px;
}
.servicessec a:hover h4 {
  color: #ea7309;
}
.servicessec a span::before {
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  content: "";
}
.servicessec a span::after {
  content: attr(data-text);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: none;
  transform-origin: 100% 50%;
  transform: translate3d(15px, 100%, 0);
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.servicessec a span:hover::after {
  transform: translate3d(15px, 0, 0);
}
.servicessec a span i {
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
  font-style: normal;
  height: 30px;
}
.servicessec a span:hover i {
  transform: translate3d(0, -100%, 0);
}

.section2in .owl-stage {
  left: -90px;
  padding: 30px 20px;
}
.section2in .owl-theme .owl-nav {
  width: auto;
}
.section2in .owl-theme .owl-nav [class*="owl-"] {
  width: 50px;
  height: 50px;
}
.section2in .owl-nav {
  top: 78% !important;
  width: auto;
  left: -40%;
}
.section2in .owl-dots {
  top: 85% !important;
  width: auto;
  left: -49%;
  display: none;
}
/*-------section2---------*/

/*hm_business*/
.hm_business {
  padding: 60px 0;
  width: 100%;
  display: block;
  background-image: url(../images/bg-light-gradient1.svg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-position: center center;
}
.hm_business_top {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e2e2e2;
}
.hm_business .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.section2_box {
  display: flex;
  gap: 20px;
  text-decoration: none;
}
.section2_box span {
}
.section2_box span img {
  height: 60px;
}
.section2_box h3 {
  font-weight: 600;
  margin: 10px 0 10px;
  font-size: 21px;
}
.section2_box p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a4a;
  width: 80%;
}
/*hm_business*/

/*section3*/
.section3 {
  padding: 50px 0;
  background-color: #fff;
  position: relative;
  width: 100%;
  display: block;
}
.section3 h2 {
  text-align: center;
}

.section3 ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px 20px 0;
}
.section3 ul li img {
  max-width: 100%;
  max-height: 80px;
}
.section3 .owl-dots {
  bottom: -50px;
  text-align: left;
  display: none;
}
.section3 .owl-dots .owl-dot span {
  background-color: #0e293e;
  opacity: 0.11;
}
.section3 .owl-dots .owl-dot.active span,
.section3 .owl-dots .owl-dot:hover span {
  background-color: #0e293e;
  transform: scale(1.4);
  opacity: 0.5;
}
/*section3*/

.multi_tabs1 {
  clear: both;
  width: 100%;
  display: inline-block;
  padding: 100px 120px;
  position: relative;
  z-index: 1;
}
ul.tabs1 {
  margin: 0;
  list-style: none;
  position: relative;
  width: 100%;
  text-align: left;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 15px;
}
ul.tabs1 li {
  cursor: pointer;
  padding: 15px 20px;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  position: relative;
  margin-bottom: 15px;
  background-color: #01635f;
  text-transform: capitalize;
  text-align: center;
  border-radius: 50px;
  border: 1px solid #fff;
}
ul.tabs1 li a {
  text-decoration: none;
  color: #fff;
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
ul.tabs1 li a span {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
}
ul.tabs1 li span img {
  height: 40px;
  margin-right: 10px;
}
ul.tabs1 li:hover {
  color: #fff;
}
ul.tabs1 li.active {
  background-color: #ea7309;
  border-color: #ea7309;
}
.tab_container1 {
  border: 0px;
  border-top: none;
  float: right;
  width: 100%;
  padding-top: 30px;
}
.tab_img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.tab_img::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #003533;
  opacity: 0.77;
}
.tab_img img {
  width: 100%;
  display: block;
}
.tab_container1 h3 {
  font-size: 46px;
  color: #003c53;
  margin-top: 0;
  position: relative;
  font-weight: 500;
  margin-bottom: 20px;
}
.tab_container1 p {
  color: #fff;
  width: 38%;
  line-height: 2;
}
.tab_container1 .main_btn a {
  color: #fff;
}
.tab_container1 .main_btn a span {
  background-color: #fff;
}
.tab_container1 .main_btn a span::before {
  background-color: #fff;
}
.tab_container1 .main_btn a:hover {
  color: #ff5700;
}
.tab_container1 .main_btn a:hover span {
  background-color: #ff5700;
}
.tab_container1 .main_btn a:hover span::before {
  background-color: #ff5700;
}
.multi_tabs1 h2 {
  color: #fff;
  margin-bottom: 30px;
}
/*section4*/
.section4 {
  width: 100%;
  display: block;
  padding: 60px 0;
  background-image: url(../images/3d.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.section4 h2 {
  text-align: center;
}
.section4 .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
a.latest_blog {
  position: relative;
  width: 100%;
  display: block;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  background-color: #f7f7f7;
  text-decoration: none;
  transition: all 0.6s;
  overflow: hidden;
}
a.latest_blog img {
  width: 100%;
  display: block;
  border-bottom: 4px solid #ea7309;
  height: 180px;
  object-fit: cover;
  object-position: center center;
}
a.latest_blog h3,
.lb_content h4 {
  color: #000;
  font-size: 21px;
  font-weight: 500;
  padding: 15px;
  margin: 0;
  line-height: 1.4;
}
.lb_content h4 {
  padding: 0;
  font-size: 18px;
  margin-bottom: 10px;
}
a.latest_blog .lb_content {
  padding: 15px 30px;
  background-color: #f7f7f7;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
}
a.latest_blog:hover .lb_content {
  top: 0;
}
a.latest_blog .lb_content span {
  color: #ea7309;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
a.latest_blog .lb_content span i {
  width: 40px;
  height: 1px;
  background-color: #ea7309;
  position: relative;
  display: inline-block;
}
a.latest_blog .lb_content span i::before {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #ea7309;
  content: "";
}
/*section4*/

/*section5*/
.section5 {
  padding: 100px 0;
  position: relative;
  width: 100%;
  display: block;
  background-image: url(../images/sec5bg.jpg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 60%;
}
.section5 h2 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.section5 h2::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150%;
  height: 2px;
  content: "";
  background-color: #ea7309;
}
.section5 a {
  background-color: #ea7309;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.section5 a:hover {
  background-color: #01635f;
}
/*section5*/

/*footer*/
img.footerimg {
  width: 100%;
  display: block;
}
.footer {
  padding: 120px 0 20px;
  display: block;
  /* background-color: #0a3944; */
  position: relative;
  width: 100%;
  background-image: url(../images/ftimg.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 109%;
  margin-top: -180px;
}
.footer_top {
}
a.footer_logo {
}
a.footer_logo img {
  height: 80px;
}
.footer_top_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}
.footer_top_row .flex {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer_top_row span {
  color: #fff;
  font-size: 15px;
  display: flex;
  gap: 15px;
}
.footer_top_row span b {
  font-weight: 500;
}
.footer_right {
  position: relative;
  padding: 50px 0 0 0;
  width: 100%;
}
.footer_right_in {
  display: grid;
  grid-template-columns: 26fr 37fr 37fr;
  gap: 20px;
}
.footer_right_in h3 {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  font-size: 19px;
  margin-top: 0;
}
.footer_right_in ul li a {
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  margin-bottom: 10px;
  display: block;
  opacity: 0.75;
  text-decoration: underline;
  position: relative;
  padding-left: 15px;
  background-image: url(../images/arright.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 5px;
}
ul.footer_ul2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.footer_right_in ul li a:hover {
  opacity: 1;
}
.footer_right_in h4 {
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
.footer_right_in p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}
.footer_right_in p a {
  color: #ea7309;
  text-decoration: none;
  display: block;
  clear: both;
}
.footer_in_last {
  display: flex;
  justify-content: end;
}
.footer_socical {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  position: relative;
}
.footer_socical a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}
.footer_socical a img {
  /* filter: brightness(0) invert(1); */
}
.footer_socical a:hover {
  /* background-color: rgba(255, 255, 255, 0.75); */
}
.footer_socical a img {
  height: 15px;
}
.copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  text-align: right;
  font-weight: 300;
  line-height: 1.6;
  clear: both;
  text-align: center;
  width: 100%;
  padding-top: 15px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}
.ft_add {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #fff;
}
.ft_add img {
  max-height: 22px;
  max-width: 22px;
  position: absolute;
  left: 0;
  top: 2px;
  width: auto;
}
.ft_add a {
  text-decoration: none;
  color: #fff;
}
.ft_add h4 {
  font-weight: 600;
  font-size: 14px;
}
.ft_add p {
  font-weight: 500;
}
/*footer*/

/*innerbanner*/
.inner_banner {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  background-color: #000;
}
/* .inner_banner::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    z-index: 1;
    background-color: #fff;
    opacity: 0.1
} */
.inner_banner svg.n_-rifkq7g0kj79ubfl0zua_i {
  opacity: 0.35;
}

.inner_banner img {
  width: 100%;
  /* opacity: 0.4; */
  display: block;
}
img.innerbannerf {
  position: absolute;
  left: 0px;
  top: 20%;
  width: 350px;
  opacity: 0.5;
  z-index: 9;
}
.innertxt1 {
  position: absolute;
  width: 100%;
  text-align: left;
  top: 50%;
  left: 0%;
  padding: 10px 35px;
  z-index: 9;
}
.searchbxtxt {
  top: 42%;
}
.innertxt1 ul {
  list-style: none;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 20px;
  padding-left: 0px;
}
.innertxt1 ul li {
  display: inline-block;
  position: relative;
  padding-right: 25px;
  font-weight: 300;
  margin-bottom: 0px;
  color: #6cbbff;
  font-size: 18px;
}
.innertxt1 ul li:last-child {
  padding-right: 0px;
}
.innertxt1 ul li:after {
  content: "/";
  color: #fff;
  position: absolute;
  font-size: 14px;
  right: 8px;
  top: 5px;
}
.innertxt1 ul li:last-child:after {
  display: none;
}
.innertxt1 ul li a {
  color: #fff;
  text-decoration: none;
}
.inner_banner h1 {
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px; /* border-bottom: 2px solid #e97051; */
  display: inline;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2) !important;
}
.inner_banner h1 span {
  color: #fff;
}
.inner_banner h1 p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 5px;
  letter-spacing: 2px;
  color: #fff;
}

.innertxt1 {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 0%;
  padding: 10px 35px;
  z-index: 9;
}
.searchbxtxt {
  top: 42%;
}
.searchbox {
  width: 100%;
  margin-top: 30px;
}
.searchbox span {
  font-size: 12px;
  color: #fff;
  margin: 0px 0px 10px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: table;
}
.banner_fields {
  width: 40%;
  height: 50px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 2px;
  padding: 15px;
  float: left;
  border: none;
  margin: 0px 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.formsubmit {
  margin: 0px 6px;
  width: 15%;
  height: 100%;
  color: #fff;
  border-radius: 2px;
  padding: 15px 20px 15px 16px;
  float: right;
  text-align: right;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  background: url(../images/search.png) no-repeat right #e76f52;
  transition: ease all 0.5s;
  background-position: 11% 17px;
}
.formsubmit:hover {
  background: url(../images/search.png) no-repeat right #f4a363;
  transition: ease all 0.5s;
  background-position: 11% 17px;
}
.searchbox h3 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 2px solid #e97051;
  display: inline;
}
.searchbox form {
  display: table;
  margin-bottom: 20px;
  width: 100%;
}
/*innerbanner*/

.menu2 {
  position: fixed;
  right: 30px;
  top: 50px;
  z-index: 9;
  display: none;
}
.menu2 .menuicon1 {
  position: relative;
  z-index: 999;
  padding: 0 15px;
  height: 42px;
  line-height: 42px;
  border-radius: 20px 0 0 20px;
  text-decoration: none;
  color: #2b2a29;
  display: block;
  font-size: 16px;
  display: block;
  outline: 0px;
  transition: all 0.3s;
}
.sidemenu span {
  float: left;
}
.bars-wrap {
  display: inline-block;
  margin-left: 15px;
  position: relative;
  overflow: visible;
  top: 3px;
}
.icon-bar {
  transition: all 0.4s ease;
  width: 26px;
  background: #ea7309;
  height: 2px;
  position: relative;
  top: 8px;
  transition: width 0.2s ease-out;
  clear: both;
  margin-bottom: 7px;
}
#header.fixed1 .icon-bar {
  background: #53c1ff;
}
/* .icon-bar:first-child {width:65%;}
.icon-bar:last-child {width:85%;} */

.menu2 .menuicon1:hover .icon-bar:first-child,
.menu2 .menuicon1:hover .icon-bar:last-child {
  width: 100%;
}

.cart_open {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999999999;
  display: none;
}
.cartbg1 {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.cart_bx1 {
  width: 90%;
  background-color: #0e293e;
  height: 100%;
  right: -100%;
  transition: ease all 0.4s;
  top: 0px;
  position: fixed;
  display: block;
  box-shadow: 0 10px 50px rgba(1, 2, 2, 0.15);
  z-index: 99999;
  overflow-y: auto;
  background-image: url("../images/hpat.png");
}
.left1 {
  right: 2100px;
  z-index: 9999999;
  transition: ease all 0.8s;
}
.menu2 {
  right: 2100px;
  position: fixed;
  transition: ease all 0.6s;
  top: 0px;
  z-index: 999999;
}
.menu2:before {
  border-top: 100px solid rgba(255, 255, 255, 1);
}
.cart_bx1 ul {
  list-style: none;
  width: 100%;
  margin: 0px;
  padding: 0px;
  height: 100%;
  vertical-align: middle;
  padding-top: 10px;
  text-align: right;
}
.cart_bx1 ul li {
  float: none;
  width: 100%;
  display: block;
  clear: both;
}
.cart_bx1 ul li a {
  text-decoration: none;
  color: #2b2a29;
  font-weight: 400;
  font-size: 16px;
  display: block;
  padding: 10px 15px;
  text-transform: capitalize;
  transition: all 0.3s ease 0s;
  text-align: center;
  outline: none;
}
.cart_bx1 ul li a:hover,
.cart_bx1 ul li a.active {
  color: #2e3192;
}

a.closebtn {
  display: block;
  height: 42px;
  float: right;
  text-decoration: none;
  line-height: 42px;
  color: #fff;
  font-size: 16px;
  padding: 10px 25px;
  margin-bottom: 20px;
  /* background-image: url('../images/hpat.png'); */
}
a.closebtn img {
  width: 26px;
}
a.mobilecont {
  padding: 12px 28px 10px;
  margin-left: 20px;
  border: 1px solid #ea7309;
  background-color: #ea7309;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 35px;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  display: inline-block;
}
.mobno {
  display: block;
}
.main_banner {
  /* background-color: #000; */
  width: 100%;
  overflow: hidden;
}
.tab_img {
  width: 100%;
  height: 100%;
}

.tab_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.home_solutions {
  padding: 0 0 50px;
  position: relative;
  overflow: hidden;
  /* background-image: url(../images/solbg.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 90%; */
}
.home_solutions h2 {
  text-align: center;
  margin-top: 0;
}
.home_solutions ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 9;
  padding: 0 50px;
}
.home_solutions ul li {
}
.home_solutions ul li a {
  display: grid;
  grid-template-columns: 175px auto;
  align-items: center;
  gap: 30px;
  position: relative;
  padding: 20px;
  outline: 0;
  position: relative;
}
.home_solutions ul li a::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(to bottom, #016683, #3eb5d7);
  opacity: 0.38;
  border-radius: 150px;
  transition: all 0.3s;
}
.home_solutions ul li a:hover::before {
  box-shadow: 0px 2px 20px 20px rgba(0, 0, 0, 0.15);
}
.home_solutions ul li:nth-child(2) a::before {
  background: linear-gradient(to bottom, #ffb80e, #fee19d);
}
.home_solutions ul li:nth-child(3) a::before {
  background: linear-gradient(to bottom, #01a9b8, #90d3da);
}
.home_solutions ul li:nth-child(4) a::before {
  background: linear-gradient(to bottom, #ff8d2a, #fbcda5);
}
.home_solutions ul li:nth-child(5) a::before {
  background: linear-gradient(to bottom, #14c184, #95dbc3);
}
.home_solutions ul li:nth-child(6) a::before {
  background: linear-gradient(to bottom, #f24159, #f1a9b3);
}

.home_solutions ul li a .img1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 175px;
  border-radius: 100%;
  background-color: #fff;
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
}
.home_solutions ul li a .img1 img {
  height: 80px;
  width: auto;
  transition: all 0.3s;
}
.home_solutions ul li a:hover .img1 img {
  transform: rotate(360deg);
}
.home_solutions ul li a h3 {
  color: #181818;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
}
.home_solutions ul li a p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.6;
  width: 95%;
  font-weight: 500;
  margin-bottom: 15px;
}
.home_solutions ul li a span {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 10px;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  transition: all 0.3s;
  padding-left: 15px;
  position: relative;
  overflow: hidden;
  height: 30px;
}
.home_solutions ul li a:hover h4 {
  color: #ea7309;
}
.home_solutions ul li a span::before {
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  content: "";
}
.home_solutions ul li a span::after {
  content: attr(data-text);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: none;
  transform-origin: 100% 50%;
  transform: translate3d(15px, 100%, 0);
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.home_solutions ul li a span:hover::after {
  transform: translate3d(15px, 0, 0);
}
.home_solutions ul li a span i {
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
  font-style: normal;
  height: 30px;
}
.home_solutions ul li a span:hover i {
  transform: translate3d(0, -100%, 0);
}
/* ===========================
   ====== Media Queries ====== 
   =========================== */
/*------smallphones----------------*/
@media only screen and (min-width: 240px) and (max-width: 960px) {
  body {
    overflow-x: hidden;
    padding-top: 55px;
  }
  .section1,
  .section2,
  .section3,
  .section4,
  .section5,
  .footer {
    overflow: hidden;
  }
  .container {
    width: 100%;
    display: block;
    max-width: 100%;
    min-width: 100%;
  }

  .menubar {
    display: none;
  }
  .top_social,
  .top_social ul {
    display: none;
  }
  .menu2 {
    display: block;
    top: 22px;
    right: 10px;
    z-index: 99999999999999;
  }
  .menu {
    display: none;
  }

  .banner_hd {
    font-size: 30px;
    margin-bottom: 0px;
    padding-bottom: 10px;
    margin: 0;
  }
  .banner_hd br {
    display: none;
  }
  .banner_cont {
    font-size: 18px;
  }
  .banner_txt {
    /* padding: 0 15%; */
  }
  .logo a img {
    padding: 5px 0 5px 10px;
  }
  .carousel-inner .item picture img {
    height: 400px;
    object-fit: cover;
    object-position: center center;
  }
  .banner_txt_in {
    width: 100%;
    padding: 0 0 0 50px;
  }
  .pavcontentslider .carousel-indicators {
    display: none;
  }
  .section1,
  .section2 {
    padding: 50px 20px;
  }
  .section1 h2,
  .section2in h2,
  .section3 h2 {
    font-size: 21px;
  }
  .section1 h3,
  .section2in h3 {
    font-size: 16px;
    line-height: 28px;
    width: 100%;
  }
  .section1_btm ul,
  .section1_btm,
  .section4,
  .section4 .sec4_right ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .section1_btm ul li p,
  .sec4_left_in p {
    font-size: 16px;
  }
  .section2in {
    padding: 0;
  }
  .section2in h2 {
    margin-top: 0;
  }
  .section2in h3 {
    width: 100%;
  }
  .section2in .owl-stage {
    left: 0;
  }
  .section2in .owl-dots {
    left: 0;
    width: 100%;
    text-align: center;
    top: auto !important;
    bottom: -30px;
  }
  .section4 .sec4_left {
    display: block;
    width: 100%;
    padding: 50px 25px;
  }
  .sec4_left_in h2,
  .section4 .sec4_right ul li h4,
  .section5 h2 {
    font-size: 24px;
  }
  .section5 {
    background-position: left;
  }
  .footer {
    padding: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .footer_right_in {
    grid-template-columns: repeat(1, 1fr);
  }
  .copy {
    font-size: 12px;
  }
  .servicessec {
    grid-template-columns: repeat(1, 1fr);
  }
  .servicessec .servicessec_card:nth-child(2),
  .servicessec .servicessec_card:nth-child(6),
  .servicessec .servicessec_card:nth-child(4),
  .servicessec .servicessec_card:nth-child(8) {
    position: relative;
    top: auto;
  }

  .home_solutions h2,
  .section4 h2 {
    font-size: 21px;
  }
  .accordion {
    padding: 40px 0 0;
  }
  .accordion .link {
    font-size: 18px;
  }
  .section3,
  .section4 {
    margin-top: auto;
    padding: 40px 20px;
  }
  .section3 {
    padding-bottom: 60px;
  }
  .section4 .sec4_right ul li {
    padding: 20px;
  }
  .copy {
    position: relative;
    bottom: auto;
    margin-top: 20px;
    text-align: center;
  }
  .footer_right {
    padding-bottom: 0;
  }
  .home_careers {
    margin-top: 0;
    padding: 40px 10px;
  }
  .home_careers_shapes1,
  .home_careers_shapes2 {
    width: 100%;
    clip-path: fill-box;
  }
  .home_careers_info_left,
  .home_careers_info_right {
    width: 100%;
    clear: both;
  }
  .home_careers_info_left {
    top: auto;
    background-color: #06b0f1;
    padding: 20px;
    margin: auto;
  }
  .home_careers_info_right {
    padding-left: 0;
    padding: 20px;
  }
  .home_careers_info {
    padding: 0;
  }
  .home_careers_shapes1 {
    height: auto;
  }
  .home_careers h2 {
    font-size: 24px;
  }
  .home_careers p {
    font-size: 16px;
  }
  .footer_socical {
    justify-content: flex-start;
  }

  .main_banner {
    background-color: #000;
    width: 100%;
    overflow: hidden;
  }
  .carousel-inner .item img {
    height: 80vh;
    object-fit: cover;
    object-position: 80% center;
    /* opacity: 0.75; */
  }
  .banner_hd i,
  .section1 h2 i,
  h2.main_heading i,
  .section1 h2 em,
  h2.main_heading em {
    font-size: 32px;
  }
  .banner_cont,
  .section1 p {
    width: 100%;
  }
  .section1 .grid,
  .hm_business_top,
  .hm_business .grid,
  .section2 .grid,
  .section4 .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .hm_business,
  .section5 {
    padding: 40px 20px;
    background-size: cover;
  }
  .section1 h2,
  h2.main_heading {
    font-size: 32px;
  }
  .hm_business_top {
    gap: 20px;
  }
  a.latest_blog h3,
  .lb_content h4 {
    font-size: 18px;
  }
  .section5 {
    padding-left: 50px;
  }
  .section5 h2 {
    color: #fff;
  }
  .logo {
    padding-top: 10px;
  }

  .pavcontentslider .carousel-indicators {
  }
  .pavcontentslider .carousel-indicators li {
    margin-right: 5px;
    font-size: 12px;
  }
  .multi_tabs1 {
    padding: 40px 20px;
  }
  ul.tabs1 {
    display: flex;
    flex-wrap: wrap;
  }
  ul.tabs1 li {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 0;
  }
  .tab_img {
    width: 100%;
    height: 100%;
  }
  .tab_container1 p {
    width: 100%;
  }
  .tab_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .home_solutions ul {
    padding: 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .home_solutions {
    padding: 0 20px;
  }
  .home_solutions ul li a {
    grid-template-columns: repeat(1, 1fr);
    border-radius: 30px;
  }
  .home_solutions ul li a::before {
    border-radius: 30px;
  }
  .home_solutions ul li a .img1 {
    width: 100px;
    height: 100px;
  }
  .home_solutions ul li a .img1 img {
    width: 60px;
  }
  .section2 {
    background-image: none;
    background-color: #0e293e;
    border-radius: 50px 0 100px;
  }
  .section2in h2 {
    font-size: 32px;
  }
  .section2in .owl-nav {
    left: 40px;
    top: auto !important;
    bottom: -40px;
  }
  .section2in h2 {
    padding-left: 0;
  }
  .section1 p {
    padding: 0;
    font-size: 18px;
  }
  #pavcontentslider8 .carousel-indicators {
    left: 10px !important;
  }
  img.footerimg {
    height: 300px;
    object-fit: cover;
    object-position: center center;
  }
  .footer {
    background-image: none;
    background-color: #0e293e;
    border-top: 4px solid #ea7309;
    margin-top: 0;
    padding: 40px 20px;
  }
  a.footer_logo img {
    height: 50px;
  }
  .footer_top_row .flex,
  .footer_top_row {
    flex-direction: column;
    gap: 20px;
    justify-content: baseline;
    align-items: baseline;
  }
  .effect1 img,
  .effect3 img,
  .effect4 img {
    width: 45px;
    opacity: 0.75;
  }
  .effect2 img {
    width: 65px;
    opacity: 0.75;
  }
}
/*------iphone----------------*/
@media only screen and (min-width: 320px) and (max-width: 490px) {
}
/*------smalltablet----------------*/
@media only screen and (min-width: 490px) and (max-width: 768px) {
}
/*--------iPad - Portrait--------------*/
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .banner_txt {
    /* top: 35% !important; */
  }
  .banner_hd {
    font-size: 48px;
    line-height: 52px;
  }
  .box2 ul li {
    float: left;
    display: inline-block;
    clear: none;
    width: 50%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1240px) {
  .container {
    width: 100%;
    display: block;
    max-width: 100%;
    min-width: 100%;
  }
  .menu > ul > li {
    margin: 0;
  }
  .menu > ul > li > a {
    font-size: 14px;
  }

  .banner_hd h2 {
    font-size: 42px;
  }
  .menu ul {
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1140px) {
  .container {
    width: 100%;
    display: block;
    padding: 0 30px;
  }
  .section2in {
    padding-left: 50px;
  }
  .section2in h2 {
    font-size: 28px;
  }
  .section2in .owl-stage {
    left: -20px;
  }
  .banner_hd {
    font-size: 36px;
    line-height: 42px;
  }
  .box2cont p {
    min-height: 78px;
  }
  .logo a img {
    height: 35px;
    margin-top: 20px;
    /* margin-left: 15px; */
  }
  .footer {
    /* padding: 0 30px; */
    /* gap: 50px; */
  }
  .footer_logo img {
    height: 90px;
  }
  .section4 .sec4_left {
    padding: 50px;
  }
  .sec4_left_in h2,
  .section3 h2 {
    font-size: 26px;
  }
  .section4 .sec4_right ul li h4 {
    font-size: 24px;
  }
  .section4 .sec4_right ul li {
    padding: 30px;
  }
  .section4 .sec4_right ul li p {
    font-size: 14px;
    line-height: 21px;
  }
  .section1 h2,
  h2.main_heading {
    font-size: 32px;
    line-height: 1.6;
  }
  .section2 .grid {
    gap: 10px;
  }
  .tab_img {
    width: 100%;
    height: 100%;
  }
  .tab_container1 p {
    width: 100%;
  }
  .tab_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  ul.tabs1 li {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 0;
  }
  .section1 h2 i,
  h2.main_heading i,
  .section1 h2 em,
  h2.main_heading em {
    font-size: 42px;
  }
}
@media only screen and (min-width: 1190px) and (max-width: 1320px) {
  .container {
    width: 100%;
    display: block;
    padding: 0 50px;
  }
  .banner_hd h2 {
    font-size: 42px;
  }
  .header {
    padding: 0;
  }

  .section2in {
    padding-left: 50px;
  }
}
