@charset "utf-8";
/* CSS Document */

/* CSS Document © 2025 Envinto */
@font-face {
  font-family: "AppetitePro";
  src: url("../fonts/AppetitePro.eot");
  src: url("../fonts/AppetitePro.eot?#iefix") format("embedded-opentype"),
    url("../fonts/AppetitePro.woff2") format("woff2"),
    url("../fonts/AppetitePro.woff") format("woff"),
    url("../fonts/AppetitePro.ttf") format("truetype"),
    url("../fonts/AppetitePro.svg#AppetitePro") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

::-moz-selection {
  background: #7b7d7f;
  color: var(--primary-color);
  text-shadow: none;
}

::selection {
  background: #7b7d7f;
  color: var(--primary-color);
  text-shadow: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
textarea,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  font-family: "AppetitePro";
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  color: #000;
  background: #ffffff;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden !important;
  scroll-behavior: smooth;
}

:root {
  --primary: #000;
  --secondary: #ffffff;
  --global: #393185;
  overflow: hidden;
  overflow-y: scroll;
}

a {
  text-decoration: none;
  transition: all 0.25s ease-out 0s;
  outline: none;
  box-shadow: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-family: "AppetitePro";
}

p,
p span {
  font-family: "AppetitePro";
}

img {
  border: 0px;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: var(--secondary-color);
}

::-moz-placeholder {
  color: var(--secondary-color);
}

:-ms-input-placeholder {
  color: var(--secondary-color);
}

:-moz-placeholder {
  color: var(--secondary-color);
}

section,
header,
footer {
  width: 100%;
  float: left;
}

img {
  max-width: 100%;
  display: block;
}

strong {
  font-weight: bold;
}

.container {
  width: 94%;
  max-width: 1320px;
  margin: 0 auto;
}

/* -------header-wrapp------- */
.header-wrapp {
  padding: 10px 0 10px 0;
}

.header-wrapp .header-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.header-wrapp .logo {
  width: 170px;
  transition: all 0.25s ease-in-out;
}

.header-wrapp .header-right {
  width: auto;
}

.header-wrapp .header-right ul {
  width: 100%;
}

.header-wrapp .header-right ul li {
  display: inline-block;
  font-size: 16px;
  color: var(--primary);
  /* text-transform: uppercase; */
  margin: 0 8px;
}

.header-wrapp .header-right ul li a {
  color: var(--primary);
  padding: 10px;
  display: block;
}

.header-wrapp .header-right ul li a:hover {
  color: var(--global);
}

.header-wrapp .header-btn {
  display: inline-block;
  padding: 15px 28px 15px;
  background: var(--global);
  color: #ffff;
  border-radius: 50px;
  border: 1px solid var(--global);
  font-size: 16px;
}

.header-wrapp .header-btn:hover {
  background: none;
  color: var(--global);
}

.header-wrapp.sticky {
  position: fixed;
  background: var(--secondary);
  z-index: 9;
  animation: 0.7s slide-down;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-wrapp.sticky .logo {
  width: 150px;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

/* ---------banner-wrapp--------- */
.banner-wrapp {
  position: relative;
  background: #d6edf7;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

.banner-wrapp .bg-img {
  width: 100%;
  height: 100%;

  overflow: hidden;
}

.banner-wrapp .bg-img img {
  width: 100%;
  height: 49.5vw;
  object-fit: cover;
  display: block;
}

.banner-wrapp .banner-content {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 0 15px;
}

.banner-wrapp .banner-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.banner-wrapp .banner-col1 {
  width: 48%;
  z-index: 1;
}

.banner-wrapp .banner-col2 {
  width: 36%;
  padding: 70px 0 0;
  height: auto;
  position: absolute;
  right: 5%;
  z-index: 1;
  bottom: 0;
}

.banner-wrapp .banner-col2 img {
  width: 100%;
  object-fit: contain;
  /* Ensure image fits without stretching */
}

.banner-wrapp h1 {
  font-size: 50px;
  color: var(--secondary);
  line-height: 1.23;
  margin: 0 0 15px;
}

.banner-wrapp p {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 20px;
  color: var(--secondary);
}

.banner-wrapp .banner-btn {
  display: inline-block;
  padding: 15px 28px;
  background: var(--global);
  color: #fff;
  border-radius: 50px;
  border: 1px solid var(--global);
  font-size: 16px;
  transition: background 0.3s ease;
}

.banner-wrapp .banner-btn:hover {
  background: none;
  color: var(--global);
}

.banner-wrapp .bg-img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}

.banner-wrapp .banner-content .banner-row .banner-col1 ul li {
  /* display: flex; */
}

/* Aligning list items in the same line */
.banner-wrapp ul {
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  /* display: flex; */
  gap: 15px;
  list-style: none;
}

.banner-wrapp ul li {
  display: inline-block;
  align-items: center;
  color: var(--secondary);
  font-size: 16px;
  position: relative;
}

/* Adding separator between list items */
.banner-wrapp ul li:not(:last-child)::after {
  content: "|";
  margin-left: 15px;
  color: var(--secondary);
}

/* ---------abouts-wrapp-------- */
.abouts-wrapp {
  padding: 80px 0;
  background: var(--secondary);
  position: relative;
}

.abouts-wrapp .abouts-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.abouts-wrapp h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #393185;
}

.abouts-wrapp h3 {
  font-size: 38px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--primary);
}

.abouts-wrapp p {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 20px;
}

.abouts-wrapp .abouts-left {
  width: 25%;
}

.abouts-wrapp .abouts-right {
  width: 72%;
}

.abouts-wrapp .abouts-row1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.abouts-wrapp .abouts-col1 {
  width: 48%;
  margin: 20px 0 0;
}

.abouts-wrapp .abouts-col1 .abouts-icon {
  width: 65px;
  height: 65px;
  background: #393185;
  padding: 15px;
  border-radius: 10px;
  margin: 0 0 15px;
}

.abouts-wrapp h5 {
  font-size: 20px;
  color: var(--primary);
  margin: 0 0 10px;
}

.abouts-wrapp .about-counter {
  width: 100%;
  margin: 70px 0 0;
  text-align: center;
}

.abouts-wrapp .about-counter .abouts-row2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.abouts-wrapp .about-counter .counter-col1 {
  width: 24%;
  margin: 0 1.33% 0 0;
}

.abouts-wrapp .about-counter .counter-col1 h1 {
  font-size: 56px;
  font-weight: 600;
  margin: 0 0 9px;
  color: #393185;
}

.abouts-wrapp .about-counter .counter-col1:last-child {
  margin-right: 0;
}

.service-wrapp {
  padding: 80px 0 80px;
  background: #ededed;
}

.service-wrapp .service-head {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px;
}

.service-wrapp .service-col1 {
  width: 48%;
}

.service-wrapp .service-col2 {
  width: 50%;
  padding-left: 2%;
  border-left: 1px solid var(--secondary);
  margin-left: 2%;
}

.service-wrapp h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 20px;
}

