/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap"); */

@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --primary-color: #f58948;
  /* --primary-color: #e61c28; */
  --secondary-color: #154575;
  /* --secondary-color: #f2edb9; */
  --third-color: #73af55;
  --fourth-color: #9dd5b2;
  --fifth-color: #5173a0;
  --skyblue-color: #9db4e0;
  --dark-gray-color: #222222;
  --black-color: #000;
  --white-color: #fff;
  --title-color: #161921;
  --light-black: #5a5a5a;
  --navy-blue: #0f2557;
  --hard-shadow: 0px 10px 35px 5px rgba(0, 0, 0, 0.1);
  --soft-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  font-size: 16px;
  line-height: 28px;
  /* font-family: "Inter", sans-serif; */
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  color: var(--black-color);
}

h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  /* font-family: "Inter", sans-serif; */
  font-family: "Merriweather", serif;
}

h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  /* font-family: "Inter", sans-serif; */
  font-family: "Merriweather", serif;
}

h3 {
  font-size: 30px;
  /* font-family: "Inter", sans-serif; */
  font-family: "Merriweather", serif;
}

h4 {
  font-size: 25px;
  line-height: 28px;
  /* font-family: "Inter", sans-serif; */
  font-family: "Merriweather", serif;
}

h5 {
  font-size: 22px;
  /* font-family: "Inter", sans-serif; */
  font-family: "Merriweather", serif;
}

h6 {
  font-size: 20px;
  /* font-family: "Inter", sans-serif; */
  font-family: "Merriweather", serif;
}
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.container {
  width: 1280px;
  margin: 0 auto;
}
/* .nav-container {
    width: 1400px;
    max-width: 90%;
    padding: 0px 74px;
    margin: 0 auto;
  } */
