@charset "utf-8";

/* Font Css Design */

@font-face {
  font-family: myFirstFont;
  src: url('../fonts/TiemposHeadline-Regular.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: myFirstFontMedium;
  src: url('../fonts/TiemposHeadline-Medium.otf');
}

@font-face {
  font-family: myFirstFontBold;
  src: url('../fonts/TiemposHeadline-Bold.otf');
}

@font-face {
  font-family: myFirstFontBlack;
  src: url('../fonts/TiemposHeadline-Black.otf');
}

@font-face {
  font-family: myFirstFontLight;
  src: url('../fonts/TiemposHeadline-Light.otf');
}


* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  background: #fff;
  overflow-x: hidden;
}

p {
  margin: 0px;
  padding: 0px;
}

h1 {
  margin: 0px;
  padding: 0px;
}

h2 {
  margin: 0px;
  padding: 0px;
}

h3 {
  margin: 0px;
  padding: 0px;
}

h4 {
  margin: 0px;
  padding: 0px;
}

h5 {
  margin: 0px;
  padding: 0px;
}

h6 {
  margin: 0px;
  padding: 0px;
}

address,
blockquote,
dd,
div,
dl,
dt,
fieldset,
form,
frame,
frameset {
  margin: 0;
  padding: 0;
  border: 0px;
  outline: none;
}

label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0px;
  padding: 0;
  outline: none;
  border: 0;
}

a {
  text-decoration: none;
  border: 0px;
  outline: none;
  transition: all .5s;
}

a img {
  border: none;
  outline: none;
}

a:focus {
  outline: none;
}

border {
  border-collapse: collapse;
}

hr {
  height: 1px;
  background: #333333;
  border: none;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  clear: both;
}

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

::-moz-selection {
  color: #fff;
  background: var(--main-clr);
}

::selection {
  color: #fff;
  background: var(--main-clr);
}

button,
input,
select,
option,
textarea {
  outline: 0 !important;
  pointer-events: all;
  font-family: inherit;
  font-size: 100%;
}





/*variables--*/

:root {
  --body-font: 'myFirstFont';
  --head-font: 'myFirstFont';
  --main-clr: #41abc1;
  --main-clr-drk: #00768e;
  --main-clr-sub: #1f363b;
}

body {
  font-family: myFirstFont;
  color: #000;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.0000001px;
}

a {
  color: var(--main-clr);
  transition: 0.2s;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: var(--main-clr);
}

p {
  margin-bottom: clamp(15px, 1.27vw, 20px);
  line-height: 1.5
}

p:last-child {
  margin-bottom: 0;
}

li {
  line-height: 1.5
}

img {
  max-width: 100%;
}

[id] {
  scroll-margin-top: 200px
}



/*common paddings*/
.common-padd {
  padding-top: 150px;
  padding-bottom: 150px;
}

.common-padd-top {
  padding-top: 250px!important;
}

.common-padd-btm {
  padding-bottom: 250px!important;
}

.common-padd-sm {
  padding-top: 50px;
  padding-bottom: 50px;
}


/*slick slider*/

.secSliderWrap {
  position: relative;
}

.secSliderNavWrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.secSliderNav {
  pointer-events: all;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #ededed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secSliderNav:hover {
  background-color: #ecc994;
}

.secItem {
  position: relative;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #373e46;
}

.slick-dots li button {
  padding: 0 4px
}

.slick-dots li {
  margin: 0
}






/*top button*/
.go-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-clr-drk);
  color: #fff;
  border: 2px solid #fff;
  z-index: 99;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}

.go-to-top span {
  width: 10px;
  height: 10px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(-45deg);
  margin-top: 4px;
}

.go-to-top.show {
  opacity: 1
}



/* common css */

p {
  font-size: 15px;
}

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

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

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

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

.heading_div {
  padding-bottom: 20px;
}

.heading_div h3 , h3,
.heading_div .left_h3 {
  font-size: 40px;
  line-height: 40px;
  padding-bottom: 10px;
  font-weight: 500;
  color: #000;
  font-family: myFirstFont;
  position: relative;
}

.heading_div h4, h4,
.heading_div .left_h4 {
  font-size: 36px;
  line-height: 36px;
  padding-bottom: 10px;
  font-weight: 500;
  color: #000;
  font-family: myFirstFont;
  position: relative;
}

.heading_div h4,
.heading_div .left_h4 {
  font-size: 25px;
  line-height: 25px;
  padding-bottom: 10px;
  font-weight: 500;
  color: #000;
  font-family: myFirstFont;
  position: relative;
}

.heading_div h2 span {
  color: var(--main-clr);
  font-weight: bold;
}

.heading_div h3 span {
  color: var(--main-clr);
  font-weight: bold;
}

.heading_div h4 span {
  color: var(--main-clr);
  font-weight: bold;
}

.heading_div p {
  font-size: 16px;
  line-height: 26px;
  padding: 10px 0;
  font-weight: 500;

}

.heading_div h2::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0%;
  content: "";
  width: 40px;
  height: 3px;
  background-color: var(--main-clr-drk);
}

.heading_div .left_h2::before {
  position: absolute;
  left: 3%;
  bottom: 0%;
  content: "";
  width: 40px;
  height: 3px;
  background-color: var(--main-clr-drk);
}

.heading_div h3::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0%;
  content: "";
  width: 40px;
  height: 3px;
  background-color: var(--main-clr-drk);
}

.heading_div .left_h3::before {
  position: absolute;
  left: 3%;
  bottom: 0%;
  content: "";
  width: 40px;
  height: 3px;
  background-color: var(--main-clr-drk);
}

.heading_div h4::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0%;
  content: "";
  width: 40px;
  height: 3px;
  background-color: var(--main-clr-drk);
}

.heading_div .left_h4::before {
  position: absolute;
  left: 5%;
  bottom: 0%;
  content: "";
  width: 40px;
  height: 3px;
  background-color: var(--main-clr-drk);
}

.text_center {
  text-align: center;
}

.clr_txt {
  color: var(--main-clr-drk)!important;
  font-weight: 600;
}

.clr_wht {
  color: #fff !important;
}

