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

/* CSS Document © 2024 ProWebPrism */

::-moz-selection {
  background: #7b7d7f;
  color: #000;
  text-shadow: none;
}

::selection {
  background: #7b7d7f;
  color: #000;
  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: "Philosopher", sans-serif;
}

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

body {
  color: #464444;
  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;
  overflow-y: scroll;
}

:root {
  --primary-color: #073E5B;
  --secondary-color: #FC953C;
  --global-color: #289BA2;
}

a {
  text-decoration: none;
  transition: all 0.25s ease-out 0s;
  outline: none;
  box-shadow: none;
  font-family: "Philosopher", sans-serif;
}

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: "Philosopher", sans-serif;
}

p,
p span {
  font-family: "open", sans-serif;
}

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(--primary-color);
}

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

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

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

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

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

strong {
  font-weight: bold;
}

button {
  border: none;
}

.burger-btn {
  display: none;
}

.overlay {
  display: none;
}

body {
  background-color: #F6F5F0;
}

/* ---------header-wrap--------------- */



.header-wrap {
  background-color: #F6F5F0;
  padding: 10px 0;
}

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

.header-logo {
  width: 100px;
}

.header-row-2 {
  display: flex;
  width: 100%;
  border-radius: 50px;
  border: 1px solid var(--global-color);
  padding: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

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

.header-menu ul li {
  margin: 0 15px;
}

.header-menu ul li a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s;
  font-size: 18px;
}

.header-menu ul li a:hover {
  color: var(--secondary-color);
}

.header-contacts ul li {
  display: flex;
  margin: 0 0 10px;
}

.header-contacts ul li:last-child {
  margin: 0 0 0;
}

.header-contacts ul li a {
  color: #000;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 16px;
  display: flex;
  align-items: center;
}

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

.header-contacts .icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-color: var(--secondary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 5px;
}

.header-contacts .icon img {
  width: 25px;
}


.mobile-menu {
    display: none;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.example-2 .icon-content {
  position: relative;
}

.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}

.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--global-color);
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
}

.example-2 .icon-content a:hover {
  color: white;
}

.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
  height: 100%;
}


.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"]~.tooltip {
  background-color: #128c7e;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"]~.tooltip {
  background-color: #3b5998;
}

.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"]~.tooltip {
  background: linear-gradient(45deg,
      #405de6,
      #5b51db,
      #b33ab4,
      #c135b4,
      #e1306c,
      #fd1f1f);
}

.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"]~.tooltip {
  background-color: #ff0000;
}




.primary-btn a {
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in;
  z-index: 1;
  text-align: center;
  cursor: pointer;
  color: #fff;
  background-color: var(--primary-color);
}

.primary-btn a:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.05);
}


.banner-wrap {
  position: relative;
  height: calc(100vh - 110px);
  background-color: #F6F5F0;
  overflow: hidden;
}

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

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-content .banner-col2 h1 {
  font-size: 42px;
  margin: 0 0 20px;
  font-weight: bold;
  color: #fff;
}

.banner-content .banner-col2 p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.banner-row {
  display: flex;
  justify-content: center;
}

.banner-content .banner-col1 {
  width: 48%;
  display: none;
}

.banner-content .banner-col2 {
  width: 100%;
  padding: 28px 10%;
  background: linear-gradient(90deg, #fc963c6c, #289ca250);
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  border-radius: 6px;
  max-width: 755px;
}

.banner-wrap .icon {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 10;
  width: 160px;
  height: 160px;
  padding: 20px;
  opacity: 0.7;
  display: none;
}

.banner-wrap .icon img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  animation: pulse 1.5s ease-in-out infinite;
}

/* .banner-wrap .icon:hover{transform: scale(1.1); transition: all 0.3s ease-in;} */

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }

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

.banner-wrap:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(7 62 91 / 80%);
}

.core-wrapp {
    background: #fff;
    padding: 60px 0;
}

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

.core-wrapp .core-col1 {
    width: 28%;
}

