@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: "Gilda Display";
}
/* 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: #BE135B;
  --secondary-color: #E06297;
  --global-color: #73003A;
}
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: "Gilda Display";
}
p,
p span {
   font-family: "Open", sans-serif;
}
img {
  border: 0px;
}
ol,
ul,
li {
  list-style: none;
  font-family: "Open", 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;
}

html, body {
  overflow-x: hidden;
}
/* ---------hedaer-wrap---------------------- */

.header-wrap.sticky {
  position: fixed;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
  animation: 0.7s slide-down;
  z-index: 100;
  background-color:var(--primary-color);
  border-bottom: none;
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

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

.overlay {
  display: none;
}
.burger-btn {
  display: none;
}
/* ------------------------- */



.header-wrap{padding: 10px 0;background-color:var(--primary-color);}
.header-row{display: flex;justify-content: space-between;flex-wrap: wrap;align-items: center;}
.header-row .header-logo {width: 80px;}
.header-row .header-menu ul{display: flex;}
.header-row .header-menu ul li{padding: 10px 30px;}
.header-row .header-menu ul li a{color:#fff;font-size: 14px;text-transform:capitalize;position: relative;padding: 10px 0;text-transform: uppercase;}
.header-row .header-menu ul li a:hover{color:#000;font-weight: 600;}
.header-wrap .header-menu ul li a:after {content: "";position: absolute;width: 0;height: 3px;left: 50%;transform: translateX(-50%);bottom: 4px;background:#fff;transition: all .25s ease-in-out;border-radius: 100px;}
.header-wrap .header-menu ul li a:hover:after { width: 100%;}
.primary-btn a{color: #fff;padding: 10px 30px;border-radius: 50px; background-color: var(--global-color);display: inline-block;transition: all .25s ease-in-out;text-transform: capitalize;}
.primary-btn a:hover{background-color:#fff;color:var(--primary-color);}


.banner-wrap{height: 100vh;position: relative;}
.banner-wrap::after{content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.4);z-index: 0;}
.banner-image{width: 100%;height: 100%;}
.banner-image img{width: 100%;height: 100%;object-fit: cover;object-position: top;}
.banner-row{position: absolute; top: 50%;left: 50%;transform: translate(-50%,-50%);z-index: 1;width: 50%;display: flex;flex-direction: column;justify-content: center;text-align: center;}

.banner-row .banner-content h2{font-size:58px;color:#fff;line-height: 1.56;margin: 0 0 20px;text-transform: uppercase;}
.banner-row .banner-content p{color: #fff;margin: 0 0 20px;font-size: 18px;}


.description p{color: #000;line-height:1.56;font-size: 16px;font-weight:normal;}
.about-us-wrap{padding: 60px 0;background-color: var(--primary-color);}
.about-row{display: flex;justify-content: space-between;flex-wrap: wrap;}
.about-col1{width: 38%;}
.about-col1 h6{font-size: 22px;color:#ffffff;text-transform: capitalize;}
.about-col2{width: 58%;}
.about-col2 h2{font-size: 28px; color: #fff;line-height: 1.56;margin: 0 0 20px;}
.about-widget-row{display: flex;justify-content: space-between;flex-wrap: wrap;padding: 20px 0;align-items: center;}
.about-widget-row .description p{color: #fff;}
.widget-col1{width: 58%;}
.widget-col2{width: 38%;display: flex;justify-content: end;}


.counter-wrap{padding: 60px 0;background-color: #fff;}
.counter-row{display: flex;justify-content: center;flex-wrap: wrap;border: 1px solid #ccc;border-right:none;border-left: none;align-items: baseline;}
.counter-col1{width: 25%;display: flex;flex-direction: column;justify-content: center;align-items: center;padding: 30px 0;border-right: 1px solid #ccc;text-align: center;}
.counter-col1:nth-child(4n){border-right: none;}
.counter-col1 h2{font-size: 58px;color:var(--primary-color);margin: 0 0 10px;font-weight: 600;}
.counter-col1 p{color: var(--global-color);font-size: 16px;}



.about-brand-wrap{padding: 60px 0;background-color:var(--global-color);}
.brand-row{display: flex;justify-content: space-between;flex-wrap: wrap;}
.brand-col1{width: 48%;display: flex;justify-content: end;align-items: end;}
.brand-col1-row{width:500px;height: 400px;position: relative;}
.brand-col1 .brand-image{width: 100%;height: 100%;}
.brand-col1 .bottom-content{width: 200px;height: 120px;background-color:var(--global-color);position: absolute;bottom: 0;left: 0;z-index:1;display: flex;flex-direction: column;justify-content: center;align-items: center;text-align: center;padding: 0 10px;}
.brand-col1 .bottom-content h2{font-size: 58px; color: #fff;line-height: 1.26;text-transform: capitalize;}
.brand-col1 .bottom-content p{font-size: 16px;color: #fff;text-transform: capitalize;}


.brand-image img{width: 100%;height: 100%;object-fit: cover;}
.brand-col2{width: 48%;}
.brand-col2 h6{ font-size: 22px;color:#ffffff;text-transform: capitalize;margin: 0 0 20px;}
.brand-col2 h2{font-size: 48px; color: #fff;line-height: 1.56;margin: 0 0 20px;text-transform: capitalize;}
.brand-col2 .bottom-content{padding-left:60px ;}
.brand-col2 .bottom-content p{color: #fff;font-size: 16px;}

.service-wrap{padding: 60px 0;}
.service-wrap h6{font-size: 22px;color:var(--secondary-color);text-transform: capitalize;margin: 0 0 20px;text-align: center;}
.service-wrap h2{font-size: 48px; color:var(--primary-color);line-height: 1.56;margin: 0 0 20px;text-align: center;text-transform: capitalize;font-weight: 600}
.service-row{display: flex;flex-wrap: wrap;justify-content: center;}
.service-col1{width:32%;margin: 0 2% 20px 0;border: 1px solid var(--primary-color);display: flex;flex-direction: column;height: 400px;border-radius: 20px;overflow: hidden;position: relative;}
.service-col1:nth-child(3n){margin-right: 0;}
.service-col1:last-child{margin-right: 0;}
.service-col1 .service-img{height:100%;width: 100%;position: absolute;top: 0;left: 0;z-index: -1;}
.service-col1 .service-img img{width: 100%;height: 100%;object-fit: cover; }
.service-conetnt{background-color: #ffffff96;margin: 10px 10px 10px;border-radius: 20px;display: flex;flex-direction: column;padding: 20px;position: absolute;bottom: 0;right: 0;left: 0;}
.service-conetnt h3{font-size:22px;color:var(--global-color);margin: 0 0 20px;text-transform: capitalize;font-weight: 600;}
.service-conetnt p{font-size: 16px;color:#000;margin: 0 0 20px;line-height: 1.56;}
.service-conetnt .primary-btn a:hover{background-color: var(--primary-color);color: #fff;}





/* ------------package-wrap------------ */
.package-wrap{padding: 100px 0;background-color:var(--global-color);}
.package-wrap h2{font-size: 48px; color:#fff;line-height: 1.56;margin: 0 0 20px;text-align: center;text-transform: capitalize;position: relative;z-index: 1;}
.package-row{display: flex; flex-wrap: wrap;position: relative;z-index: 1;justify-content: center;}
.package-card { background-color:#E06297; padding: 20px;  color: #fff; transition: transform 0.3s ease;  width:25%; transition: all 0.3s ease-in-out;border: 1px solid #ccc;}
.package-card:hover{transform: scale(1.05);box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);}
.package-card h3 {font-size:28px;margin: 0 0 20px;}
.package-card p {font-size:14px;  line-height: 1.56;margin: 0 0 20px;}
.package-card:nth-child(4n) { margin-right: 0;}
.price{padding:8px 0 0 8px;border: 1px solid #ffffffa1;border-left: none;border-right: none;background-color: #73003A;margin: 0 0 20px;}
.price h4{font-size:48px;margin: 0 0 20px;font-weight: 600;}
.price h4 span{font-size: 16px;font-weight: normal;}
.package-card ul li{list-style:none;margin: 0 0 10px;font-size: 16px;color: #fff;}
.package-card ul li:last-child{margin: 0;}
.package-card ul{margin: 0 0 20px;}

/* ---------------------Testimonial-wrap------------ */
.testimonial-wrap{padding: 60px 0;background-color:#fff;}
.testi-top-row{display: flex;justify-content: space-between;flex-wrap: wrap;}
.testi-top-row h6{font-size: 22px;color:var(--secondary-color);text-transform: capitalize;margin: 0 0 20px;}
.testi-top-row h2{font-size: 48px; color:var(--primary-color);line-height: 1.26;margin: 0 0 20px;text-transform: capitalize;}
.testi-col{width: 48%;}
.testi-row{display: flex;flex-wrap: wrap;}
.testi-row.testimonial-slider{display: unset;}
.testimonials-col{background-color:var(--global-color);padding: 20px;border-radius: 20px;height:300px}
.testimonials-col .description p{color: #fff;margin: 0 0 20px;}
.profile-row{display: flex;flex-wrap: wrap;align-items: center;}
.profile-img{width: 50px;height: 50px;border-radius: 50%;overflow: hidden;margin-right: 20px;}
.profile-row h6{font-size:20px;color: #fff;font-weight: 500;margin: 0 0 10px;}
.profile-row p{font-size: 16px;color: #fff;}
.testimonials-col .rating{width: 100px;margin: 0 0 20px;}
.testimonials-col .desigination{color: #fff;}
.testimonial-slider .slick-slide{margin: 0 10px;}


/* -----------contcat-wrap---------- */
.contact-wrap{padding: 60px 0;background-color: var(--primary-color);}
.contacr-row{display: flex;justify-content: space-between;flex-wrap: wrap;}
.contact-col1{width: 48%;}
.contact-form{padding: 60px 20px;background-color: #fff;border-radius: 5px;}
.input-group{display: flex;flex-wrap: wrap;justify-content: space-between;}
.contact-form input[type="text"]{width: 100% !important;}
.contact-form input{width: 100% !important;padding: 10px!important;border: 1px solid #ccc !important;border-radius: 5px !important;margin: 0 0 20px !important;outline: none !important;background-color: transparent !important;color: #000 !important;}
.contact-form textarea{width: 100% !important;padding: 10px !important;border: 1px solid #ccc !important;border-radius: 5px !important;margin: 0 0 20px !important;outline: none !important;height: 100px !important;background-color: transparent !important;color: #000 !important;}
.contact-form input#placeholder{color: #000 !important;}
.everest-forms-submit-button.button.evf-submit.primary-btn{width: 100% !important;text-align: center !important;color: #fff !important;padding: 10px 30px !important;border-radius: 50px !important; background-color: var(--global-color) !important;display: inline-block !important;transition: all .25s ease-in-out !important;text-transform: capitalize !important;}
.everest-forms-submit-button.button.evf-submit.primary-btn:hover{background-color: var(--primary-color) !important;color: #fff !important;}


.contact-col2{width: 48%;}
.contact-col2 h2{font-size: 48px; color:#fff;line-height: 1.56;margin: 0 0 10px;text-transform: capitalize;line-height: 1.26;}
.contact-col2 h6{font-size: 22px;color:#fff;text-transform: capitalize;margin: 0 0 10px;}
.contact-col2 p{color:#fff;margin: 0 0 20px;}
.contact-col2 .contact-info{display: flex;flex-wrap: wrap;justify-content: space-between;padding: 10px;border: 1px solid #ffffff64;margin: 0 0 20px;border-radius: 5px;align-items: center;}
.contact-col2 .contact-info .icon{width: 30px;height: 30px;border-radius: 50%;background-color: #fff;display: flex;align-items: center;justify-content: center;}
.contact-col2 .contact-info A{color: #FFF;}
.contact-col2 .contact-info .icon img{width:15px;}
.contact-col2 .contact-info p{margin: 0;width: 88%;line-height: 1.56;font-size: 18px;}
.location-wrap iframe{width: 100%;height: 250px;}
.contact-col2 .contact-info:hover{background-color: var(--global-color);}
.contact-col2 .contact-info:last-child{margin: 0;}

.evf-frontend-grid.evf-grid-1{padding:0 !important}
.evf-container.default { margin: 0;}
.evf-submit-container{padding: 0 !important;}
.everest-forms-submit-button.button.evf-submit{display: inline-block !important; padding: 12px 28px !important; background: #14609e !important; color: var(--primary) !important;  border-radius: 50px !important; text-transform: uppercase !important; font-size: 14px !important;  font-weight: 600 !important;transition: all 0.5s !important;border: none !important;}
.everest-forms-submit-button.button.evf-submit:hover{background-color:var(--secondary-color) !important;}
.evf-frontend-grid.evf-grid-2{padding:0 !important}
.evf-field.evf-field-text.form-row.validate-required{margin:0 2% 0 0 !important}
.evf-field.evf-field-text.form-row.validate-required:nth-child(2n){margin-right: 0;}

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

.footer-wrap { padding: 30px 0 0;background-color: #fff;}
.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: 600;color:var(--global-color);text-transform: uppercase;}
.footer-column ul li {padding:0 0 10px;}
.footer-column a {color:var(--primary-color);font-size: 14px;transition: all 0.6s;}
.footer-column a:hover {color:#000;}
.footer-column p {font-size: 16px;color: var(--primary-color);line-height: 1.56;}
.footer-column .contact-info {display: flex; margin: 0 0 10px;}
.footer-column .contact-info .icon-img { width: 23px; height: 23px; margin-right: 10px;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: 23px; height: 23px;} */
.footer-column .social-media-icons ul li span img { width: 23px; height: 23px;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;}
.footer-row-2 {display: flex;justify-content: space-between; padding: 10px 0;  border-top: 1px solid var(--primary-color); color:#000;  font-size: 14px;}
.footer-row-2 a { color:var(--primary-color);}
.footer-row-2 a:hover { color:#000;  font-weight: 600;}
.footer-column .logo-img{width:100px;margin: 0 0 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);
}

.primary-btn { flex-shrink: 0;}

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

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

  .container{max-width: 94%;}
  .banner-row { width: 70%;}

  .brand-col2 h2{font-size: 42px;}
  .service-wrap h2{font-size: 42px;}
  .price h4{font-size: 42px;}
  .package-wrap h2{font-size: 42px;}
  .testi-top-row h2{font-size: 42px;}
  .contact-col2 h2{font-size: 42px;}
  .brand-col1 .bottom-content h2{font-size: 42px;}

}

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

  .brand-col2 h2{font-size: 38px;}
  .service-wrap h2{font-size: 38px;}
  .price h4{font-size: 38px;}
  .package-wrap h2{font-size: 38px;}
  .testi-top-row h2{font-size: 38px;}
  .contact-col2 h2{font-size: 38px;}
  .brand-col1 .bottom-content h2{font-size: 38px;}

}

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

.brand-col2 h2{font-size: 36px;}
.service-wrap h2{font-size: 36px;}
.price h4{font-size: 36px;}
.package-wrap h2{font-size: 36px;}
.testi-top-row h2{font-size: 36px;}
.contact-col2 h2{font-size: 36px;}
.brand-col1 .bottom-content h2{font-size: 36px;}

}


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

.banner-row {width: 100%;padding: 0 20px;}

.counter-col1 h2{font-size: 52px;}

.brand-col2 h2 {font-size: 32px;}
.service-wrap h2{font-size: 32px;}
.price h4{font-size: 32px;}
.package-wrap h2{font-size: 32px;}
.testi-top-row h2{font-size: 32px;}
.contact-col2 h2{font-size: 32px;}
.brand-col1 .bottom-content h2{font-size: 32px;}

}




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

.header-wrap .header-menu {display: none;}
.header-wrap .primary-btn {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:#fff; 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 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:var(--global-color); background-size: 300% 100%; z-index:100; 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:#fff; display: block; padding: 20px 0;}
.overlay ul li { font-size: 18px;border-bottom: 1px solid var(--primary-color);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%);} 
.overlay ul li a:hover{color:#000;}

.about-col2 h2{font-size: 22px;}
.brand-col2 h2{font-size: 28px;}
.service-wrap h2{font-size: 28px;}
.testi-top-row h2{font-size: 28px;}
.contact-col2 h2{font-size: 28px;}
.package-wrap h2{font-size: 28px;}
.price h4{font-size: 28px;}


.banner-row .banner-content h2{font-size: 48px;}


.about-col1{width: 28%;}
.about-col2{width: 68%;}
.counter-col1 h2{font-size: 48px;}

.brand-col2 .bottom-content {padding-left: 30px;}


.service-col1{width: 49%;}
.service-col1:nth-child(2n){margin-right: 0;}
.service-col1.service-col1:nth-child(3n){margin-right:2%;}
.service-col1.service-col1:nth-child(6n){margin-right:0;}
.service-col1:last-child{margin-right:0;}


.package-card{width: 33%;}

.contact-col2 .contact-info 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;}

.banner-row .banner-content h2{font-size: 38px;}
.banner-row .banner-content p{font-size: 16px}

.description p{font-size: 14px;}

.brand-col2 h2{font-size: 26px;}
.service-wrap h2{font-size: 26px;}
.package-wrap h2{font-size: 26px;}
.testi-top-row h2{font-size: 26px;}
.contact-col2 h2{font-size: 26px;}
.price h4{font-size: 26px;}


.about-us-wrap {padding: 30px 0;}
.about-col1{width: 100%;margin: 0 0 20px;}
.about-col2{width: 100%;}
.about-col1 h6{text-align: center;}



.counter-wrap {padding: 30px 0;}
.counter-col1 h2 { font-size: 38px;}
.counter-col1 {padding: 20px;}
.counter-col1 p{font-size: 14px;line-height: 1.56;}


.brand-col2 .bottom-content p{font-size: 14px;}
.brand-row{flex-direction: column-reverse;}
.brand-col1{width: 100%;display: flex;justify-content: center;align-items: center;}
.brand-col2{width: 100%;text-align: center;margin: 0 0 20px;}
.brand-col2 .bottom-content {padding-left: 0;}
.brand-col2 h6{text-align: center;}

.package-card{width: 45%;}
.package-card h3{font-size: 24px;}


.testi-col{text-align: center;width: 100%;}


.contacr-row{flex-direction: column-reverse;}
.contact-col1{width: 100%;}
.contact-col2{width: 100%;margin:  0 0 20px;}
.contact-col2 h2{text-align: center;}
.contact-col2 h6 { text-align: center; font-size: 20px;color:#000}
.contact-col2  .description p{text-align:center}
.contact-col2 .contact-info p{font-size: 14px;}
.evf-field.evf-field-text.form-row.validate-required{margin: 0 !important;}

.about-brand-wrap {padding: 30px 0;}
.service-wrap {padding: 30px 0;}
.package-wrap {padding: 30px 0;}
.testimonial-wrap { padding: 30px 0;}
.contact-wrap { padding: 30px 0;}
.testimonials-col{height: 230px;}


.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;text-align: 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) {

.brand-col2 h2{font-size: 24px;}
.service-wrap h2{font-size: 24px;}
.package-wrap h2{font-size: 24px;}
.testi-top-row h2{font-size: 24px;}
.contact-col2 h2{font-size: 24px;}
.price h4{font-size: 20px;}

.banner-row .banner-content h2{font-size: 33px;}
.widget-col1{width: 100%;margin: 0 0 20px;}
.widget-col2{width: 100%;justify-content: center;}
.about-widget-row{padding: 0;}
.about-col2{text-align: center;}
.about-col2 h2 {font-size: 20px;}

.counter-col1 h2 {font-size: 28px;}
.counter-col1 p{font-size: 14px;line-height: 1.56;}

.service-col1 {width:85%;margin: 0 0 20px;}
.service-col1:nth-child(n){margin-right: 0;}
.service-col1:last-child{margin:0;}

.package-card{width: 49%;}


 }


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

.banner-wrap{height: 80vh;}
.overlay{width: 100%;}
.primary-btn a{font-size: 14px;padding: 8px 20px;}

.brand-col2 h2{font-size: 22px;}
.service-wrap h2{font-size: 22px;}
.package-wrap h2{font-size: 22px;}
.testi-top-row h2{font-size: 22px;}
.contact-col2 h2{font-size: 22px;}

.overlay ul li { font-size: 22px;}
.burger-btn{width: 40px;height: 25px;top: 34px;}
.burger-btn span:nth-child(2n){margin: 7px 0;}
.burger-btn span{height: 3px;}
.burger-btn .active span:first-child{transform: translateY(10px) rotate(-45deg);}
.burger-btn .active span:last-child {transform: translateY(-10px) rotate(45deg);}

.banner-row .banner-content h2{font-size: 28px;}
.banner-row .banner-content p{font-size: 14px;}

.brand-col1 .bottom-content p{font-size: 14px;}
.brand-col1 .bottom-content{width: 150px;height: 100px}

.counter-col1 h2 {font-size: 24px;}
.counter-col1 p{font-size: 12px;line-height: 1.26;}


.service-col1{width: 100%;}
.service-conetnt p{font-size: 14px;}
.service-conetnt{padding: 12px;}
.service-conetnt h3{font-size: 20px;}

.package-card{width: 100%;}
.package-card ul li{font-size: 14px;}

.testimonials-col .rating{width: 70px;}
.profile-row h6 {font-size: 18px;line-height: 1.56;}
.profile-img { width: 45px;height: 45px;}

.contact-form{padding: 20px 10px;}
.contact-form input{font-size: 14px !important;}

.footer-column .contact-info .icon{width:18px;}
.footer-column { width: 100% !important; margin: 0 0 20px;}
.footer-column .social-media-icons ul li span img{width: 20px;height: 20px;}
.footer-column .contact-info .icon-img{width: 20px;height: 20px;}
.footer-column:last-child{margin: 0;} 
.footer-column a{font-size: 14px;}
.footer-column p{font-size: 14px;}
.logo-img{width: 60px;}


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

@media screen and (max-width: 380px){
  .counter-col1 {width: 49%;}
  .counter-col1:nth-child(2n){border-right: none;}
}

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

.brand-col2 h2{font-size: 20px;}
.service-wrap h2{font-size: 20px;}
.package-wrap h2{font-size: 20px;}
.testi-top-row h2{font-size: 20px;}
.contact-col2 h2{font-size: 20px;}

.banner-row .banner-content h2 {font-size: 21px;}
.service-conetnt h3{font-size: 18px}
.footer-column h3{font-size: 16px;}
}  







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













