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

/* CSS Document © 2024 ProWebPrism */

::-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: "Saira", sans-serif;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  color: #000;
  background: #ffff;
  -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: #005d9b;
  --secondary-color: #f4b000;
  --global-color: #0b0a1d;
}
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: "Saira", sans-serif;
}
p,
p span {
  font-family: "Open Sans", sans-serif;
}
img {
  border: 0px;
}
ol,
ul,
li {
  list-style: none;
  font-family: "Saira", sans-serif;
}
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;
}


/* ---------hedaer-wrap---------------------- */

.header-wrap {
  background-color: #fff;
}
.header-row1 {
  display: flex;
  justify-content: space-between;
  background-color: var(--global-color);
  padding: 10px 0;
}
.header-row1 .header-left {
  display: flex;
  gap: 20px;
  color: var(--secondary-color);
}
.header-row1 .header-left a {
  color: #fff;
}
.header-row1 .header-left a:hover {
  color: var(--secondary-color);
}
.header-row1 .header-left .icon {
  width: 18px;
}
.header-row1 .header-left .address {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.header-row1 .header-left .address p {
  font-size: 14px;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
}
.header-right {
  display: flex;
  flex: auto;
  align-items: center;
}
.header-row .header-menu {
  z-index: 1;
}
.header-row .header-menu ul {
  display: flex;
  justify-content: space-between;
}
.header-row .header-menu ul li {
  padding: 10px 25px;
}
.header-row .header-menu ul li a {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  font-family: "Saira", sans-serif;
}
.header-row .header-menu ul li a:hover {
  border-bottom: 1px solid var(--primary-color);
  color: var(--secondary-color);
}

.header-logo {
  margin-right: 2%;
}

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

.primary-btn a {
  color: var(--primary-color);
  font-weight: 550;
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 40px;
  transition: transform 0.7s ease-in-out;
  display: inline-block;
}
.primary-btn a:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #000;
  transform: scale(1.05);
}

.header-wrap.sticky {
  position: fixed;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  animation: 0.7s slide-down;
  z-index: 100;
  background-color: #ffff;
}

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

  100% {
    transform: translateY(0);
  }
}
.header-wrap.sticky .header-row1 {
  display: none;
}

.overlay {
  display: none;
}

.burger-btn {
  display: none;
}
.menu-links.active {
  border-bottom: 2px solid #000;
  color: var(--primary-color);
}

/* -------fixed-wrap----------- */

.fixed-image-wrap { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden;}
.banner-image{height: 100vh;width: 100%;}
.banner-image img { width: 100%; height: 100%;  object-fit: cover;}
.banner-wrap { padding: 30px 0; background-color: var(--global-color); position: relative;  z-index: 1;  opacity: 0.8;}

