@font-face {
    font-family: 'EB Garamond';
    src: url('../fonts/EBGaramond-Bold.woff2') format('woff2'),
        url('../fonts/EBGaramond-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('../fonts/EBGaramond-Medium.woff2') format('woff2'),
        url('../fonts/EBGaramond-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('../fonts/EBGaramond-ExtraBold.woff2') format('woff2'),
        url('../fonts/EBGaramond-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('../fonts/EBGaramond-Regular.woff2') format('woff2'),
        url('../fonts/EBGaramond-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('../fonts/EBGaramond-SemiBold.woff2') format('woff2'),
        url('../fonts/EBGaramond-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond';
}

p, a. li, span {
    font-family: 'Poppins';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

:root {
    --primary-color: #000000;
    --secondary-color: #ff0000;
}

header {
/*     margin-bottom: -22px; */
}

.navbar-brand img {
    padding: 0;
    width: 100%;
    height: auto;
}

.container {
    /* max-width: 1200px; */
}
.carousel-caption {
    text-align: left;
    top: 10%;
    width: 40%;
	    left: 10%;
}
.touch {
    border: none;
    padding: 12px 20px;
    color: #fff;
    background: var(--primary-color);
    border-radius: 0;
    width: 151px;
}

.touch:hover {
    background: VAR(--secondary-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    padding: 15px 20px;
}

.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.slider-btn {
    background: var(--secondary-color);
    color: #fff;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: #fff;
}
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}

.carousel-item.active img {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}

.carousel-control-next,
.carousel-control-prev {
    width: 5%;
}

.carousel-caption.d-none.d-md-block {
    text-align: left;
    left: 9%;
    right: 8%;
    width: 38%;
    margin-right: auto;
    top: 12%;
}

.carousel-caption h1 {
    font-size: 60px;
    margin-bottom: 24px;
}

.carousel-caption p {
    margin-bottom: 25px;
    font-size: 18px;
}
#zoomIn img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#zoomIn:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
#zoomOut img {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
#zoomOut:hover img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure {
	overflow: hidden;
}
#zoomIn {
	display: inline-block;
	text-align: center;
}
p.c-red {
    color: white;
    font-size: 19px;
    margin: 0 0 19px 0;
}

.btn:first-child:active {
    background-color: #040404;
    color: #fff;
}

.right-align {
    text-align: right;
    margin: auto;
}

.first-half h2 {
    color: var(--secondary-color);
    font-size: 52px;
}

.first-half h6,
.first-half h4 {
    font-family: 'Poppins';
}

.first-half h6 {
    font-size: larger;
    /* margin-bottom: 11px; */
    /* margin-top: 7px; */
}

.first-half h4 {
    /* font-size: x-large; */
    font-weight: 400;
    color: #444;
}


img.d-block.w-100 {
    HEIGHT: 600PX;
	    object-fit: cover;
}

img {
    max-width: 100%;
}

h3 {
    font-size: 38px;
    text-transform: capitalize;
    color: var(--secondary-color);
    /* margin-top: 26px; */
    font-weight: 600;
}

.portfolio-images {
    position: relative;
}

.content-inner .title, .content-inner p, .content-inner a {
    color: #fff;
}

.portfolio-hover p {
    color: white;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-style: flat;
    transform-style: flat;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    font-size: 14px;
    margin: 0;
}

.portfolio-hover2 i {
    color: #fff;
    font-size: 44px;
    margin: auto;
}

.content-inner p,
.content-inner a {
    color: white;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-style: flat;
    transform-style: flat;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    font-size: 14px;
    margin: 9px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.icon-service {
    width: 22%;
    padding: 19px 20px;
}

.portfolio-information {
    width: 60%;
    padding: 7px 0px;
}
.slick_row .blog img {
    object-fit: cover;
    height: 250px;
    width: 100%;
}
.portfolio-content:hover .content-inner p,
.portfolio-content:hover .content-inner a {
    visibility: visible;
    opacity: 1;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
}

.portfolio-content:hover .content-inner .portfolio-information {
    width: 80%;
    padding: 0 0 0 22px;
    margin: 19px 20px 19px 0px;
    border-left: 1px solid #fff;
}

.portfolio-content:hover .content-inner .portfolio-hover2 {
    display: none;
}

/* -------- btn----------- */
:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0;
}

::before,
::after {
    position: absolute;
    content: "";
}

.btn-holder {
    /* display: inline-flex; */
    flex-wrap: wrap;
    justify-content: center;
    /* max-width: 1000px; */
    /* margin: 0; */
}

.btn {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0;
    min-width: 150px;
}

.btn.hover-filled-slide-right::before {
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.btn.hover-filled-slide-right:hover::before {
    width: 0%;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0;
}

header .btn-1::before {
    background-color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
}

.team-content {
    padding: 19px;
    background: #fff;
}

.team-content h5 {
    color: var(--secondary-color);
    font-style: italic;
}

.blog-content p,
.team-content p {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

a {
    outline: 0 !important;
}

.mfp-arrow-left:before {
    border-right: none !important;
}


.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}


.team-content p {
    font-size: 12px;
}


section.form-sec.p-70 form {
    width: 95%;
    margin-top: 14px;
}

img.form-img {
    width: 100%;
    float: right;
}


.foo-about p,
.foo-about a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Poppins';
}



.f-title.social_media i {
    background: var(--secondary-color);
    padding: 9px 6px;
    width: 32px;
    color: rgb(255 255 255);
    text-align: center;
    border-radius: 50px;
    height: 32px;
    margin: 8px 7px 7px 0px;
}

.f-title.social_media i:hover {
    background: rgb(255 255 255);
    color: var(--secondary-color);
}

.about_company {
    margin-right: 31px;
}

.foo-about ul li::after {
    position: absolute;
    content: "";
    top: 9px;
    left: -23px;
    width: 12px;
    height: 10px;
    background-color: var(--secondary-color);
    clip-path: polygon(21% 56%, 0px 0px, 100% 54%, 0% 100%);
}
.p-70 {
    padding: 50px 0 50px 0;
    /* background: aquamarine; */
}

.pb-20 {
    padding-bottom: 20px;
}

p {
    line-height: 1.7;
    font-size: 16px;
}

.first-half p.c-red {
    line-height: 1.5;
}

.content-inner {
    position: absolute;
    text-align: center;
    bottom: 0;
    background: var(--primary-color);
    overflow: hidden;
    z-index: 9;
    display: flex;
    width: 100%;
    /* padding: 23px 15px; */
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    text-align: left;
}

.portfolio-content {
    position: relative;
}

.content-inner img {
    width: auto;
    filter: invert(1);
}


.portfolio-hover2 {
    width: 20%;
    padding: 14px 20px;
    background: var(--secondary-color);
}

.content-inner h4.title {
    color: white;
    font-size: 28px;
    margin-bottom: -127px;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    margin-top: 9px;
}

.portfolio-content:hover h4.title {
    margin: 0px;
	-webkit-line-clamp: 2;
}

.portfolio-content:hover .content-inner {
    background: var(--secondary-color);
}

.text-white h3 {
    color: #fff;
}

.content-inner a {
    text-decoration: none;
    font-weight: 500;
}

.product h4::after {
    content: '';
    width: 49px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.product h4 {
    color: #000;
    text-align: left;
    font-size: 32px;
    position: relative;
    padding: 0 0 17px 0;
}

.product .portfolio-content {
    background: #fff;
    padding: 20px;
}

.product:hover h4::after {
    background: var(--secondary-color);
    width: 73px;
}


.btn span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    text-transform: capitalize;
    top: 0;
    left: 0;
    font-family: 'Poppins';
    width: 100%;
    padding: 5px 20px;
    transition: 0.3s;
}

.btn-1::before {
    background-color: var(--secondary-color);
    transition: 0.3s ease-out;
}

.btn-1 span {
    color: rgb(255, 255, 255);
    border: 1px solid rgb(232 51 29 / 0%);
    transition: 0.2s 0.1s;
}

.btn-1 span:hover {
    color: #fff;
    transition: 0.2s 0.1s;
}


.faq-gallery img {
    width: auto;
}

header .btn:hover {
    background-color: var(--secondary-color);
}

.faq button.accordion-button::after,
.faq button.accordion-button::before {
    position: relative;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.jpg);
    width: 31px;
    height: 31px;
    background-size: contain;
}

.accordion-button::after {
    background-image: url(../images/plus.jpg);
    width: 31px;
    height: 31px;
    background-size: contain;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    background-color: #fff;
    padding: 11px 18px 10px 23px;
    font-family: 'Poppins';
    color: #000000;
    font-size: 17px;
    /* text-transform: uppercase; */
}
	section.product-sec.p-70.text-white {
    display: none;
}
	section.team-sec.p-70 {
    display: none;
}
	img.underline {
    display: none;
}

section.faq-gallery.p-70 {
    background: #eee;
}
.our-team.p-70.text-center {
    display: none;
}
section.team-sec.p-70 {
    display: none;
}

h3.m-0 {padding-bottom: 23px;}
img.underline
section.faq-gallery.p-70 {
    background: #eeeeee40;
}

.services-slider2 .portfolio-images img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.accordion-button:focus {
    box-shadow: none;
}

.magnific-img img {
    width: 100%;
    height: auto;
}


.magnific-img,
.team-img,
.blog-img {
    /* display: table-header-group; */
    /* width: 32.3%; */
    POSITION: RELATIVE;
    padding: 5px;
}

a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}


button.mfp-arrow,
.mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
    opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader, .mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
}
.col-lg-4.col-md-6.col-ms-12 .portfolio-images img {
    height: 240px;
    object-fit: cover;
}
.mfp-close:hover, .mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}
nav.navbar.navbar-expand-lg.bg-body-tertiary::before {
    content: "";
    position: absolute;
    background: #ff0000;
    width: 67%;
    top: 0;
    right: 0;
    height: 41px;
    z-index: -1;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}