.service-wrapp h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #393185;
  text-align: center;
}

.service-wrapp p {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 10px;
}

.service-wrapp .service-col3 {
  width: 32%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 2% 30px 0;
  max-height: 500px;
}

.service-wrapp .service-col3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.service-wrapp .service-col3 .service-conten {
  position: absolute;
  padding: 30px;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.service-wrapp .service-col3 .service-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 1;
  top: 30px;
  right: 30px;
  background: #213e99;
  border-radius: 50%;
  padding: 20px;
  transition: all 0.4s ease-in-out;
  transform: rotate(-45deg);
}

.service-wrapp .service-col3:hover .service-btn {
  transform: rotate(0);
}

.service-wrapp h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 20px;
}

.service-wrapp .service-col3 p {
  color: #fff;
}

.service-wrapp .service-col3:before {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.service-wrapp .service-col3:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(360deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0) 105%);
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.service-wrapp .service-col3:hover img {
  transform: scale(1.08);
}

.service-wrapp .service-col3:hover:before {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.service-wrapp .service-row {
  width: 100%;
}

.service-wrapp .service-col3:nth-child(3n) {
  margin-right: 0;
}

.service-wrapp .service-col3:last-child {
  margin-right: 0;
}

.service-wrapp .serv-slide .slick-slide>div {
  width: 95%;
  margin: 0 auto;
}

.service-wrapp .serv-slide .service-col3 {
  width: 100%;
  margin: 0 0 0;
}

.service-wrapp2 {
  background: var(--secondary);
  padding: 80px 0 50px;
}

.service-wrapp2 .service-row {
  display: flex;
  flex-wrap: wrap;
}

.testimonial-wrapp {
  padding: 80px 0;
  position: relative;
  text-align: center;
  background: var(--secondary);
}

.testimonial-wrapp h2 {
  font-size: 40px;
  font-weight: 600;
  color: #393185;
  margin: 0 0 40px;
}

.testimonial-wrapp .testimonial-item {
  width: 100%;

  padding: 50px 30px;
  height: 100%;
  border: 1px solid #393185;
  margin: 0 0 10px;
}

.testimonial-wrapp .testimonial-item .avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
}

.testimonial-wrapp .testimonial-item .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}

.testimonial-wrapp .testimonial-item h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--primary);
  text-transform: uppercase;
}

.testimonial-wrapp .testimonial-item h5 {
  font-size: 16px;
  color: var(--primary);
  margin: 0 0 20px;
  text-transform: uppercase;
}

.testimonial-wrapp .testimonial-item .rating {
  width: 100px;
  margin: 0 auto 28px;
}

.testimonial-wrapp .testimonial-item p {
  font-size: 16px;
  line-height: 1.56;
  font-style: inherit;
  color: var(--primary);
}

