*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  color: #363636;
  font-family: "Montserrat", sans-serif;
  /* font-family: "Oswald", sans-serif; */
  background-color: #000;
  margin: 0;
}

ul,
ol {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
a {
  text-decoration: none;
  transition: all 0.3s;
  color: #363636;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #363636;
  font-family: "Montserrat", sans-serif;
  margin: 0;
}
p {
  color: #363636;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  /* white-space: pre-wrap; */
  font-family: "Montserrat", sans-serif;
}
.container {
  max-width: 1340px;
  width: 100%;
  margin: auto;
}
/*header*/
.header {
  position: fixed;
  z-index: 9999;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 20px 0;
}
.header .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .flex .logo {
}
.header .flex .logo a {
}
.header .flex .logo a img {
  height: 55px;
}
.header_menu {
}
.header_menu ul {
  display: flex;
  align-items: center;
  height: 55px;
  line-height: 55px;
}
.header_menu ul li {
  position: relative;
  /* border-right: 1px solid #fff; */
}
.header_menu ul li a {
  padding: 0 15px;
  /* margin: 0 10px; */
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;

  position: relative;
  display: flex;
  gap: 10px;
  height: 40px;
  line-height: 40px;
}
.header_menu ul li:last-child a img {
  height: 50px;
  position: relative;
  top: -7px;
}
.header_menu ul li:last-child a {
  margin-left: 30px;
}
.header_menu ul li a:hover {
  color: #09e5de;
}
/* .header_menu ul li a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #fff;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
.header_menu ul li:not(:last-child) a:hover::before {
  height: 100%;
  opacity: 1;
}
.header_menu ul li:not(:last-child) a:hover {
  color: #363636;
} */
.burger-default {
  display: flex;
  align-items: center;
  position: relative;
}
.burger-default span {
  display: block;
  transition: all 0.3s;
}

.burger-default .burger-lines {
  position: relative;
  overflow: hidden;
  width: 30px;
  height: 30px;
}
.burger-default .burger-line {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-radius: 0;
  background-color: #fff;
}

.burger-default .burger-line:nth-of-type(1),
.burger-default .burger-line:nth-of-type(4) {
  top: 4px;
}
.burger-default .burger-line:nth-of-type(2),
.burger-default .burger-line:nth-of-type(5) {
  top: 14px;
}
.burger-default .burger-line:nth-of-type(3),
.burger-default .burger-line:nth-of-type(6) {
  bottom: 4px;
}
.burger-default .burger-line:nth-of-type(1),
.burger-default .burger-line:nth-of-type(2),
.burger-default .burger-line:nth-of-type(3) {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.burger-default .burger-line:nth-of-type(4),
.burger-default .burger-line:nth-of-type(5),
.burger-default .burger-line:nth-of-type(6) {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
}
.burger-default .burger-line:nth-of-type(1) {
  transition-delay: 0ms;
  width: 50%;
}
.burger-default .burger-line:nth-of-type(2) {
  transition-delay: 100ms;
  width: 75%;
}
.burger-default .burger-line:nth-of-type(3) {
  transition-delay: 200ms;
}
.burger-default .burger-line:nth-of-type(4) {
  transition-delay: 50ms;
}
.burger-default .burger-line:nth-of-type(5) {
  transition-delay: 150ms;
}
.burger-default .burger-line:nth-of-type(6) {
  transition-delay: 250ms;
}

.burger-default .burger-slashes {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
}
.burger-default .burger-slash {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 40px;
  height: 2px;
  border-radius: 0;
  background-color: #fff;
}
.burger-default .burger-slash:nth-of-type(1),
.burger-default .burger-slash:nth-of-type(3) {
  left: 1px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: translate(30px, 30px) rotate(45deg);
  transform: translate(30px, 30px) rotate(45deg);
}
.burger-default .burger-slash:nth-of-type(2),
.burger-default .burger-slash:nth-of-type(4) {
  right: 1px;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: translate(-30px, 30px) rotate(-45deg);
  transform: translate(-30px, 30px) rotate(-45deg);
}

.burger-default .burger-text {
  position: relative;
  overflow: hidden;
  margin-left: 6px;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}
.burger-default .burger-text-open {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.burger-default .burger-text-close {
  opacity: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.burger-default.burger-hover:hover .burger-line {
  background-color: #e5e5e5;
}
.burger-default.burger-hover:hover .burger-slash {
  background-color: #e5e5e5;
}
.burger-default.burger-hover:hover .burger-text {
  color: #e5e5e5;
}
.burger-default.burger-hover:not(.active):hover .burger-line:nth-of-type(1),
.burger-default.burger-hover:not(.active):hover .burger-line:nth-of-type(2),
.burger-default.burger-hover:not(.active):hover .burger-line:nth-of-type(3) {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
.burger-default.burger-hover:not(.active):hover .burger-line:nth-of-type(4),
.burger-default.burger-hover:not(.active):hover .burger-line:nth-of-type(5),
.burger-default.burger-hover:not(.active):hover .burger-line:nth-of-type(6) {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.burger-default.active .burger-line {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
.burger-default.active .burger-slash:nth-of-type(1) {
  opacity: 1;
  -webkit-transform: translate(0, 0) rotate(45deg);
  transform: translate(0, 0) rotate(45deg);
}
.burger-default.active .burger-slash:nth-of-type(2) {
  opacity: 1;
  -webkit-transform: translate(0, 0) rotate(-45deg);
  transform: translate(0, 0) rotate(-45deg);
}
.burger-default.active .burger-text-open {
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.burger-default.active .burger-text-close {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.burger-default.active.burger-hover:hover .burger-slash:nth-of-type(1) {
  opacity: 0;
  -webkit-transform: translate(-30px, -30px) rotate(45deg);
  transform: translate(-30px, -30px) rotate(45deg);
}
.burger-default.active.burger-hover:hover .burger-slash:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translate(30px, -30px) rotate(-45deg);
  transform: translate(30px, -30px) rotate(-45deg);
}
.burger-default.active.burger-hover:hover .burger-slash:nth-of-type(3) {
  opacity: 1;
  -webkit-transform: translate(0, 0) rotate(45deg);
  transform: translate(0, 0) rotate(45deg);
}
.burger-default.active.burger-hover:hover .burger-slash:nth-of-type(4) {
  opacity: 1;
  -webkit-transform: translate(0, 0) rotate(-45deg);
  transform: translate(0, 0) rotate(-45deg);
}

.team-panes .burger-text {
  color: #363636;
}
.team-panes .burger-default .burger-slash {
  background-color: var(--black);
}
.team-panes .burger-default:hover .burger-slash {
  background-color: var(--black);
}
/*header*/

/*---------cart_open-----------*/

.cart_open {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
.innerpgbx .cart_open {
  z-index: 99999;
}
.cartbg1 {
  position: fixed;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 53, 66, 0.3);
}
.cart_bx1 {
  width: 100%;
  /* background-color: #2a3542; */
  /* padding-top: 50px; */
  height: 100vh;
  left: 0%;
  transition: ease all 0.5s;
  top: -100%;
  position: fixed;
  display: table;
  vertical-align: middle;
  /* box-shadow: 0 10px 50px rgba(1, 2, 2, .15); */
  background-color: #ededed;
  z-index: 99999;
  overflow: hidden;
  overflow-y: auto;
  background-image: url(../images/menu-wheel.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 350px;
}
a.closebtn,
a.closebtn1 {
  width: 63px;
  height: 63px;
  border-radius: 100%;
  background-color: #dadada;
  border: 0;
  cursor: pointer;
  /* -webkit-filter: drop-shadow(25px 18px 39px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(25px 18px 39px rgba(0, 0, 0, 0.2)); */
  position: absolute;
  right: 50px;
  top: 43px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
}
a.closebtn1 {
  width: 50px;
  height: 50px;
  right: -25px;
  top: -25px;
}
a.closebtn i {
}
a.closebtn:hover,
a.closebtn1:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.multi_tabs1 {
  width: 100%;
  position: relative;
  /* position: absolute;
  top: 0;
  left: 0; */
  height: 100vh;
  display: block;

  padding: 150px 55px 0 55px;
  padding-left: 35%;
}
ul.tabs1 {
  width: 55%;
  display: inline-flex;
  flex-direction: column;
  /* gap: 20px; */
  text-align: right;
  border-right: 1px solid #ffc20e;
}
ul.tabs1 li {
  font-size: 36px;
  font-weight: 700;
  color: #363636;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  padding: 10px 50px 10px 0;
  cursor: pointer;
  transition: all 0.3s;
}
ul.tabs1 li span {
  position: relative;
  display: inline-block;
}
ul.tabs1 li span::before {
  background-image: url(../images/path.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px;
  width: 44px;
  height: 9px;
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  opacity: 0;
}
ul.tabs1 li.active span::before {
  opacity: 1;
}
ul.tabs1 li.active,
ul.tabs1 li:hover {
  color: #d6681a;
}
.tab_container {
  float: right;
  width: 45%;
}
.tab_content1 {
}
.tabs_links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}
.tabs_links a {
  font-size: 19px;
  padding: 5px 50px;
}
.tabs_links a:hover {
  color: #d6681a;
}
.tab_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 35%;
  height: 100vh;
}
.tab_img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
}
.cart_open_search {
  position: absolute;
  top: 50px;
  width: 430px;
  height: 50px;
  left: 40%;
  z-index: 1;
}
.cart_open_search input.input-control {
  width: 100%;
  height: 50px;
  border-radius: 30px;
  background-color: #dadada;
  font-size: 18px;
  padding: 10px 10px 10px 60px;
  border: 0;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: none;
  outline: 0;
}
.cart_open_search input.input-control:focus-visible {
}
button.btn-search {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background-color: transparent;
}
button.btn-search img {
  height: 22px;
}
/*---------cart_open_end----------*/

/*banner*/
#section0 img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  position: relative;
}
#section0::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  content: "";
  background: linear-gradient(to bottom, #000, transparent);
  z-index: 9;
}
/*banner*/

/*section1*/
.section1 {
  width: 100%;
  height: 100vh;
  background-image: url(../images/gb1.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /* padding-top: 90px; */
  display: flex;
  align-items: center;
}
.section1 .grid {
  display: grid;
  grid-template-columns: 25fr 50fr 25fr;
  align-items: center;
  gap: 10px;
  height: 100vh;
  padding-top: 90px;
}
.section1 .grid .sec1_img img {
  width: 100%;
}
.section1 p {
  text-align: center;
  color: #fff;
  font-size: 17px;
  margin: 0;
}
.main_heading {
  position: relative;
  width: 100%;
  text-align: center;
  color: #fff;
}
.main_heading i {
  font-style: normal;
  position: relative;
  display: inline-block;
  padding-bottom: 40px;
}
span.curvv {
  color: #09e5de;
  font-family: "Drina";
  font-size: 60px;
  position: absolute;
  left: -70px;
  top: -15px;
  transform: rotate(-25deg);
}
span.os {
  font-family: "Oswald", sans-serif;
  font-size: 76px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}
.main_heading i img {
  position: absolute;
  left: 60%;
  top: 70px;
  width: 330px;
  z-index: 9;
}
.sec2_img {
  position: relative;
  top: -20px;
}
/*section1*/

/*section2*/
.section2 {
  width: 100%;
  height: 100vh;
  /* display: flex;
  align-items: center; */
  padding-top: 70px;
}
.section2_btm {
  margin-top: -40px;
}
.section2 .grid {
  display: grid;
  margin-top: 10px;
}
.section2 .grid.grid1 {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.section2 .grid.grid1.grid2 {
  margin-top: 0;
}
.section2 .grid a {
  background-color: #393838;
  padding: 10px 40px;
  position: relative;
  width: 100%;
  display: block;
  border: 1px solid #393838;
  border-radius: 10px;
  color: #fff;
  transition: all 0.3s;
  overflow: hidden;
}
.section2 .grid a:hover {
  border-color: #fff;
}
.section2 .grid a .s2_num {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  position: relative;
  transition: all 0.3s;
}
.section2 .grid a:hover .s2_num {
  color: #fff;
}
.section2 .grid a p {
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
  position: relative;
  margin: 20px 0 0;
  z-index: 2;
  line-height: 1.4;
}
.section2 .grid a span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0;
}
.section2 .grid a:hover span {
  opacity: 1;
}
.section2 .grid a .grad {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/grad.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /* background: radial-gradient(#a100fea3, #a100fe3b, transparent, transparent); */
}
.section2 .grid a .grad img {
  height: 40px;
  transition: all 0.3s;
}
.section2 .grid a:hover .grad img {
  height: 30px;
}
/*section2*/

/*section3*/
.section3 {
  width: 100%;
  height: 100vh;
  background-image: url(../images/bg2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /* padding-top: 90px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.section3::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #000;
  opacity: 0.75;
}
.section3 .fp-tableCell {
  align-items: center;
  display: flex;
}
.section3 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 50px;
}
.section3 ul li {
}
.section3 ul li a {
  background-color: rgba(0, 0, 0, 0.52);
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  width: 300px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
}
.section3 ul li a:hover {
  background-color: #c2c2c2b7;
  color: #000;
}
/*section3*/

/*section4*/
.section4 {
  padding-top: 30px;
}
.section4 .grid {
  display: grid;
  grid-template-columns: 30fr 40fr 30fr;
  gap: 30px;
  /* padding: 0 100px; */
  margin-top: -130px;
}
.section4 .grid a {
  display: block;
  text-align: center;
}
.section4 .grid a img {
  width: 140%;
  position: relative;
  left: -20%;
  display: block;
  transition: all 0.3s;
}
.section4 .grid a:hover > img {
  transform: scale(0.9);
}
.section4 .grid a h3 {
  color: #fff;
  margin-top: -120px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}
.section4 .grid a h3::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  content: "";
  width: 180px;
  height: 1px;
  background-color: #fff;
}
.section4 .grid a .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.section4 .grid a .flex img {
  height: 30px;
  width: auto;
  left: auto;
}
/*section4*/

/*section5*/
.section5 {
  background-color: #1c1919;
  padding-top: 90px;
  width: 100%;
  height: 100vh;
  background-image: url(../images/life-footer.svg);
  background-repeat: repeat;
  background-position: center center;
  background-size: 25%;
}
.copyrights {
  position: absolute;
  left: 0;
  bottom: 90px;
  z-index: 9;
  width: 100%;
  padding: 10px 0;
  background-color: #000;
}
.copyrights .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
a.ft_logo img {
  height: 50px;
}
.ft_soc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.ft_soc a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a191a;
  border-radius: 5px;
  color: #fff;
  font-size: 24px;
  transition: all 0.3s;
}
.ft_soc a:hover {
  background-color: #fff;
  color: #000;
}
.copyrights .flex span {
  color: #fff;
  font-family: "Oswald", sans-serif;
}
.section5 .grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 50px;
}
.section5 h2 {
  font-family: "Oswald", sans-serif;
  font-size: 76px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}
.section5 h2 span {
  color: #09e5de;
  font-family: "Drina";
  font-size: 60px;
  position: relative;
  left: -30px;
  top: 5px;
  display: inline-block;
  transform: rotate(-25deg);
}
.section5 .grid .flex {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 15px;
  margin-top: 30px;
}
.section5 .grid .flex img {
  width: 25px;
}
.section5 .grid .flex h3 {
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 24px;
  margin: -10px 0 10px;
}
.section5 .grid .flex p,
.section5 .grid .flex a {
  color: #fff;
  font-size: 18px;
}

.section5 input.form-control,
.section5 textarea.form-control {
  border-radius: 0;
  margin-bottom: 5px;
  background-color: #000;
  color: #fff;
  border: 0;
  height: 50px;
  padding: 20px 20px;
  border: 0;
  width: 100%;
  display: block;
  font-family: "Montserrat", sans-serif;
}
.section5 textarea.form-control {
  height: 100px;
  margin-bottom: 15px;
}
input.btn {
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
  border-radius: 0;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #2fa9e5;
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
}
input.btn:hover {
  background-color: #fff;
  color: #2fa9e5;
}
/*section5*/

/*enquiry_popup*/
.login_pop {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  /* background: rgba(0, 0, 0, 0.65); */
  z-index: 99999999;
  display: none;
}
.login_pop_bx1 {
  position: fixed;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}
.pop_content {
  width: 100%;
  max-width: 900px;
  padding: 20px 40px;
  margin: auto;
  margin-top: 3%;
  left: 0;
  right: 0;

  transition: ease all 0.5s;
  top: -100%;
  position: fixed;
  display: table;
  vertical-align: middle;
  /* box-shadow: 0 10px 50px rgba(1, 2, 2, .15); */
  background-color: #ededed;
  z-index: 99999;
  overflow: hidden;
  overflow-y: auto;
  background-image: url(../images/menu-wheel.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 350px;
}
.pop_content h2,
.pop_content p {
  text-align: center;
  font-size: 16px;
  color: #000;
}
.pop_content h2 {
  font-size: 32px;
  font-weight: 700;
}
.pop_content p {
  margin: 10px 0 020px;
}
.login_pop_rt {
  width: 100%;
}
.pop_content .grid {
  display: grid;
  gap: 20px;
  margin-bottom: 15px;
}
.pop_content .grid.grid2 {
  grid-template-columns: repeat(2, 1fr);
}
.pop_content .grid.grid1 {
  grid-template-columns: repeat(1, 1fr);
}
.pop_content .grid label {
  width: 100%;
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}
.pop_content .grid label span {
  color: #e52191;
}
.pop_content .grid input.form-control,
.pop_content .grid select.form-control {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background-color: #dadada;
  font-size: 18px;
  padding: 10px;
  border: 0;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: none;
  outline: 0;
}
.pop_content .grid select.form-control {
  cursor: pointer;
}
button.btn {
  background-color: #770039;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  color: #fff;
  padding: 20px 40px;
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
  margin: auto;
}
button.btn img {
  height: 16px !important;
  width: auto !important;
}
button.btn:hover {
  background-color: #000;
}
/*enquiry_popup*/

.fp-viewing-p2 .header,
.fp-viewing-p3 .header,
.fp-viewing-p4 .header,
.fp-viewing-p5 .header,
.fp-viewing-p6 .header,
.fp-viewing-p7 .header,
.fp-viewing-p8 .header,
.fp-viewing-p9 .header,
.fp-viewing-p10 .header {
  background-color: #0000002e;
  padding: 0;
}
.fp-viewing-p2 .header .flex .logo a img,
.fp-viewing-p3 .header .flex .logo a img,
.fp-viewing-p4 .header .flex .logo a img,
.fp-viewing-p5 .header .flex .logo a img,
.fp-viewing-p6 .header .flex .logo a img,
.fp-viewing-p7 .header .flex .logo a img,
.fp-viewing-p8 .header .flex .logo a img,
.fp-viewing-p9 .header .flex .logo a img,
.fp-viewing-p10 .header .flex .logo a img {
  padding: 7px 0;
}
.fp-viewing-p2 .header_menu ul li:last-child a img,
.fp-viewing-p3 .header_menu ul li:last-child a img,
.fp-viewing-p4 .header_menu ul li:last-child a img,
.fp-viewing-p5 .header_menu ul li:last-child a img,
.fp-viewing-p6 .header_menu ul li:last-child a img,
.fp-viewing-p7 .header_menu ul li:last-child a img,
.fp-viewing-p8 .header_menu ul li:last-child a img,
.fp-viewing-p9 .header_menu ul li:last-child a img,
.fp-viewing-p10 .header_menu ul li:last-child a img {
  padding: 5px 0;
  top: -5px;
}
a.mobilemenu,
a.closeicon {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2fa9e5;
  border-radius: 50px;
  color: #fff;
  font-size: 24px;
  z-index: 99999999;
  display: none;
}
@media screen and (max-width: 1500px) {
  .imagine-svg1 {
    max-width: 700px;
  }
  .section1_in .flex h2 {
    font-size: 48px;
    margin-top: -45px;
  }
}
@media screen and (max-width: 960px) {
  .header_menu {
    display: none;
  }
  .header .flex .logo {
    /* display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; */
    padding-left: 20px;
  }
  #section0 img {
    height: 50vh;
  }
  .header .flex .logo a img {
    height: 35px;
  }
  .section2 .grid.grid1,
  .section1 .grid {
    grid-template-columns: repeat(1, 1fr);
    height: auto;
  }
  .section1 .grid {
    padding: 0;
  }
  .section1 .grid .sec1_img img {
    width: 100%;
    margin: auto;
    padding: 10px 20%;
  }
  .section2 .grid a p {
    font-size: 15px;
  }
  .section4 .grid a img {
    width: 110%;
    position: relative;
    left: -10%;
  }
  span.curvv {
    font-size: 32px;
  }
  span.os {
    font-size: 36px;
  }
  .main_heading i img {
    width: 150px;
    top: 30px;
  }
  .section4 .grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: -75px;
    gap: 10px;
  }
  .section4 .grid a h3 {
    margin-top: -60px;
  }
  .section1,
  .section2,
  .section3,
  .section4,
  .section5 {
    padding: 50px 20px;
    position: relative;
    height: auto;
  }
  .section5 .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
  }
  .section5 h2 {
    font-size: 32px;
  }
  .section5 h2 span {
    font-size: 28px;
  }
  .section5 .grid .flex h3 {
    font-size: 21px;
  }
  .section5 .grid .flex p,
  .section5 .grid .flex a {
    font-size: 16px;
  }
  .copyrights {
    position: relative;
    bottom: 0;
  }
  .copyrights .flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    /* margin-top: 50px; */
  }
  a.ft_logo img {
    height: 30px;
  }
  a.mobilemenu,
  a.closeicon {
    display: flex;
  }
  .header_menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    padding: 50px;
    background-color: #000;
    z-index: 9999999999;
    top: 0;
    left: 0;
  }
  .header_menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    text-align: center;
    height: auto;
    line-height: 1;
  }
}