nav ul#menu-info-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-self: flex-end;
}

nav ul#menu-info-menu li {
    font-size: small;
    margin: 10px 5px;
}

nav ul#menu-info-menu li i {
    margin-right: 9px;
}
@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
    * Remove all paddings around the image on small screen
    */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.magnific-img .overlay,
.team-img .overlay,
.blog-img .overlay {
    border: 5px solid #fff;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    align-content: center;
    text-align: -webkit-center;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #0000006e;
}

.blog:hover .blog-img .overlay,
.magnific-img:hover .overlay,
.team:hover .team-img .overlay {
    opacity: 1;
}

.magnific-img .overlay i,
.team-img .overlay i {
    border: 2px solid #fff;
    padding: 12px 13px;
    border-radius: 50px;
    color: #fff;

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

    ;
    width: 42px;
    height: 42px;
}

img.underline {
    margin-bottom: 26px;
}

.blog:hover .blog-img .overlay p {
    border-bottom: 2px solid #ffff;
    display: inline-block;
    color: #fff;
}

.blog-img img,
.blog-img .overlay {
    border-radius: 27px;
    aspect-ratio: 3 / 2;
}

.blog-content h5 {
    color: var(--secondary-color);
}

.blog-content h4 {
    color: var(--primary-color);
    font-size: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-content {
    padding: 9px;
}

input,
textarea {
    width: 100%;
    border: none;
    padding: 6px 17px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

section.form-sec.p-70 .form-div .col-md-6,
section.form-sec.p-70 .form-div .col-md-12 {
    padding: 0px 10px;
}

[type=submit]:not(:disabled) {
    width: auto;
    padding: 9px 42px;
    background: var(--secondary-color);
    color: #fff;
    text-transform: uppercase;
    margin-top: -12px;
}

.CLIENT-LOGO button {
    display: none !important;
}

.slick-slide img {
    /* display: block; */
    /* filter: opacity(0.5); */
}



.foo-about ul {
    LIST-STYLE: NONE;
    padding: 0;
}

.foo-about ul li::after {
    position: absolute;
    content: "";
    top: 9px;
    left: -23px;
    width: 12px;
    height: 10px;
    background-color: var(--secondary-color);
    clip-path: polygon(21% 56%, 0px 0px, 100% 54%, 0% 100%);
    z-index: 9;
}

.foo-about ul li {
    margin-left: 30px;
    position: relative;
    padding-bottom: 5px;
}

.f-title.social_media ul li {
    margin: revert-layer;
    font-size: 15px;
    display: inline-flex;
    place-items: center;
    color: #f9f9f9;
}

.f-title.social_media ul li::after {
    display: none;
}

.footer-copyright {
    text-align: center;
    padding: 10px 0;
    /* background-color: rgb(255, 190, 81); */
    display: flex;
}

.about_company img {
    margin-bottom: 10px;
    width: 210px;
    height: auto;
}

.footer-copyright p {
    text-align: left;
    margin: 1% 0;
    font-size: 14px;
    color: #ffffff;
}


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

i::before, i::after {
    position: initial;
}

footer#contact h5 {
    font-size: 28px;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: #fff;
}
hr {
    border: none !important;
    border-top: 2px solid !important;
    margin: 0 !important;
    color: #ff0000 !important;
    opacity: unset !important;
}

.footer-copyright i {
    /* color: #fff !important; */
    /* background: #0000 !important; */
}

.footer-copyright i:hover {
    color: var(--secondary-color) !important;
}
.f-title.social_media ul li:hover {
    color: #fff;
}

.page-header h2 {
    margin: 2% 0;
    color: #ffffff;
}

.page-header a {
    color: rgb(255, 255, 255);
}

.page-header .thm-breadcrumb.list-unstyled {
    padding: 10px 17px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.11);
    /* margin: 14px 0px; */
    color: #fff;
}
.top-banner {
    display: ruby-text;
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.image-sid-about {
    float: left;
    margin-right: 40px;
}

.mission p, .inner-about-section p {
    /* line-height: normal; */
}
.work .single-work {
    position: relative;
    border-bottom: 1px solid #646c88;
    padding: 0px 0px 24px 0px;
}
.work .single-work h2 {
    color: var(--secondary-color);
    transition: .5s ease;
    display: inline-block;
    /* font-size: -webkit-xxx-large; */
    MARGIN-RIGHT: 11PX;
}
.work .single-work h3 {
    color: var(--primary-color);
    transition: .5s ease;
    margin: 0;
    font-size: x-large;
    display: inline-block;
    text-transform: capitalize;
}
.work .single-work p {
    margin: 10px 0;
    font-weight: 400;
    letter-spacing: 0;
    /* color: #2c2d33; */
    margin: 0;
}
.first-half {
    margin: auto;
}
.mission.work h3 {
    margin-top: 0;
}
.our-team .single-member {
    margin: 20px auto;
    position: relative;
    width: 90%;
}
.our-team .single-member .sm-img {
    transition: .5s ease;
    overflow: hidden;
    position: relative;
}
.our-team .single-member .sm-details {
    position: relative;
    width: 90%;
    margin-top: -60px;
    padding: 16px 0px 17px;
    border-radius: 10px;
    text-align: center;
    background-color: white;
    box-shadow: 0px 0px 25.5px 4.5px rgba(37, 40, 48, 0.1);
    margin-left: 5%;
    transition: .5s ease;
}
.our-team .single-member .sm-details h3 {
    color: #11141e;
    font-size: 24px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
}
.our-team .single-member .sm-details span {
    color: #23283b;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}
.our-team .single-member .sm-details .sm-icon {
    position: relative;
    margin-top: 10px;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}
.our-team .single-member .sm-details .sm-icon li {
    width: 40px;
    height: 40px;
    margin: 0px 2px;
    background: #e6e6e6;
    transition: .3s ease;
    border-radius: 50%;
    align-items: center;
    display: grid;
}
.our-team .single-member .sm-details .sm-icon li a {
    font-size: 18px;
    color: #fff;
    padding: 8px;
}
h3.m-20 {
    margin: 0;
    margin-bottom: 20px;
}
.our-team .single-member .sm-details .sm-icon li:hover {
    background: var(--secondary-color);
}
.single-client h3 {
    color: #000c38;
    font-weight: 500;
    font-size: 21px;
    border-bottom: 1.5px solid #dcdcdc;
    padding-bottom: 15px;
    margin: 0;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.single-client i.fas.fa-quote-right {
    position: absolute;
    font-size: 50px;
    color: #f0f0f0;
    right: 10px;
    bottom: 0;
    z-index: -1;
}
.single-client .sc-info .sc-img {
    position: relative;
}
.sc-info .sc-img img {
    max-width: unset;
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.single-client p {
    font-size: 14px;
    color: #5a5c64;
    line-height: normal;
    /* text-align: justify; */
    margin: 0;
    padding: 0;
}
.single-client .sc-info {
    position: relative;
    display: flex;
    padding: 20px 0px;
    align-items: center;
    /* border-bottom: 1.5px solid #dcdcdc; */
    flex-wrap: wrap;
}
.single-client {
    position: relative;
    padding: 25px;
    z-index: 1;
    width: 95% !IMPORTANT;
    height: 267px;
    margin: 10px auto;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #cdcdcd;
}
.single-client .sc-info .sc-text {
    position: relative;
    margin-left: 21px;
    width: 70%;
}
.report, .report2 {
    position: relative;
    padding: 70px 0;
    background-color: #f0f0f0;
}

.report-text p {
    font-size: 15px;
}

.report-text h2 {
    margin: 10px 0;
}
.single-client h4 {
    font-size: 19px;
    margin: 0;
}
.single-client  a {
    color: #ff4b36;
}
.service-details::before {
    position: absolute;
    content: '';
    background-image: url(../images/Service-Details-bg.png);
    height: 120%;
    width: 45%;
    top: 0;
    right: -17px;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

.service-details {
    position: relative;
    overflow: hidden;
}
.single-client  li {
    line-height: 18px;
    list-style-type: none;
    margin: 0px;
    letter-spacing: 0;
    display: table-cell;
    font-size: 16px;
}
.single-client ul {
    margin: 9px 0 0;
    padding: 0;
    text-align: center;
    display: inline-block;
}
.page-header img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.page-header span {
    color: #fff;
}
.report::before {
    position: absolute;
    content: '';
    background-image: url(../images/line.png);
    height: 130px;
    width: 5px;
    left: 45%;
    top: 30px;
}
.solution-content-img img {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
    object-fit: cover;
    margin-top: 11px;
}
.sd-content {
    padding: 8%;
    width: 94%;
}
.portfolio-v1 {
    margin: 20px 10px;
}
.sd-content p {
    line-height: inherit;
    font-family: 'Poppins';
    font-size: 16px;
}
.report2::before {
    position: absolute;
    content: '';
    background-image: url(../images/line.png);
    height: 130px;
    width: 5px;
    left: 74%;
}

.report2 {
    BACKGROUND: #FFF;
}

.report2 .col-md-3 .report-text {
    text-align: RIGHT;
    margin: auto;
    text-align: right;
    margin-top: 16%;
}
.service2 .text-center p {
    width: 80%;
    line-height: normal;
    text-align: center;
    margin: auto;
}
.icon-div {
    width: 74px;
    height: 74px;
    background: var(--primary-color);
    border-radius: 50px;
    text-align: center;
    color: #ffffff;
    border: 4px solid #ffffff;
    display: inline-block;
    align-content: center;
}

.m-contact {
    display: flex;
    margin: 30px 20px;
}

.text-contact {
    margin-left: 17px;
}

.text-contact h5 {
    color: var(--secondary-color);
    margin: 0;
    margin-top: 6px;
}

.text-contact p, .text-contact a {
    margin: 0;
    color: #000;
    font-size: 21px;
    font-weight: 600;
}

.icon-div i {
    font-size: 29px;
}
.icon-div {
    width: 74px;
    height: 74px;
    background: var(--primary-color);
    border-radius: 50px;
    text-align: center;
    color: #ffffff;
    border: 4px solid #ffffff;
    display: inline-block;
    align-content: center;
}

.m-contact {
    display: flex;
    margin: 29px 0;
    background: #fff;
    padding: 15px;
}

.text-contact {
    margin: auto;
    margin-left: 17px;
}

.text-contact h5 {
    color: var(--secondary-color);
    margin: 0;
    margin-top: 0;
}
.contact-info-section {
    padding: 40px 0;
    background: #eee;
}
.text-contact p, .text-contact a {
    margin: 0;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}

.icon-div i {
    font-size: 29px;
}

.m-contact:hover .icon-div {
    background: var(--secondary-color);
}
.social_media a {
    /* display: contents; */
}
.m-contact:hover .icon-div {
    background: var(--secondary-color);
}
.contact-info-section .m-contact {
    display: flow;
    text-align: center;
    padding: 43px 10px;
	height: 253px;
}
.contact-info-section .text-contact {
    margin: auto;
}
ul.social-icon-style3.ps-0 i {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: var(--secondary-color);
    height: 41px;
    line-height: 41px;
    width: 41px;
}

ul.social-icon-style3.ps-0 {
    display: flex;
    list-style: none;
}
.margin-auto {
    margin: 16% 14% 16% 0;
    color: #fff;
}
.service-side-menu {
    background: #ffffff78;
    padding: 40px;
    text-align: left;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.service-side-menu h4 {
    color: #000;
}

.service-side-menu ul li {
    padding: 5px 13px;
    background: #fff;
    margin: 11px 0;
    border-left: 4px solid var(--secondary-color);
}
.solution-content h6, .solution-content h2 {
    text-align: left;
    margin-bottom: 9px;
}
.service-side-form {
    padding: 40px;
    background: #ffffff78;
    text-align: left;
    margin-top: 27px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.service-side-form form input, .service-side-form form textarea {
    width: 100%;
    padding: 5px 13px;
    background: #fff;
    margin: 6px 0;
    border: none;
}

::placeholder {
    text-transform: capitalize;
}
.service-side-form h4 {
    color: #000;
}
.service-side-form form input[type="submit"] {
    background: var(--secondary-color);
    color: #fff;
}
.solution-content {
    text-align: left;
    margin: 0 20px;
}
.solution-content h1, .solution-content h3 {
    color: #000000;
    font-family: 'EB Garamond';
    text-transform: capitalize;
    padding: 8px 13px 10px 19px;
    font-size: 21px;
    background: #ffffff;
    border-left: 5px solid var(--secondary-color);
    margin-bottom: 17px;
    FONT-WEIGHT: 500;
    display: inline-block;
}
.solution-content ul li {
    position: relative;
    width: 100%;
    display: inline-block;
    margin-left: 26px;
    color: #000;
	padding: 4px 0;
}
.solution-content ul li::after {
    position: absolute;
    content: "";
    top: 9px;
    left: -23px;
    width: 12px;
    height: 10px;
    background-color: rgb(26 33 43);
    clip-path: polygon(21% 56%, 0px 0px, 100% 54%, 0% 100%);
}
.solution-content h2.service-title {
    color: rgb(26 33 43);
    font-size: 41px;
}
.solution-content ul {
    margin-bottom: 18px;
}
.form-side select {
    padding: 15px;
}
.solution-content p {
    color: #000;
    line-height: normal;
    font-size: 15px;
}
.sec-padding.light-sec {
    padding: 70px 0;
    background: #eee;
}

section.sec-padding.light-sec ul {
    list-style: none;
    padding: 0;
}

section.sec-padding.light-sec ul a {
    color: #000;
}
p.mb-1-9 {
    line-height: normal;
    margin: 20px 0 28px 0;
}
.contact-info-section .text-contact h5 {
    margin: 13px 0;
    font-size: 26px;
}

/*=21/06/2024=*/

.la-event {
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #00000057;
    background: #ffffff;
}

.la-event ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0px;
    border-bottom: 1px solid #b7b7b7;
    padding-bottom: 10px;
}

.la-event ul li img {
    width: 80px;
    height: 80px;
    max-width: inherit;
    border-radius: 100%;
    object-fit: cover;
    border: 2px solid #ddd;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.evrnt-text p {
    font-size: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    line-height: normal;
}

.evrnt-text h5 {
    font-size: 13px;
    margin: 10px 0px;
    background: #0000001f;
    color: var(--primary-color);
    padding: 8px 10px;
    display: inline-block;
    border-radius: 30px;
}

.service-formbox {
    width: 100%;
    padding: 30px;
    background-color: var(--secondary-color);
    background-position: center center;
    background-size: cover;
    margin: 40px 0 0 0;
    position: sticky;
    top: 40px;
    border-radius: 5px;
}

.service-formbox h3 {
    font-size: 22px;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #ffffff;
    color: #fff;
}

.service-formbox p , .service-formbox h4 {
    color: #fff;
}

.service-formbox form {
    margin: 20px 0 0 0;
}

.service-formbox form input::placeholder{
    color: #000;
}

.service-input {
    padding: 10px;
    height: 40px;
    width: 100%;
    font-size: 17px;
    color: #000;
    outline: none;
    border: none;
    background: #fff;
}

.service-submit {
    width: 100%;
    padding: 10px 0;
    background-color: #214b0d;
    color: #ffff;
    font-size: 18px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
    margin: 20px 0 0 0;
    border-radius: 8px;
}
.accordion-body {
    background: #f1f1f1;
}
.service-submit:hover {
    color: #fff;
    background-color: #000;
}
div#navbarSupportedContent {
    padding: 10px 0;
}
.top-banner {
    width: 80%;
}
.service-side-form form textarea {
    margin-top: -20px;
    margin-bottom: 15px;
}
.content-inner h4.title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.slick-next.slick-arrow, .slick-prev.slick-arrow {
   position: absolute;
    right: 0;
    bottom: -27px;
    border: 3px solid #dd091a;
    color: #000;
    background: #fff;
    border-radius: 100%;
    width: 31px;
    height: 31px;
    padding: 2px 8px;
}

section.team-sec.p-70 .team-content p {
    display: none;
}
.slick-prev.slick-arrow {
    right: 42px;
}
.page-header {
    position: relative;
}
.modal-content {
    background: #eee;
}
.modal-backdrop {
	z-index:3;
/* 	background: #eeeeee; */
}
.modal.show .modal-dialog {
    top: 11%;
}
@media only screen and (max-width: 1200px) {
	nav ul#menu-info-menu li:last-child {
    display: none;
}
}
@media only screen and (max-width: 1199px) {
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 13px;
}
footer#contact h5 {
    font-size: 25px;
}
	.single-client {
    height: 344px;
}

.single-client .sc-info .sc-text {
    margin: 0;
    margin-top: 16px;
}

.sc-info .sc-img img {
    margin-right: 34px;
}
.menu-item-has-children:after {
    top: 13px;
}
.carousel-caption {
    width: 54%;
}
.btn span {
    padding: 0px 2px;
}
}
@media only screen and (max-width: 1140px) {
	.carousel-caption.d-none.d-md-block {
    width: 50%;
}
	h4.title {
    font-size: 22px;
}

.icon-service {
    width: 58px;
    padding: 9px;
    margin: auto;
}

.portfolio-hover2 {
    padding: 19px;
}

.portfolio-hover2 i {
    font-size: 33px;
    margin: auto 23%;
}

footer#contact h5 {
    font-size: large;
}

}
@media only screen and (max-width: 1024px) {
	h3 {
		font-size: 34px;}
}

@media only screen and (max-width: 991px) {
	.side-logo {
    width: 100%;
}
	ul#menu-info-menu {
    display: none !important;
}

nav.navbar.navbar-expand-lg.bg-body-tertiary::before {
    display: none;
}

ul#menu-primary-menu li {
    border-top: 1px solid #00000030;
    padding: 6px;
}