.testimonial-wrapp .slick-track {
  display: flex;
  flex-wrap: wrap;
}

.testimonial-wrapp .slick-track .slick-slide {
  height: inherit;
}

.testimonial-wrapp .slick-track .slick-slide>div {
  width: 94%;
  margin: 0 auto;
  height: 100%;
}

.testimonial-wrapp .slick-dots li button:before {
  background: #ffffff;
}

.contact-wrapp {
  padding: 80px 0px;
  position: relative;
}

.contact-wrapp .contact-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.contact-wrapp .contact-col1 {
  width: 48%;
}

.contact-wrapp h2 {
  font-size: 44px;
  color: var(--primary-color);
  margin: 0 0 20px;
  font-weight: 500;
}

.contact-wrapp p {
  font-size: 16px;
  line-height: 1.56;
  color: var(--primary-color);
  margin: 0 0 20px;
}

.contact-wrapp .contact-add {
  width: 100%;
}

.contact-wrapp .contact-add li {
  display: block;
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 15px;
  padding-left: 30px;
  position: relative;
}

.contact-wrapp .contact-add li a {
  color: var(--primary-color);
}

.contact-wrapp .contact-add li a:hover {
  color: var(--global);
}

.contact-wrapp .contact-add li .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 5px;
}

.contact-wrapp .social-icons {
  width: 100%;
  margin: 30px 0 0;
}

.contact-wrapp .social-icons ul {
  width: 100%;
}

.contact-wrapp .social-icons ul li {
  display: inline-block;
  margin: 0 15px 0 0;
}

.contact-wrapp .social-icons ul li .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 10px;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--global);
  transition: all 0.25s ease-in-out;
}

.contact-wrapp .social-icons ul li .icon .hover-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

.contact-wrapp .social-icons ul li .icon img {
  width: 100%;
  height: 100%;
  transition: all 0.25s ease-in-out;
}

.contact-wrapp .social-icons ul li:hover .icon>img {
  opacity: 0;
}

.contact-wrapp .social-icons ul li:hover .icon .hover-icon {
  opacity: 1;
}

.contact-wrapp .social-icons ul li:hover .icon {
  background: transparent;
}

.contact-wrapp .social-icons ul li .icon:after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--global);
  border-radius: 50%;
  opacity: 1;
  transition: 0.25s ease-out 0s;
  margin: 0 0 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.contact-wrapp .social-icons ul li .icon:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 50%;
  background: var(--global);
  -o-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -ms-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -moz-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -o-mask-composite: exclude;
  -ms-mask-composite: exclude;
  -moz-mask-composite: exclude;
  -webkit-mask-composite: exclude;
  -o-mask-composite: destination-out;
  -ms-mask-composite: destination-out;
  -moz-mask-composite: destination-out;
  -webkit-mask-composite: destination-out;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.contact-wrapp .social-icons ul li .icon:hover:after {
  opacity: 0;
}

.contact-wrapp .contact-col2 {
  width: 48%;
  position: relative;
  margin: 0 0 0;
}

.contact-wrapp .contact-form {
  width: 100%;
  padding: 50px;
  background: var(--secondary-color);
  border-radius: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.contact-wrapp .contact-form input {
  width: 100%;
  height: 52px;
  margin: 0 0 20px;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid;
}

.contact-wrapp .contact-form input::placeholder,
.contact-wrapp .contact-form textarea::placeholder {
  color: var(--primary-color);
}

.contact-wrapp .contact-form textarea {
  width: 100%;
  height: 131px;
  border: 1px solid var(--primary);
  margin: 0 0 20px;
  font-size: 16px;
  padding: 12px 20px;
  resize: none;
  border-radius: 8px;
}

.contact-wrapp .contact-form .submit-btn {
  display: inline-block;
  font-size: 16px;
  color: var(--secondary);
  margin: 0 0 0 auto;
  position: relative;
  padding: 14px 28px 14px 28px;
  font-weight: 500;
  background: var(--global);
  border: 1px solid var(--global);
  border-radius: 50px;
  font-family: "AppetitePro";
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.contact-wrapp .contact-form .submit-btn:hover {
  color: var(--global);
  background: none;
}

.contact-wrapp .contact-form h2 {
  margin: 0 0 30px;
}

.faq-wrapp {
  padding: 80px 0;
  position: relative;
  text-align: center;
  background: #ededed;
}

.faq-wrapp .faq-row {
  width: 100%;
}

.faq-wrapp .faq-col1 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.faq-wrapp h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 20px;
}

.faq-wrapp h2 {
  font-size: 46px;
  font-weight: 600;
  color: #393185;
  margin: 0 0 32px;
}

.faq-wrapp .accordion {
  width: 100%;
  text-align: left;
}

.faq-wrapp .accordion .accordion-item {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.102);
  margin: 0 0 20px;
  border-radius: 10px;
  background: var(--secondary);
}

