@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
body{
  font-family: "Nunito", sans-serif;
}
a {
  text-decoration: none !important;
  display: inline-block !important;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}
.cust-bg {
    background-color: #f3f4f6;
}
.cust-spacing {
    padding: 100px 0px;
}
.cust-gap {
    row-gap: 24px;
}
:root {
    --c1: #ffb800;
    --c2: rgb(255, 255, 255);
    --c3: rgba(23, 23, 23, 1);
    --bg: linear-gradient(90deg, #ffb800 0%, #5c4a0a 50%, #ffb800 100%);
}
::selection {
  background: var(--c3);
  color: var(--c2);
}
.tit-gap {
    margin-bottom: 60px;
}
::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--c1);
    border-radius: 0;
}

/* inner-wrapper */

.inner-header {
  height: 400px;
  background-position: bottom !important;
  background-attachment: fixed !important;
  background-repeat:no-repeat !important;
  background-size:cover !important;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}
.inner-header:before {
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(0 0 0 / 60%);
  position: absolute;
  left: 0;
  top: 0;
}
.inner-header .container {
  position: relative;
}
.inner-header .inner-header-title h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
}

/* MAIN HEADER  */

.header-top {
    background-color: var(--c1);
    padding: 10px 0;
}
.main-logo a {
    display: block !important;
    width: 120px;
}
.header-social ul {
    display: flex;
    gap: 5px;
}
.header-social ul li a {
    color: var(--c2);
    width: 30px;
    height: 30px;
    text-align: center;
    align-content: center;
    font-size: 16px;
    transition: all.5s;
}
.header-menu-box a:hover {
    background-color: var(--c2);
    color: var(--c3);
}
.header-social ul li a:hover {background-color: var(--c2);color: var(--c3);}

.header-contact ul {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: end;
}
.header-contact ul li a:hover{
    color: var(--c3);
}
.header-contact ul li a ,.header-contact ul li {
    color: var(--c2);
    font-size: 16px;
    transition: all.5s;
}
.header-contact ul li i {
    margin-right: 5px;
    font-size: 14px;
}
.header-bottom {
    background-color: var(--c3);
	padding: 10px 0px;
}
.main-menu ul {
    display: flex;
    gap: 40px;
    justify-content: end;
}
.main-menu ul li a {
    transition: all .5s;
    color: var(--c2);
    font-size: 16px;
    position: relative;
    font-weight: 600;
}
.main-menu ul li a:hover {
    color: var(--c1);
}
.main-menu {
    margin-right: 30px;
}
.header-menu-box a {
    transition: all .5s;
    text-align: center;
    color: var(--c2);
    background-color: var(--c1);
    padding: 10px 0;
    display: block !important;
}
.header-menu-box span {
    display: inline-block;
    margin-bottom: 3px;
}
.header-menu-box h6 {
    font-weight: 700;
}
.header-menu-box i {
    font-size: 14px;
    padding-right: 5px;
}

/* SECTION MAIN BANNER */

.main-btn a, .submit-btn button {
    letter-spacing: 0px;
    background: var(--c1);
    color: var(--c3);
    padding: 14px 35px;
    font-weight: 700;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all .5s;
    text-transform: uppercase;
	font-size: 15px;
}
.web-btn-track {
    margin-top: 40px;
}
.main-btn a::before, .submit-btn button::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: var(--c3);
    z-index: -1;
    transition: all .5s;
}
.main-btn a:hover::before, .submit-btn button:hover::before {
    left: 0;
    right: unset;
    width: 100%;
}
.main-btn a:hover, .submit-btn button:hover{
  color: var(--c2);
}
.banner {
    position: relative;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.banner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 77%);
    z-index: 1;
}

.banner-img img {
    height: 800px;
    object-fit: cover;
    transform: rotateY(180deg);
}