div#navbarSupportedContent {
    padding: 21px 0;
    position: absolute;
    background: #fff;
    width: 100%;
    left: 0;
    padding: 26px;
}
	footer#contact h5 {
    font-size: 21px;
}
	nav ul#menu-info-menu {
    position: absolute;
    top: 10px;
    right: 64px;
}

ul#menu-info-menu li {
    display: none;
}

ul#menu-info-menu li:first-child, ul#menu-info-menu li:last-child {
    display: block;
}
	.my-order{
		order:1;
	}
	.product {
    margin: 11px  0;
}
	section.form-sec.p-70 form {
		width:100%;
	}
	.first-half h2 {
    font-size: 40px;
}
	.our-team .single-member .sm-details h3 {
    font-size: 22px;
}

.our-team .single-member .sm-details .sm-icon li a {
    padding: 1px;
    font-size: 10px;
}

.our-team .single-member .sm-details .sm-icon li {
    width: 21px;
    height: 21px;
    background: #ccc;
}

.our-team .single-member .sm-details {
    padding: 12px;
}
	div#accordionExample {
    margin-bottom: 88px;
}
	.carousel-caption h1 {
    font-size: 43px;
}
	img.d-block.w-100 {
    height: 800px;
}
button.navbar-toggler {
    background: #fe0531;
    color: #ffff;
/* 	margin-top: 5%; */
	}
	
	.portfolio-information {
    padding: 15px 0;
    text-align: center;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 6px 7px;
    text-transform: capitalize;
}
button.navbar-toggler span.navbar-toggler-icon {
    background-image: #ffffff;
}
.carousel-caption.d-none.d-md-block {
    width: 60%;
}
	.team {
    margin-top: 21px;
}
	.solution-content h2.service-title {
    font-size: 31px;
}
}
@media only screen and (max-width: 840px) {
	.solution-content-img img {
    height: 157px;
}
}
@media only screen and (max-width: 800px) {
}
@media only screen and (max-width: 734px) {
	.carousel-caption {
		background: #000000b0;
		padding: 21px;
		top: 78px;
		bottom: auto;
		text-align: center;
		width: auto;
	}
	.first-half h2 {
        font-size: 35px;
    }
	.first-half h4 {
		font-size: large;
		font-weight: 600;
		line-height: initial;
    }
	.carousel-caption h1 {
		font-size: 33px;
	}
	.first-half p {
		line-height: normal;
		}
	.btn span {
		padding: 3px;
	}
	.col-lg-6.col-md-4.col-sm-12.right-align.wow.zoomInRight {
    text-align: left;
}
	#zoomOut img {width: -webkit-fill-available;}
	.col-lg-6.col-md-4.col-sm-12.right-align.wow.fadeInRight {
    text-align: left;
    padding-top: 19px;
}

.team-img img {
    width: -webkit-fill-available;
}
	ul#menu-footer-menu {
    display: grid;
}
	.footer-copyright p {
    text-align: center;
}