.faq-wrapp .accordion h2 {
  font-size: 18px;
  margin: 0 0 0;
  padding: 20px 50px 20px 20px;
  cursor: pointer;
  position: relative;
  color: var(--primary);
}

.faq-wrapp .accordion .accordion-item .accodion-content {
  width: 100%;
  padding: 0 20px 20px;
  display: none;
}

.faq-wrapp .accordion .accordion-item .accodion-content p {
  font-size: 14px;
  line-height: 1.56;
}

.faq-wrapp .accordion .accordion-item.active h2 {
  color: #393185;
}

.faq-wrapp .accordion h2:after {
  content: "";
  background: url(../images/chevron-down-solid.svg) no-repeat center / 100%;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.faq-wrapp .accordion .active h2:after {
  background: url(../images/chevron-up-solid.svg) no-repeat center / 100%;
}

.footer-wrapp {
  padding: 60px 0 20px;
  background: black;
}

.footer-wrapp .footer-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-wrapp .footer-col1 {
  width: 24%;
}

.footer-wrapp .logo {
  width: 190px;
  margin: 0 0 20px;
}

.footer-wrapp .logo img {
  width: 100%;
}

.footer-wrapp p {
  font-size: 16px;
  color: #ffff;
  line-height: 1.56;
  margin: 0 0 30px;
}

.footer-wrapp .footer-social {
  width: 100%;
}

.footer-wrapp .footer-social ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.footer-wrapp .footer-social ul li {
  width: auto;
  margin: 0 13px 0 0;
}

.footer-wrapp .footer-social ul li img {
  width: 100%;
  height: 100%;
  transition: all 0.25s ease-in-out;
}

.footer-wrapp .footer-social ul li a {
  display: block;
  width: 35px;
  height: 35px;
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.footer-wrapp .footer-social ul li:hover a {
  background: none;
}

.footer-wrapp .footer-social ul li:hover img {
  filter: brightness(10);
}

.footer-wrapp .footer-col2 {
  width: 12%;
}

.footer-wrapp h3 {
  font-size: 20px;
  color: #fff;
  margin: 0 0 20px;
}

.footer-wrapp ul {
  width: 100%;
}

.footer-wrapp ul li {
  font-size: 16px;
  margin: 0 0 10px;
  color: #fff;
}

.footer-wrapp ul li a {
  color: #ffff;
}

.footer-wrapp ul li a:hover {
  color: var(--global);
}

.footer-wrapp .footer-col3 {
  width: 23%;
}

.footer-wrapp .footer-col3 li .icon {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
}

.footer-wrapp .footer-col3 li .icon img {
  transform: none;
  width: 100%;
  height: 100%;
}

.footer-wrapp .footer-col4 {
  width: 25%;
}

.footer-wrapp .footer-news {
  width: 100%;
}

.footer-wrapp .footer-news input {
  width: 100%;
  height: 48px;
  background: none;
  color: var(--secondary);
  border: 1px solid #fff;
  text-align: left;
  font-size: 14px;
  padding: 10px;
  border-radius: 10px;
  flex: 1 0 0;
}

.footer-wrapp .footer-news input::placeholder {
  color: #fff;
}

.footer-wrapp .footer-news form {
  width: 100%;
  display: flex;
}

.footer-wrapp .footer-news .submit-btn {
  padding: 10px 13px;
  background: var(--global);
  border: 1px solid var(--global);
  border-radius: 10px;
  margin: 0 0 0 10px;
  color: #fff;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  font-family: "AppetitePro";
}

.footer-wrapp .footer-news .submit-btn:hover {
  color: var(--primary);
  background: #fff;
  border-color: #ffff;
}

.footer-wrapp .footer-row1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #fff;
}

.footer-wrapp .footer-row1 p {
  margin: 0 0 0;
  font-size: 14px;
}

.footer-wrapp .footer-row1 p a {
  color: #fff;
  text-decoration: underline;
}

.footer-wrapp .footer-row1 p a:hover {
  text-decoration: none;
}


.footer-wrapp .footer-news .everest-forms {
  width: 100%;
}

.footer-wrapp .footer-news .everest-forms .evf-field-container {
  padding: 0 0;
  flex: 1 0 0;
}

.footer-wrapp .footer-news .everest-forms .evf-submit-container {
  padding: 0 0 0;
  margin: 0 0 0 10px;
}

.footer-wrapp .footer-news .everest-forms .evf-submit-container button {
  display: inline-block;
  font-size: 14px;
  color: var(--secondary);
  margin: 0 0 0 auto;
  padding: 12px 13px;
  font-weight: 500;
  background: var(--global);
  border: 1px solid var(--global);
  border-radius: 10px;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}



.inner-banner {
  position: relative;
}

.inner-banner .bg-img {
  width: 100%;
  position: relative;
}

.inner-banner .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner .inner-content {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  text-align: center;
}

.inner-banner h1 {
  font-size: 50px;
  color: var(--secondary);
}

.inner-banner .bg-img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 50%);
}