/* --------banner-wrap------- */
.banner-wrap .banner-row { display: flex; flex-direction: column;}
.banner-row-1 {  padding: 100px 0;}
.banner-row-1 h2 { font-size: 65px; color: #fff;  font-weight: 700;}
.secondary-btn a { color: #000;font-weight: 550; padding: 10px 20px; border: 1px solid #fff; border-radius: 40px; transition: transform 0.7s ease-in-out; display: inline-block;  background-color: #fff;}
.secondary-btn a:hover { background-color: var(--secondary-color); border-color: var(--secondary-color);  color: #000; transform: scale(1.05);}
.banner-row-2 { display: flex; width: 100%;  justify-content: end;}
.description p {  color: #fff;  font-size: 18px;  line-height: 1.56;}
.banner-content {display: flex;justify-content: end; width: 90%;  align-items: center;}
.banner-col1 { width: 20%;}
.banner-col2 {  width: 48%;}
.banner-content .description p{margin-left: 10px;}


/* ----empty-wrap------------------  */

.empty-wrap { height: 55vh;  background: transparent;}

/* ------------about-wrap---------------- */

.about-us-wrap {padding: 60px 0;background-color: #fff; position: relative;}
.sub-heading {font-weight: 600; color: var(--primary-color); font-size: 22px; margin: 0 0 20px;}
.about-row { display: flex; flex-direction: column;}
.about-row1 { display: flex; justify-content: space-between; flex-wrap: wrap; margin: 0 0 20px; align-items: center;}
.about-col1 {  width: 48%;}
.about-col1 h2 { font-size: 42px;  font-weight: 600;  line-height: 1.26;  color: #000;}
.about-col2 { width: 48%;}
.about-col2 .description p { color: #000;}
.about-row2 {display: flex;justify-content: space-between;}
.about-row2 .about-col2 { padding: 70px 0 0;}
.about-row2 .about-col1 .about-image {width: 100%;  height: 600px;}
.about-row2 .about-col1 .about-image img { object-fit: cover;  height: 100%;  width: 100%;  border-radius: 12px;}
.about-content {display: flex; flex-direction: column;}
.about-content .content-col1 { display: flex;  margin: 0 0 20px;}
.about-content  .content-col1:last-child {  margin: 0 0 0;}
.about-content  .content-col1 .iconbox {width: 110px;height: 90px;display: flex; justify-content: center; align-items: center;  background-color: #03004f;  border-radius: 20px;  position: relative; margin-right: 20px; transition: all 0.5s ease-in-out;flex-shrink: 0;}
.about-content  .content-col1 .iconbox .icons { position: absolute; top: 50%;  left: 50%;  bottom: 50%;  right: 50%; transform: translate(-50%, -50%); display: flex;  justify-content: center;  align-items: center;}
.about-content  .content-col1 .iconbox span { width: 50px;  flex-shrink: 0;  display: block;}
.about-content  .content-col1 .iconbox span img {  object-fit: cover; height: 100%; width: 100%; transition: all 0.7s ease-in-out;}
.about-content  .content-col1 .iconbox:hover { background-color: var(--secondary-color); border-radius: 10px;}
.about-content .content-col1 .iconbox .blue-icon { opacity: 0;  display: none;}
.about-content  .content-col1 .iconbox:hover .orange-icon { opacity: 0;  display: none;}
.about-content .content-col1 .iconbox:hover .blue-icon { opacity: 1; display: block;}
.about-content  .content-col1 .heading h4 {  font-size: 22px;  font-weight: 600;}
.about-content  .content-col1 .heading p { font-size: 16px; color: #000;  line-height: 1.56;}

.about-row3 { width: 60%; display: flex; border-radius: 30px;  position:relative;  left: 50%;  right: 50%;  transform: translateX(-50%); bottom: 20px; background-color: #fff; box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.3); align-items: center;  flex-wrap: wrap;}
.about-widget {margin-right: 2%;display: flex;justify-content: center;align-items: center;flex-direction: column;text-align: center;width: 32%;padding: 30px 20px;}
.about-widget:last-child {margin-right: 0;}
.about-widget:nth-child(2n) {border-left: 1px solid #6766667c;border-right: 1px solid #6766667c;}
.about-widget h2 {font-size: 46px;font-weight: 600;color: #000;}
.about-widget p {font-size: 20px;font-weight: 550;}
.widget-col1 {display: flex;gap: 10px;align-items: center;}
.widget-col1 .icon {width: 60px;}

/* ------------service-wrap------------ */

.service-wrap { padding: 60px 0;  background-color: #f5f1f1;}
.service-wrap .sub-heading { text-align: center;}
.service-wrap h2{ font-size: 42px;font-weight: 600; line-height: 1.26; color: #000;text-align: center;margin: 0 0 20px;}
.service-row{display: flex;flex-wrap: wrap;  transition: all 0.7s ease-in-out;}
.service-card { margin: 20px 2% 0 0; width: 32%;display: flex;flex-direction: column;background-color: white;border-radius: 20px;box-shadow: 4px 4px 10px 0px rgba(209, 208, 208, 0.2); border: 1px solid var(--secondary-color);position: relative; transition: all 0.7s ease-in-out;}
.icon-image{display: flex;flex-direction: column;position: relative;height: 250px;}
.main-image { width: 100%;display: block;border-radius: 20px;height: 100%;left: 0;top: 0;position: relative;}
.main-image img{width: 100%;height: 100%;object-fit: cover;overflow: hidden;border-radius: 20px;}
.icon-image .icon {width: 60px;height: 60px;border-top-left-radius: 20px;background-color:var(--primary-color);padding: 10px;position: absolute;  transition: all 0.7s ease-in-out;}
.icon-image .icon img {width: 100%;height: 100%;object-fit: cover;}
.text-section {padding: 20px 20px 60px 20px; transition: all 0.7s ease-in-out;}
.text-section h4 {  font-size: 26px;  font-weight: bold;  color: #0a0a23; margin: 0 0 15px;line-height: 1.26;}
.text-section p { color: #4a4a4a; margin: 0 0 20px; line-height: 1.56; font-size: 14px;} 
.service-card:hover {background-color: #f7e1a9;}
.service-card:hover .icon-image .icon{background-color: var(--secondary-color);}
.service-card:hover .icon img {filter: invert(1.2);}
.service-card:nth-child(3n){margin-right: 0;}
.service-card .primary-btn{position: absolute;bottom: 20px;left:20px;}


/* --------------what-we-wrap---------- */
.what-we-wrap{padding: 60px 0;background-color: #fff;}
.what-we-wrap h2{margin: 0 0 20px;}
.what-we-row{display: flex;justify-content:space-between;}
.what-we-row .about-col2{display: flex;justify-content: space-between;}
.what-we-row .about-col2 .about-image-1{width: 48%;display: flex;justify-content: center;align-items: start;}
.what-we-row .about-col2 .about-image-2{width: 48%;display: flex;justify-content: center;align-items: end;}
.what-we-row .about-col2 .about-image-1 img{object-fit: cover;width: 100%;border-radius: 20px;height: 400px;}
.what-we-row .about-col2 .about-image-2 img{object-fit: cover;width: 100%;border-radius: 20px;height: 400px;}




/* -----PROJECT-WRAP----------- */

.project-wrap{padding: 60px 0; background-color: #0a0a23;}
.project-row{display: flex;flex-wrap: wrap;}

.project-wrap .sub-heading{color: var(--secondary-color);text-align: center;}
.project-wrap h2{  font-size: 42px;font-weight: 600;line-height: 1.26; color: #fff;margin: 0 0 20px;text-align: center;}
.projects-card{border-radius:30px; background-color:#fff;margin: 0 0 20px;width:48%; margin: 20px 3% 0 0; border: 2px solid var(--secondary-color);  transition: all 0.7s ease-in-out; position: relative;}
.projects-card:nth-child(2n){margin-right: 0;}
.top-content{position: relative;}
.projects-card .project-image{height: 250px;width: 100%;border-radius: 30px;}
.projects-card .project-image img{object-fit: cover;width: 100%;height: 100%; border-top-left-radius:30px ;border-top-right-radius:30px ;}
.hover-content{display: none;padding: 20px;position:absolute;top: 0;left: 0;border-top-left-radius:30px ;border-top-right-radius:30px ;display: flex;justify-content: center;align-items: center;  opacity: 0; background-color: var(--global-color);  transition: all 0.5s ease-in-out;z-index: 1;}
.hover-content p{font-size: 16px;color: #fff;line-height:2;z-index: 1;}
.projects-card:hover .hover-content{display:block;opacity: 1;}
.bottom-content{display: flex;justify-content: center;align-items: center;flex-direction: column;padding:10px 10px 60px 10px;}
.bottom-content h4{font-weight: 600;color:var(--primary-color);margin: 0 0 20px;font-size: 22px;line-height: 1.26;text-align: center;}
.bottom-content .primary-btn a:hover{background-color: var(--global-color);color:var(--secondary-color);}
.bottom-content .primary-btn{    position: absolute;  bottom: 20px; left: 50%; transform: translateX(-50%); right: 50%; width: 100%; display: flex;justify-content: center; align-items: center;}

/* ----------TESTIMONIAL-WRAP------------- */

.testimonials-wrap{padding: 60px 0; background-color: #fff;}
.testimonials-wrap .sub-heading{text-align: center;}
.testimonials-wrap h2{font-size: 42px;font-weight: 600;line-height: 1.26; color: #000;margin: 0 0 20px;text-align: center;}

.testimonial-wrap{padding: 30px 0;background-color:#F9F9F9; }
.testimonial-wrap h6{text-transform: uppercase; letter-spacing: 5px; font-size: 22px;margin: 0 0 20px;text-align: center;}
.testimonial-wrap h2{margin:0 0 30px;  color:#000;  font-size: 52px;  font-weight:450; text-align: center;}
.profile{width: 75px; height: 75px; border-radius: 50%; border: 2px solid #ffffff;margin: 0 0 20px;border: 1px solid #000;}
.card-content{position: relative;display:flex; flex-direction: column; align-items: center; justify-content: center;padding: 20px 10px ;}
.profile img{object-fit: cover;width: 100%; height: 100%; border-radius: 50%;}
.card-content h6{font-size: 20px; color:var(--primary-color); text-transform: uppercase; font-weight: 600;margin: 0 0 20px;}
.review p{font-size: 18px; font-style:normal; color: #000000; padding-bottom:20px;border-bottom: 1px solid #000; line-height:2; text-align:center;}
.review {margin: 0 0 20px;padding: 0 20px;}
.star-icon{width: 120px;}
.testi-slider .slick-track{display: flex; flex-wrap: wrap}
.testi-slider .slick-slide{margin: 0 10px;height: inherit;} 

.testi-col1{width: 80%;padding:0 10px;}
.testi-row{display: flex;justify-content: center;align-items: center;}
.testi-slider .slick-dots { list-style: none; display: flex !important;justify-content: center; align-items: center; padding: 0;margin: 0;}
.testi-slider .slick-dots li { margin: 0 6px; display: flex;  justify-content: center; align-items: center; list-style: none;}
.testi-slider .slick-dots button {  width: 8px !important; height: 8px !important; border: none; border-radius: 50%; border: 1px solid var(--primary-color); background: transparent; padding: 0 !important;}
.testi-slider .slick-dots .slick-active button { background:var(--primary-color); width: 10px !important; height: 10px !important;
}
.slick-dots li button:before{display:none}
.slick-dots li.slick-active button:before{display:none}






/* ---------------contact-wrap-------------------- */


.contact-wrap{padding: 60px 0;background-color: var(--secondary-color);position: relative;}
.contact-row{display: flex;justify-content: space-between;align-items: center;}
.contact-col1{width: 38%;}
.contact-col2{width: 58%;}
.contact-form {background-color: #fff;border-radius: 30px; padding: 30px;width: 33%;position: absolute;bottom:20%}
.contact-form h2{ font-size: 42px;font-weight: 600;line-height: 1.26; color: #000;margin: 0 0 20px;}
.contact-form input,textarea{width: 100% !important;padding: 10px 20px !important;border: 1px solid var(--secondary-color) !important;border-radius: 30px !important;margin: 0 0 20px;}

.team-col1{display: flex;gap: 30px;align-items: center;}
.team-profile .image{width: 200px;height: 150px;border-radius: 20px;overflow: hidden;}
.team-profile .image img{object-fit: cover;width: 100%;height: 100%;}
.team-profile {display: flex;justify-content: center;align-items: center;flex-direction: column;}
.team-profile h6{font-size: 26px;color:#000;text-decoration:underline ;font-weight: 600;}
.team-profile p{font-size: 16px; color: #000;}

.team-col1 .description p{color: #000;}
.team-slider .slick-slide{margin: 0 10px;}


.contact-info-col2{display: flex;margin: 0 0 20px;color: #000;align-items:center; }
.icon-img{width: 20px;margin-right: 20px;flex-shrink: 0;}
.icon-img img{object-fit: cover;width: 100%;}
.contact-info-col2 a{color:#000; font-size: 16px;line-height: 2;font-weight: 600;}
.contact-info-col2 a:hover{color:#ffff;}





.everest-forms-submit-button.button.evf-submit {
  color: var(--primary-color) !important;
  font-weight: 550 !important;
  padding: 10px 20px !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 40px !important;
  transition: transform 0.7s ease-in-out !important;
  display: inline-block !important;
  background-color: #fff !important;
}

.everest-forms-submit-button.button.evf-submit:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #000 !important;
  transform: scale(1.05) !important;
}

.everest-forms .evf-container,.wp-block-everest-forms-form-selector .evf-container {
  margin:0 !important;
}


/* -------------footer-wrap---------------- */



.footer-wrap{padding: 30px 0 0; background-color: #000;}
.footer-row{display: flex;flex-wrap: wrap;padding:0 0 10px ;}
.footer-column{width:20%; margin:20px 2% 0 0;}
.footer-column:first-child{width: 34%;}
.footer-column:nth-child(4n){margin-right: 0;}
.footer-column h3{font-size: 22px;margin:0 0 20px;font-weight:400;color:var(--secondary-color); text-transform: uppercase; }
.footer-column ul li {padding:10px 0;}
.footer-column a{color:#fff;font-size: 16px;transition: color 0.3s;;}
.footer-column a:hover{color: var(--secondary-color);}
.footer-column p{font-size: 16px;color: var(--primary-color);line-height: 1.56;}
.footer-column .contact-info{display: flex;margin: 0 0 20px;}
.footer-column .contact-info .icon-img{width:20px;height: 20px; margin-right: 20px; flex-shrink: 0;}
.footer-column .contact-info .icon-img img{object-fit:contain; width: 100%; height: 100%; transition: transform 0.3s ease;overflow: hidden;}
.footer-column .contact-info .icon-img:hover img{transform: scale(1.2);}
.footer-column .social-icons{display: flex;}
.footer-column .social-icons li{margin-right: 20px;} 
.footer-column .social-icons li img{width: 20px; height: 20px;}
.footer-column .social-media-icons ul li span img{width: 20px; height: 20px;transition: transform 0.3s ease;overflow: hidden;}
.footer-column .social-media-icons  img:hover{transform: scale(1.2);}
.social-media-icons ul{display: flex; gap: 20px; color:#B3D8A8;}
.footer-row-2{display: flex; justify-content:space-between;padding: 10px 0; border-top:1px solid var(--secondary-color);color:#fff;font-size: 14px;}
.footer-row-2 a{color:#fff;}
.footer-row-2 a:hover{color: var(--secondary-color);}
.footer-column .logo-img{width: 100px;margin: 0 0 20px;}


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

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  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);
}

/*--------------------------Responsive------------------------------*/

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

  .about-row3{width: 70%;}
}

@media screen and (max-width: 1200px) {
 .container {max-width: 94%;}
.header-row .header-menu ul li { padding: 10px 15px;}
.banner-row-1 h2{font-size: 58px;}



.about-col1 h2{font-size: 38px;}
.about-content  .content-col1 .iconbox span{width: 45px;}


.service-wrap h2{font-size: 38px;}
.project-wrap h2{font-size: 38px;}
.testimonials-wrap h2{font-size: 38px;}
.contact-form h2{font-size: 38px;}
.about-widget h2{font-size: 38px;}




}

@media screen and (max-width: 1024px) {
.header-row .header-menu ul li { padding: 10px 10px;}
.header-row .header-menu ul li a{font-size: 14px;}
.header-logo .logo-img{width: 70px;}
.primary-btn a{padding: 8px 15px;font-size: 14px;}


.banner-row-1 h2{font-size: 50px;}
.banner-content .secondary-btn a{padding: 10px 15px;font-size: 14px;}


.about-col1 h2{font-size: 34px;}
.about-widget h2{font-size: 34px;}
.widget-col1 .icon{width: 50px;}
.about-content  .content-col1 .iconbox span{width: 40px;}
.about-content  .content-col1 .iconbox{height: 80px;width: 90px;}
.about-row2 .about-col1 .about-image{height: 500px;}



.service-wrap h2{font-size: 34px;}
.text-section h4{font-size: 22px;}

.project-wrap h2{font-size: 34px;}
.testimonials-wrap h2{font-size: 34px;}



.contact-form h2{font-size: 34px;}
.contact-col2{width: 60%;}
.contact-wrap{position: unset;}
.contact-col1 .contact-form{ position:relative;width: 100%;padding:15px;}
.description p{font-size: 16px;}
.team-profile h6{font-size: 20px;}


.footer-column a{font-size: 14px;}
}


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

.header-row .menu-list  {display:none}
.header-row .primary-btn {display: none;}
.header-row ul {  display: none;}
.header-row1{display: none;}  


.burger-btn {display: block;position: fixed; width: 45px; height: 30px; right: 5%;top: 35px; z-index: 999;overflow: hidden;cursor: pointer;}
.burger-btn span { display: block; width: 100%; height: 3px; background: var(--primary-color); 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;}
.header-menu {  display: none;}
.burger-btn span:nth-child(2n) {margin: 9px 0;transition: all 0.5s cubic-bezier(0.22, 0.68, 0, 1.71);}
.burger-btn span:first-child {width: 70%;}
.burger-btn span:last-child { width: 70%;}
.overlay { display: block;position: fixed;  right: 0;  top: 0;width: 350px; height: 100%;  background-color: #fff; 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 li a { color:var(--global-color); display: block; padding: 20px 0;}
.overlay ul li { font-size: 18px;border-bottom: 1px solid #000;font-weight: 500;}
.overlay.show { transform: translateX(0); opacity: 1; visibility: visible;}
.burger-btn .active span:first-child {  transform: translateY(13px) rotate(-45deg);}
.burger-btn .active span:last-child { transform: translateY(-11px) rotate(45deg);}
.burger-btn .active span:nth-child(2n) {transform: translateX(-100%);} 


.banner-content .description p{font-size: 16px;}
.banner-row-1 h2{font-size: 40px;}
.banner-row-1{padding: 50px 0;}
.banner-col1{width: 30%;}
.banner-col2{width: 60%;}


.empty-wrap{height: 30vh;}




.about-row1 {   flex-direction: column;}
.about-col1 {    width: 100%; margin: 0 0 20px;}
.about-col2 {   width: 100%;}
.about-row2 {   flex-direction: column;margin: 0 0 20px;}
.about-row2 .about-col1 { width: 100%; padding: 0; margin: 0 0 20px;}
.about-row2 .about-col2 { width: 100%; padding: 0;}
.about-row3{position: unset; transform: none;width: 100%;}
.about-widget{padding: 20px 15px;}
.widget-col1 .icon{width: 40px;}
.about-widget p{font-size: 18px;}
.about-content  .content-col1 .iconbox{width: 80px; height: 80px;}
.about-row2 .about-col1 .about-image{height: 500px;}



/* ----------service-wrap------------  */
.icon-image{height: 160px;}
.text-section{padding: 10px 10px 50px 10px;}
.text-section h4 {font-size: 18px;}
.icon-image .icon{width: 50px;height: 50px;flex-shrink: 0;}
.service-card .primary-btn{left: 10px;}


/* -------------what-we-wrap----------  */

.what-we-row {flex-direction: column-reverse;}
.what-we-row .about-col2 {margin: 0 0 20px;height: 300px;}
.what-we-wrap .about-col1{margin: 0;}
.what-we-row .about-col2 .about-image-1 img{height: 200px;}
.what-we-row .about-col2 .about-image-2 img{height: 200px;}
.bottom-content h4{font-size: 20px;}



.contact-row{flex-direction:column-reverse;}
.contact-col1{width: 100%;}
.contact-col1 .contact-form{padding: 20px;}
.contact-col2{width: 100%;margin: 0 0 20px;}

.review p{font-size: 16px;}


.footer-column a { display: block;}
.footer-column { width: 28%;} 
.footer-column:nth-child(2n){margin-right: 0;}
.footer-column:first-child{ width: 40%;}
.footer-column h3{font-size: 18px;margin: 0 0 10px;}

 }
 




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


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


.description p {font-size: 14px;}
.sub-heading{text-align: center; font-size: 20px;margin: 0 0 10px;}

.banner-row-1 h2{font-size: 35px;}
.banner-row-1{padding: 30px 0;}
.banner-content .description p{font-size: 14px;}
.banner-content .secondary-btn a{padding: 10px 12px;}


.empty-wrap{height: 25vh;}

.about-us-wrap{padding: 30px 0;}
.about-col1{margin: 0 0 10px;}
.about-col1 h2{font-size: 28px;text-align: center;}
.about-widget h2{font-size: 28px;}
.about-col2 .description p{text-align: center;}
.about-content .content-col1{width:100%;align-items: center;}
.about-content .content-col1:nth-child(2n){margin-right:0}
.about-content {width: 100%;display: flex;flex-direction: row;flex-wrap: wrap;justify-content: center;}
.about-widget p{font-size: 16px;}
.widget-col1{margin: 0 0 10px;}
.about-content  .content-col1 .iconbox{height: 55px;width: 60px;border-radius: 8px;}
.about-content  .content-col1 .iconbox span{width: 35px;}




.service-wrap{padding: 30px 0;}
.service-wrap h2{font-size: 28px;text-align: center;margin: 0;}
.service-card{width: 49%;}
.service-card:nth-child(2n){margin-right:0;}
.service-card:nth-child(3n){margin-right:2%;}
.service-card:nth-child(6n){margin-right:0%;}


.what-we-wrap{padding: 30px 0;}




.project-wrap{padding: 30px 0;}
.project-wrap h2{font-size: 28px;text-align: center;margin: 0;}
.hover-content p{font-size: 14px;}
.hover-content{padding: 10px;}

.testimonials-wrap{padding: 30px 0;}
.testimonials-wrap h2{font-size: 28px;text-align: center;margin: 0 0 10px;}
.testi-col1{width: 100%;}
.review p{font-size: 14px;}

.contact-wrap{padding: 30px 0;}
.contact-form h2{font-size: 28px;text-align: center;margin: 0 0 10px;}
.evf-submit-container {padding: 0 !important;}

.footer-column { width:49% !important;margin:0 2% 20px 0}
.footer-column:nth-child(2n){margin-right: 0;}

.footer-row-2{flex-direction: column;justify-content: center;align-items: center;}
.footer-row-2 a{font-size: 12px;}
.footer-row-2 p{font-size: 12px;margin: 0 0 10px;}
 }

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

  .banner-row-1 h2{font-size: 30px;}
  .banner-content .secondary-btn a{padding: 8px 10px;}
  .banner-content{width: 100%;justify-content: space-between;}
  .banner-col1{width:38%;}
  .banner-col2{width: 58%;}

  .about-widget p{font-size: 14px;font-weight: 500}
  .about-widget { padding: 10px 10px;}

  .service-row{justify-content:center;}
  .service-card{width: 90%;}
  .service-card:nth-child(n){margin-right:0;}



  .projects-card{width: 100%;}
  .projects-card:nth-child(n){margin-right:0;}
  .projects-card .project-image{height: 220px;}

  /* .about-content .content-col1 .iconbox {
        width: 50px;
        height: 50px;
        border-radius: 5px;
        margin-right: 10px;
    } */

.overlay{width: 100%;}
 }


@media screen and (max-width: 480px) {
  .header-logo .logo-img{width:60px}
  .burger-btn{top: 26px;width: 40px;height: 25px;}
  .burger-btn span:nth-child(2n){margin: 7px 0;}
  .burger-btn span{height: 3px;}
  .burger-btn .active span:last-child{ transform: translateY(-8px) rotate(45deg);}


  .banner-row-1 h2{font-size: 24px;margin: 0 0 20px;}
  .banner-content{flex-direction: column-reverse}
  .banner-col1{width: 100%;}
  .banner-col2{width: 100%;}
  .banner-col2 .description p{margin: 0 0 20px;}
  .banner-row-1 { padding: 0;}

  .about-col1 h2{font-size: 22px;}
  .about-widget h2{font-size: 22px;}
  .widget-col1 .icon{width: 35px;}
  .about-content .content-col1{width: 100%;}
  .about-content .content-col1:nth-child(n){margin-right:0}
  .about-content .content-col1 .heading h4{font-size: 18px;}
  .about-content .content-col1 .iconbox span {width: 25px;}
  .about-content .content-col1 .iconbox{height: 44px !important;border-radius: 8px;width: 50px;}
  .about-row2 .about-col1 .about-image{height: 300px;}


  .service-wrap h2{font-size: 22px;}
  .service-card{width: 100%;}

  .project-wrap h2{font-size: 22px;}
  .bottom-content h4 { font-size: 18px;margin: 0 0 10px;}

  .testimonials-wrap h2{font-size: 22px;}
  .star-icon{width: 80px;}
  .card-content{padding: 20px 0;}

  .contact-form h2{font-size: 22px;}
  .team-profile .image{width: 150px; height: 100px;}
  .team-profile p{font-size: 14px;}
  .contact-col1 .contact-form{padding: 12px;}
  .contact-form input, textarea{padding: 8px 12px; margin: 0 0 10px;border-radius: 20px;}
  .team-col1{gap: 10px;flex-direction: column;text-align: center;}
  .team-profile h6{font-size: 18px;}



  .overlay ul li { font-size: 22px;}
  .footer-column .contact-info .icon{width:18px;}
  .footer-column { width: 100% !important; margin: 0 0 20px;}
  .footer-column:last-child{margin: 0;} 


  .error-page-section h1 { font-size: 35px;}
  .error-page-section h2 {font-size: 25px;}

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

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

  .banner-row-1 h2{font-size: 20px;font-weight: 600;}
  .about-col1 h2{font-size: 20px;}
  .about-widget h2{font-size: 20px;}
  .service-wrap h2{font-size: 20px;}
  .project-wrap h2{font-size: 20px;}
  .testimonials-wrap h2{font-size: 20px;}
  .contact-form h2{font-size: 20px;}


  .widget-col1 .icon{width: 25px;}
  .about-widget p{font-size: 12px;}
  .about-widget h2{font-size: 18px;}
  .widget-col1{margin: 0 0 8px;}
}  

/* -------------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);}


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



/* --------------------------------- */
.inner-banner {
    position: relative;
    height: 50vh;
}

.bg-img img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-img {
    height: 100%;
    width: 100%;
    position: absolute;
}
.inner-content {
    position: absolute;
    z-index: 1;
    left: 50%;
    right: 50%;
    top: 50%;
    bottom: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.inner-content h1{font-size: 42px; color: #fff;font-weight: 600;}
 

.inner-banner::after{top: 0; left: 0; content: "";position:absolute; background-color: #0000004f;width: 100%; height: 100%;}