.icon_ol {
  border: 1px solid var(--main-clr);
  background-color: transparent;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.icon_innr {
  border: 1px solid var(--main-clr-drk);
  background-color: var(--main-clr);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
}

.secBg img {
  width: 100%;
  height: 100%;
  margin-bottom: -6px;
}

.shape {
  width: 2%;
}

.traingle {
  animation-name: spin;
  animation-duration: 4000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.round {
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.dots {
  -webkit-animation: bounce 5s 5s linear infinite alternate;
  animation: bounce 5s 5s linear infinite alternate;
}

@keyframes bounce {

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

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

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


/* button design */

.button_ol {
  border: 1px solid var(--main-clr);
  background: transparent;
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-clr);
}

.button_ol p {
  color: var(--main-clr) !important;
}

.button_ol:hover {
  background-color: var(--main-clr-sub);
  border: 1px solid var(--main-clr-sub);
  color: #fff;
}

.button_ol:hover p {
  color: #fff !important;
}

.button_ol img {
  margin-right: 10px;
}

.button_ol:hover img {
  filter: brightness(0) invert(1);
}

.button_s {
  border: 1px solid var(--main-clr);
  background: var(--main-clr);
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.button_s p {
  color: #fff !important;
}

.button_s:hover {
  background-color: var(--main-clr-sub);
  border: 1px solid var(--main-clr-sub);
  color: #fff;
}

.button_s:hover p {
  color: #fff !important;
}

.button_s1 {
  border: 1px solid var(--main-clr-drk);
  background: var(--main-clr-drk);
}

.button_s2 {
  border: 1px solid var(--main-clr-sub);
  background: var(--main-clr-sub);
}

.button_s2:hover {
  background-color: var(--main-clr-drk);
  border: 1px solid var(--main-clr-drk);
  color: #fff;
}

.main_img {
  width: 100%;
}

.button_wht {
  border: 1px solid var(--main-clr);
  background: #fff!important;
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-clr);
  width: fit-content;
  margin: 0 auto;
}

.button_wht p {
  color: var(--main-clr) !important;
}

.button_wht:hover{
  color: #000;
}


/* top header */

.header-top-bar {
  background: #fff;
  color: #000;
  padding: 10px 0;
  transition: 0.3s;
}

.header-top-bar a p {
  margin: 0;
}

.header-top-bar a p.info {
  margin: 0;
  font-size: 17px;
  color: #000;
  font-family: myFirstFontBold;
}

.header-top-bar .line {
  margin: 0 10px;
  width: 2px;
  height: 20px;
  background-color: #fff;
}

.header-top-bar a:hover p.info {
  color: var(--main-clr-drk);
}



/*header*/
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: 0.3s;
  border-top: 4px solid var(--main-clr);
}

.header-nav {
  padding: 10px 0;
  transition: 0.4s;
  background: linear-gradient(90deg,#fff 10%,var(--main-clr) 10%,var(--main-clr))!important;
  width: 100%;
  margin-left: auto;
  position: relative;
}

.header-area.sticky .header-nav {
  box-shadow: 0px 6px 10px -4px #00000065;
}

.navbar-area-inr {
  display: grid;
  align-items: center;
  grid-template-columns: 40% 60%;
}

.site-logo {
  transition: 0.2s;
  flex-shrink: 0;
  position: absolute;
  bottom: -90%;
  left: 12%;
  transform: translateX(-50%);
}

.site-logo img {
  width: 100%;
}

.down_arrow {
  margin-left: 5px;
  filter: brightness(1) invert(1);
}

.site-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-navbar ul li {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  font-weight: 600;
}

.site-navbar ul li a {
  display: block;
  color: #fff;
  font-size: 16px;
}

.site-navbar>ul>li {
  border-right: 1px solid #fff;
}

.site-navbar>ul>li a {
  padding: 4px 15px;
  margin: 0 10px;
  font-weight: 200;
}

.site-navbar ul ul li a{
  margin: 0!important;
}

.site-navbar>ul>li a:hover {
  color: #000;
}

.site-navbar>ul>li a.active {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.site-navbar ul ul {
  flex-direction: column;
  transform: translateY(100%);
  position: absolute;
  width: clamp(150px, 15.625vw, 300px);
  background: #fff;
  box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.26);
  transform-origin: top;
  z-index: 99;
  transition: 0.2s;
  align-items: flex-start;
  top: 100%;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  text-transform: uppercase;
}

.site-navbar ul ul li {
  width: 100%;
  text-transform: none;
  font-weight: bold
}

.site-navbar ul ul a {
  padding: clamp(8px, 0.5208vw, 10px);
  width: 100%;
  display: block;
  color: #222;
}

.site-navbar ul ul li a:hover {
  background: var(--main-clr);
  color: #fff;
}

.site-navbar ul li>span {
  display: none;
}

.site-navbar ul li:hover ul {
  transform: none;
  opacity: 1;
  pointer-events: all
}

.navbar-social ul {
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar-social ul li a,
.navbar-social ul li img {
  display: block;
}

.nav-toggler {
  border: 0;
  background-color: #fff0;
  cursor: pointer;
  display: none;
  padding: 5px;
}

.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  width: 28px;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: .3s;
}

.nav-toggler span:before {
  content: '';
  transform: translateY(-9px);
}

.nav-toggler span:after {
  content: '';
  transform: translateY(7px);
}

.nav-toggler.toggler-open span {
  background-color: transparent;
}

.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}

.nav-toggler.toggler-open span:after {
  transform: translateY(-2px) rotate(-45deg);
}

.header_icon {
  width: 40px;
  height: 40px;
  border: 1px solid #dbeff3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0 10px;
  transition: all ease 0.5s;
}

.header_icon:hover {
  border-radius: 20%;
  border: 1px solid var(--main-clr);
}

.no_border {
  border-right: none !important;
}






/*banner*/
.banner {
  margin-top: 125px;
  position: relative;
  z-index: 2;
  color: #000;
}

.banner_content {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 60%;
}

.bg_txt {
  background: linear-gradient(to right, var(--main-clr), #ffffff4b);
  width: fit-content;
  padding: 5px 30px 5px 20px !important;
}

.banner_content h1 {
  font-size: 45px;
  line-height: 55px;
  font-family: 'myFirstFontBold';
  padding: 10px 0;
  margin: 0;
  color: #fff;
}

.banner_content p {
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 20px;
  margin: 0;
  color: #fff;
}

.banner_shape {
  position: absolute;
  bottom: -22px;
  z-index: 1000;
}

.banner .slick-dots {
  position: absolute;
  bottom: 25%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.banner .slick-dots li {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.banner .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: transparent;
  border: 1px solid #fff;
}

.banner .slick-dots li button:before {
  font-family: slick;
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--main-clr);
  content: "";
  text-align: center;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
}

.banner .slick-dots li.slick-active button:before {
  opacity: 1;
  border-radius: 10px;
  background: var(--main-clr-drk);
}

.banner .button_s {
  margin-right: 10px;
}



/*sec one*/

.secOne {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.secOne_div {
  background-color: var(--main-clr);
  padding: 10px 10px;
  margin: 10px;
  color: #fff;
  border-radius: 5px;
}

.secOne_div:hover{
  background-color: var(--main-clr-drk);
}

/* .secOne_div .form-check {
  display: grid;
  grid-template-columns: 95% 5%;
  align-items: center;
  min-height: 60px;
} */

.secOne_div p{
  font-size: 18px;
  line-height: 28px;
}

.secOne_div .secOne_div_content {
  height: 50px;
  display: flex;
  align-items: center;
}

.secOne .button_s1 {
  width: fit-content;
  margin: 0 auto;
}

.shape1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.shape2 {
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  right: 0;
}

.shape3 {
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  left: 20%;
}

.shape4 {
  position: absolute;
  top: 90%;
  transform: translateY(-50%);
  left: 5%;
}

.desktop_view{
  display: block;
}

.mobile_view{
  display: none;
}



/*sec two*/

.secTwo {
  position: relative;
  overflow: hidden;
  padding-top: 80px!important;
}

.secTwo p {
  width: 80%;
}

.secTwo p.clr_txt {
  padding-left: 20px;
  position: relative;
}

.secTwo p.clr_txt::before {
  position: absolute;
  top: 0%;
  left: 0%;
  background: var(--main-clr);
  content: "";
  width: 2px;
  height: 50px;
}

.secTwo .button_s {
  width: fit-content;
}



.secTwo_img {
  position: relative;
}

.secTwo_img1 {
  text-align: right;
  width: 80%;
  height: auto;
  margin-left: 100px;
}

.secTwo_img2 {
  position: absolute;
  bottom: -17%;
  left: 0;
  width: 60%;
  height: auto;
}

.secTwo_img3 {
  position: absolute;
  top: -2%;
  left: 5%;
  z-index: -1;
  width: 30%;
  height: auto;
}

.career_guide {
  display: grid;
  grid-template-columns: 80% 20%;
  align-items: center;
  width: 60%;
  z-index: 2;
  position: absolute;
  bottom: -12%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 10px;
  border-radius: 5px 10px;
}

.career_guide h5 {
  font-style: italic;
  font-size: 18px;
  font-weight: 100;
}

.yes {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #eefcff;
  padding: 4px;
}

.yes p {
  color: var(--main-clr);
  font-weight: 100;
  font-size: 18px;
}

.shape5 {
  position: absolute;
  top: 23%;
  left: 5%;
  transform: translateX(-50%);
  z-index: 2;
}

.shape6 {
  position: absolute;
  bottom: 23%;
  right: 8%;
  transform: translateX(-50%);
}



/*sec Three*/

.secThree {
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  color: #fff;
}

.secThree .heading_div h2,
.secThree .heading_div h2 span {
  color: #fff;
}

.secThree .heading_div .left_h2::before {
  background-color: #fff;
}

.secThree hr {
  background-color: #8dcdda;
  margin-bottom: 20px;
}

.secThree ul li {
  list-style: none;
  display: grid;
  grid-template-columns: 10% 90%;
  margin-bottom: 15px;
}

.list_img {
  position: relative;
}

.list_img h6 {
  position: absolute;
  top: 35%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: var(--main-clr);
  font-size: 14px;
}

.secThree .button_s {
  width: fit-content;
}

.secThree_img {
  position: relative;
}

.secThree_img1 {
  width: 90%;
  height: auto;
  margin-left: 15px;
  position: relative;
  z-index: 2;
}

.secThree_img2 {
  position: absolute;
  top: -10px;
  right: -3px;
  z-index: -1;
}

.secThree_img3 {
  position: absolute;
  top: -30px;
  left: -25px;
  z-index: -1;
}

.secThree_img4 {
  position: absolute;
  bottom: -30px;
  right: 0px;
  z-index: 0;
}

.shape7 {
  position: absolute;
  top: 10%;
  left: 5%;
}

.shape8 {
  position: absolute;
  bottom: 12%;
  left: 40%;
  transform: translateX(-50%);
}

.shape9 {
  position: absolute;
  bottom: 28px;
  right: 0;
  width: 16%;
  z-index: 0;
}

.shape10 {
  position: absolute;
  bottom: 45px;
  left: 46px;
  z-index: 0;
  width: 6%;
  height: auto;
}




/*sec Four*/

.secFour {
  position: relative;
  overflow: hidden;
}

.secFour_box h5 {
  font-size: 16px;
  text-align: center;
  background-color: var(--main-clr-drk);
  padding: 15px 10px;
  border-radius: 10px;
  color: #fff;
  font-weight: 100;
  margin-bottom: 20px;
}

.secFour_box ul li {
  list-style: none;
  display: grid;
  grid-template-columns: 5% 95%;
  align-items: flex-start;
  margin-bottom: 10px;
}

.secFour_box ul li p {
  font-weight: 100;
}

.secFour_box hr {
  background-color: #cae2e7;
  margin: 20px 0;
}

.price h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.amout {
  display: grid;
  grid-template-columns: 80% 10% 10%;
  align-items: flex-end;
  padding-bottom: 20px;
}

.amout h3 {
  font-size: 30px;
}

.amout h3 span {
  text-decoration: line-through;
  font-weight: 100;
  font-size: 24px;
  color: var(--main-clr);
  font-style: italic;
}

.secFour_call {
  border: 1px solid var(--main-clr-drk);
  background-color: var(--main-clr);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secFour_call1 {
  border: 1px solid var(--main-clr);
  background-color: transparent;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.secFour_box {
  padding: 10px;
  background-color: #fff;
  border: 2px solid var(--main-clr-drk);
  border-radius: 20px;
  position: relative;
  margin: 0 15px 50px;
  box-shadow: 0px 0px 12px 1px #cae2e7;
}

.secFour_box:hover {
  background-color: #dbecef;
  border: 2px solid var(--main-clr-sub);
}

.secFour_box ul {
  min-height: 230px;
}

.secFour_box ul li img {
  padding-top: 4px;
}

.secFour_box .button_s {
  width: fit-content;
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
}

.secFour .slick-list {
  position: relative;
  display: block;
  overflow: visible;
  margin: 0;
  padding: 0;
}

.secFour_ul{
  width: fit-content;
  text-align: left;
  margin: 0 auto;
}

.secFour .heading_div p {
  font-size: 16px;
  line-height: 26px;
  padding: 10px 0;
  font-weight: 500;
  margin: 0;
}

.shape11 {
  position: absolute;
  bottom: 12%;
  left: 6%;
  width: 10%;
  height: auto;
}

.shape12 {
  position: absolute;
  top: 20%;
  left: 3%;
}

.shape13 {
  position: absolute;
  bottom: 35%;
  left: 5%;
}

.shape14 {
  position: absolute;
  bottom: 30%;
  right: 5%;
}

.secFour_p {
  text-align: center;
  width: 50%;
  margin: 0 auto;
}




/*sec Five*/

.secFive {
  position: relative;
}

.secFive .heading_div h2 {
  font-style: italic;
}

.secFive h6 {
  font-size: 16px;
  color: var(--main-clr-drk);
  font-weight: 100;
  margin-bottom: 10px;
}

.secFive h5 {
  font-size: 18px;
  color: var(--main-clr-drk);
  font-weight: 100;
  margin-bottom: 10px;
}

.secFive ul li {
  list-style: none;
  display: grid;
  grid-template-columns: 5% 95%;
  align-items: center;
  margin-bottom: 10px;
}

.secFive ul {
  margin-bottom: 30px;
}

.secFive .button_s {
  margin-right: 10px;
}

.secFive_img {
  position: relative;
}

.secFive_img1 {
  position: relative;
  z-index: 2;
}

.secFive_img2 {
  position: absolute;
  top: 8%;
  right: 10%;
  z-index: 0;
}

.secFive_img3 {
  position: absolute;
  top: 15%;
  right: 4%;
  z-index: -1;
}

.secFive_img .experience {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 20px;
  position: absolute;
  bottom: 0%;
  left: -7%;
  z-index: 3;
}

.secFive_img .experience h5 {
  font-size: 20px;
  color: #000;
  font-weight: 900;
  margin-bottom: 0;
}

.secFive_img .experience h5 span {
  font-size: 24px;
}

.secFive_img .experience h3 {
  font-size: 30px;
  color: var(--main-clr);
  margin-right: 20px;
}

.secFive_para {
  background-color: #d3e5f0;
  padding: 15px;
  border-radius: 10px;
  margin: 30px 15px 0;
}

.shape15 {
  position: absolute;
  top: 35%;
  left: 2%;
}

.shape16 {
  position: absolute;
  top: 50%;
  right: 5%;
}

.shape17 {
  position: absolute;
  bottom: -2%;
  left: 0;
  width: 6%;
  height: auto;
}

.shape18 {
  position: absolute;
  top: 10%;
  left: 0;
  width: 4%;
  height: auto;
}

.shape19 {
  position: absolute;
  top: 10%;
  right: 0;
  width: 5%;
  height: auto;
}




/*sec Six*/

.secSix {
  position: relative;
  overflow: hidden;
}

.secSix_box {
  position: relative;
  margin: 0 10px;
  overflow: hidden;
}

.secSix_box img {
  transition: 0.7s all ease-in-out;
  width: 100%;
}

.secSix_box:hover img {
  transform: scale(1.1);
  border-radius: 10px;
}

.secSix_box_txt {
  background-image: linear-gradient(to right, #fff, #fff, #ffffff00);
  position: absolute;
  bottom: 3%;
  width: 96%;
  margin: 5px;
  padding: 5px;
  transition: 0.8s all ease-in-out;
  display: block;
}

.secSix_box_txt h5 {
  font-size: 15px;
}

.secSix_box:hover .secSix_box_txt {
  opacity: 0;
}

.o_lay {
  position: absolute;
  bottom: -200%;
  left: 3%;
  width: 94%;
  height: 93%;
  background-color: #00768ec7;
  text-align: center;
  color: #fff;
  padding: 80px 10px;
  transition: 0.7s all ease-in-out;
}

.o_lay h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.o_lay h5 {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  font-weight: 100;
}

.o_lay h5::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -35%;
  content: "";
  width: 40px;
  height: 2px;
  background-color: #fff;
}

.secSix_box:hover .o_lay {
  position: absolute;
  bottom: 4%;
}

.shape20 {
  position: absolute;
  top: 25%;
  right: 6%;
}

.shape21 {
  position: absolute;
  top: 15%;
  left: 27%;
}

.secSix .secSliderNavWrap {
  width: 103%;
}

.secSix p {
  font-size: 15px;
  line-height: 25px;
}




/*sec Seven*/

.secSeven {
  position: relative;
  padding-bottom: 150px;
}

.secSeven_img {
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.secSeven_video_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.secSeven_video_icon img {
  width: 70%;
  height: auto;
}

.secSeven_txt {
  position: absolute;
  bottom: 15%;
  left: 17%;
  color: #fff;
  background-color: var(--main-clr);
  padding: 10px 15px;
  border-radius: 2px;
  z-index: 10;
}

.secSeven_txt h5,
.secSeven_txt h4 {
  font-weight: 100;
}

.secSeven_img {
  position: relative;
  z-index: 2;
}

.secSeven_img1 {
  position: absolute;
  top: 5%;
  right: 15%;
  z-index: 1;
}

.secSeven_img2 {
  position: absolute;
  top: -11%;
  right: 5%;
  z-index: 0;
}

.secSeven .slick-list {
  position: relative;
  display: block;
  overflow: visible;
  margin: 0;
  padding: 0;
}

.shape22 {
  position: absolute;
  top: -1%;
  right: 45%;
}

.shape23 {
  position: absolute;
  top: 40%;
  left: 10%;
}

.shape24 {
  position: absolute;
  bottom: 20%;
  right: 10%;
}

.shape25 {
  position: absolute;
  bottom: 14%;
  left: 15%;
}






/*sec Eight*/

.secEight {
  position: relative;
  overflow: hidden;
}

.secEight_box {
  position: relative;
  margin: 0 15px;
}

.secEight .slick-list {
  position: relative;
  display: block;
  overflow: visible;
  margin: 0;
  padding: 0;
}

.secEight_txt {
  text-align: center;
  background-color: #fff;
  position: absolute;
  bottom: -30%;
  width: 94%;
  padding: 10px;
  margin: 0 10px;
  box-shadow: 0px 0px 10px 2px #1a1a1a26;
  border-radius: 5px;
}

.secEight_txt h4 {
  margin-bottom: 10px;
  font-size: 16px;
  padding: 0;
}

.secEight_txt .button_s {
  padding: 5px 10px;
  margin-bottom: 10px;
}

.secEight_txt .button_ol {
  padding: 5px 10px;
}

.button_s img {
  margin-right: 10px;
}

.secEight .secSliderNavWrap {
  width: 100%;
  height: 75%;
}

.secEight .secSliderWrap {
  position: relative;
  overflow: hidden;
  height: 450px;
}

.shape26 {
  position: absolute;
  top: 50%;
  left: 1%;
}

.shape27 {
  position: absolute;
  bottom: 30%;
  right: 2%;
}






/*sec Nine*/

.secNine {
  position: relative;
  overflow: hidden;
}

.secNine .secNine_box {
  margin: 20px;
}

.secNine .heading_div h2::before {
  background-color: #ffffff !important;
}

.secNine .secNine_box .image_box {
  position: relative;
}

.secNine .secNine_box .youtube_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.secNine .secNine_box .content_box {
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  height: 150px;
}

.secNine .secNine_box .content_box h3 {
  font-size: 26px;
  line-height: 36px;
  color: var(--main-clr);
  padding-bottom: 10px;
  margin: 0;
}

.secNine .secNine_box:hover .content_box h3{
  color: var(--main-clr-drk);
}

.secNine .secNine_box .content_box p{
  color: #000;
}

.secNine .secSliderWrap {
  padding-bottom: 80px;
}

.secNine .slick-dots {
  position: absolute;
  bottom: -10%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.secNine .slick-dots li {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.secNine .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: transparent;
  border: 1px solid #fff;
}

.secNine .slick-dots li button:before {
  font-family: slick;
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  content: "";
  text-align: center;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
}

.secNine .slick-dots li.slick-active button:before {
  opacity: 1;
  border-radius: 10px;
  background: #fff;
}

.secNine .secSliderNavWrap {
  width: 100%;
  height: 60%;
}

.shape28 {
  position: absolute;
  top: 80%;
  left: 2%;
}

.shape29 {
  position: absolute;
  bottom: 50%;
  right: 3%;
}

.shape30 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 8%;
}



/*sec Ten*/

.secTen {
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  padding: 100px 0;
}

.secTen_box {
  background-color: #fff;
  border-radius: 30px;
  margin: 80px 20px 40px;
  box-shadow: 0px 7px 18px 16px #41acc11c;
  padding: 100px 15px 15px;
  text-align: center;
  height: 420px;
}

.secTen .heading_div h2::before {
  background-color: #ffffff !important;
}

.secTen .item:nth-child(odd) {
  margin-top: 70px;
}

.secTen .item:nth-child(even) {
  margin-top: 40px;
}

.secTen_box .sec10_icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 19px 2px #41acc12d;
  margin: -170px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secTen_box .sec10_icon .icon_inner {
  width: 120px;
  height: 120px;
  padding: 10px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #33333331;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secTen_box:hover .sec10_icon .icon_inner{
  border: 1px solid var(--main-clr);
}

.secTen_box .content {
  margin-top: 20px;
}

.secTen_box .content h3 {
  font-size: 28px;
  line-height: 38px;
  color: var(--main-clr);
  padding-bottom: 10px;
}

.secTen_box:hover .content h3{
  color: var(--main-clr-drk);
}

.sec10_dot_img {
  position: absolute;
  right: 10%;
  top: -6%;
}

.secTen .secSliderNavWrap {
  width: 100%;
  height: 100%;
}

.shape31 {
  position: absolute;
  top: 20%;
  left: 80%;
}

.shape32 {
  position: absolute;
  bottom: 10%;
  right: 3%;
}

.shape33 {
  position: absolute;
  top: 40%;
  left: 1%;
}






/*sec Eleven*/

.secEleven {
  position: relative;
  overflow: hidden;
}

.secEleven_box {
  background-color: #fff;
  margin: 20px;
  padding: 35px 15px 15px;
  border-radius: 20px;
  box-shadow: 0px 0px 19px 2px #0000001a;
}

.secEleven_box .review {
  padding: 10px 0;
  min-height: 305px;
}

.secEleven_box .client {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
}

.client_details h3{
  font-size: 18px;
}

.secEleven_box .client .client_img {
  margin-right: 15px;
}

.sec11_dot_img {
  position: absolute;
  right: 10%;
  top: -4%;
}

.secEleven .secSliderNavWrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 107%;
  height: 70%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.secEleven .secSliderWrap {
  padding-bottom: 80px;
}

.secEleven .slick-dots {
  position: absolute;
  bottom: -10%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.secEleven .slick-dots li {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.secEleven .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: transparent;
  border: 1px solid #a0a0a0;
}

.secEleven .slick-dots li button:before {
  font-family: slick;
  font-size: 12px;
  line-height: 20px;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  content: "";
  text-align: center;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
}

.secEleven .slick-dots li.slick-active button:before {
  opacity: 1;
  border-radius: 10px;
  background: var(--main-clr);
}

.shape34 {
  position: absolute;
  bottom: 10%;
  right: 3%;
}

.shape35 {
  position: absolute;
  top: 20%;
  left: 5%;
}




/* secTwelve */

.secTwelve {
  position: relative;
  overflow: hidden;
}

.faq-accordian-div {
  margin: 20px 0;
}

.faq-item {
  page-break-inside: avoid;
  break-inside: avoid-column;
  display: table;
  width: 100%;
  padding: 0 clamp(10px, 0.94vw, 18px);
  margin: 10px 0;
}

.faq-item details {
  border: 1px solid var(--main-clr);
  border-radius: 10px;
}

.faq-item h2{
  font-size: clamp(18px, 1.15vw, 22px);
  margin-bottom: 0
}

.faq-item summary {
  list-style: none;
  padding: 15px 42px 15px 8px;
  position: relative;
  cursor: pointer;
  transition: 0.3s
}

.faq-item summary:before {
  position: absolute;
  width: 20px;
  height: 10px;
  background: url(../images/down_arrow.webp) no-repeat;
  bottom: calc(50% - 6px);
  right: 10px;
  content: '';
  border-radius: 4px;
  transform: rotateX(0deg);
  transition: 0.3s;
  z-index: 15;
}

.faq_round {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--main-clr);
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item [open] summary:before {
  transform: rotateX(180deg);
  filter: brightness(1) invert(1);
  right: 10;
}

.faq-item [open] summary:after {
  transform: rotate(90deg);
}

.faq-ans {
  padding: 10px;
  border-radius: 10px;
  margin: 10px;
  position: relative;
  animation: sweep .5s ease-in-out;
  background-color: #e8f4f6;
}

[open] summary~.faq-ans {
  animation: sweep .5s ease-in-out;
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.shape36 {
  position: absolute;
  bottom: 10%;
  right: 3%;
}

.shape37 {
  position: absolute;
  top: 10%;
  left: 5%;
}



/* footer */

.site-footer {
  color: #d5d5d5;
  font-size: var(--fs-16px);
  position: relative;
}

.site-footer a {
  color: #d5d5d5
}

.site-footer a:hover {
  color: var(--main-clr);
}

.site-footer-top {
  padding: 100px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-head {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--main-clr) !important;
}

.footer-head::after {
  background-color: var(--main-clr);
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 33px;
  height: 2px;
  content: '';
}

.footer-item ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.footer-item1 p {
  font-size: 14px;
  padding-top: 30px;
}

.footer-item2 li:not(:last-child),
.footer-item3 li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-item1-ul {
  margin-bottom: clamp(25px, 2.61vw, 50px);
  max-width: 350px
}

.footer-item1-ul li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-item3 ul li a img {
  margin-right: 10px;
}

.footer-item1-ul li {
  position: relative;
  padding-left: 24px;
}

.footer-item1-ul li img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 19px
}

.footer-social {
  margin-top: 30px;
}

.footer-social ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}

.footer-item4 ul li {
  padding: 5px 0;
}

.footer-item1 {
  text-align: center;
}

.ftr_logo {
  width: 50%;
  margin: 0 auto 30px;
}


.site-footer .btn-main:hover {
  color: #fff
}

.site-footer-btm {
  padding: 12px 0;
}

.site-footer-copyright {
  text-align: left;
}

.ftr_contact {
  display: grid;
  grid-template-columns: 13% 87%;
  align-items: flex-start;
}

.ftr_contact p {
  padding-top: 3px;
}

.ftr_contact_img {
  width: 30px;
  height: 30px;
  border: 1px solid #dbeff3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.ftr_contact:hover .ftr_contact_img img {
  filter: brightness(1) invert(0);
}

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

.social_icon {
  width: 35px;
  height: 35px;
  border: 1px solid var(--main-clr-sub);
  background-color: var(--main-clr-sub);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 10px;
  transition: 0.7s all ease-in-out;
}

.ftr_social .social_icon:hover {
  border-radius: 10%;
}

.footer-item p,
.footer-item a {
  font-size: 16px;
}

.site-footer-dp {
  text-align: right;
}

.site-footer-dp a {
  color: var(--main-clr);
}

.shape{
  display: none;
}






/* Popup Design start*/

/* #enquire_btn {
  background-color: var(--main-clr);
  position: fixed;
  top: 50%;
  right: -51px;
  padding: 9px 25px;
  z-index: 1000;
  rotate: -90deg;
  border-radius: 4px;
}

#enquire_btn p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  font-family: mySecondFont;
}

#enquire_btn:hover {
  cursor: pointer;
  background-color: var(--main-clr-drk);
} */


/* form change - end*/

.sidepopup {
  height: auto;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 25%;
  right: 5%;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  border-radius: 6px;
  box-shadow: 0px 3px 11px -7px rgb(0 0 0);
  font-family: 'myFirstFont';
}

.sidepopup .btn-main {
  box-shadow: inset 0 0 0 50px var(--main-clr);
}

.sidepopup .btn-main:hover {
  box-shadow: inset 0 0 0 50px var(--main-clr-two);
  color: #fff;
}

.sidepopup form {
  width: 340px !important;
  padding: 20px;
  height: auto;
}

.sidepopup .from_content {
  padding: 0 20px;
}

.sidepopup .from_content .btn-custom {
  margin: 0;
  width: 100%;
}

.sidepopup .form_heading {
  text-align: center;
  color: var(--main-clr-drk);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  padding-bottom: 10px;
  position: relative;
}

.form_box {
  margin-top: 20px;
}

.sidepopup .form_heading::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--main-clr-drk);
}

.sidepopup p {
  font-size: 14px;
  text-align: center;
  margin: 0;
  padding-bottom: 6px;
}

.sidepopup a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidepopup a:hover {
  color: #000000;
}

.sidepopup .closebtn {
  position: absolute;
  top: -5px;
  right: 5px;
  font-size: 36px;
  margin-left: 50px;
  z-index: 100;
}

.sidepopup .form_design textarea {
  height: 50px;
}

.sidepopup .form_design :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  border: solid 1px #cfcfcf;
  border-radius: 4px;
  background-color: #fff;
  padding: 8px 12px;
  color: #909090;
  width: 100%;
  font-size: 13px;
  margin: 7px 0;
  font-family: 'myFirstFont';
}

.form-control,
.form-select {
  border: 1px solid #092966;
}

.sidepopup label {
  font-size: 13px;
  color: #01386f;
}

.sidepopup .form_design input[type=submit] {
  background: var(--main-sub-clr);
  border: 0;
  padding: 14px 7px;
  color: #fff;
  width: 100%;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 10px;
}

.sidepopup .form-field input[type="text"],
.sidepopup .form-field input[type="email"],
.sidepopup .form-field input[type="tel"],
.sidepopup .form-field select,
.sidepopup .form-field textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #dcddda;
  padding: 10px 15px;
  color: #000000;
  background: #ffffff;
  outline: none;
  margin: 10px 0;
  font-family: 'myFirstFont';
}

.sidepopup .form-field textarea{
  height: 120px;
}

.sidepopup .button3 input {
  padding: 0px 30px;
  background-color: transparent;
  border: none;
  color: #fff;
}

::placeholder{
  color: #000;
}

.sub_btn{
  border: 1px solid var(--main-clr);
  background: var(--main-clr);
  border-radius: 40px;
  padding: 10px 20px;
  color: #fff;
  margin: 0 auto;
}

.submit_btn{
  text-align: center;
}


/* Popup Design end*/

.fixed_whatsapp {
  width: 40px;
  height: 35px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  position: fixed;
  top: 72%;
  right: 7px;
  z-index: 1000;
}

.pulse {
  visibility: visible;
  animation-duration: 1500ms;
  animation-iteration-count: infinite;
  animation-name: pulse;
}







/*****************************************
 inner page start 
*****************************************/


/* service details */


.banner_content1 {
  position: absolute;
  top: 45%!important;
  transform: translateY(-50%);
  left: 8%;
  width: 60%;
}

.banner_content1 h1 {
  font-size: 45px;
  line-height: 55px;
  font-family: 'myFirstFontBold';
  padding: 10px 0;
  margin: 0;
  color: #fff;
}

.service_details{
  position: relative;
  padding: 80px 0;
}

.service_details .lft_div{
  padding-right: 30px;
}

.service_details .lft_div p{
  margin-top: 20px;
  padding-left: 10px;
}

.service_details .service_list {
  padding: 10px 20px;
  border: 1px solid var(--main-clr);
  border-radius: 10px;
}

.service_details ul, .service_details ol{
  margin-bottom: 20px;
}

.service_details p, .service_details ol li, .service_details ul li{
  font-size: 17px;
}

.service_details .service_list ul li{
  list-style: none;
  padding: 15px 0;
  border-bottom: 1px dashed #c5c5c5;
  position: relative;
  padding-left: 30px;
}

.service_details .service_list ul li::before{
  content: "";
  background-image: url(../images/inner/service_details_icon.webp);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 18px;
}

.service_details .service_list ul li:last-child{
  border-bottom: none;
}

.service_details .service_list ul li a{
  color: #000;
}

.service_details .service_list ul li.active a{
  color: var(--main-clr);
}

.service_details .service_list ul li:hover a{
  color: var(--main-clr-drk);
  cursor: pointer;
}

.service_details ol {
  padding-left: 30px;
}

.service_details ol li{
  padding:10px 0;
}

.service_details ol li span{
  font-family: 'myFirstFontBold';
}

/* service page */

.all_services {
  position: relative;
  padding-bottom: 0;
}

.ser_row{
  padding-top: 20px;
}

.all_services .content_box{
  margin: -50px 10px 40px 10px;
  background-color: #fff;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--main-clr);
}

.all_services .content_box .button_ol{
  margin-top: 20px;
  width: fit-content;
}


/* price page */

.p_b_none{
  padding-bottom: 0!important;
}

.pricing{
  position: relative;
}


/* contact page */

.contact{
  position: relative;
  overflow: hidden;
}

.contact_details p, .contact_details h3, .contact_details a{
  padding: 0;
  margin: 2px 0;
  color: #000;
  font-size: 18px;
}

.contact_details .clr_txt a {
  color: var(--main-clr);
}

.con_box {
  display: grid;
  grid-template-columns: 8% 88%;
  gap: 2%;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid var(--main-clr);
  background-color: #fff;
  border-radius: 20px;
  margin: 20px 0 20px 70px;
  padding: 20px;
}

.icon_box{
  background-color: #fff;
  border: 1px solid var(--main-clr);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -70px;
}

.icon_box_inner{
  background-color: var(--main-clr);
  border: 1px solid var(--main-clr);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.contact_form {
  background-color: #F2FDFF;
  border-radius: 20px;
  border: solid 1px var(--main-clr);
  padding: 40px 20px;
}

.contact .form_design :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  border: solid 1px var(--main-clr);
  border-radius: 4px;
  background-color: #fff;
  padding: 18px 12px;
  color: #000;
  width: 100%;
  font-size: 15px;
  margin: 7px 0;
  font-family: 'myFirstFont';
}

.contact label {
  font-size: 13px;
  color: #01386f;
}

.contact .form_design .submit_btn input{
  border: 1px solid var(--main-clr-drk)!important;
  background: var(--main-clr-drk)!important;
  border-radius: 50px!important;
  padding: 14px 36px!important;
  color: #fff!important;
  width: fit-content!important;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 10px;
}

.contact .form_design .submit_btn:hover input{
  border: 1px solid var(--main-clr)!important;
  background: var(--main-clr)!important;
}

.contact .form-field input[type="text"],
.contact .form-field input[type="email"],
.contact .form-field input[type="tel"],
.contact .form-field select,
.contact .form-field textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #dcddda;
  padding: 10px 15px;
  color: #000000;
  background: #ffffff;
  outline: none;
  margin: 10px 0;
  font-family: 'myFirstFont';
}

.contact .form-field textarea{
  height: 120px;
}

.contact .rght_div{
  position: relative;
}

.contact .button_s {
  position: absolute;
  bottom: 270px;
  left: 29%;
  transform: translateY(50%);
}



/* about Page */

.about{
  position: relative;
  overflow: hidden;
}

.about h3{
  font-size: 28px;
}

.about {
  padding-bottom: 0;
}

.about_s6 .secSix_box{
  margin: 20px 0;
}

.about .heading_div .left_h3 {
  font-size: 22px;
  line-height: 32px;
}

.about .service_list{
  padding-bottom: 20px;
}

.about .service_list ul li{
  list-style: none;
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
}

.about .service_list ul li::before{
  content: "";
  background-image: url(../images/inner/service_details_icon.webp);
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 18px;
}

.about .service_list ul li a{
  color: #000;
}

.about .service_list ul li.active a{
  color: var(--main-clr);
}

.about .service_list ul li:hover a{
  color: var(--main-clr-drk);
  cursor: pointer;
}

.about .button_s{
  width: fit-content;
}

.mentor_box {
  box-shadow: 0 0 6px 0 #0000004a;
  background-color: #fff;
  border-radius: 20px;
  margin: 20px 0;
}

.mentor_box h3{
  font-size: 24px;
}

.mentor img{
  border-radius: 20px;
}

.mentor .content{
  padding: 20px 10px ;
}

.mentor .content .con_txt {
  margin-bottom: 10px;
}

.about_s6 .o_lay{
  display: flex;
  align-items: center;
  padding: 20px 10px!important;
}






/*****************************************
 inner page end
*****************************************/



/*media queries*/

@media(max-width:1920px) {

  .header-nav {
    background: linear-gradient(90deg,#fff 10%,var(--main-clr) 10%,var(--main-clr))!important;
}

.secTwo_img1 {
  width: 80%;
  margin-left: 100px;
  margin-top: 60px;
}

.list_img h6 {
  top: 31%;
  left: 25%;
  font-size: 18px;
}

.shape10 {
  bottom: 54px;
  left: 63px;
  width: 6%;
}

.secFour_box ul {
  min-height: 280px;
}

.secNine .secNine_box .content_box {
  height: 170px;
}

p {
  font-size: 18px;
  line-height: 28px;
}

.secFive_img2 {
  top: 8%;
  right: 23%;
}

}

@media(max-width:1800px) {}

@media(max-width:1700px) {

  .shape10 {
    bottom: 61px;
    left: 75px;
    width: 6%;
}

}

@media(max-width:1600px) {

  .header-nav {
    background: linear-gradient(90deg,#fff 15%,var(--main-clr) 15%,var(--main-clr))!important;
}

}

@media(max-width:1500px) {}

@media(max-width:1400px) {

  .shape10 {
    bottom: 63px;
    left: 75px;
    width: 6%;
}

}

@media(max-width:1399px) {

  .all_services .content_box h2{
    font-size: 20px;
  }

  .heading_div h3, .heading_div .left_h3 {
    font-size: 30px;
    line-height: 30px;
  }

  .secTwo_img1 {
    width: 80%;
    margin-left: 70px;
    margin-top: 60px;
}

.secSeven_img1 {
  top: 5%;
  right: 10%;
}

  .secFive_img2 {
    top: 8%;
    right: 11%;
}

p, .secOne_div p, .footer-item p, .footer-item a, .heading_div p {
    font-size: 14px;
}

.secNine .secNine_box .content_box h3, .secTen_box .content h3 {
  font-size: 22px;
  line-height: 32px;
}

.ftr_contact {
  grid-template-columns: 15% 85%;
}

.secNine .secNine_box .content_box {
  height: 240px;
}

.faq-item summary {
  padding: 15px 52px 15px 8px;
}

.list_img h6 {
  top: 31%;
  left: 35%;
  font-size: 18px;
}

.secEleven_box .review {
  padding: 10px 0;
  min-height: 280px;
}

.secSeven_txt {
  bottom: 15%;
  left: 12%;
}

.secEight .secSliderWrap {
  position: relative;
  overflow: hidden;
  height: 400px;
}

}

@media(max-width:1280px) {

  .shape10 {
    bottom: 65px;
    left: 75px;
    width: 6%;
}

.secFour_box ul {
  min-height: 270px;
}

.shape15 {
  top: 35%;
  left: 3%;
}

}

@media(max-width:1199px) {

  .heading_div h3, .heading_div .left_h3 {
    font-size: 26px;
    line-height: 26px;
}

  .navbar-area-inr {
    grid-template-columns: 20% 80%;
}

.secFour_box h5 {
  font-size: 15px;
}

  .secSeven_img1 {
    top: 5%;
    right: 2%;
}

  .header-top-bar a p.info {
    font-size: 14px;
}

.secTwo_img1 {
  width: 80%;
  margin-left: 70px;
  margin-top: 60px;
}

.career_guide h5 {
  font-size: 14px;
}

.common-padd-btm {
  padding-bottom: 160px!important;
}

.secFour_box ul {
  min-height: 300px;
}

.ftr_contact {
  grid-template-columns: 20% 80%;
}

.secFive_img2 {
  top: 8%;
  right: -3%;
}

.amout {
  display: grid;
  grid-template-columns: 70% 15% 15%;
  align-items: flex-end;
  padding-bottom: 20px;
}

.secEleven_box .review {
  padding: 10px 0;
  min-height: 230px;
}

.secFour_box .button_s {
  bottom: -4%;
  left: 50%;
}

.banner_content {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 60%;
}

.secEight .secSliderWrap {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.secNine .secNine_box .youtube_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
}

}

@media(max-width:1024px) {

  .banner_content {
    top: 10%;
    left: 8%;
    width: 80%;
}

.banner_content h1 {
  font-size: 35px;
  line-height: 45px;
}

/* .banner_content h1 br, .banner_content p br{
  display: none;
} */

.site-logo {
  bottom: -20%;
  left: 15%;
}

.site-logo img {
  width: 80%;
}

.shape3 {
  top: 10%;
  left: 10%;
}

.shape10 {
  bottom: 70px;
  left: 77px;
  width: 6%;
}

.secFour_box ul {
  min-height: 300px;
}

.shape15 {
  top: 35%;
  left: 1%;
}

.secEleven_box .review {
  padding: 10px 0;
  min-height: 220px;
}

}

@media(max-width:992px) {

  .secTen .item:nth-child(odd) {
    margin-top: 40px;
  }

  .secTen_box {
    height: 350px;
}

.secEleven .secSliderNavWrap {
  width: 100%;
}

p, .secOne_div p{
  font-size: 14px;
  line-height: 24px;
}

.footer-item p, .footer-item a {
  font-size: 12px;
  line-height: 22px;
}

.secEight .secSliderWrap {
  position: relative;
  overflow: hidden;
  height: 470px;
}

.common-padd-btm {
  padding-bottom: 200px!important;
}

.shape10 {
  bottom: 60px;
  left: 65px;
  width: 6%;
}

.secFour_box ul {
  min-height: 300px;
}

.shape9 {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 16%;
  z-index: 0;
}

.secBg img {
  width: 100%;
  height: 100%;
  margin-bottom: -6px;
  object-fit: cover;
}

.secTen {
  position: relative;
  overflow: hidden;
  margin-top: -160px;
  padding: 100px 0;
}

}

@media(max-width:991px) {

  .contact .button_s {
    position: absolute;
    left: 39%;
    transform: translateY(50%);
}

  .about .image_box{
    margin-bottom: 40px;
  }

  .contact_form {
    margin-top: 40px;
}

  .banner_content1 h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .service_details .lft_div{
    padding-right: 0px;
    padding-bottom: 30px;
  }

  .site-navbar>ul>li {
    border-right: none;
}

.site-navbar>ul>li a {
  margin: 0px;
}

  .down_arrow{
    display: none;
  }

  body.no-scroll {
    height: 100vh;
    overflow: hidden;
  }

  .nav-toggler {
    display: flex;
    position: relative;
    z-index: 10;
    justify-content: flex-end;
}

.site-logo {
  bottom: -30%;
  left: 15%;
}

.site-navbar>ul>li a:hover {
  color: #fff;
}

.navbar-area-inr {
  padding: 10px 0;
}


.secFive_img .experience {
  bottom: 0%;
  left: 0%;
}

  .nav-toggler.toggler-open {
    position: fixed;
    top: 16px;
    right: 5px;
  }

  .navbar-area-menu {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    font-family: var(--font1);
    transform: scale(0);
    transition: 0.6s;
    opacity: 0;
    transform-origin: top right;
    height: 100vh;
    width: 100%;
    flex-direction: column;
  }

  .site-navbar>ul {
    flex-direction: column;
    text-align: center;
    gap: 0;
    padding: clamp(40px, 7.5vw, 120px) 0px clamp(20px, 2.5vw, 40px);
    width: 100%;
    transition: 0.6s;
    overflow-y: auto;
    max-height: 100vh;
    justify-content: flex-start;
  }

  .site-navbar ul li {
    display: block;
    width: 100%;
    color: #fff;
  }

  .site-navbar>ul>li:not(:last-child) {
    border-bottom: 1px solid #ffffff38;
  }

  .site-navbar ul li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 14px 0;
    border-bottom-width: 0
  }

  .navbar-area-menu.open {
    transform: scale(1);
    opacity: 1;
  }

  .navbar-close {
    position: absolute;
    top: clamp(10px, 1.25vw, 20px);
    right: clamp(30px, 3.75vw, 60px);
    font-family: var(--font1);
    font-size: var(--40px);
    font-weight: bold;
    cursor: pointer;
  }

  .navbar-area-menu::before {
    background: #222;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 50%;
    transform: translate(50%, -50%);
    padding: 200%;
  }

  .site-navbar ul ul {
    position: static;
    background: #0000;
    box-shadow: none;
    width: auto;
    text-align: center;
    pointer-events: all;
    opacity: 1;
    transform: none;
    display: none;
    transition: 0s;
    padding-bottom: 10px;
  }

  .site-navbar ul ul a {
    display: block;
    text-transform: none;
    padding: 8px 0;
  }

  .site-navbar ul ul a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0 1px 1px 0;
    display: inline-block;
  }

  .site-navbar .li-sub-menu-wrap>a {
    display: inline-block;
    width: auto;
  }

  .site-navbar .li-sub-menu-wrap {
    padding: 0 35px
  }

  .site-navbar .li-sub-menu-wrap.open-submenu {
    background: #111;
  }

  .site-navbar .li-sub-menu-wrap::after {
    content: '\002B';
    color: #fff;
    border-width: 0 1px 1px 0;
    position: absolute;
    top: 10px;
    right: 13px;
    font-size: 140%;
    transition: 0.2s;
  }

  .site-navbar .li-sub-menu-wrap.open-submenu::after {
    transform: rotate(45deg);
  }

  .site-navbar ul ul li a:hover {
    background: #0000
  }

  .site-navbar {
    width: 100%;
  }

  .navbar-social {
    width: 100%;
  }

  .navbar-social ul {
    padding-left: 0;
    justify-content: center;
    border-left: 0;
    gap: 16px;
  }

  .secOne_div {
    margin: 10px 10px 0;
}

.top_header_details{
  display: none;
}

/* .secOne_div .form-check {
  grid-template-columns: 95% 5%;
  min-height: 52px;
} */

.secTwo_img{
  margin-bottom: 150px;
}

.secThree_img{
  margin-bottom: 50px;
}

.secFive_para{
  margin-bottom: 50px;
}

.secTwo p {
  width: 100%;
}

.secTwo p.clr_txt::before {
  width: 2px;
  height: 20px;
}

.secThree {
  margin-top: -130px;
}

.list_img h6 {
  top: 41%;
  left: 23%;
  font-size: 18px;
}

.shape10 {
  bottom: 95px;
  left: 16px;
  width: 6%;
  rotate: 353deg;
}

.shape9 {
  position: absolute;
  bottom: 200px;
  right: 0;
  width: 16%;
  z-index: 0;
}

.secSeven_img1 {
  top: 5%;
  right: -3%;
}

.faq-accordian-div{
  margin: 0;
}

.faq-item{
  margin: 10px 0 0;
}

.site-footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ftr_contact {
  grid-template-columns: 15% 80%;
}

.footer-head {
  margin-top: 40px;
}

.ftr_logo {
  width: 20%;
  margin: 0 auto 30px;
}

.site-footer-copyright {
  text-align: center;
}

.site-footer-dp {
  text-align: center;
  padding-top: 10px;
}

.banner_content {
  top: 8%;
  left: 8%;
  width: 80%;
}

.banner .slick-dots {
  bottom: 18%;
}

.order_One{
  order: 1;
}

.order_Two{
  order: 2;
}

}

@media(max-width:912px) {

  .shape10 {
    bottom: 100px;
    left: 16px;
    width: 6%;
    rotate: 353deg;
}

.secEight .secSliderWrap {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.secEleven_box .review {
  padding: 10px 0;
  min-height: 270px;
}

}

@media(max-width:820px) {

  .banner_content1{
    width: 80%;               
  }

  .banner_content1 h1 {
    font-size: 30px;
    line-height: 40px;
}

  .shape10 {
    bottom: 115px;
    left: 24px;
    width: 6%;
    rotate: 1deg;
}

.amout {
  grid-template-columns: 60% 20% 20%;
}

.banner_content h1 {
  font-size: 22px;
  line-height: 25px;
}

.banner_content p {
  padding-bottom: 10px;
}

}

@media(max-width:768px) {

  .secEleven_box .review {
    padding: 10px 0;
    min-height: auto;
}

.secTen_box {
  height: auto;
}

.secNine .secNine_box .content_box {
  height: auto;
}

.banner_content h1 {
  font-size: 20px;
  line-height: 25px;
}



}

@media(max-width:767px) {

  .contact .button_s {
    position: absolute;
    left: 35%;
    transform: translateY(50%);
}

  .heading_div h3, .heading_div .left_h3 {
    font-size: 22px;
    line-height: 32px;
}

.heading_div .left_h3::before {
  left: 4%;
}

  .secEight .secSliderWrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

  .banner_content h1 {
    font-size: 25px;
    line-height: 30px;
}

.banner .slick-dots {
  bottom: 18%;
  left: 0;
}

.heading_div h2 br, .heading_div .left_h2 br{
  display: none;
}

.secFour_p {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

.ftr_contact {
  grid-template-columns: 10% 80%;
}

.secEleven .secSliderNavWrap {
  width: 110%;
}

.banner_content p {
  font-size: 15px;
  line-height: 20px;
  padding-bottom: 10px;
  margin: 0;
  color: #fff;
}

.button_s, .button_ol{
  padding: 5px 20px;
}

.site-logo img {
  width: 60%;
}

.header-nav {
  background: linear-gradient(90deg,#fff 15%,var(--main-clr) 15%,var(--main-clr))!important;
}

.site-logo {
  bottom: -30%;
  left: 20%;
}

.shape3 {
  top: 10%;
  left: 2%;
}

.heading_div h2, .heading_div .left_h2 {
  font-size: 30px;
  line-height: 30px;
}

.secFour_box .button_s {
  bottom: -3%;
  left: 50%;
}

.secFour_box ul li {
  grid-template-columns: 8% 92%;
}

.desktop_view{
  display: none;
}

.mobile_view{
  display: block;
}

.secOne_div .secOne_div_content {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secOne .secSliderNavWrap {
  width: 110%!important;
  height: 113%!important;
}

.secOne_div p {
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}

.secTen {
  position: relative;
  overflow: hidden;
  margin-top: -150px;
  padding: 100px 0;
}

.secFour_box ul {
  min-height: auto;
}

}

@media(max-width:600px) {

  .service_details {
    padding: 50px 0;
}

.banner_content1 {
  top: 40% !important;
}

  .secTwo.common-padd{
    padding-top: 80px;
  }

  .common-padd-btm {
    padding-bottom: 130px!important;
}

.secThree {
  margin-top: -120px;
}

.list_img h6 {
  top: 41%;
  left: 30%;
  font-size: 18px;
}

.banner .slick-slide .main_img {
  height: 350px;
  object-fit: cover;
}

.banner_shape {
  position: absolute;
  bottom: -6px;
  z-index: 1000;
}

.secTen {
  position: relative;
  overflow: hidden;
  margin-top: -100px;
  padding: 100px 0;
}

}

@media(max-width:576px) {

  .footer-item1 {
    text-align: left;
  }
  
  .ftr_social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .secEight_txt {
    bottom: -60%;
    width: 94%;
}

.secEight .secSliderWrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}

}

@media(max-width: 540px){

.banner_shape {
    position: absolute;
    bottom: -1px;
    z-index: 1000;
}

}

@media(max-width:480px) {

  .contact .button_s {
    position: absolute;
    left: 30%;
    transform: translateY(50%);
}

  .icon_box {
    width: 80px;
    height: 80px;
  }

  .icon_box_inner {
    width: 70px;
    height: 70px;
  }

  .con_box {
    grid-template-columns: 11% 87%;
    margin: 20px 0 20px 40px;
}

  .banner_content1 h1 {
    font-size: 22px;
    line-height: 32px;
}

.service_details {
  position: relative;
  padding: 20px 0;
}

  .banner_content {
    top: 7%;
    left: 8%;
    width: 80%;
}

.banner .slick-slide .main_img {
  height: 290px;
  object-fit: cover;
}

.banner_shape {
  position: absolute;
  bottom: -9px;
  z-index: 1000;
  height: 60px;
  object-fit: cover;
}

.secOne_div {
  padding: 10px 20px;
}

  .site-logo img {
    width: 60%;
}

.site-logo {
  bottom: -27%;
  left: 21%;
}

.icon_ol {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
}

.icon_innr {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.icon_innr img{
  width: 40%;
}

.header-top-bar .line {
  margin: 0 2px;
}

/* .header-top-bar .btn{
  display: none;
} */

.secOne {
  padding-top: 40px;
}

.banner .slick-dots {
  bottom: -10%;
  left: 0;
}

.banner .slick-dots li button {
  border: 1px solid #9d9d9d;
}

.banner {
  margin-top: 115px;
}

.banner_content p {
  font-size: 12px;
  line-height: 12px;
  padding-bottom: 10px;
}

.button_s, .button_ol {
  padding: 5px 20px;
  font-size: 12px;
}

.heading_div h2, .heading_div .left_h2 {
  font-size: 20px;
  line-height: 20px;
}

.secThree_img4 {
  position: absolute;
  bottom: -30px;
  right: 0px;
  z-index: 0;
  width: 50%;
}

.list_img h6 {
  top: 41%;
  left: 42%;
  font-size: 18px;
}

.heading_div .left_h2::before {
  left: 5%;
}

.secFour_box .button_s {
  width: fit-content;
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
}

.secSeven_txt {
  position: absolute;
  bottom: 8%;
  left: 0%;
  width: 100%;
  color: #fff;
  background-color: var(--main-clr);
  padding: 5px 15px;
  border-radius: 2px;
  z-index: 10;
}

.secEight .secSliderWrap {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.secEight_txt {
  bottom: -30%;
  width: 94%;
}

}

@media(max-width: 414px){

  .site-logo img {
    width: 50%;
}

}

@media(max-width:390px) {

  .contact .button_s {
    position: absolute;
    left: 28%;
    transform: translateY(50%);
}

  .heading_div .left_h3::before {
    left: 6%;
}

  .banner_content {
    top: 7%;
    left: 3%;
    width: 90%;
}

.banner_content h1 {
  font-size: 16px;
  line-height: 20px;
}

.site-logo {
  bottom: -27%;
  left: 23%;
}

}

@media(max-width: 376px){

  .site-logo img {
    width: 40%;
}

.site-logo {
  bottom: -16%;
  left: 25%;
}

.banner_shape {
    position: absolute;
    bottom: -15px;
    z-index: 1000;
}

.banner .slick-dots {
  bottom: -14%;
  left: 0;
}

.banner .slick-slide .main_img {
  height: 240px;
  object-fit: cover;
}

.secEight .secSliderWrap {
  position: relative;
  overflow: hidden;
  height: 360px;
}

}

@media(max-width: 360px){

  .all_services .content_box h2 {
    font-size: 18px;
}

  .banner_content1 h1 {
    font-size: 18px;
    line-height: 24px;
}

  .site-logo img {
    width: 45%;
}

  .list_img h6 {
    top: 31%;
    left: 42%;
    font-size: 18px;
}

p, .secOne_div p, .footer-item p, .footer-item a {
  font-size: 11px;
  line-height: 22px;
}

.banner .slick-slide .main_img {
  height: 220px;
  object-fit: cover;
}

.secTwo p.clr_txt::before {
  top: 25%;
}

.secEight .secSliderWrap {
  position: relative;
  overflow: hidden;
  height: 330px;
}

}