.about-wrapp {
  padding: 80px 0;
}

.about-wrapp .about-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-wrapp .about-col1 {
  width: 47%;
}

.about-wrapp .about-col2 {
  width: 47%;
  padding: 53px 0 0;
}

.about-wrapp h6 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #393185;
}

.about-wrapp h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 30px;
}

.about-wrapp .about-img1 {
  width: 100%;
}

.about-wrapp .about-img1 img {
  width: 100%;
  border-radius: 10px;
}

.about-wrapp .about-col3 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 30px;
}

.about-wrapp .about-col3 .about-img2 {
  width: 48%;
}

.about-wrapp .about-col3 .about-img2 img {
  width: 100%;
  border-radius: 10px;
}

.about-wrapp p {
  font-size: 16px;
  color: var(--primary);
  line-height: 1.56;
  margin: 0 0 30px;
}

.about-wrapp .about-col4 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-wrapp .about-col4 .about-col5 {
  width: 48%;
}

.about-wrapp .about-col4 .about-col5:last-child {
  margin-right: 0;
}

.about-wrapp h1 {
  font-size: 56px;
  font-weight: 800;
}

.mission-wrapp {
  padding: 80px 0;
  background: url(../images/mission-bg.jpeg) no-repeat center / cover;
  background-attachment: fixed;
}

.mission-wrapp .mission-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.mission-wrapp .mission-col1 {
  width: 48%;
  background: var(--secondary);
  padding: 30px 30px 10px;
  border-radius: 10px;
}

.mission-wrapp h2 {
  font-size: 30px;
  color: var(--global);
  margin: 0 0 18px;
}

.mission-wrapp p {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 20px;
}

.mission-wrapp .mission-col1 .mission-icon {
  width: 80px;
  margin: 0 0 20px;
}

.map-wrapp {
  padding: 0 0 80px;
}

.map-wrapp .map-row {
  width: 100%;
}

.map-wrapp .map-row iframe {
  width: 100%;
}

/* Error Page Section */

.error-page-section {
  padding: 60px 0;
  text-align: center;
}

.error-page-section h1 {
  font-size: 60px;
  color: var(--primary);
  margin: 0 0 20px;
  font-weight: 500;
}

.error-page-section h2 {
  font-size: 28px;
  margin: 0 0 20px;
}

.error-page-section p {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 20px;
}

.error-page-section .search-form {
  width: auto;
  max-width: 420px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.error-page-section .search-form input {
  width: 100%;
  height: 50px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--primary);
  border-image: initial;
  border-radius: 8px;
  padding: 0px 20px;
  background: no-repeat;
  margin: 0 10px 0 0;
  flex: 1 0 0;
}

