@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {

  background: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  color: #1E1E1E;

}



/*blog detail*/



/*.blog-detail-hero {*/
/*    background: linear-gradient(135deg, #6D213D 0%, #6D213D 100%);*/
/*    padding: 80px 0 60px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10c-5.5 0-10 4.5-10 10s4.5 10 10 10 10-4.5 10-10-4.5-10-10-10z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    opacity: 0.5;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.blog-hero-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.blog-hero-excerpt {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta-item i {
    font-size: 18px;
}

.blog-featured-image {
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.blog-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.blog-content-section {
    padding: 100px 0 80px;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff
    margin-bottom: 25px;
}

.blog-content h2,
.blog-content h3 {
    color: #fff;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-content h2 {
    font-size: 32px;
}

.blog-content h3 {
    font-size: 26px;
}

.blog-content ul,
.blog-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.blog-content li {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.blog-highlight-box {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8EC 100%);
    border-left: 4px solid #722F37;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.blog-highlight-box p {
    margin-bottom: 0;
    font-weight: 500;
    color: #722F37;
}

.blog-cta-section {
    background: linear-gradient(135deg, #6d213d 0%, #6d213d 100%);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.blog-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.blog-cta-button {
    display: inline-block;
    background: white;
    color: #722F37;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #722F37;
    text-decoration: none;
}

.blog-share {
    text-align: center;
    padding: 40px 0;
}

.blog-share-title {
    font-size: 18px;
    font-weight: 600;
    color: #722F37;
    margin-bottom: 20px;
}

.blog-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.share-facebook { background: #3b5998; }
.share-twitter { background: #1da1f2; }
.share-linkedin { background: #0077b5; }
.share-whatsapp { background: #25d366; }

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 32px;
    }
    
    .blog-hero-excerpt {
        font-size: 16px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-featured-image {
        margin-top: -40px;
    }
    
    .blog-image-wrapper img {
        height: 250px;
    }
    
    .blog-content p,
    .blog-content li {
        font-size: 16px;
    }
    
    .blog-cta-title {
        font-size: 28px;
    }
}
/**/








.blog-pagination ul li {
  display: inline-block;
}

.blog-pagination ul li + li {
  margin: 0 5px;
}

.blog-pagination ul li {
  display: inline-block;
}

.blog-pagination ul li + li {
  margin: 0 5px;
}

.blog-pagination {
  display: block;
  width: 100%;
}

.blog-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
  display: block;
  border: 1px solid #994242;
  line-height: 40px;
  background: #8d8d8d;
  text-align: center;
  font-weight: 600;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
  background-color: #6d213d;
  color: #ffffff;

}