.banner-title div {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-title {
    color: var(--c2);
}

.banner-title div span {
	background: var(--c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-title h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 0px 0px 20px 0px !important;
    color: inherit;
    font-weight: 700;
}

.banner-title p {
    font-size: 20px;
    margin-bottom: 28px;
}

.banner-title a.web-btn {
    margin-top: 30px;
}
.myBanner .swiper-pagination-banner {
    position: absolute;
    bottom: 40px;
    left: 0;
    display: flex;
    justify-content: center;
    z-index: 9;
}
.myBanner .swiper-pagination-banner span {
    background-color: var(--c1);
}

/* SECTION ABOUT US */

.spacing {
    padding: 100px 0px;
}

.about-img-large img {
    height: 500px;
    object-fit: cover;
    object-position: center;
    transition: all .7s;
}

.about-counter {
    background: var(--c3);
    color: var(--c2);
    text-align: center;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 24px;
}

.about-counter span {
    font-weight: 400;
    font-size: 50px;
    line-height: 1.2;
}

.about-counter p {
    text-transform: capitalize;
    font-size: 18px;
}

.about-img-small img {
    height: 440px;
    object-fit: cover;
    transition: all .7s;
}

.about-img-large {
    border-radius: 60px 20px 20px 20px;
    overflow: hidden;
}

.about-img-small {
    border-radius: 20px 20px 60px 20px;
    overflow: hidden;
}

.about-img-main {
    margin-right: 30px;
}

.web-title .sub-head {
    padding: 6px 15px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    background-color: var(--c1);
    color: var(--c2);
    border-radius: 20px 0px 20px 0px;
    display: inline-block;
}

.web-title .sub-head span {
    color: var(--c1);
    letter-spacing: 1px;
}

.web-title h2 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
}

.about-content p {
    margin-top: 20px !important;
}

.about-content ul {
    margin-top: 20px !important;
}

.about-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    font-size: 18px;
}

.about-content ul li:last-child {
    margin-bottom: 0px;
}

.about-content ul li::before {
    position: absolute;
    content: "\f058";
    top: 0;
    left: 0;
    font-family: "Font Awesome 5 Pro";
    color: var(--c1);
}
.about-list {
    margin: 24px 0 28px;
}
.about-list h4 {
    font-weight: 700;
    font-size: 26px;
}
.about-content h2 {
    font-size: 40px;
}
.cust-serv-zigzag ul {
    display: flex;
    flex-wrap: wrap;
}
.cust-serv-zigzag ul li {
    width: 50%;
}

/* OUR SERVICES PAGE */

.inner-header-title p {
    color: var(--c2);
    margin-top: 20px !important;
}
.serv-p-item-content h3 {
    font-family: var(--f1);
    font-size: 24px;
    margin: 20px 0px 10px 0px !important;
    line-height: 1.3;
}
.serv-p-item-img img {
    height: 240px;
    object-fit: cover;
    transition: all .7s;
}
.serv-p-item {
    background-color: var(--c2);
    padding: 25px;
    border-radius: 20px;
    height: 100%;
}
.serv-p-item-img a {
    display: block !important;
}
.serv-p-item-img {
    border-radius: 20px;
    overflow: hidden;
}
.serv-p-item:hover .serv-p-item-img img {
    transform: scale(1.1);
}
.serv-p-item-content p {
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.serv-p-item-content .web-btn {
    margin-top: 20px;
    font-size: 14px;
    padding: 10px 20px;
}
.serv-p-item-content h3 a {
    transition: all .5s;
    color: var(--c3);
}
.serv-p-item-content h3 a:hover {
    color: var(--c1);
}
.web-title.service-title p {
    margin-top: 15px;
    font-size: 20px;
    padding: 0 140px;
}
.cust-bg .serv-p-item {
    background-color: var(--c2);
}

/* SECTION TESTIMONIAL */

.testi-content {
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all .5s;
    border: 1px solid var(--c2);
    background: rgba(246, 246, 246, 1);
}

.testi-content ul {
    display: flex;
    gap: 7px;
    margin-bottom: 20px !important;
}

.testi-content ul li {
    color: var(--c1);
}

.testi-content p {
    font-size: 17px;
    margin-bottom: 30px !important;
    height: 130px;
    overflow: auto;
	padding-right: 10px;
}

.testi-content p::-webkit-scrollbar{
	width: 5px;
}

.testi-content h3 {
    font-size: 20px;
    text-transform: capitalize;
}

.testi-content span {
    display: inline-block;
    font-size: 15px;
}

.testi-img {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.testi-img img {
    height: 100%;
    object-fit: cover;
    transition: all .7s;
}

.myTesti .swiper-pagination {
    position: unset;
    transform: unset;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.myTesti .swiper-pagination span {
    background-color: var(--c1);
    margin: 0px !important;
    width: 10px;
    height: 10px;
}

.myTesti {
    padding-bottom: 32px;
}

.testi-content::before{
    position: absolute;
    content: '';
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    background-color: var(--c2);
	visibility: hidden;
}

.testi-reverse .testi-content, .testi-reverse .testi-content::before {
    background-color: rgba(246, 246, 246, 1);
    border-color: rgba(246, 246, 246, 1);
}

.testi-reverse .testi-content:hover, .testi-content:hover{
	border-color: var(--c1);
}

/* SECTION NEWSLETTER */

.news-box {
    background-color: #ffffffa6;
    padding: 30px;
    border-radius: 20px;
}

.news-box form {
    padding: 25px;
    background-color: var(--c2);
    border-radius: 20px;
}

.news-box form h3 {
    font-family: var(--f1);
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 15px !important;
}

.news-box form input[type="email"] {
    width: 100%;
    border-radius: 50px;
    padding: 10px 20px;
    background-color: rgba(246, 246, 246, 1);
    height: 55px;
    border: 1px solid transparent;
    transition: all .5s;
    outline: 0;
}

.news-input-box {
    position: relative;
}

.news-input-box button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: 0;
}

.news-box form input[type="email"]:focus{
    border-color: var(--c1);
}

.newsletter-item {
    color: var(--c1);
    padding-right: 40px;
}

.newsletter-item h2 {
    margin-bottom: 20px !important;
	color: var(--c1);
}
.newsletter-item ul li {
    color: var(--c3);
    font-size: 18px;
    margin-bottom: 8px;
    list-style: disc;
    margin-left: 23px;
}
.newsletter {
    position: relative;
    z-index: 1;
}
.qr-code {
    border: 2px solid var(--c1);
    width: 220px;
    margin: 0 auto;
    padding: 10px;
}
/*SECTION CUST FAQS*/

.serv-faqs .accordion-item {
    margin-bottom: 20px;
    border-top: 1px solid #dee2e6;
}
.serv-faqs .accordion-item .accordion-button {
    box-shadow: unset;
    font-size: 18px;
    padding: 25px;
    font-weight: 500;
}
.serv-faqs .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--c1);
    color: var(--c2);
}
.serv-faqs .accordion-item .accordion-button::after {
    background-image: unset;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    transform: unset;
}
.serv-faqs .accordion-item .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