.error-page-section .search-form .search-submit {
  display: inline-block;
  font-size: 14px;
  color: var(--secondary);
  margin: 0 0 0 auto;
  position: relative;
  padding: 14px 28px 14px 28px;
  font-weight: 500;
  background: var(--global);
  border: 1px solid var(--global);
  border-radius: 50px;
  font-family: "Poppins", serif;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.error-page-section .search-form .search-submit .screen-reader-text {
  font-size: 16px;
  clip: inherit;
  clip-path: inherit;
  position: relative !important;
  transition: all 0.25s ease-in-out;
}

.error-page-section .search-form .search-submit:hover {
  color: var(--primary);
  background: none;
}

.error-page-section .search-form .search-submit:hover .screen-reader-text {
  color: var(--primary);
}

.error-page-section .search-form input::placeholder {
  color: var(--primary);
}

/* Privacy Search Section */

.search-page-section {
  padding: 60px 0 0;
}

.search-page-section h1 {
  font-size: 32px;
  margin: 0 0 20px;
}

.search-page-section h3 {
  font-size: 28px;
  margin: 0 0 20px;
}

.search-page-section p {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 20px;
}

.search-page-section .search-btn1 {
  display: inline-block;
  background: var(--global);
  padding: 12px 26px 12px;
  color: var(--secondary);
  font-size: 13px;
  text-transform: uppercase;
  border: 1px solid var(--global);
  border-radius: 50px;
}

.search-page-section .search-btn1:hover {
  color: var(--global);
  background: none;
}

.search-page-section .search-page-card {
  width: 100%;
  margin: 0 0 50px;
}

.overlay {
  display: none;
}

.everest-forms .everest-form button[type="submit"] {
  display: inline-block;
  font-size: 14px;
  color: var(--secondary);
  margin: 0 0 0 auto;
  padding: 14px 28px 14px 28px;
  font-weight: 500;
  background: var(--global);
  border: 1px solid var(--global);
  border-radius: 50px;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.everest-forms .everest-form button[type="submit"]:hover {
  background: none;
  color: var(--global);
}

.everest-forms .evf-field-container .evf-frontend-row textarea {
  border: 1px solid;
}

.footer-wrapp .footer-news .everest-forms .evf-field-container .evf-frontend-row {
  margin: 0 0 0;
}

.footer-wrapp .footer-news .everest-forms .evf-field-container .evf-frontend-row .evf-frontend-grid.evf-grid-1 {
  padding: 0 0 0;
}


@media screen and (max-width: 1399px) {
  .banner-wrapp h1 {
    font-size: 38px;
  }


  .abouts-wrapp h2 {
    font-size: 38px;
  }

  .service-wrapp h2 {
    font-size: 38px;
  }

  .testimonial-wrapp h2 {
    font-size: 38px;
  }

  .faq-wrapp h2 {
    font-size: 38px;
  }

  .contact-wrapp h2 {
    font-size: 38px;
  }

  .contact-wrapp h2 {
    font-size: 38px;
  }

  .mission-wrapp h2 {
    font-size: 28px;
  }

  .abouts-wrapp h3 {
    font-size: 36px;
  }
}

@media screen and (max-width: 1199px) {
  .footer-wrapp .footer-news input {
    text-align: left;
  }

  .footer-wrapp .footer-news form {
    flex-wrap: wrap;
  }

  .banner-wrapp h1 {
    font-size: 24px;
  }

  .about-wrapp h1 {
    font-size: 46px;
  }

  .abouts-wrapp .about-counter .counter-col1 h1 {
    font-size: 50px;
  }
}

@media screen and (max-width: 991px) {
  .banner-wrapp .banner-row {
    padding: 15px 0;
  }

  .banner-wrapp .bg-img img {
    height: 420px;
  }

  .footer-wrapp h3 {
    font-size: 16px;
  }

  .footer-wrapp ul li a {
    font-size: 14px;
  }

  .footer-wrapp p {
    font-size: 15px;
  }

  .footer-wrapp .footer-news input {
    font-size: 12px;
  }

  .contact-wrapp h2 {
    font-size: 34px;
  }

  .banner-wrapp h1 {
    font-size: 34px;
  }

  .service-wrapp .service-col3 .service-conten {
    padding: 20px 30px;
  }

  .banner-wrapp .banner-col2 {
    display: none;
  }

  .banner-wrapp .banner-col1 {
    width: 100%;
  }

  .abouts-wrapp .abouts-right {
    width: 100%;
  }

  .abouts-wrapp .abouts-left {
    width: 100%;
  }

  .abouts-wrapp h3 {
    font-size: 34px;
  }

  .abouts-wrapp h2 {
    font-size: 28px;
  }

  .testi-slider {
    max-width: 100%;
    overflow: hidden;
  }

  .testi-slider .slick-slide {
    text-align: center;
  }

  .testi-slider .slick-track {
    display: flex !important;
  }

  .service-wrapp .service-col3 {
    width: 48%;
  }

  .service-wrapp .service-col3:nth-child(3n) {
    margin-right: 2%;
  }

  .service-wrapp .service-col3:nth-child(2n) {
    margin-right: 0;
  }

  .service-wrapp h2 {
    font-size: 36px;
  }

  .inner-banner h1 {
    font-size: 36px;
  }

  .faq-wrapp h2 {
    font-size: 36px;

  }

  .contact-wrapp h2 {
    font-size: 36px;
  }

  .contact-wrapp .contact-col1 {
    padding: 0 0 65px;
    width: 100%
  }

  .contact-wrapp .contact-col2 {
    width: 100%;
  }

  .abouts-wrapp {
    padding: 40px 0;
  }

  .footer-wrapp .footer-social ul {
    width: 141%;
  }

  .testimonial-wrapp {
    padding: 40px 0;
  }

  .faq-wrapp {
    padding: 40px 0;
  }

  .contact-wrapp .contact-row {
    flex-direction: column-reverse;
  }

  .overlay {
    display: none;
  }

  .service-wrapp p {
    line-height: 1.26;
  }

  .service-wrapp {
    padding: 40px 0 50px;
  }

  .contact-wrapp {
    padding: 40px 0;
  }

  .mission-wrapp h2 {
    font-size: 36px;
  }

  .abouts-wrapp .about-counter .counter-col1 h1 {
    font-size: 42px;
  }

  .abouts-wrapp .about-counter {
    margin: 50px 0 30px;
  }

}

@media screen and (max-width: 767px) {

  .service-wrapp h3 {
    font-size: 20px;
  }

  .about-wrapp .about-col1 {
    width: 100%;
  }

  .about-wrapp .about-col2 {
    width: 100%;

  }

  .service-wrapp {
    padding: 40px 0;
  }

  .service-wrapp .service-col3:nth-child(2n) {
    margin-right: 0;
  }

  .contact-wrapp h2 {
    font-size: 36px;
  }

  .contact-wrapp p {
    font-size: 14px;
  }

  .contact-wrapp .contact-add li {
    font-size: 14px;
  }

  .footer-wrapp .footer-row1 {
    justify-content: center;
  }

  .footer-wrapp .footer-news form {
    flex-direction: column;
  }

  .footer-wrapp .footer-news .submit-btn {
    margin: 0 0 0 0px;
  }

  .footer-wrapp .footer-col1 {
    width: 100%;
  }

  .footer-wrapp .logo {
    width: 190px;
  }


  .footer-wrapp .footer-col4 {
    width: 100%;
  }

  .footer-wrapp .footer-col2 {
    width: 50%;
    text-align: center;
    margin-top: 39px;
  }

  .footer-wrapp .logo img {
    width: 82%;
  }

  .footer-wrapp .footer-col3 {
    width: 45%;
    margin-top: 35px;
  }

  .testimonial-wrapp .testimonial-item {
    padding: 40px 20px;

  }

  .abouts-wrapp h3 {
    font-size: 33px;
  }

  .about-wrapp h2 {
    font-size: 35px;
  }

  .footer-wrapp .footer-news .submit-btn {
    margin: 0 0 0 0px;
    margin-top: 10px;
  }

  .header-wrapp .header-right {
    display: none;
  }

  .header-wrapp .header-btn {
    display: none;
  }

  .abouts-wrapp .abouts-row {
    flex-direction: column;
  }

  .footer-wrapp .footer-col2 {
    text-align: left;
  }


  .burger-btn {
    display: block;
    position: fixed;
    width: 30px;
    margin-top: -8px;
    height: 30px;
    right: 5%;
    top: 51px;
    z-index: 999;
    overflow: hidden;
  }

  .burger-btn .burger-toggle {
    display: flex;
    height: 38px;
    flex-wrap: wrap;
    justify-content: right;
  }

  .burger-btn span:first-child {
    width: 100%;
  }

  .burger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--global);
    background-size: 300% 100%;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  }

  .burger-btn .burger-toggle {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
  }

  .burger-btn:hover span {
    background-position: 50% 0;
  }

  .overlay.show {
    width: 50%;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    background: white;
  }

  .overlay {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 350px;
    height: 100%;
    background: var(--secondary-color);
    background-size: 300% 100%;
    z-index: 99;
    padding: 110px 5% 50px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
  }

  .overlay ul {
    width: 100%;
  }

  .overlay ul li {
    font-size: 18px;
    border-bottom: 1px solid var(--global);
    font-weight: 500;
  }

  .overlay ul li a {
    padding: 20px 0;
    display: block;
    color: var(--primary);
  }

  .burger-btn .active span:first-child {
    transform: translateY(13px) rotate(-45deg);
  }

  .burger-btn .active span:nth-child(2n) {
    transform: translateX(-100%);
  }

  .burger-btn .active span:last-child {
    transform: translateY(-11px) rotate(45deg);
  }

  .mission-wrapp h2 {
    font-size: 36px;
  }

  .about-wrapp h6 {
    font-size: 23px;
  }

  .everest-forms .everest-form button[type="submit"] {
    width: 100%;
  }

  .contact-wrapp .contact-form h2 {
    font-size: 36px;
  }

  .footer-wrapp .footer-news .everest-forms .evf-submit-container {
    margin: 0 0 0;
  }

  .footer-wrapp .footer-news input {
    text-align: center;
  }

  .sticky-comes .burger-btn {
    top: 41px;
  }

  .abouts-wrapp .about-counter .counter-col1 {
    width: 48%;
    margin: 0 4% 20px 0;
  }

  .abouts-wrapp .about-counter .counter-col1:nth-child(2n) {
    margin-right: 0;
  }

}