.img-responsive {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.flex {
  display: flex;
}
.row {
  display: flex;
  flex-direction: row;
}
.column {
  display: flex;
  flex-direction: column;
}
.space-between {
  justify-content: space-between;
}
.flex-space-between {
  display: flex;
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.flex-start {
  align-items: flex-start;
}
.flex-end {
  align-items: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-end {
  place-content: flex-end;
}
.text-center {
  text-align: center;
}
.grid {
  display: grid;
}
.grid-1-06 {
  grid-template-columns: 1fr 0.64fr;
}
.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-1-13-1 {
  grid-template-columns: 1fr 1.3fr 1fr;
}
.overflow-hidden {
  overflow: hidden;
}
button {
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  border-radius: 5px;
}
input,
textarea {
  padding: 15px 20px;
  background: transparent;
  border-radius: 5px;
  font-size: 18px;
  font-family: "Inter" !important;
}
input::placeholder,
textarea::placeholder {
  font-family: "Inter" !important;
}
/* GAPS */
.gap-10 {
  gap: 10px;
}
.gap-15 {
  gap: 15px;
}
.gap-20 {
  gap: 20px;
}
.gap-25 {
  gap: 25px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}
.gap-45 {
  gap: 45px;
}
.gap-60 {
  gap: 60px;
}
.gap-80 {
  gap: 80px;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-35 {
  padding-top: 35px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-45 {
  padding-bottom: 45px;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pl-80 {
  padding-left: 80px;
}
.pr-80 {
  padding-right: 80px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-300 {
  padding-bottom: 300px;
}
.py-60 {
  padding: 60px 0px;
}
.py-80 {
  padding: 80px 0px;
}
/* MARGINS */
.m-0-auto {
  margin: 0 auto;
}
.mt-20 {
  margin-top: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-35 {
  margin-top: 35px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mt-45 {
  margin-top: 45px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mt-170 {
  margin-top: 170px;
}
.mt--120 {
  margin-top: -120px;
}
.mt--150 {
  margin-top: -150px;
}
.mt--185 {
  margin-top: -185px;
}
/* BACKGROUND-COLORS */
.radial-gradient {
  background-image: radial-gradient(#1f3050, #0f1a2e);
}
.secondary-bg {
  background: var(--secondary-color);
}
.lightblue-bg {
  background: #dee6f5;
}
.lightgrey-bg {
  background: #fafafa;
}
.p-txt {
  color: var(--primary-color);
}
/* POSITION */
.po-relative {
  position: relative;
}
/* RADIUS */
.bdr-radius-0 {
  border-radius: 0px !important;
}
.bdr-radius-5 {
  border-radius: 5px;
}
.bdr-radius-5-0-0-5 {
  border-radius: 5px 0px 0px 5px;
}
.bdr-radius-0-5-5-0 {
  border-radius: 0px 5px 5px 0px;
}
/* FONT-SIZE */
.f-16 {
  font-size: 16px !important;
}
/* WIDTHS */
.w-15 {
  width: 15px;
}
.w-60-h-48 {
  height: 48px;
  width: 60px;
}
.w-52-h-52 {
  height: 52px !important;
  width: 52px !important;
}
.w-h-60 {
  height: 60px;
  width: 60px;
}
.w-h-100 {
  height: 100px;
  width: 100px;
}
.w-100 {
  width: 100% !important;
}
.h-100 {
  height: 100% !important;
}
/* HOVER-EFFECT */
.hvr-link {
  position: relative;
}
.hvr-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.hvr-link:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.white-hvr-link {
  position: relative;
}
.white-hvr-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-hvr-link:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
/* HOVER-FLOAT */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  transform: translateY(-8px);
}
.image-effect {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.image-effect img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.image-effect:hover img {
  transform: scale(1.04);
}
/* BUTTONS */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 23px;
  font-size: 15.5px;
  border-radius: 6px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: fit-content;
  transition: all 0.5s ease-in-out;
}
.primary-btn {
  /* border: 1px solid var(--secondary-color); */
  color: var(--white-color);
  /* background: var(--third-color); */
  background: var(--secondary-color);
  /* border: 1px solid var(--primary-color); */
  transition: all 0.5s ease-in-out;
}
.primary-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  /* border: 1px solid var(--secondary-color); */
  background: var(--primary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.primary-btn:hover {
  /* border: 1px solid var(--primary-color); */
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.primary-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.secondary-btn {
  border: 1px solid;
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  background: var(--third-color);
  transition: all 0.5s ease-in-out;
}
.secondary-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.secondary-btn:hover {
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.secondary-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn {
  border: 1px solid;
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn:hover {
  background: var(--white-color);
  border: 1px solid var(--white-color);
  color: var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-white-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}
.white-btn {
  border: 1px solid;
  color: var(--black-color);
  border: 1px solid var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-btn::after {
  content: "";
  position: absolute;
  height: 110%;
  width: 160%;
  border: 1px solid var(--white-color);
  background: var(--white-color);
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.white-btn:hover {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.white-btn:hover::after {
  left: 130%;
  transition: all 0.5s ease-in-out;
}

.outlinebtn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.outlinebtn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: var(--primary-color);
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn:hover {
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}
.outlinebtn:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}
.outlinebtn2 {
  /* background: var(--white-color); */
  border: 1px solid var(--white-color);
  /* background: var(--third-color); */
  color: var(--white-color);
}
.outlinebtn2::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: var(--third-color);
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn2:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}

.outlinebtn2:hover {
  color: var(--white-color);
  /* background: var(--third-color); */
  border: 1px solid var(--third-color);
}

.outlinebtn3 {
  background: var(--white-color);
  color: var(--black-color);
}
.outlinebtn3::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: var(--black-color);
  top: 0;
  left: -250%;
  z-index: -1;
  transform: skewX(45deg);
  transition: all 0.5s ease-in-out;
}
.outlinebtn3:hover::after {
  left: -50%;
  transition: all 0.5s ease-in-out;
}

.outlinebtn3:hover {
  color: var(--white-color);
}

/* top head start */
.topheader {
  /* background: var(--primary-color); */
  background: var(--third-color);
  padding: 6px 0px;
}

.topheader .topheadwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topheader .topheadwrap .topcontactdetail {
  display: flex;
  align-items: center;
  gap: 15px;
  /* padding-left: 180px; */
}
.topheader .topheadwrap .topcontactdetail a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-color);
  font-size: 14px;
}
.topheader .topheadwrap .topcontactdetail i {
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: var(--white-color);
  color: var(--primary-color);
  font-size: 13px;
  transition: all 0.5s ease-in-out;
}

.topheader .topheadwrap .topsocialwrap {
  display: flex;
  align-items: center;
}
.topheader .topheadwrap .topsocialwrap i {
  /* padding: 10px 7px; */
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  color: var(--secondary-color);
  margin-left: 8px;
  border-radius: 4px;
  font-size: 15px;
}

/* .topheader .topheadwrap .topsocialwrap a:first-child i {
  border-left: 1px solid var(--white-color);
} */

.topheader .topheadwrap .topsocialwrap i:hover {
  background: var(--secondary-color);
  color: var(--white-color);
  /* border-color: var(--secondary-color); */
  transition: all 0.5s ease-in-out;
}

/* top head end */

/* main header start */
header {
  background: var(--white-color);
  box-shadow: var(--hard-shadow);
  padding: 10px 20px;
  position: sticky;
  top: 0px;
  left: 0px;
  z-index: 9999;
}

.mainheader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mainheader .nevmenu nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.mainheader .nevmenu nav ul li a {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-color);
  /* text-transform: uppercase; */
}

.mainheader .nevmenu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.mainheader .logowrapper img {
  width: 80px;
  transition: all 0.5s ease-in-out;
}

.mainheader.logosmall .logowrapper img {
  width: 70px;
  transition: all 0.5s ease-in-out;
}

/* dropdown */
.nav-contentsdiff .dropdownmenu {
  position: absolute;
  flex-direction: column;
  align-items: start !important;
  gap: 0px !important;
  padding: 25px;
  margin-top: 7px;
  text-align: left;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border-radius: 5px;
  background: var(--white-color);
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.08);
  list-style: none;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  width: 250px;
  transition: all 0.5s ease-in-out;
}
.nav-contentsdiff .dropdownmenu li {
  transition: all 0.5s ease-in-out;
  padding-bottom: 10px;
}
.nav-contentsdiff .dropdownmenu li a {
  font-size: 16px;
  color: var(--black-color);
  border: none;
  padding: 0;
  transition: all 0.5s ease-in-out;
}
.nav-contentsdiff .dropdownmenu li a .flag {
  background: #f1f1f1;
  padding: 4px;
  border-radius: 3px;
}
.nav-contentsdiff .dropdownmenu li:hover a {
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.nav-contentsdiff .dropdownmenu li:nth-last-child(1) {
  padding-bottom: 0px;
}
.nav-contentsdiff:hover a .drop {
  filter: invert(0) brightness(1);
  transition: all 0.5s ease-in-out;
}
.nav-contentsdiff:hover .dropdownmenu {
  margin-top: 10px;
  opacity: 1;
  z-index: 99;
  visibility: visible;
  transition: all 0.5s ease-in-out;
}
/* dropdown  */

/* .innertlogo {
  padding: 20px;
  background: var(--white-color);
  box-shadow: var(--soft-shadow);
  margin-top: -48px;
} */

/* main header end*/

/* Footer Start */
.footersection {
  background: var(--secondary-color);
  position: relative;
}

.footersection .container {
  position: relative;
}

.footersection::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/fottbg-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.footergrid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
}

.footer-logo {
  width: 100px;
}

.footerbox1 p {
  font-size: 15px;
  width: 300px;
  color: var(--white-color);
  margin-top: 20px;
}

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

.footersocial a i {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--third-color);
  color: var(--white-color);
  border-radius: 4px;
}

.footerbox p {
  margin-top: 20px;
  color: var(--white-color);
}
.footerbox h6 {
  margin-bottom: 40px;
  color: var(--white-color);
  font-size: 22px;
  position: relative;
}

.footerbox h6::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 2px;
  background: var(--white-color);
  bottom: -10px;
  left: 0px;
}

.footerbox ul li {
  margin-bottom: 10px;
}

.footerbox ul li a {
  color: var(--white-color);
}

.focontactdetail a {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-color);
  margin-bottom: 18px;
}

.focontactdetail a i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--third-color);
  color: var(--white-color);
  border-radius: 4px;
}

.footerbox {
  padding-left: 30px;
}

.footercopy {
  padding: 7px 0px;
  background: var(--third-color);
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright p {
  color: var(--white-color);
  font-size: 15px;
}

.copyright a {
  color: var(--white-color);
  font-size: 15px;
}

/* Footer End */

/* Banner Section Start */
.bannersection {
  /* background: var(--primary-color); */
  /* height: 80vh;
  align-content: end; */
  position: relative;
}

.bannersection::before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  background-image: url("../images/bannerbg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.8;
}

.bannersection .container {
  position: relative;
}

.bannersection .bannergrid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.bannersection .bannergrid .bannerleft {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  padding: 120px 0px;
}

.bannertitlewrapp .bannersmalltitle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bannertitlewrapp .bannersmalltitle img {
  width: 30px;
  height: 30px;
}

.bannertitlewrapp .bannersmalltitle h6 {
  color: var(--white-color);
  font-size: 19px;
}

.bannertitlewrapp h1 {
  color: var(--white-color);
  margin-top: 15px;
}

.bannerleft p {
  color: var(--white-color);
  font-size: 18px;
}

.bannerbtn {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10ppx;
}

.bannerright {
  display: flex;
  align-items: end;
  justify-content: end;
}

.bannerright img {
  /* width: 300px; */
  width: 450px;
  display: block;
  margin-top: auto;
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
  /* padding: 10px; */
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  border-radius: 5px;
}

.mySwiper .swiper-button-next::after,
.mySwiper .swiper-button-prev::after {
  color: var(--white-color) !important;
  font-size: 20px;
}
/* Banner Section End */

/* hero box start */

.heroboxgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.heroboxgrid .herobox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: var(--white-color);
  box-shadow: var(--hard-shadow);
  border-radius: 6px;
  border-bottom: 6px solid var(--secondary-color);
}

.heroboxgrid .herobox:nth-child(2) {
  background: var(--primary-color);
  border-bottom: 6px solid var(--primary-color);
}

.heroboxgrid .herobox img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.heroboxgrid .herobox h6 {
  text-align: center;
  margin-bottom: 10px;
}
.heroboxgrid .herobox p {
  text-align: center;
}

.heroboxgrid .herobox:nth-child(2) h6 {
  color: var(--white-color);
}
.heroboxgrid .herobox:nth-child(2) p {
  color: var(--white-color);
}

.heroboxgrid .herobox:nth-child(2) img {
  filter: brightness(0) invert(1);
}

/* hero box end */

/* About start */

.aboutsection {
  position: relative;
}

.aboutsection .container {
  position: relative;
}

.aboutsection::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/circle.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
}

.aboutgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.titlewrapp .smalltitle {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.titlewrapp .smalltitle img {
  width: 30px;
  height: 30px;
}

.titlewrapp h2 {
  margin-bottom: 20px;
}

.rightabout {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rightabout p {
  margin-bottom: 20px;
}

.leftabout img {
  border-radius: 8px;
  border: 7px solid var(--white-color);
  box-shadow: var(--hard-shadow);
}
/* About End */

/* service start */
.centertitle h2 {
  text-align: center;
  margin-bottom: 10px;
}
.centertitle p {
  text-align: center;
  width: 800px;
  margin: auto;
}

.servicegrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.servicebox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--hard-shadow);
}

.servicebox .serviceboxdetail .servimg img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.servicebox .serviceboxdetail .servimg {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.servicebox .serviceboxdetail .servtitle {
  padding: 20px;
}

.servicebox .serviceboxdetail .servtitle h5 {
  margin-bottom: 15px;
  color: var(--black-color);
}
.servicebox .serviceboxdetail .servtitle p {
  color: var(--black-color);
}

.servicebox .serviceboxbtn {
  padding: 0px 20px 20px 20px;
}
.servicebox .serviceboxbtn p {
  color: var(--white-color);
  padding: 7px 18px !important;
}

.servbtn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* service end */

/* heroform stat */
.heroform {
  background: var(--primary-color);
  position: relative;
}

.heroform .container {
  position: relative;
}

.heroform::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/abstract.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.herofoemgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.heroformleft {
  display: flex;
  align-items: end;
  justify-content: end;
}

.formwrapp {
  background: var(--white-color);
  padding: 50px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.formwrapp .inputgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.formwrapp input,
.formwrapp textarea {
  border-radius: 5px;
  width: 100%;
  border: 1px solid #eaeaea;
  padding: 15px 30px 15px 30px;
  margin-bottom: 20px;
  color: #7a7a7a;
}

.formwrapp input::placeholder,
.formwrapp textarea::placeholder {
  font-size: 16px;
}

.formwrapp button {
  width: 100%;
}

.heroformright h2 {
  margin-bottom: 20px;
  color: var(--white-color);
}
.heroformright {
  margin-bottom: 20px;
  color: var(--white-color);
}

.formcontact {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 20px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--white-color);
  margin-bottom: 25px;
}

.formcontact img {
  width: 60px;
  padding: 12px;
  border-radius: 4px;
  background: var(--secondary-color);
}

/* .formcontact .contatdetail {
  padding: 8px 0px;
} */

.formcontact .contatdetail h6 {
  font-size: 22px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.formcontact .contatdetail p {
  color: var(--white-color);
  font-size: 18px;
}
/* heroform end */

/* Testimonial start */

.testimonialswiper {
  margin-top: 40px;
}

.swiper.testimonialswiper {
  padding: 0px 15px 50px 15px;
}

.testimonialswiper .swiper-pagination {
  padding-top: 20px !important;
}

.testimonialswiper .testimonialbox {
  padding: 25px;
  background: var(--white-color);
  /* box-shadow: var(--hard-shadow); */
  border: 1px solid #bdbdbd;
}

.testimonialbox .testidesc {
  margin-bottom: 20px;
}

.testimonialnames {
  display: flex;
  gap: 20px;
  align-items: center;
}

.testimonialnames .testiimg {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
}

.testimonialnames .testinam h6 {
  font-size: 19px;
  margin-bottom: 5px;
}
.testimonialnames .testinam p {
  font-size: 17px;
}

/* Testimonial End */

/* blog Start */

.blogsection {
  background: linear-gradient(180deg, #ffcdaf 0%, #ffffff 100%);
}

.blogpagesection {
  background: var(--white-color);
}

.bloggrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.bloggrid .blogbox {
  background: var(--white-color);
  box-shadow: var(--hard-shadow);
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bloggrid .blogbox .blogdetail .imgblog {
  overflow: hidden;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.bloggrid .blogbox .blogdetail .imgblog img {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transition: all 0.5s ease-in-out;
}

.bloggrid .blogbox:hover .blogdetail .imgblog img {
  transform: scale(1.05);
  transition: all 0.5s ease-in-out;
}

.bloggrid .blogbox .blogdetail .blogdetailwrapp {
  padding: 20px;
}

.bloggrid .blogbox .blogdetail .blogdetailwrapp .blogdate {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999999;
}

.bloggrid .blogbox .blogdetail .blogdetailwrapp .blogdate i {
  color: var(--primary-color);
}

.bloggrid .blogbox .blogdetail .blogdetailwrapp h6 {
  margin: 15px 0px;
  color: #000000;
}

.bloggrid .blogbox .blogdetail .blogdetailwrapp p {
  color: #000000;
}

.bloggrid .blogbox .blogbtn p {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 20px 20px 20px;
  color: #000000;
}

.bloggrid .blogbox .blogbtn p i {
  color: var(--primary-color);
}

/* blog end */

/* contact Start */
.contactboxsection
{
	 background: linear-gradient(180deg, #ffcdaf 0%, #ffffff 100%);
}
.bontactboxgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.bontactboxgrid .contactbox {
  background: var(--white-color);
  border-radius: 6px;
  padding: 60px 40px;
  box-shadow: var(--hard-shadow);
  color: var(--black-color);
  border-bottom: 5px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.bontactboxgrid .contactbox .conicon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bontactboxgrid .contactbox .conicon i {
  color: var(--white-color);
  font-size: 24px;
}

.bontactboxgrid .contactbox.middcontactbox {
  background: var(--secondary-color);
  color: var(--white-color);
}

.bontactboxgrid .contactbox.middcontactbox .conicon {
  background: var(--white-color);
}
.bontactboxgrid .contactbox.middcontactbox .conicon i {
  color: var(--secondary-color);
  font-size: 24px;
}

/* .contatform {
  background: linear-gradient(180deg, #ffcdaf 0%, #ffffff 100%);
} */

.contatform .contactgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contactformwrapp.formwrapp {
  padding: 40px;
  background: var(--white-color);
  box-shadow: var(--hard-shadow);
  border-radius: 8px;
}

.contactleft h2 {
  margin-bottom: 10px;
}

.contactleft iframe {
  margin-top: 20px;
  height: 380px !important;
  border-radius: 8px;
}

.contactformwrapp h5 {
  margin-bottom: 15px;
}
/* contact End */

/* mobile header start */
.mobile-view {
  display: none;
  background: var(--white-color);
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.08);
  position: sticky;
  padding: 5px 0px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
.mobile-menu {
  display: none;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 99;
  align-items: center;
}
.slidein-menu {
  display: none;
}
/* mobile header end */

/* Page Banner */
.pagebanner {
  padding: 100px 0px;
}
.pagebanner h1 {
  text-align: center;
  color: var(--white-color);
  width: 1000px;
  margin: auto;
}

.breadcrum {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  margin-top: 10px;
}
.breadcrum a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white-color);
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}

.breadcrum a i {
  font-size: 16px;
}

.breadcrum p {
  color: var(--white-color);
  font-size: 16px;
}
/* Page Banner */

/* RESET */
/*PAGINATION STYLING HERE*/
.pagged {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pagged a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
  background: #ebebeb;
  color: #1c1c1c;
  font-size: 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
}
.pagged a:hover {
  text-decoration: none;
  color: #fff;
  /* background: linear-gradient(180deg, #fc2c2c, #e50000); */
  background: var(--primary-color);
}
.page-numbers.current {
  color: #fff;
  display: inline-block;
  /* border-radius: 100%; */
  border-radius: 6px;
  background: var(--primary-color);
}
.pagged span {
  padding: 7px 15px !important;
  background: linear-gradient(180deg, #fc2c2c, #e50000);
  color: #fff;
  display: none;
}
.next.page-numbers {
  padding: 15px 20px !important;
  /* background: linear-gradient(180deg, #FC2C2C, #E50000); */
  background: #ebebeb;
  color: #1c1c1c;
  font-size: 20px;
  float: none;
}
.prev.page-numbers {
  padding: 15px 20px !important;
  /* background: linear-gradient(180deg, #FC2C2C, #E50000); */
  background: #ebebeb;
  color: #1c1c1c;
  font-size: 16px;
  float: none;
}
/*PAGINATION STYLING HERE*/

.pagged {
  margin-top: 40px;
}

/* single start */
.singlegrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.singleform.formwrapp {
  padding: 30px;
  background: var(--white-color);
  box-shadow: var(--hard-shadow);
  position: sticky;
  top: 100px;
  border-radius: 8px;
}

.singleform.formwrapp .inputgrid {
  grid-template-columns: 1fr;
  gap: 0px;
}
.singleform.formwrapp h5 {
  margin-bottom: 15px;
}

.leftsingle .img-responsive {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  border-radius: 10px;
}

.leftsingle h2 {
  margin: 15px 0px;
}

.prvnext {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 600;
}

.prvnext a {
  color: var(--black-color);
}

.prvnext i {
  color: var(--primary-color);
}

/* single end */

.wpcf7-submit {
  background: var(--secondary-color) !important;
  color: var(--white-color) !important;
  margin-bottom: 0px !important;
}
.wpcf7-spinner {
  display: none;
}

.numbtn {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* media queri */

@media (max-width: 1310px) {
  .container {
    width: 95%;
  }
}

@media (max-width: 1024px) {
  .headernon {
    display: none;
  }

  .mobile-view {
    display: block;
  }
  .mobile-menu {
    display: block;
  }
  .slidein-menu {
    display: block;
  }
  .logo-wrap img,
  .slidein-logo img {
    width: 75px;
  }
  .ham-btn {
    height: 30px;
    width: 30px;
    right: 5px;
    top: 4px;
    position: relative;
    cursor: pointer;
  }
  .ham-btn span {
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: var(--primary-color);
    display: block;
  }
  .ham-btn span:nth-child(1) {
    top: 2px;
    width: 80%;
    right: -5px;
  }
  .ham-btn span:nth-child(2) {
    top: 11px;
    right: -5px;
  }
  .ham-btn span:nth-child(3) {
    bottom: 7px;
    right: -5px;
    width: 135%;
  }
  .slidein-menu {
    position: fixed;
    width: 400px;
    height: 100%;
    background: var(--white-color);
    top: 0;
    left: -120%;
    padding: 20px 40px;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
    z-index: 99;
  }
  .slidein-menu.open {
    left: 0;
    transition: all 0.5s ease-in-out;
  }
  nav {
    min-height: auto;
  }
  .ham-btn.cross span {
    background: var(--primary-color);
  }
  .ham-btn.cross span:nth-child(2) {
    display: none;
  }
  .ham-btn.cross span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
    right: 0;
    width: 100%;
  }
  .ham-btn.cross span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: auto;
    top: 10px;
    right: 0;
    width: 100%;
  }
  .nav-bdr-btm {
    margin-top: 20px;
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    height: 2px;
  }
  .slidein-menu .m-nav-bar .m-menu-list li:first-child {
    padding-top: 0;
  }
  .slidein-menu .m-nav-bar {
    margin-top: 20px;
  }
  .slidein-menu .m-nav-bar .m-menu-list li {
    position: relative;
    padding-top: 12px;
  }
  .m-menu-list li a {
    color: var(--black-color);
    display: block;
    line-height: 2;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.5s ease-in-out;
  }
  .m-menu-list li a:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    width: fit-content;
    transition: all 0.5s ease-in-out;
  }
  .sidebar-menu {
    color: var(--black-color);
    transition: all 0.5s ease-in-out;
  }
  .sidebar-menu:hover .expand i {
    color: var(--primary-color);
    transition: all 0.5s ease-in-out;
  }
  .sub-menu {
    display: none;
    color: var(--black-color);
  }
  .sub-menu ul li {
    padding-top: 5px !important;
  }
  .sub-menu ul li a {
    font-size: 16px;
    margin-left: 15px;
  }
  .sub-sub-menu {
    display: none;
  }
  .expand i {
    color: var(--black-color);
  }
  .expand1 {
    line-height: 3;
    font-weight: 500;
  }

  .aboutgrid {
    gap: 30px;
  }

  .herofoemgrid {
    gap: 30px;
  }

  .pagebanner h1 {
    width: 100%;
  }
}

@media (max-width: 950px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
  }

  h5 {
    font-size: 20px;
    font-family: "Inter", sans-serif;
  }

  h6 {
    font-size: 20px;
  }

  .py-80 {
    padding: 40px 0px;
  }

  .container {
    width: 100%;
    padding: 0px 20px;
  }

  .formwrapp {
    padding: 25px;
  }

  .bannersection .bannergrid {
    gap: 20px;
  }

  .bannerleft {
    padding-left: 40px !important;
  }

  .footergrid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footerbox {
    padding-left: 0px;
  }

  .pagebanner {
    padding: 60px 0px;
  }

  .bontactboxgrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 850px) {
  .topsocialwrap {
    display: none !important;
  }

  .centertitle p {
    width: 100%;
  }

  .heroboxgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .pt-80 {
    padding-top: 40px;
  }

  .servicegrid {
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }

  .testimonialswiper {
    margin-top: 30px;
  }

  .bloggrid {
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }

  .topheader .topheadwrap .topcontactdetail {
    justify-content: center;
    gap: 15px;
  }

  .topheader .topheadwrap .topcontactdetail a:last-child {
    display: none;
  }

  .topheader .topheadwrap {
    justify-content: center;
  }

  /* .bannertitlewrapp h1 {
    font-size: 35px;
  } */

  .bannersection .bannergrid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .bannerright {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bannersection .bannergrid .bannerleft {
    gap: 20px;
    padding: 40px 0px;
  }

  .formwrapp .inputgrid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .pagebanner h1 {
    width: 100%;
  }

  .contatform .contactgrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bontactboxgrid {
    grid-template-columns: 1fr;
  }

  .contactformwrapp.formwrapp {
    padding: 25px;
  }

  .singlegrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 650px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
    line-height: 28px;
    font-family: "Inter", sans-serif;
  }

  h5 {
    font-size: 20px;
    font-family: "Inter", sans-serif;
  }

  h6 {
    font-size: 18px;
  }

  .bannerright img {
    width: 350px;
    display: block;
    margin-top: auto;
  }

  .heroboxgrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .aboutgrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .servicegrid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .herofoemgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .formwrapp {
    border-radius: 8px;
    margin-bottom: 40px;
  }

  .item-1 {
    order: 1;
  }
  .item-2 {
    order: -1;
  }

  .bloggrid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .copyright {
    flex-direction: column;
  }
  .copyright p {
    font-size: 12px;
    text-align: center;
  }
  .copyright a {
    font-size: 12px;
    text-align: center;
  }

  .footergrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .logo-wrap img,
  .slidein-logo img {
    width: 60px;
  }

  .bannertitlewrapp h1 {
    font-size: 28px;
    text-align: center;
  }

  .bannertitlewrapp .bannersmalltitle h6 {
    font-size: 18px;
    text-align: center;
  }

  .bannertitlewrapp .bannersmalltitle img {
    width: 25px;
    height: 25px;
  }

  .mySwiper .swiper-button-next,
  .mySwiper .swiper-button-prev {
    /* padding: 10px; */
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 5px;
  }

  .mySwiper .swiper-button-next::after,
  .mySwiper .swiper-button-prev::after {
    color: var(--white-color) !important;
    font-size: 16px !important;
  }

  .bannerleft {
    padding-left: 0px !important;
  }

  .bannerleft p {
    font-size: 16px;
    text-align: center;
  }

  .topheader {
    padding: 4px 0px;
  }

  .bannersection .bannergrid .bannerleft {
    gap: 10px;
    padding: 40px 0px;
    align-items: center;
  }
  .topheader .topheadwrap .topcontactdetail a {
    font-size: 11px;
  }
  .topheader .topheadwrap .topcontactdetail i {
    width: 19px;
    height: 19px;
    font-size: 10px;
  }

  .bannertitlewrapp .bannersmalltitle {
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  /* .bannersection {
    background-color: var(--secondary-color);
  } */

  .bannersection::before {
    content: "";
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    background-image: url(../images/mobilebanner-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* mix-blend-mode: multiply; */
    opacity: 0.8;
  }

  .servbtn {
    margin-top: 30px;
  }

  .pagebanner {
    padding: 40px 0px;
  }

  .pagged {
    margin-top: 30px;
  }

  .contactformwrapp.formwrapp {
    margin-bottom: 0px;
  }

  .formwrapp input,
  .formwrapp textarea {
    border-radius: 5px;
    width: 100%;
    border: 1px solid #eaeaea;
    padding: 15px 10px 15px 10px;
    margin-bottom: 20px;
    color: #7a7a7a;
  }

  .contactleft iframe {
    height: 250px !important;
  }

  .footerbox h6 {
    margin-bottom: 30px;
  }

  .bontactboxgrid .contactbox {
    padding: 35px;
  }

  .prvnext {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
  }
}

@media (max-width: 550px) {
  .bannerright img {
    width: 300px;
    display: block;
    margin-top: auto;
  }
}