input:focus,
button:focus,
a:focus {
  outline: none !important;
  box-shadow: none !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

h1 {
  font-size: 70px;
  line-height: 90px;
}

h2 {
  font-size: 55px;
  line-height: 65px;
}

h3 {
  font-size: 30px;
  line-height: 40px;
}

h4 {
  font-size: 25px;
  line-height: 35px;
}

h5 {
  font-size: 20px;
  line-height: 35px;
}

h6 {
  font-size: 18px;
  line-height: 30px;
}

a {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: #f7c2d6;
}

img {
  max-width: 100%;
}

.f-size-11 {
  font-size: 11px;
}

.f-size-12 {
  font-size: 12px;
}

.f-size-14 {
  font-size: 14px;
}

.f-size-16 {
  font-size: 16px;
}

.f-size-18 {
  font-size: 18px;
}

.f-weight-100 {
  font-weight: 100;
}

.f-weight-200 {
  font-weight: 200;
}

.f-weight-300 {
  font-weight: 300;
}

.f-weight-400 {
  font-weight: 400;
}

.f-weight-500 {
  font-weight: 500;
}

.f-weight-600 {
  font-weight: 600;
}

.f-weight-700 {
  font-weight: 700;
}

.f-weight-800 {
  font-weight: 800;
}

.f-weight-900 {
  font-weight: 900;
}

.f-weight-bold {
  font-weight: bold;
}

.m-t-5 {
  margin-top: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.font-argesta {
  font-family: 'argesta_displayregular';
}

.btn-border {
  border: 1px solid #fff;
  padding: 10px 20px;
  color: #fff !important;
  border-radius: 40px;
}

.btn-fill {
  padding: 10px 29px;
  color: #222222;
  font-weight: 400;
  border-radius: 10px;
  background: #fff;
  display: inline-block;
  border: none;
  text-align: center;
  color: #6D213D;
  border-radius: 40px;

}

.dark-bg {
  background: #6D213D;
  color: #fff;
}

section.site-section {
  padding-bottom: 80px;
}

.b-r-10 {
  border-radius: 10px;
}

.b-r-15 {
  border-radius: 15px;
}

.b-r-20 {
  border-radius: 20px;
}

.b-r-25 {
  border-radius: 25px;
}

.b-r-30 {
  border-radius: 30px;
}




.font-Manrope {
  font-family: "Manrope", sans-serif;
}

.site-header {
  background: #6D213D;
  padding: 10px 0;
}

.logo-holder a {
  background: #fff;
  border-radius: 15px;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

.banner-text-holder {
  width: 50%;
  position: absolute;
  top: 190px;
  z-index: 99;
  left: 0;
}

.main-color {
  color: #6D213D;
}

.with-border {
  border-radius: 30px;
  border: 1px solid #6D213D;
  padding: 4px 15px;
}

.img-holder {
  display: flex;
  flex-direction: column;
  align-items: end;
}

img.img-one {
  border-radius: 30px 30px 160px 30px;
}

img.img-two {
  border-radius: 160px 30px 30px 30px;
  align-self: flex-start;
  margin-top: -59px;
  display: block;
}

img.img-three {
  border-radius: 30px;
}

.choose-item-holder {
  background: #6D213D;
  color: #fff;
  border-radius: 30px;
  padding: 15px;
}

.choose-item-holder img {
  background: #fff;
  padding: 15px;
  border-radius: 24px;
  margin-right: 10px;
}

.banner-text-holder {
  color: #fff;
}

.solutions .item-holder {
  background: #6D213D;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
}

.solutions span.count {
  border: 1px solid #fff;
  padding: 3px 17px;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 15px;
  width: 50px;
}

.nav-tabs {
  border-bottom: none;
  display: flex;
  justify-content: center;
}

.nav-tabs .nav-link {
  margin-bottom: 0;
  border: 1px solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: #EEEEEE;
  color: #1E1E1E;
  margin: 10px;
  border-radius: 15px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: #6D213D;
  border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link img,
.nav-tabs .nav-link.active img {
  filter: brightness(20);
}

.dr-img {
  background: #6D213D;
  display: inline-block;
  padding: 15px;
  border-radius: 30px;
}

.founder-img img {
  border: 6px solid #6D213D;
  border-radius: 30px;
}

.founder-img {
  padding-left: 110px;
}

.testi-holder {
  background: #6D213D;
  color: #fff;
  padding: 25px;
  border-radius: 30px;
}

.testi-holder img {
  width: initial !important;
}

.author-img {
  border: 2px solid #fff;
}

body .testimonial button.owl-dot {
  border-radius: 30px;
  width: 50px;
  height: 13px;
  background: #374F7F;
  display: block;
  z-index: 122;
  position: relative;
}

body .testimonial .owl-carousel .owl-dots.disabled {
  display: block !important;
  position: initial;
  display: flex !important;
  justify-content: center;
}

body .testimonial button.owl-dot {
  border-radius: 30px;
  width: 50px;
  background: #B6B6B6 !important;
  display: block;
  z-index: 122;
  position: relative;
  height: 10px;
  margin: 5px;
}

.testimonial .owl-dots {
  display: flex;
  justify-content: center;
  padding: 40px 0 50px;
}

.testimonial button.owl-dot.active {
  background: #6D213D !important;
}

.test-bottom-item {
  background: #6D213D;
  padding: 30px;
  border-radius: 30px;
  color: #fff;
}

.test-bottom-item .star img {
  width: 18px;
}

.owl-nav {
  display: none;
}

.video-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  left: 0;
}

.health span.tag {
  border: 1px solid #fff;
  padding: 3px 17px;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 15px;
}

.health-holder {
  background: #6D213D;
  color: #fff;
  padding: 25px;
  border-radius: 30px;
}

.contact-item {
  border-bottom: 1px solid #D9D9D9;
  padding: 11px 0 14px;
}

.contact-item span.icon-holder {
  background: #6D213D;
  padding: 15px;
  border-radius: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location {
  width: 51px;
  max-width: initial;
}

.contact-item-holder {
  padding-left: 0;
}

.contact-right-holder {
  background: #EEEEEE;
  padding: 35px;
}

.contact-field {
  width: 100%;
  border: none;
  padding: 10px;
  border-radius: 10px;
  height: 50px;
}

textarea {
  height: initial !important;
}

.site-footer {
  background-color: #6D213D;
  color: #fff;
  padding: 20px 0;
}

.footer-logo {
  background: #fff;
  padding: 2px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.social-media li {
  height: 100px;
  display: block;
  border: 1px solid #fff;
}

.social-media li {
  height: 100px;
  display: block;
  border: 1px solid #fff;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
}

.map-holder {
  color: #6D213D;
  width: 100%;
  background: #fff no-repeat;
  height: 260px;
  background-size: cover;
  border-radius: 30px;
}

.map-holder a {
  color: #6D213D;
}

.map-ctn {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.map {
  margin-top: -139px;
}

.google {
  width: 220px;
  background: #6d213d;
  padding: 8PX 27PX;
  border-radius: 25px;
  color: #fff;
  align-items: center;
  position: absolute;
  right: 350px;
  top: 50px;
}

.holder {
  position: absolute;
  top: 0;
  bottom: 0;
}

.banner .item {
  display: flex;
  flex-direction: column-reverse;
}

.site-section.choose {
  padding-top: 50px;
}

.floating-menu {
  position: fixed;
  z-index: 999;
  right: 0;
  top: 39%;
  background: #6D213D;
  color: #fff;
  padding: 10px;
  border-radius: 15px 0 0 15px;
}

.floating-menu ul {
  padding: 0;
  list-style: none;
}

.floating-menu ul a {
  background: transparent;
  padding: 7px;
  display: block;
  border: none;
  border-bottom: 1px solid #fff !important;
  border-radius: 0;
}

.floating-menu ul a:hover,
.floating-menu ul a:focus {
  background: transparent;
}

.floating-menu ul li:last-child a {
  border: none !important;
  padding-bottom: 0;
}

.inner-banner {
  padding: 50px 0
}

.service-list-holder {
  background: #6D213D;
  color: #fff;
  padding: 30px;
  border-radius: 15px;
}

span.service-count {
  background: #fff;
  width: 60px;
  height: 30px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

.service-list-holder h6 {
  margin-bottom: 3px;
}

.service-list-holder li {
  margin-bottom: 10px;
}

.color-red {
  color: #6D213D;
}

span.icon-1 {
  border: 1px solid #000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

b,
strong {
  font-weight: 600;
}

.smile-item {
  background: #6D213D;
  border-radius: 15px;
  color: #fff;
  padding: 15px;
  margin-bottom: 25px;
}

.smile-item img {
  width: 100%;
  border-radius: 5px;
}

.item-text {
  text-align: center;
  border: 1px solid #fff;
  padding: 2px;
}

.type-holder {
  background: #6D213D;
  color: #fff;
  padding: 20px;
  border-radius: 30px;
}

.type-holder img {
  background: #fff;
  height: 50px;
  padding: 12px;
  border-radius: 15px;
  margin-right: 10px;
}

.sm-container {
  max-width: 1000px;
}

.in-white {
  color: #6D213D !important;
  border: 1px solid #D9D9D9 !important;
  background: #fff !important;
}

.contact-right-holder label {
  margin-bottom: 10px;
}

.solutions .item-holder>img {
  width: 100%;
}


@media (max-width: 1200px) {

  .site-header .btn-fill,
  .site-header .btn-border {
    font-size: 12px;
  }

  .banner-text-holder {
    width: 100%;
    top: 30px;
  }

  .health-holder {
    align-items: flex-start;
    flex-direction: column;
    min-height: 569px;
  }

  .health-holder>img {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 25px;
  }


  .social-media ul li {
    margin-bottom: 15px;
  }

  .social-media li p {
    display: none;
  }

  .inner-solutions .item-holder {
    min-height: 520px;
  }

  .home-solutions .item-holder {
    min-height: 410px;
  }

  .home-solutions .item-holder {
    min-height: 410px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

}

@media (max-width: 992px) {

  .site-header .btn-fill,
  .site-header .btn-border {
    font-size: 11px;
  }

  .navbar-collapse {
    width: 170px;
    background: #6D213D;
    border-radius: 0 0 15px 15px;
    padding: 15px;
    box-shadow: 0 11px 13px 5px rgb(0 0 0 / 30%);
    margin-top: 1px;
    position: absolute;
    top: 48px;
    z-index: 100;
  }

  .founder-img {
    padding-left: 15px;
  }

  .banner .item {
    display: flex;
    flex-direction: column;
    background: #6D213D;
  }

  .banner-text-holder {
    width: 100%;
    position: initial;
    top: 190px;
    z-index: 99;
    left: 0;
    padding: 50px 0;
  }

  .testi-top {
    justify-content: center;
  }

  .testi-video {
    display: flex;
    justify-content: center;
  }

  .map {
    margin-top: 0;
  }

  .social-media ul {
    flex-direction: row;
    padding-left: 0;
  }

  .google {
    position: relative;
    right: 0;
    top: 0;
    margin-bottom: 25px;
  }

  .banner-text-holder .dark-bg {
    background: #ffffff;
    color: #2a2020;
  }

  .social-media li p {
    display: block;
  }

  .home-solutions .item-holder {
    min-height: initial;

  }

}


@media (max-width: 767px) {

  .header-holder {
    position: relative;
  }

  .main-menu {
    position: absolute;
    right: 0;
    display: flex;
    justify-content: end !important;
  }

  .header-contact {
    width: 100%;
    justify-content: center !important;
    padding: 15px 15px 0;
    border-top: 1px solid #973156;
    margin: 13px 0;
  }

  button.navbar-toggler {
    right: -25px;
    position: relative;
  }

}