@media screen and (max-width: 601px) {
  .service-wrapp .service-col3 {
    height: 400px;
  }

  .banner-wrapp .bg-img img {
    height: 420px;
  }

  .faq-wrapp {
    padding: 40px 0;
  }

  .header-wrapp .header-right ul li a {
    display: none;
  }

  .header-wrapp .header-btn {
    display: none;
  }

  .header-wrapp {
    padding: 10px 0 10px;
  }

  .inner-banner .bg-img {
    height: 327px;
  }

  .service-wrapp2 {
    padding: 40px 0 50px;
  }

  .contact-wrapp .contact-row {
    flex-direction: column-reverse;
  }

  .contact-wrapp .contact-col2 {
    width: 100%;
  }

  .contact-wrapp .contact-col1 {
    width: 100%;
    padding: 0 0 30px;
  }

  .footer-wrapp .footer-row1 p {
    font-size: 12px;
  }

  .service-wrapp .service-col3:nth-child(3n) {
    margin-right: 0 0px;
  }

  .footer-wrapp .footer-col2 {
    width: 10px;
    align-items: flex-start;
  }

  .footer-wrapp ul li a {
    font-size: 16px;
  }

  .about-wrapp .about-col1 {
    width: 100%;
  }

  .about-wrapp .about-col2 {
    width: 100%;
  }

  .about-wrapp h2 {
    font-size: 28px;
  }

  .about-wrapp h1 {
    font-size: 28px;
  }

  .inner-banner h1 {
    font-size: 28px;
  }

  .contact-wrapp h2 {
    font-size: 28px;
  }

  .footer-wrapp .footer-col2 {
    width: 50%;
  }

  .contact-wrapp .contact-form h2 {
    font-size: 28px;
  }

  .mission-wrapp .mission-row {
    flex-direction: column;
  }

  .mission-wrapp .mission-col1 {
    width: 100%;
    margin-top: 10px;
  }

  .header-wrapp .header-right {
    display: none;
  }

  .header-wrapp .header-btn {
    display: none;
  }

  .service-wrapp p {
    font-size: 11px;
  }

  .service-wrapp .service-col3 .service-conten {
    padding: 15px;
  }

  .testimonial-wrapp h2 {
    font-size: 28px;
  }

  .service-wrapp h2 {
    font-size: 28px;
  }

  .service-wrapp p {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .inner-banner h1 {
    font-size: 30px;
  }

  .service-wrapp h2 {
    font-size: 28px;
  }

  .banner-wrapp p {
    font-size: 14px;
  }

  .footer-wrapp .logo {
    width: 190px;
    margin: 0 0 20px;
  }

  .footer-wrapp p {
    font-size: 15px;
  }

  .footer-wrapp .footer-social ul li {
    width: auto;
    margin: 0 1px 0 0;
  }

  .service-wrapp .service-col3 {
    width: 100%;
  }

  .inner-banner .bg-img {
    margin-top: 27px;
  }

  .footer-wrapp .footer-row1 {
    text-align: left;
  }

  .footer-wrapp .footer-col2 {
    text-align: left;
    width: 40%;
  }

  .faq-wrapp h2 {
    font-size: 38px;
  }

  .service-wrapp .service-col3 {
    margin: 0 0px 0;
    margin-top: 17px;
    width: 100%;
  }

  .contact-wrapp .contact-form {
    padding: 21px;
  }

  .contact-wrapp .contact-form h2 {
    font-size: 30px;
  }

  .footer-wrapp .footer-social ul li {
    padding: 10px;
  }

  .mission-wrapp .mission-col1 {
    width: 100%;
    margin-top: 24px;
  }

  .about-wrapp .about-row {
    flex-direction: column;
  }

  .about-wrapp .about-col1 {
    width: 100%;
  }

  .about-wrapp h2 {
    font-size: 21px;
  }

  .about-wrapp h6 {
    font-size: 23px;
  }

  .about-wrapp {
    padding: 40px 0;
  }

  .about-wrapp .about-col2 {
    width: 100%;
  }

  .banner-wrapp h1 {
    font-size: 28px;
  }

  .abouts-wrapp {
    padding: 30px 0;
  }


  .abouts-wrapp h3 {
    font-size: 21px;
  }

  .service-wrapp h2 {
    font-size: 28px;
  }

  .service-wrapp {
    padding: 40px 0 80px;
  }

  .testimonial-wrapp {
    padding: 40px 0;
  }

  .testimonial-wrapp h2 {
    font-size: 28px;
  }

  .faq-wrapp {
    padding: 40px 0;
  }

  .faq-wrapp .accordion h2 {
    font-size: 14px;
  }

  .faq-wrapp h2 {
    font-size: 28px;
  }

  .contact-wrapp h2 {
    font-size: 28px;
  }

  .footer-wrapp p {
    font-size: 14px;
  }

  .footer-wrapp ul li a {
    font-size: 14px;
  }

  .abouts-wrapp .abouts-row1 {
    flex-direction: column;
  }

  .abouts-wrapp .abouts-col1 {
    width: 100%;
  }

  .service-wrapp .service-col3 .service-conten {
    padding: 17px;
  }

  .banner-wrapp ul {
    display: block;
  }

  .overlay.show {
    width: 100%
  }

  .mission-wrapp h2 {
    font-size: 30px;
  }

  .banner-wrapp .bg-img img {
    height: 100%;
  }

  .banner-wrapp .bg-img {
    position: absolute;
  }

  .banner-wrapp .banner-content {
    position: relative;
  }

  .testimonial-wrapp .testimonial-item {
    padding: 30px;

  }

  .footer-wrapp .footer-row1 {
    text-align: center;
  }

  .sticky-comes .burger-btn {
    top: 33px;
  }

  .header-wrapp.sticky .logo {
    width: 120px;
  }

  .abouts-wrapp .about-counter .counter-col1 h1 {
    font-size: 36px;
  }

  .abouts-wrapp .about-counter {
    margin: 50px 0 10px;
  }
}