/* FOOTER */

.footer-top {
    padding: 60px 0px;
}
.footer {
    padding-bottom: 40px;
}
.foot-logo a {
    display: block !important;
    width: 200px;
}

.foot-logo-box ul {
    display: flex;
    gap: 10px;
}

.foot-logo-box ul li a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--c1);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--c1);
    transition: all .5s;
}

.foot-logo-box ul li a:hover {
    color: var(--c2);
    background-color: var(--c1);
}

.foot-logo-box p {
    font-size: 16px;
    margin: 20px 0px !important;
}

.foot-title span {
    display: inline-block;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.foot-links ul li a {
    color: inherit;
    transition: all .5s;
}

.foot-links ul li a:hover {
    padding-left: 10px;
    color: var(--c1);
}

.foot-links ul li {
    margin-bottom: 8px;
}

.foot-links ul li:last-child {
    margin-bottom: 0px;
}

.foot-contact ul li i {
    color: var(--c1);
    font-size: 18px;
    width: 40px;
    position: absolute;
    left: 0;
    top: 3px;
}

.foot-contact ul li a {
    color: inherit;
    transition: all .5s;
}

.foot-contact ul li a:hover {
    color: var(--c1);
}

.foot-contact ul li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 30px;
}

.foot-contact ul li:last-child {
    margin-bottom: 0px;
}

.footer-bottom {
    background: var(--c1);
    border-radius: 50px;
    padding: 20px 40px;
}

.foot-botom-links ul {
    display: flex;
    gap: 30px;
    justify-content: end;
}

.copyrights p {
    color: var(--c2);
    font-size: 16px;
}

.foot-botom-links ul li a {
    color: var(--c2);
    transition: all .5s;
    position: relative;
    display: block;
}

.foot-botom-links ul li a:hover {
    color: var(--c3);
}

.foot-botom-links ul li a::before {
    position: absolute;
    content: '';
    top: 0;
    left: -15px;
    width: 1px;
    height: 100%;
    background-color: var(--c2);
}

.foot-botom-links ul li:first-child a::before {
    visibility: hidden;
    opacity: 0;
}

/* ABOUT US PAGE CSS */