.core-wrapp h2 {
    font-size: 42px;
    font-weight: bold;
    color: var(--primary-color);
}

.core-wrapp .core-col2 {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}

.core-wrapp  .core-col3 {
    width: 32%;
    margin: 0 2% 0 0;
}

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

.core-wrapp .core-col3 .icon {
    background: none;
    padding: 0;
    display: block;
    border-radius: 0;
    width: 60px;
    height: 60px;
    margin: 0 0 20px;
}

.core-wrapp .core-col3 .icon img {
    width: 100%;
}

.core-wrapp  h3 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #000;
}

.core-wrapp p {
    font-size: 16px;
    line-height: 1.56;
    color: #000;
}




.about-wrap {
  padding: 60px 0;
  background: transparent;
  background-color: #F6F5F0;
}

.about-wrap .about-row {
  display: flex;
  justify-content: space-between;
}

.about-wrap .about-col1 {
  width: 48%;
}

.about-wrap .about-col2 {
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .about-wrap .about-col2{width: 48%; padding:28px 18px; background: linear-gradient(90deg,#fc963c6c,#289ca250); clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);border-radius:6px;} */
.about-wrap .about-col1 h6 {
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--global-color);
}

.about-wrap .about-col1 h2 {
  font-size: 42px;
  margin: 0 0 20px;
  font-weight: bold;
  color: var(--secondary-color);
}

.description p {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 20px;
  color: #000;
}

.about-img {
  width: 600px;
  overflow: hidden;
  border-bottom-right-radius: 200px;
  border-top-left-radius: 200px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 16px;
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.service-wrap {
  padding: 60px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.service-wrap::after {
  content: "";
  bottom: 0;
  left: -70px;
  position: absolute;
  background-image: url(../images/leaf-png.png);
  background-size: contain;
  width: 300px;
  height: 300px;
  z-index: 1;
  opacity: 0.6;
  background-position: left;
}

.service-wrap h6 {
  font-size: 24px;
  margin: 0 0 20px;
  color: var(--global-color);
  text-align: center;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.service-col1 {
  width: 46%;
  height: 400px;
  margin: 0 2% 20px 0;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 16px;
  transition: all 0.3s ease-in;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

.service-col1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-col1 .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000080;
  z-index: 1;
  text-align: left;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.service-col1 .content h3 {
  font-size: 28px;
  margin: 0;
  font-weight: bold;
  color: #fff;
  margin: 0 0 20px;
}

.service-col1 .content .description p {
  color: #fff !important;
}

/* .service-wrap::after{ content: ''; position: absolute; width: 400px; height: 400px; background: linear-gradient(to right,#fc963cc2,#289ca2bf); border-radius: 50%; bottom:-12%; right: -12%;} */





.testimonial-wrap {
  padding: 60px 0;
  background-color: #F6F5F0;
}

.testimonial-wrap h6 {
  font-size: 24px;
  margin: 0 0 20px;
  color: var(--global-color);
  text-align: center;
}

.testimonial-col1 {
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 16px;
  position: relative;
  padding: 20px 20px 100px 20px;
}

.testimonial-slider .slick-slide {
  margin: 0 10px;
}

.testimonial-content p {
  color: #000;
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 10px;
}

.testimonial-content .stars {
  width: 100px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 20px;
}

.testimonial-author .profile {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-author .profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author .prof-details h5 {
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--secondary-color);
  font-weight: bold;
}

.testimonial-author .prof-details span {
  font-size: 14px;
  color: #666;
}

.everest-forms input{width: 100% !important;padding: 12px !important;border: 1px solid #ccc !important;border-radius: 5px !important;font-size: 15px !important;font-family: inherit !important;}
.everest-forms textarea{width: 100% !important;padding: 12px !important;border: 1px solid #ccc !important;border-radius: 5px !important;font-size: 15px !important;font-family: inherit !important;}
.everest-forms button.button:not(.button-large), .everest-forms button[type=submit]{background:var(--primary-color) !important;color: white !important;padding: 14px 30px !important;font-size: 16px !important;border: none !important;cursor: pointer !important;transition: 0.3s ease !important;}
.everest-forms button.button:not(.button-large):hover,.everest-forms button[type=submit]:hover {background:var(--secondary-color)!important;}
  


.contact-wrap {
  padding: 60px 0;
  background-color: #fff;
}

.contact-wrap h6 {
  font-size: 24px;
  margin: 0 0 20px;
  color: var(--global-color);
}

.contact-wrap h2 {
  font-size: 42px;
  margin: 0 0 20px;
  font-weight: bold;
  color: var(--primary-color);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

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

.contact-row .contact-col2 {
  width: 48%;
}

.contact-col2 .contact-form {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 16px;
}

.contact-col2 .contact-form input,
.contact-col2 .contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 12px;
  resize: none;
}

.contact-col2 .contact-form button {
  padding: 12px 15px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-col2 .contact-form button:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}

.contact-row .contact-col1 .contact-info {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  cursor: pointer;
}

.contact-row .contact-col1 .contact-info .icon {
  margin-right: 12px;
  background-color: #289BA2;
  height: 40px;
  width: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
}

.contact-row .contact-col1 .contact-info .icon img {
  width: 24px;
  height: 24px;
}

.contact-row .contact-col1 .contact-info .details h6 {
  font-size: 16px;
  margin: 0 0 4px;
  color: #000;
  font-weight: bold;
}

.contact-row .contact-col1 .contact-info .details p a {
  color: #000;
}

.contact-row .contact-col1 .contact-info .details p a:hover {
  color: var(--global-color);
}

.contact-row .contact-col1 .contact-info .details p:hover {
  color: var(--global-color);
}

.footer-wrap {
  padding: 60px 0 0;
  background-color: var(--primary-color);
}

.footer-row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.footer-logo {
  width: 180px;
}

.footer-col1 {
  margin: 0 2% 0 0;
}

.footer-col1:last-child {
  margin-right: 0;
}

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

.footer-col1 {
  margin: 0 2% 0 0;
  width: 23.5%;
}

.footer-col1 ul li {
  margin: 0 0 10px;
}

.footer-col1 ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-col1 ul li a:hover {
  color: var(--secondary-color);
}

.footer-row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.footer-row2 p {
  color: #fff;
  font-size: 14px;
}

.footer-row2 p a {
  color: var(--secondary-color);
}

.footer-row2 p a:hover {
  color: #fff;
}

.footer-col1 .image {
  width: 20px;
}

.footer-col1 .contact-info {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.footer-col1 .contact-info p {
  font-size: 14px;
  color: #fff;
}

.footer-col1 .contact-info a {
  color: #fff;
}

.footer-col1 .contact-info a:hover {
  color: var(--secondary-color);
}


.default-banner-wrap {
  position: relative;
  height: 60vh;
}

.default-banner-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000005e;
  z-index: 1;
}

.default-img {
  width: 100%;
  height: 100%;
}

.default-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.default-row h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}


/* --------------about-page------------ */
.about-wrap-2 {
  padding: 60px 0;
  background-color: #fff;
}

/* -------service-page--- */
.service-wrap-2 {
  padding: 60px 0;
  background-color: #F6F5F0;
}

.service-wrap-2 .service-col1 {
  width: 32%;
}

.service-wrap-2 .service-col1:nth-child(2n) {
  margin-right: 2%;
}

.service-wrap-2 .service-col1:nth-child(3n) {
  margin-right: 0;
}

.service-wrap-2 .service-col1:last-child {
  margin-right: 0;
}

/* ----------contact-page---------------- */
.location-wrap {
  height: 300px;
}

.location-wrap iframe {
  width: 100%;
  height: 100%;
}



.why-choose-wrap {
  padding: 60px 0;
  background-color: var(--global-color);
}

.why-choose-wrap h6 {
  font-size: 24px;
  margin: 0 0 20px;
  color: #fff;
  text-align: center;
}

.why-choose-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.why-choose-col1 {
  width: 23.5%;
  margin: 0 2% 20px 0;
  padding: 20px;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-choose-col1:nth-child(4n) {
  margin-right: 0;
}

.why-choose-col1:last-child {
  margin-right: 0;
}

.why-choose-col1 h3 {
  font-weight: 500;
  color: #000;
  font-size: 20px;
  font-weight: 600;
}

.icon {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
}

.icon img {
  width: 20px;
}

/* -------------------------Whatsapp------------------ */

.whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25d366;
  overflow: hidden;
}

.whatsapp-image {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.whatsapp-icon .whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-icon:hover .whatsapp-image {
  transform: scale(1.1);
}

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

/* -------------Error-page-------------------- */

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

.error-page-section h1 {
  font-size: 60px;
  color: #000;
  margin: 0 0 20px;
  font-weight: 500;
}

.error-page-section h2 {
  font-size: 28px;
  margin: 0 0 20px;
  color: var(--primary-color);
}

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

.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(--secondary-color);
  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-color);
  margin: 0 0 0 auto;
  position: relative;
  padding: 14px 28px 14px 28px;
  font-weight: 500;
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  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.5s ease-in-out;
  color: #fff;
}

.error-page-section .search-form .search-submit:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

/* ---------------Privacy-wrap-------------- */

.defualt-page-section {
  padding: 80px 0 0;
}

.defualt-page-section h2 {
  font-size: 28px;
  margin: 0 0 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.defualt-page-section p {
  font-size: 16px;
  line-height: 1.56;
  margin: 0 0 20px;
  word-break: break-all;
  color: #000;
}

/*----------------search-page-wrap-------------- */

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

.search-page-section h1 {
  font-size: 32px;
  margin: 0 0 20px;
  color: var(--global-color);
  font-weight: 600;
}

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

.search-page-section h3 {
  font-size: 28px;
  margin: 0 0 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.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(--secondary-color);
  padding: 12px 26px 12px;
  color: var(--global-color);
  font-size: 13px;
  text-transform: uppercase;
  border: 1px solid var(--secondary-color);
  border-radius: 50px;
  color: #fff;
}

.search-page-section .search-btn1:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.05);
}


.cta-wrapp {background: #fff;text-align: center;padding: 0 0 60px;}

.cta-wrapp .cta-row {
    width: 100%;
    padding: 50px;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-wrapp .cta-row .cta-img {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}

.cta-wrapp .cta-row .cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-wrapp .cta-col1 {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.cta-wrapp .cta-row .cta-img:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(40 155 162 / 70%);
    top: 0;
    left: 0;
}

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

.cta-wrapp h2 {
    font-size: 42px;
    margin: 0 0 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.cta-wrapp  p {
    font-size: 16px;
    line-height: 1.56;
    margin: 0 0 20px;
    color: #fff;
}

.cta-wrapp .cta-btn {
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in;
    z-index: 1;
    text-align: center;
    cursor: pointer;
    color: #fff;
    background-color: var(--primary-color);
}

.cta-wrapp .cta-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}


.widget-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 9;
}

.widget-icons ul li .icon {
    display: block;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    position: relative;
    padding: 10px;
    transition: all .25s ease-in-out;
    border-radius: 0;
}

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

.widget-icons ul li .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .25s ease-in-out;
}

.widget-icons ul li .icon > img {
    opacity: 0;
}

.widget-icons ul li .icon:hover .hover-icon {
    opacity: 0;
}

.widget-icons ul li .icon:hover > img {
    opacity: 1;
}

.widget-icons ul li .icon:hover {
    background: var(--primary-color);
}


/* .search-page-section .contact-form{border: 1px solid var(--primary-color);} */

@media(max-width:1200px) {
  .container {
    width: 94%;
    max-width: none;
    padding: 0px 15px;
    margin: 0 auto;
  }
}


@media(max-width:1024px) {
  .footer-logo {
    width: 150px;
  }
}

@media(max-width:991px) {

  .footer-row {
    flex-wrap: wrap;
  }

  .footer-col1:first-child {
    width: 100%;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-col1:nth-child(4) {
    width: 33%;
  }

  .footer-col1:nth-child(2) {
    width: 20%;
  }

  .footer-col1:nth-child(3) {
    width: 20%;
  }

  .footer-col1:nth-child(5) {
    width: 20%;
  }

  .why-choose-col1 {
    width: 45%;
    margin: 0 4% 20px 0;
  }

  .why-choose-col1:nth-child(4n) {
    margin-right: auto;
  }

  .why-choose-col1:nth-child(2n) {
    margin-right: 0;
  }

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

.core-wrapp .core-col3 .icon {
    width: 40px;
    height: 40px;
}

.core-wrapp h3 {
    font-size: 22px;
}

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

}

@media(max-width:768px) {
  .footer-col1 h3 {
    font-size: 20px;
  }

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

  .footer-row2 {
    flex-wrap: wrap;
  }

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

  .footer-col1:first-child {
    margin-bottom: 20px;
  }

  .footer-row {
    padding-bottom: 0;
  }

  .banner-content .banner-col2 h1 {
    font-size: 30px;
  }

  .about-wrap .about-col1 h2 {
    font-size: 30px;
  }

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

  .default-row h2 {
    font-size: 30px;
  }

  .service-wrap-2 .service-col1 {
    width: 48%;
  }

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

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

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

.contact-wrap .everest-forms .evf-submit-container {padding: 0 0 0;}

}

@media(max-width:767px) {
  .footer-col1:first-child {
    width: 100% !important;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-col1:nth-child(2) {
    width: 30% !important;
    order: 2;
  }

  .footer-col1:nth-child(3) {
    width: 30% !important;
    order: 3;
  }

  .footer-col1:nth-child(4) {
    width: 100% !important;
    order: 5;
  }

  .footer-col1:nth-child(5) {
    width: 30% !important;
    order: 4;
  }

  .footer-col1 ul li a {
    font-size: 14px;
  }
  .header-menu ul li a{
    font-size: 14px;
  }
  .header-menu ul li{
    margin: 0 8px;
  }

  .header-menu{display: none;}
  .header-col:last-child{display: none;}
  .header-col{display: flex;align-items: center;justify-content: space-between;width: 100%;}
  .overlay {display: block;position: fixed; right: 0; top: 0; width: 350px; height: 100%; background:var(--primary-color); background-size: 300% 100%; z-index: 9999; padding: 110px 5% 50px; transform:translateX(100%); opacity: 0; visibility: hidden; transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);}
  .overlay.show{ transform:translateX(0); opacity: 1; visibility: visible;}
  .overlay ul {width: 100%;}
  .overlay ul { width: 100%;}
  .overlay ul li a { color: #fff; display: block; padding: 20px 0;}
  .overlay ul li { font-size: 18px; border-bottom: 1px solid #fff; text-transform: uppercase;}
  .overlay ul li a:hover { color: var(--primary-color) !important;}
  .burger-btn { display: block; position: relative; width: 50px; height: 30px; z-index: 99999;  overflow: hidden; cursor: pointer;transition: 0.5s all ease-in-out;}
  .burger-btn span { display: block; width: 100%; height: 3px; background:var(--secondary-color); background-size: 300% 100%; border-radius: 5px; transition: all 0.4s cubic-bezier(0.7, 0, 0.2, 1);}
  .burger-btn:hover span{background-position: 50% 0;}
  .burger-btn .active span { background:#fff;}
  .burger-btn span:first-child { width: 70%;}
  .burger-btn span:nth-child(2n) { margin: 8px 0; transition: all 0.5s cubic-bezier(.22,.68,0,1.71);}
  .burger-btn .burger-toggle { display: flex; flex-wrap: wrap; justify-content: right;}
  .burger-btn span:last-child { width: 70%;}
  .burger-btn .active span:nth-child(2n) { transform: translateX(-100%);}
  .burger-btn .active span:first-child { transform: translateY(13px) rotate(-45deg);}
  .burger-btn .active span:last-child { transform: translateY(-11px) rotate(45deg);}
  body:after { content: ""; display: block; position: fixed; right: 0; top: 0; width: 100%; height: 100%; background: rgb(255 255 255 / 40%); z-index: 9; transform: translateX(100%); opacity: 0; visibility: hidden;  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);}
  body.menu-open:after{ transform:translateX(0); opacity: 1; visibility: visible;}
  body.menu-open{  overflow-y: hidden;}
  .overlay ul ul.sub-menu li {border: none; padding-left: 20px; position: relative;  color: var(--primary-color);}
  .overlay ul ul.sub-menu li:before {  content: "-"; position: absolute; left: 0; top: 50%;  transform: translateY(-50%);}
  .overlay ul li.has-sub > a {background: url(../images/chevron-down-white.svg) no-repeat center / 14px; background-position-x: 95%;}
  .global-btn.contact-btn{display: none;}
  .overlay ul li.has-sub > a:hover {background: url(../images/chevron-down-grey.svg) no-repeat center / 14px; background-position-x: 95%;}
  
  .mobile-menu{display: block;}
  .primary-btn {display: none;}
.banner-wrap { height: 427px;}

.core-wrapp .core-col1 {
    width: 100%;
    margin: 0 0 30px;
}

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

}

@media(max-width:576px) {
  
  .header-wrap {
    padding: 10px 0px;
  }

  .footer-row2 {
    justify-content: center;
    gap: 5px;
  }

  .header-row-2 {
    display: none;
  }

  .header-row {
    flex-wrap: wrap;
  }

  .header-logo img {
    width: 80px;
  }

  .header-contacts {
    width: 100%;
    order: 3;
    padding: 15px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-contacts ul {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
  }

  .header-contacts ul li {
    margin-bottom: 10px;
    width: 100%;
  }

  .header-info {
    width: 100%;
    order: 2;
  }

  .banner-col1 {
    display: none;
  }

  .banner-content .banner-col2 {
    width: 100%;
  }

  .about-wrap .about-row {
    flex-wrap: wrap;
  }

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

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

  .contact-row .contact-col1 {
    width: 100%;
  }

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

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

  .service-col1 {
    width: 100%;
  }

  .footer-col1:first-child {
    width: 100% !important;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-col1:nth-child(2) {
    width: 100% !important;
    order: 2;
    margin-bottom: 40px;
  }

  .footer-col1:nth-child(3) {
    width: 100% !important;
    order: 3;
    margin-bottom: 40px;
  }

  .footer-col1:nth-child(4) {
    width: 100% !important;
    order: 5;
    margin-bottom: 40px;
  }

  .footer-col1:nth-child(5) {
    width: 100% !important;
    order: 4;
    margin-bottom: 40px;
  }

  .why-choose-col1 {
    width: 100%;
    margin: 0 0% 20px 0;
  }

  .why-choose-col1:nth-child(4n) {
    margin-right: auto;
  }

  .why-choose-col1:nth-child(2n) {
    margin-right: 0;
  }

  .why-choose-col1 .icon {
    margin-bottom: 10px;
  }

  .default-row {
    width: 90%;
    text-align: center;
  }

  .why-choose-col1 h3 {
    font-size: 16px;
    font-weight: 500;
  }

  .service-wrap-2 .service-col1 {
    width: 100%;
    margin-right: 0;
  }
  .banner-wrap .icon{
    width: 100px;
    height: 100px;
  }
  .about-img{
    margin-top: 40px;
    border-top-left-radius:100px;
    border-bottom-right-radius:100px;
  }
  .burger-btn.overlapped{
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .header-contacts ul li a{
    font-size: 14px;
  }

  .core-wrapp .core-col3 {
    width: 100%;
    margin: 0 0 30px;
}

.cta-wrapp .cta-row {
    padding: 20px;
}

}