.footer-copyright .f-title.social_media {
    text-align: center;
}
	.col-lg-3.col-md-6.col-sm-12.last.p-0 {
    padding: 10px !important;
	}
}


.carousel-caption p.c-red {
    display: contents;
}

.carousel-caption {
    top: 25%;
}

/* .p-70 {
    padding: 30px 0;
}
 */
p {
    font-size: 15px;
    line-height: normal;
}

button.accordion-button.collapsed {
    font-size: 16px;
    font-weight: 500;
}

.accordion-body {
    font-size: 15px;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {}

input, textarea {
    padding: 13px;
}
	section.service.p-70 {
    padding-bottom: 50px;
}

}
@media only screen and (max-width: 568px) {
}
@media only screen and (max-width: 480px) {
	nav.navbar.navbar-expand-lg.bg-body-tertiary::before {
    width: 55%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
}
@media only screen and (max-width: 414px) {
}
@media only screen and (max-width: 384px) {
}
@media only screen and (max-width: 375px) {
}
@media only screen and (max-width: 360px) {
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    color: #fa2425;
}

/* Changes by sumit */
section.faq-gallery.p-70.text-white h3 {
    color: #ff0000;
}

footer#contact {
    background-color: #000000;
}

section.mission.work.p-70 {
    background: #eceaea;
}