.inner-about-img {
    border-radius: 14px;
    overflow: hidden;
	margin-right: 40px;
}
.inner-about-zigzag .container .row:nth-child(2) {
    flex-direction: row-reverse;
}
.inner-about-zigzag .container .row:nth-child(2) .inner-about-img {
    margin-right: 0px;
    margin-left: 40px;
}
.inner-about-zigzag .container .row {
    margin-bottom: 60px;
}
.inner-about-zigzag .container .row:last-child {
    margin-bottom: 0px;
}
.inner-about-img img {
    transition: all .6s;
    height: 450px;
    object-fit: cover;
}
.inner-about-img:hover img {
    transform: scale(1.1);
}
.inner-about-content P {
    margin-bottom: 15px !important;
}
.inner-about-content h2 {
    font-size: 38px !important;
    margin-bottom: 20px !important;
	color: var(--c1);
}
.inner-about-content p:last-child {
    margin-bottom: 0px;
}
.inner-about-content ul li, .inner-about-content ol li, .curr-about-us-content ul li, .curr-about-us-content ol li {
    font-weight: 400;
    line-height: 1.6;
    font-size: 18px;
    list-style: disc;
	margin-bottom: 5px;
}
.inner-about-content ol li{
	list-style: auto;
}
.inner-about-content ul, .inner-about-content ol, .curr-about-us-content ul, .curr-about-us-content ol {
    padding-left: 20px !important;
    margin-bottom: 20px !important;
}
.inner-about.swaping .container .row {
    flex-direction: row-reverse;
}
.inner-about.swaping .container .row .inner-about-img {
    margin-right: 0px;
    margin-left: 40px;
}

/*SINGLE BANNER */

.single-banner {
    background-image: url(/wp-content/uploads/2025/08/pexels-paul-groom-bristol-photog-29565672.avif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position:relative;
    background-attachment:fixed;
}
.single-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c3);
    opacity: 0.5;
}
.single-banner-content.web-title{
    z-index:99;
    position:relative;
}

.single-banner-content.web-title h2 {
    color: var(--c2);
    margin-bottom: 20px;
    font-size: 45px;
}
.single-banner-content.web-title p {
    color: var(--c2);
    font-size: 18px;
    padding: 0 80px;
}
.single-banner {
    padding: 140px 0;
}

/* SECTION CONTACT US */

.contact-input-item input, .contact-input-item textarea {
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 10px 12px;
    border: 1px solid #0000001c;
    outline: 0;
    transition: all .5s;
}
.contact-form-main .wpcf7-response-output {
    font-size: 14px;
    text-align: center;
}
.contact-input-item span.wpcf7-not-valid-tip {
    font-size: 14px;
    padding-top: 8px;
}
.contact-input-item input::placeholder, .contact-input-item textarea::placeholder {
    color: #0000008a;
}
.contact-input-item input:focus, .contact-input-item textarea:focus {
    border-color: var(--c1);
}
.contact-input-item textarea {
    height: 200px;
}
.contact-form-main form .row {
    row-gap: 20px;
}
.contact-form-main form {
    margin-top: 30px;
}
.contact-btn input {
    border: 0;
}
.contact-btn input:hover {
    background-color: var(--c3);
}
.contact-img {
    overflow: hidden;
	position: relative;
}
.contact-img img {
    transition: all .8s;
}
.contact-img:hover img {
    transform: scale(1.1);
}
.contact-img::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(280deg, #ffffff, transparent);
    z-index: 1;
}
.contact-form-main {
    padding-left: 20px;
}
.contact-info-item {
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px -15px;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--c2);
    border-radius: 5px;
    margin: 0 auto 15px auto;
    background: var(--c1);
}
.contact-info-content {
    text-align: center;
}
.contact-info-content h5 {
    font-weight: 700;
    margin-bottom: 5px !important;
    letter-spacing: 0px;
    text-transform: capitalize;
	font-family: "Inter", sans-serif;
}
.contact-info-content a, .contact-info-content span {
    color: inherit;
    transition: all .5s;
}
.contact-info-content a:hover {
    color: var(--c1);
}
.contact-form-main h2 {
    font-size: 42px !important;
}
.contact-btn input {
    padding: 12px 30px;
    background: var(--c1);
    background-size: 300% 100%;
    color: var(--c2);
    position: relative;
    z-index: 1;
    transition: all .4s;
    overflow: hidden;
    font-weight: 500;
}
.contact-input-item span {
    display: block;
}
.contact-map .map iframe {
    display: block !important;
    width: 100%;
    height: 340px;
}


/*SINGLE PAGE CSS*/

.single-cont-inner {
    display: flex;
    gap: 25px;
	margin-top: 25px;
    align-items: center;

}
.single-inner-img, .single-inner-list {
    width: 50%;
}
.single-content-img img {
    height: 450px;
    object-fit: cover;
    transition: all .8s;
}
.single-content h4 {
    color: #fff;
    padding: 25px 0;
    font-family: var(--f1);
    font-size: 30px;
}
.single-content-img {
    margin-bottom: 30px;
}
.single-content-main p {
    margin-bottom: 15px;
    font-size: 18px;
}
.single-content-main h3 {
    font-size: 22px;
    color: var(--c2);
    margin-bottom: 15px;
    font-weight: 600;
}
.single-inner-list ul li {
    color: var(--c2);
    margin-bottom: 15px;
    position: relative;
    padding-left: 26px;
}
.single-w-date h3 {
    color: var(--c3);
    font-weight: 700;
    margin-bottom: 8px;
}
.single-w-date {
    margin: 30px 0;
}
.single-inner-list ul li:before {
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 13px;
    color: var(--c3);
    content:
    "\f00c";
    font-family: "Font Awesome 5 Pro";
}
.single-inner-img, .single-content-img {
    overflow: hidden;
	border-radius: 8px;
}
.quote-form-main {
    padding: 25px;
    background-color: var(--c1);
    border-radius: 5px;
}
.quote-form-main h2 {
    font-size: 34px;
    color: var(--c2);
    margin-bottom: 20px;
    font-weight:700;
    text-align: center;
}
.quote-form-item input {
    background: unset;
    border: 1px solid var(--c2);
    padding: 12px 15px;
    border-radius: 4px;
    outline: 0;
    width: 100%;
    color: var(--c2);
    transition: all .5s;
}
.quote-form-item {
    margin-bottom: 15px;
}
.quote-form-item input:focus {
    border-color: var(--c2);
}
.quote-form-item input::placeholder {
    color: var(--c2);
    font-size: 15px;
}
.quote-submit input {
    padding: 10px 20px;
    background-color: var(--c2);
    border: 0;
    outline: 0;
    color: var(--c3);
    font-weight: 800;
    border-radius: 4px;
    transition: all .7s;
    width: 100%;
    text-transform: uppercase;
}
.quote-submit input:hover {
    background-color: var(--c2);
    color: var(--c5);
}
.quote-submit {
    text-align: center;
    margin-top: 20px;
}
.side-links-main {
    margin-bottom: 30px;
}
.single-content h2 {
        color: var(--c5);
    font-family: var(--f1);
    font-size: 34px;
    margin-bottom: 15px;
}
.single-content h2 span{
    color:var(--primary);    
    font-family: var(--f1);
}
.single-content-img:hover img {
    transform: scale(1.1);
}
.single-content ul li, .single-content ol li {
    line-height: 1.6;
    color: var(--c5);
    font-size: 18px;
    list-style: disc;
}
.single-content ul, .single-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}
.single-content ol li{
    list-style: auto;
}

/*SECTION SMALL BANNER*/

.small-banner-bg {
    background-color: var(--c1);
    border-radius: 20px;
    padding: 50px;
    color: var(--c3);
}
.small-banner-title h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
}
.small-banner-title p {
    color: var(--c3);
    margin: 20px 0px;
}
.small-banner-title .main-btn a {
    background-color: var(--c2);
}

/* RESPONSIVE MENU */

.ham-menu-btn a {
    color: var(--c1);
    font-size: 28px;
}
.responsive-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    z-index: 99999;
    transition: all .5s;
}

.responsive-menu-inner {
    height: 100%;
    padding: 25px;
    position: relative;
    width: 80%;
    background-color: #f3f4f6;
    left: -100%;
}

.responsive-logo-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.respon-cross a,
.respon-cross a i {
    display: block;
}

.respon-cross a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--c1);
    border-radius: 50%;
    display: flex !important
;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--c1);
    transition: all .5s;
}

.respon-cross a:hover {
    transform: rotate(90deg);
    color: var(--c1);
    border-color: var(--c1);
}

.respon-logo a {
    display: block !important;
}

.respon-logo {
    width: 150px;
}

.responsive-links ul li a {
    color: var(--c3);
    transition: all .5s;
    font-size: 18px;
    font-weight: 600;
    display: block !important;
    border-bottom: 1px solid #80808047;
    padding: 10px 0px;
}

.responsive-links {
    margin-top: 50px;
    overflow-y: auto;
    height: calc(100vh - 232px);
}

.responsive-links ul li ul {
    display: none;
}

.responsive-links ul li a:hover {
    color: var(--c1);
}

.responsive-links ul li ul li a {
    padding-left: 40px;
    font-size: 17px;
}

.responsive-links ul li:has(ul)::before {
    position: absolute;
    content: "\f067";
    top: 10px;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
    color: var(--c1);
}

.responsive-links ul li {
    position: relative;
}

.responsive-links ul li.active::before {
    content: "\f068";
    color: var(--c1);
}

.responsive-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--c1);
    padding: 12px 0px;
}

.responsive-socials ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.responsive-socials ul li a {
    color: var(--c2);
    font-size: 18px;
}

.responsive-menu.active {
    left: 0;
}

.responsive-menu.active .responsive-menu-inner {
    left: 0;
    transition-delay: .3s !important;
    transition: all .7s;
}

body.stop-scroll {
    overflow-y: hidden;
}