section.mission.work.p-70 .first-half {
    margin: 0;
}


ol.wp-block-list li {
    padding: 4px 0;
}
ul#menu-footer-menu li a {display: contents;}
.menu-item-has-children:after {
    clip-path: polygon(53% 50%, 100% 50%, 50% 100%, 0% 50%);
    position: absolute;
    top: 15px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #ff0000;
    content: "";
}

.menu-item-has-children {
    position: relative;
	padding-right: 15px;
}
header.header.scrolled .navbar-brand img {
    width: 58%;
    z-index: 1;
}

header.header.scrolled nav.navbar.navbar-expand-lg.bg-body-tertiary::before {
    display: none;
}

header.header.scrolled nav ul#menu-info-menu {
    display: none;
}
.header {
  position: -webkit-sticky; /* for Safari */
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff; /* ensure background covers behind */
}
nav ul#menu-info-menu li {
    position: relative;
}

nav ul#menu-info-menu li ul.dropdown-menu {
    position: absolute;
    display: ruby;
}
.membership {
    background: #fff;
    padding: 23px;
    border-radius: 7px;
    text-align: center;
}
.membership img {
    margin-top: 20px;
    width: 139px;
}

.membership h2 {
    font-size: 32px;
    color: #ff0000;
}
.navbar-expand-lg .navbar-nav .dropdown-menu li a {
    color: #fff;
    padding: 3px 10px;
    text-transform: capitalize;
}
.f-title.social_media i.fa-solid.fa-location-dot {
    WIDTH: 41px;
}
