@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap") * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Poppins", sans-serif;
}
body,
html {
background-color: var(--white);  color: var(--black);
} :root {
--primary: #164273;
--pear: #CDD34D;
--teal: #00A8A8;
--pear-light: #EDEFBE;
--grey-white: #eee;
--dark-red: #D8042A;
--light-red: #EF233E;
--black:#000;
--light-black:#5E5E5E;
--white: #fff;
--radius-5px:5px;
--radius-10px:10px;
--radius-100px:100px;
}
.blue-bg{
background-color: var(--primary);
}
.pear-light-bg{
background-color: var(--pear-light);
}
.grey-white-bg{
background-color: var(--grey-white);
}
.white-bg{
background-color: var(--white);
}
.yellow-bg{
background-color: var(--pear);
}
.text-blue{
color: var(--primary) !important;
}
text-teal{
color:var(--teal);
}
.text-red{
color: var(--light-red);
}
.text-black{
color: var(--black) !important;
}
.text-pear{
color: var(--pear);
}
.light-black{
color: var(--light-black);
}
a {
text-decoration: none;
color: inherit;
}
a:hover {
color:var(--light-red);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 600;
}
ol, ul{
padding: 0px;
}
ul {
list-style: none !important;
}
img {
max-width: 100%;
}
.z-index1 {
z-index: 1;
position: relative;
}
.z-index2 {
z-index: 2;
position: relative;
}
.required{
color: var(--light-red);
} .head-btn {
font-size: 16px;
font-weight: 500;
color: var(--primary);
}
.head-btn a {
color: var(--light-red);
font-size: 18px;
font-weight: 500;
transition: all ease-in 0.2s;
}
.head-btn a:hover {
color: var(--dark-red);
}
.red-bg-btn {
background: var(--dark-red);
color: var(--white);
padding: 10px 20px;
border-radius: var(--radius-5px);
font-size: 18px;
font-weight: 600;
transition: all ease-in 0.2s;
}
.red-bg-btn:hover {
color: var(--white);
background: var(--light-red);
}
.section-title {
font-size: 40px;
}
.sub-title {
font-style: italic;
font-size: 22px;
font-weight: 500;
margin-bottom: 20px;
}
.section-gap {
padding-top: 100px;
}
.section-gap-bottom {
padding-bottom: 100px;
}
.section-gap70 {
padding-top: 70px;
}
.section-gap-bottom70 {
padding-bottom: 70px;
}
.text-white {
color: #fff !important;
}
.explore-btn a {
color: var(--dark-red);
font-size: 20px;
font-weight: 500;
}
.explore-btn a img {
transform: translateX(5px);
transition: all .5s ease;
}
.explore-btn a:hover img {
transform: translateX(15px);
}
.red-btn {
color: var(--dark-red);
font-weight: 500;
}
.red-btn i {
transform: rotate(0deg);
transition: all .5s ease;
}
.red-btn:hover i {
transform: rotate(45deg);
}
.yellow-btn {
color: var(--pear);
font-weight: 500;
}
.red-btn i {
transform: rotate(0deg);
transition: all .5s ease;
}
.red-btn:hover i {
transform: rotate(45deg);
}
.black-btn{
color: var(--light-red);;
font-size: 16px;
font-weight: 500;
}
.black-btn:hover{
color: var(--dark-red);;
}
.black-btn i {
transform: rotate(0deg);
transition: all .5s ease;
}
.black-btn:hover i {
transform: rotate(45deg);
}
.button {
padding: 14px 30px;
background: var(--pear);
border: none;
color: var(--primary);
font-weight: 600;
letter-spacing: 0.2px;
border-radius:var(--radius-10px);
}
.button:hover {
background: var(--dark-red);
color: var(--white);
}
.main-title {
}
.bg-thumb {
background-size: cover !important;
background-position: center !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
} #preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #000000;
z-index: 999999;
}
#preloader .preloader {
width: 150px;
height: 150px;
display: inline-block;
padding: 0px;
text-align: left;
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
margin-top: -75px;
margin-left: -75px;
}
#preloader .preloader span {
position: absolute;
display: inline-block;
width: 150px;
height: 150px;
border-radius: 50%;
background-color: var(--pear);
-webkit-animation: preloader 1.3s linear infinite;
animation: preloader 1.3s linear infinite;
}
#preloader .preloader span:last-child {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
@-webkit-keyframes preloader {
0% {
transform: scale(0, 0);
opacity: 0.5;
}
100% {
transform: scale(1, 1);
opacity: 0;
}
}
@keyframes preloader {
0% {
transform: scale(0, 0);
opacity: 0.5;
}
100% {
transform: scale(1, 1);
opacity: 0;
}
} .back-to-top-wrapper {
position: fixed;
right: 50px;
bottom: 0;
height: 50px;
width: 50px;
cursor: pointer;
display: block;
border-radius: 50%;
z-index: 99;
opacity: 0;
visibility: hidden;
}
@media (max-width: 767px) {
.back-to-top-wrapper {
right: 4px;
bottom: 40px !important;
}
}
.back-to-top-wrapper.back-to-top-btn-show {
visibility: visible;
opacity: 1;
bottom: 130px;
}
.back-to-top-btn {
display: inline-block;
width: 45px;
height: 45px;
line-height: 39px;
text-align: center;
background: var(--dark-red);
border-radius: var(--radius-10px);
border: none;
-webkit-transition: all 0.3s 0s ease-out;
-moz-transition: all 0.3s 0s ease-out;
-ms-transition: all 0.3s 0s ease-out;
-o-transition: all 0.3s 0s ease-out;
transition: all 0.3s 0s ease-out;    
}
.back-to-top-btn svg {
-webkit-transform: translateY(-2px);
-moz-transform: translateY(-2px);
-ms-transform: translateY(-2px);
-o-transform: translateY(-2px);
transform: translateY(-2px);
transform: rotate(-90deg);
width: 18px;
fill: var(--white);
}
.back-to-top-btn:hover {
-webkit-transform: translateY(-4px);
-moz-transform: translateY(-4px);
-ms-transform: translateY(-4px);
-o-transform: translateY(-4px);
transform: translateY(-4px);
background: var(--light-red);
}
.navbar-collapse {
flex-grow: inherit!important;
}
.swiper-pagination-bullet {
width: 13px;
height: 13px;
background: #ef233e70;
border: none;
opacity: 1;
}
.swiper-pagination-bullet-active {
background: var(--dark-red);
width: 30px;
height: 13px;
border-radius: 30px;
border: none;
} header {
position: relative;
width: 100%;
border-bottom: 1px solid var(--grey-white);
z-index: 15;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.sticky {
position: fixed;
top: 0px;
background-color: var(--white);
box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
-ms-animation-name: fadeInDown;
-moz-animation-name: fadeInDown;
-op-animation-name: fadeInDown;
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
-ms-animation-duration: 500ms;
-moz-animation-duration: 500ms;
-op-animation-duration: 500ms;
-webkit-animation-duration: 500ms;
animation-duration: 500ms;
-ms-animation-timing-function: linear;
-moz-animation-timing-function: linear;
-op-animation-timing-function: linear;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-ms-animation-iteration-count: 1;
-moz-animation-iteration-count: 1;
-op-animation-iteration-count: 1;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}
header ul li {
padding: 30px 10px;
}
header ul li a {
color: var(--primary);
font-weight: 500;
font-size: 16px;
transition: all ease-in .2s;
} .menu-item a:hover{
color: var(--dark-red);
border-bottom: 1px solid var(--dark-red);
}
.current_page_parent a, .menu-item-object-category.current-menu-item a{
color: var(--dark-red);
border-bottom: 1px solid var(--dark-red);
}
header ul li.current-menu-item > a {
color: var(--dark-red);
}
.sub-menu .current-menu-item > a {
color: var(--dark-red);
}
header .navbar-brand {
width: 60px;
transition: 0.5s;
padding: 0;
}
.dropdown-menu a{
color:var(--primary) !important;
}
@media (min-width: 993px) {
.dropdown-menu {
width: 350px;
}
.dropdown:hover .dropdown-menu {
display: block;
margin-top: 0;
}
.menu-item:hover .sub-menu{
opacity: 1;
visibility: visible;
}
}
.sub-menu {
position: absolute;
top:100%;
opacity: 0;
visibility: hidden;
padding: 0;
width: 350px;
padding: 20px 10px;
background-color: var(--white);
}
.sub-menu li {
padding: 5px 15px;
}
.sub-menu li a{
color: var(--primary);
border-bottom: inherit;
font-size: 16px;
} .services-megamenu .sub-menu{
width: 800px;
left: 50%;
transform: translateX(-50%);
padding: 20px 15px;
display: grid;
grid-template-columns: repeat(2, 1fr);
align-items: anchor-center;
gap: 0 25px;
} .services-megamenu .sub-menu li { position: relative;
} @media (max-width: 992px) {
.menu{
height:100%;
}
.menu-header-menu-container{
height:100%;
overflow-y: auto;
overflow-x: hidden;
}
.services-megamenu .sub-menu{
width: 100%;		
} 
.services-megamenu .sub-menu li a{
padding:16px 10px 16px 10px !important; line-height: 1.35 !important;
display: flex !important;
gap: 15px;
flex-direction: row-reverse;
justify-content: start;
align-items: center;
} } .mobile-menu {
position: fixed;
display: block;
top: 0;
height: 70px;
width: 100%;
background: #eee;
overflow: hidden;
transition: all 0.5s ease-out, background 1s ease-out;
transition-delay: 0.2s;    
display: none;
z-index: 15;
}
.mobile-menu .burger-container {
position: relative;
display: inline-block;
height: 50px;
width: 50px;
cursor: pointer;
transform: rotate(0deg);
transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
user-select: none;
-webkit-tap-highlight-color: transparent;
}
.mobile-menu .burger-container #burger {
width: 30px;
height: 8px;
position: relative;
display: block;
margin: -4px auto 0;
top: 50%;
}
.mobile-menu .burger-container #burger .bar {
width: 100%;
height: 1.5px;
display: block;
position: relative;
background: var(--primary);
transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
transition-delay: 0s;
}
.mobile-menu .burger-container #burger .bar.topBar {
transform: translateY(0px) rotate(0deg);
}
.mobile-menu .burger-container #burger .bar.btmBar {
transform: translateY(6px) rotate(0deg);
}
.mobile-menu .menu .nav{
position: relative;
display: block;
padding: 0px 12px 0;
list-style: none;
}
.mobile-menu .menu li {
border-bottom: 1px solid rgb(36 93 138 / 20%);
margin-top: 5px; opacity: 0;
transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99); } .mobile-menu .menu li a {
display: block;
position: relative;
color: var(--primary);
font-weight: 100;
text-decoration: none;
font-size: 20px;
line-height: 2.35;
font-weight: 500;
width: 100%;
}
.menu-opened {
height: 100%;
background-color: #eee;
transition: all 0.3s ease-in, background 0.5s ease-in;
transition-delay: 0.25s;
}
.menu-opened .burger-container {
transform: rotate(90deg);
}
.menu-opened .burger-container #burger .bar {
transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
transition-delay: 0.2s;
}
.menu-opened .burger-container #burger .bar.topBar {
transform: translateY(4px) rotate(45deg);
}
.menu-opened .burger-container #burger .bar.btmBar {
transform: translateY(3px) rotate(-45deg);
}
.menu-opened .menu li { opacity: 1;
} .mobl {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
z-index: 11;
padding: 10px 10px;
}
.mobile-logo {
width: 52px;
} .mobile-submenu button{
padding: 0;
background: #e9eff3;
}
.mobile-submenu button:focus {
outline: 0;
box-shadow: none;
border: none;
}
.mobile-submenu button:not(.collapsed) {
color: inherit !important;
background-color: transparent !important;
box-shadow: none !important;
}
.mobile-submenu ul{
padding: 0;
}
.mobile-submenu ul a{
font-size: 20px !important;
line-height: 1 !important;
margin: 20px 0;
} @media (max-width: 1130px) {
.header {
display: none;
}
.mobile-menu {
display: block;
box-shadow: 0 0 5px #16427325;
}
}
@media (max-width: 992px) {
.menu-item a:hover{
border-bottom: none !important;
}
.mobile-menu .menu li a.active  {
color: var(--light-red) !important;
}
.sub-menu {
width: 100%;
}
.mmjc-submenu{
position: relative;
}
.mmjc-submenu::before{
width: 22px;
height: 22px;
margin-left: auto;
content: "";
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%292a3e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-size: 22px;
transition: transform 0.2s ease-in-out;
position: absolute;
top: 10px;
right: 10px;
}
.sub-menu.active-submenu {
display: block;
opacity: 1;
visibility: visible;
padding: 5px 0px;
position: relative;
}
.sub-menu.active-submenu li a{       
padding:0px 10px;
font-size: 16px;
}
.sub-menu.active-submenu li {       
padding:0px;
}
.sub-menu.active-submenu li:last-child{
border-bottom: none !important;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0,-100%,0);
transform: translate3d(0,-100%,0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.breadcrumb-mmjc{ }
.breadcrumb-mmjc a{
color: var(--primary);
font-weight: 500;
margin-right: 10px;
margin-left: 10px;
}
.breadcrumb-mmjc a:first-child {
margin-left: 0;
}
.breadcrumb-mmjc span {
color: var(--text-black);
padding-left: 10px;
display: inline !important;
} .full-banner {
position: relative;
height:85vh;
overflow: hidden;
}
.full-banner .banner-content {
width: 100%;
position: relative;
z-index: 3;
color: var(--white);
text-align:center;
}
.full-banner .banner-content .bn-title {
font-size: 58px;
line-height: 1.1;
margin-top: 40px;
margin-bottom: 40px;
}
.full-banner .banner-content .bn-disc {
width: 50%;
margin:auto;
} 
.full-banner .slide-inner {
position: relative;
display: flex;
align-items: center;
min-height: 85vh;
background-size: cover!important;
background-position: center!important;
z-index: 1;
}
.full-banner .slide-inner::before {
content: "";
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 2;
}
.full-banner .swiper-pagination{
bottom: 50px;
}
.home-banner02 {
background: var(--grey-white);
position: relative;
overflow-x: hidden;
}
.half-banner .banner-text{
padding: 50px 70px 70px 80px;
}
.bn-meta {
display: block;
font-weight: 600;
margin-bottom: 15px;
color: #333;
}
.bn-title {
font-size: 40px;
line-height: 1.1;
margin-top: 40px;
margin-bottom: 20px;
}
.bn-disc {
font-size: 18px;
color: #555;
}
.half-banner{
height: 88vh;
overflow: hidden;
}
.banner-slider_fixed-image{
height: 88vh;
overflow: hidden;
display:flex;
align-items: center;
}
.banner-slider_fixed-image .hero-slider{
overflow: hidden;
}
.banner-slider_fixed-image .banner-text{
padding: 50px 70px 70px 80px;
}
.home-banner02 .banner-image img {
max-width: 100%;
aspect-ratio: 1.1;
object-fit: cover;
}
.home-banner02 .banner-image video {
max-width: 100%;
aspect-ratio: 1.1;
object-fit: cover;
}
.home-banner02 .swiper-container-horizontal>.swiper-pagination-bullets {
bottom: 40px;
left: 80px;
width: inherit;
}
@media (max-width: 992px) {
.full-banner {
height: auto;
}
.full-banner .banner-content .bn-title {
font-size: 45px;
margin-bottom: 30px;
line-height: 1.3;
}
.bn-disc{
width: 100%;
font-size: 18px;
}
.Connt-LHS{
width: 100% !important;
}
.banner-cont{
flex-direction: column-reverse;
}
.half-banner .banner-text{
padding: 70px 30px 70px 15px;
width: 100% !important;
position: absolute;
left: 0px;
top: 12%; z-index: 2;
}
.banner-slider_fixed-image .Connt-LHS{
width: 100% !important;
height: 76vh !important;
position: absolute;
left: 0px;
top: 12%; z-index: 2;        
}
.banner-slider_fixed-image .banner-text{
padding: 70px 30px 70px 15px;
}
.bn-title {
font-size: 30px;
margin-top:20px;
}
.bn-meta, .bn-disc{ }
.home-banner02 .banner-image{
width: 100% !important;
height: 88vh;
}
.home-banner02 .banner-image::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4); z-index: 1;
}
.home-banner02 .banner-image img,  .home-banner02 .banner-image video{   
height: 90vh !important;
}
.home-banner02 .swiper-container-horizontal>.swiper-pagination-bullets {
left: 13px;
}
}
@media (max-width: 768px) {
.full-banner .banner-content .bn-title {
font-size: 40px;
margin-bottom: 30px;
}
}
@media (max-width: 600px) {
.full-banner .banner-content .bn-title {
font-size: 24px;
}
.single-service-detail .service-thumbnail img{
height:300px;
object-fit:cover;
}
} .home-service {
padding-top: 50px;
padding-bottom: 100px;
}
.service-box {
background: linear-gradient(0deg, #e9eff3 0%, #ffffff 100%);
border-radius: 30px;
padding: 20px;
position: relative;
}
.service-box .dot {
width: 25px;
height: 25px;
border-radius: 100%;
background-color: #0A0A0A;
display: inline-block;
}
.service-box h2 {
font-size: 24px;
color: #0A0A0A;
}
.service-box .icon {
width: 45px;
height: 45px;
background-color: var(--dark-red);
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
transform: rotate(-45deg);
transition: all 0.5s ease-in-out;
}
.service-box:hover .icon {
transform: rotate(0deg);
}
.service-box:hover {
background: #EFE1AD;
}
.service-box:before {
content: '';
position: absolute;
top: 1px;
right: -18px;
background: url(//mmjc.in/wp-content/themes/mmjc/assets/images/icons/dots-shape.svg) no-repeat;
width: 120px;
height: 120px;
opacity: 0;
transition: 0.2s;
}
.service-box:hover:before {
opacity: 1;
}
.swiper-services{
overflow: hidden;
}
.swiper-services .service-box a{
display: flex;
flex-direction: column;
justify-content: space-between;
height:200px;
} .about-card{
background-color: var(--white);
}
.info-card {
background-color: var(--white);
color: var(--black);
border-radius: var(--radius-10px);
text-align: center;
padding:30px 20px;
border: 1px solid var(--grey-white);
height: 100%;
display: flex;
justify-content: space-between;
flex-direction: column;
}
.info-card .icon {
margin-bottom: 30px;
}
.info-card h5 {
font-weight: 600;
font-size: 24px;
margin-bottom: 1rem;
color: var(--primary);
}
.info-card p {
margin-bottom: 36px;
}
.info-card a {
color: var(--light-red);
text-decoration: none;
font-weight: 500;
transition: all 0.2s ease-in-out;
}
.info-card a:hover {
color: var(--dark-red);
}
@media (max-width:767px) {    
.about-card .col-12{
margin-bottom: 25px;
}
.about-card .col-12:last-child {
margin-bottom: 0px;
}
.info-card p {
margin-bottom:16px;
}
.page-banner h1 {
font-size: 35px !important;
}
} .sub-categories{ display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}
@media (max-width: 768px) {
.sub-categories {
grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
.sub-categories {
grid-template-columns: 1fr; }
}
.sub-categories a{ color: var(--text-black);	
font-size: 18px;
font-weight: 500; transition: all ease-in 0.3s;
}
.sub-categories a:last-child {
margin-top: 12px;
}
.sub-categories a:hover {
color: var(--light-red);
} .trending-card{
display: flex;
flex-direction: column;
justify-content: space-between;
}
.trending-card h4{
font-size:20px;
color: var(--primary);
} .br-left{
border-left:10px solid var(--pear);
}
.br-bottom{
border-bottom:10px solid var(--pear);
}
.select-years{
border: 1px solid #949494;    
padding: 8px;
outline: none;
}
.blog-thumb {
overflow: hidden;
border-bottom: 10px solid var(--pear);
}
.blog-thumb img {
aspect-ratio: 16/6;
object-fit: cover;
object-position: center;
-o-object-fit: cover;
-o-object-position: center;
width: 100%;
}
.blog-article h4 {
color: var(--primary);
font-size: 20px;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.short-desc{
color:var(--light-black);
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.post-tag a{
color: var(--pear);
font-size: 13px;
border-radius: 100px;
padding: 2px 12px;
border: 1px solid var(--pear);
}
.blog-meta ul {
display: flex;
padding: 0;
gap: 15px;
}
.blog-meta ul li {
color: #aaa;
}
.wp-pagenavi a, .wp-pagenavi span {
padding: 5px 15px !important;
font-size: 16px;
border: 1px solid var(--pear) !important;
border-radius: 5px;
color: #333;
background: #fff;
margin: 4px !important;
transition: 0.3s ease;
}
.wp-pagenavi a:hover {
background: var(--light-red) !important;
color: var(--white);
border-color: var(--light-red) !important;
}
.wp-pagenavi span.current {
background: var(--dark-red) !important;
color: var(--white);
border-color: var(--dark-red) !important;
} .single-blog-banner{
padding-top:170px;
}
.single-blog{
background: var(--grey-white);
}
.single-blog-wrap{
padding: 0;
background: var(--white);
color:var(--text-black)
}
.single-blog-wrap .single-image img{
width:100%;
}
.single-blog-wrap .blog-content{
padding:30px 20px 30px;
}
.blog-content p:last-child {
margin-bottom: 0;
}
.single-blog-wrap .blog-content a{
color: var(--light-red);
}
.single-blog-wrap .blog-content a:hover {
color: var(--dark-red);
}
.widget-card{
background: var(--white) !important;
}
.blog-content li ul{
margin-top:15px;
}
.no-comments {
margin: 0;
}
.post-comments{
padding:20px;
background: var(--white);
color:var(--primary);
margin-top:30px;
}
@media (max-width: 991px) {
.post-comments{
margin-bottom:30px;
}
}
.post-comments .comment-meta{
font-size: 12px;
margin-bottom: 15px;
margin-top: 10px;
}
.post-comments label, .comment-form-comment label{
display:block;
margin-bottom:15px;
}
.post-comments textarea, .comment-form-comment textarea{
width: 100%;
height: 130px;
background: transparent;
border: 1px solid var(--pear);
outline:none;
padding:20px;
}
.post-comments input[type="text"] {
width: 100%;
background: transparent;
border: 1px solid var(--pear);
outline: none;
padding: 10px;
}
.post-comments .submit{
background: var(--pear);
color: var(--white);
padding: 10px 25px 10px;
border-radius: 40px;
font-weight: 600;
transition: all ease-in 0.2s;
outline: none;
border: none;
}
.post-comments .submit:hover{
background: var(--light-red);
}
.blog-category{
position: -webkit-sticky; position: sticky;
top: 70px;
}
.sidebar-area aside{
margin-bottom:30px;
overflow: hidden;
padding-bottom: 30px;
border-bottom: 1px solid var(--grey-white);
}
.sidebar-area aside:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.sidebar-area aside .wp-block-search__input{
border-color: var(--grey-white);
outline: none;
}
.sidebar-area aside .wp-block-search__button{
background: var(--primary);
color: var(--white);
border: none !important;
}
.sidebar-area aside .wp-block-latest-posts li img{
margin-bottom:12px;
}
.sidebar-area aside .wp-block-latest-posts__post-title{
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
margin-bottom: 8px;
font-weight: 500;
}
.wp-block-categories-list{
margin-bottom: 0px;;
}
.sidebar-area aside .wp-block-categories .cat-item{
margin-bottom: 12px;
display: flex;
justify-content: space-between;
font-size: 13px;
align-items: center;
}
.sidebar-area aside .wp-block-categories .cat-item:last-child{
margin-bottom: 0;
}
.sidebar-area aside .wp-block-categories .cat-item a{
font-size: 16px;
width:100%;
} .testim-details{
margin:30px 0px;
}
.testim-details h6{
font-size: 24px;
margin: 0px;
}
.testim-details span{
font-size: 14px;
}
.testimonials .testim-content .testimonial-disc {
font-size: 20px;
font-style: italic;
font-weight: 400;
color: var(--text-black);
line-height: 1.4;
margin-bottom: 60px;
}
.testimonials .testim-slider .testimonial-disc {   
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 4;
overflow: hidden;
}
.testimonials .testim-content .testimonial-disc ul li{
margin-bottom: 15px;
position: relative;
padding-left: 25px;
}
.testimonials .testim-content .testimonial-disc ul li:before {
content: "\EB80";
font-family: "remixicon";
position: absolute;
top: 0px;
left: 0px;
font-size: 18px;
font-style: normal;
color: var(--pear);
}
.testimonials .swiper-pagination {
position: relative;
top: 0px;
display: flex; align-items: center;
}
.testimonials .swiper-pagination .swiper-pagination-bullet{
background: var(--white);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active{
background: var(--pear);
}
.testim-single .testim-content{
border-bottom: 1px solid var(--grey-white);
margin-top: 60px;
padding-bottom: 40px;
}
.testim-single .testim-content:last-child{
border-bottom: none;
padding-bottom: 0px;
}
.testim-single .testim-content:first-child{
margin-top: 0px;
}
.subscribe{
overflow-x: hidden;
background: var(--grey-white);
} .subscribe-RHS{
padding: 80px 0;
}
@media (max-width: 768px) {
.subscribe-RHS {
padding: 80px 0;
}
}
@media (max-width: 700px) {
.subscribe-LHS {    
height: 300px;
}
.subscribe-RHS {
padding: 60px 30px;
}
}
.subscribe-RHS .input-group{
flex-wrap: nowrap;
}
.subscribe-RHS .input-group p{
margin: 0 !important;
}
.subscribe-RHS .wpcf7-form-control{
background-color: var(--white);
color: var(--primary);
font-size: 16px;
padding: 11.5px 20px;
border: none;
border-radius: 8px 0px 0px 8px;
outline: none;
}
.subscribe-RHS input::placeholder {
color: #164273 !important;
}
.form-control:focus{
box-shadow: none !important;
}
.subscribe-RHS .wpcf7-submit{
background-color: var(--pear);
color: var(--primary);
font-size: 18px;
font-weight: 500;
padding: 10px 20px;
border: none;
border-radius: 0px 8px 8px 0px;
} .footer {
padding-top: 70px;
background: var(--white);
color: #8D99AF;
border-top: 1px solid var(--grey-white);
}
.footer-content p {
width: 80%;
color: var(--primary);
}
.footer .brand-logo {
width: 70px;
margin-bottom: 30px;
}
.extension-icon {
background: #fff;
border: 1px solid #eee;
padding: 10px;
width: 50px;
height: 50px;
line-height: 36px;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
transition: 0.3s;
}
.extension-icon:hover{
transform: scaleX(1.2) scaleY(1.2);
}
.social-link{
display:flex;
gap:15px;
}
.social-link a{
width: 42px;
height: 42px;
border:1px solid var(--light-black);
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
border-radius: var(--radius-10px);
font-size: 22px;
transition: 0.3s;
}
.social-link a:hover{
background: var(--white);
color:var(--primary);
transform: scaleX(1.2) scaleY(1.2);
}
.footer .ft-tile {
font-size: 16px;;
color: var(--black);
margin-bottom: 20px;
font-weight: 500;;
}
.footer ul {
padding: 0;
}
.footer ul li {
list-style: none;
padding-bottom: 10px;
}
.footer ul li a:hover {
color: var(--light-red);
}
.footer ul li,
.footer ul li a {
color: var(--primary);
transition: .2s;
}
.footer-menus{
display: flex;
gap: 40px;
} .copyright {
padding: 20px 0px 10px;
color: var(--primary);
margin-top: 30px;
display: flex;
justify-content: space-between;
}
.copyright ul {
display: flex;
gap: 10px;
}
.disclaimer{
padding: 20px 0px;
color: var(--primary);
background:var(--pear);
}
.desk-hide {
display: none;
} @media (max-width: 992px) {
.section-title {
font-size: 36px;
}
.mob-hide {
display: none;
}
.desk-hide {
display: block;
}
}
@media (max-width: 768px) {
.section-title {
font-size: 34px;
}   
.testimonials .swiper-slide {
display: block;
}    
.testimonials .testim-content {
width: 100%;
}
.testimonials .testim-content .testimonial-disc {
font-size: 18px;
}
}
@media (max-width: 600px) {
.section-gap-bottom {
padding-bottom: 70px;
}
.section-gap {
padding-top: 70px;
}
header .navbar-brand {
width: 90px;
}
.blog-content {
display: block; }    
.footer {
padding-top: 50px;
}
.footer-content p {
width: 98%;
}
.copyright {
flex-direction: column-reverse;
}
.copyright ul li {
padding: 0;
} 
} .about-pg-banner {
padding-top: 100px;
}
.about-pg-banner .row {
position: relative;
z-index: 1;
}
.about-pg-banner img {
border-radius: var(--radius-10px);
}
.about-pg-content{
padding:48px 20px 48px 120px;
}
.team-members-grid{ padding: 40px 0px;
}
.team-members-grid:last-child{
margin-bottom: 0px;
padding-bottom: 0px;
}
.team-members{   
position: relative;
display: flex;
gap: 30px;
}
.team-members-grid:nth-child(odd) {
background-color: var(--white);  
}
.team-members-grid:nth-child(even) {
background: var(--grey-white); }
.team-image{
width: 300px;
height: 100%;
}
.team-image img{
width: 100%;
height: 100%;
border-bottom: 10px solid var(--pear);
}
.team-content{
position: relative;
width: 75%;
}
.team-content .team-social ul{
margin-bottom: 0;
}
.team-description {
font-size: 18px;
}
.team-social{
font-size: 28px;;
}
@media screen and (max-width: 992px) {
.team-members {   
flex-direction: column-reverse;
}
.team-image{
width: 100%;
height: 100%;
}
.team-image img {
width: 200px;		
height: 100%;
}
.team-content{
width: 100%;
}
}
.sticky-section {
position: sticky;
top: 90px;
}
.privacy-content h2, .privacy-content h3{
margin-top: 40px;
} ul.listing{
margin-bottom:0px;
}
ul.listing>li {
margin-bottom: 15px;
position: relative;
padding-left: 25px;
}
ul.listing>li:before {
content: "\EB80";
font-family: "remixicon";
position: absolute;
top: -1.5px;
left: 0px;
font-size: 18px;
color: var(--pear);
}
ul.listing>li:last-child {
margin-bottom:0px;
}
ol.listing li {
list-style: none;
margin-bottom: 15px;
margin-left: -2px;
padding-left: 25px;
position: relative;
}
ol.listing>li:before {
content: "\EB81";
font-family: "remixicon";
position: absolute;
top: -1.5px;
left: 0px;
font-size: 18px;
color: var(--pear);
}
ul.wp-block-list>li{
margin-bottom: 15px;
position: relative;
padding-left: 25px;
}
ul.wp-block-list>li:before {
content: "\EB80";
font-family: "remixicon";
position: absolute;
top: 0px;
left: 0px;
font-size: 18px;
color: var(--pear);
}
ol.wp-block-list>li{
margin-bottom: 15px;
position: relative;
margin-left: 16px;
}
.page-banner {
padding: 60px 0 60px 0; }
.page-banner h1 {
color: var(--black);
font-size: 50px;
position: relative;
z-index: 1;
}
.page-banner span {
color: var(--black);
display: block;
}
.page-banner p {
position: relative;
z-index: 1;
font-size: 18px;
color: var(--black);
}
.service-page h3 {
color: var(--white);
margin-bottom: 25px;
}
.service-page img {
border-radius: 25px;
width: 95%;
display: block;
}
.single-service-detail .service-thumbnail img{
width:100%;
height:100%
}
.service {
position: relative;
}
.service::before {
position: absolute;
counter-increment: bli-compact-counter;
content: "" counter(bli-compact-counter, decimal-leading-zero);
top: -30%;
left: 30%;
line-height: 1;
font-size: clamp(40px, 37vw, 360px);
font-weight: normal;
color: var(--white);
opacity: 0.1;
z-index: -1;
}
.service-page .row {
margin-bottom: 70px;
}
.srvc-short-desc{
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.list-service h3{
font-size: 23px;
}
.srvc .container .row {
padding-top: 100px;
}
.srvc .container .row .col-lg-8 {
padding: 0 100px;
}
.srvc-thumb img{
width: 100%;
height: 100%;
aspect-ratio: 4/2.3;
object-fit: cover;
object-position: center;
}
@media (max-width: 992px) {
.srvc .container .row .col-lg-8 {
padding: 0 12px;
}
.srvc .container .row {
padding-top: 50px;
}
} .form input,
.form textarea {
background-color: transparent;
border: none;
outline: none;
border-bottom: 1px solid var(--pear);
border-radius: 0px;
padding: 10px 0px;
}
.form textarea{
height: 100px;
}
.form textarea{
height: 100px;
}
.form input::placeholder {
color: #757575);
}
.form input:focus {
box-shadow: none !important;
border-bottom: 1px solid var(--pear);
}
.form textarea:focus {
box-shadow: none !important;
border-bottom: 1px solid var(--pear);
}
.form label {
color: var(--primary);
padding: 0;
}
.contact-form img {
width: 90%;
border-radius: 10px;
display: block;
}
.form .wpcf7-submit {
padding: 12px 30px;
background: var(--pear);
border: none;
color: var(--primary);
font-weight: 600;
letter-spacing: 0.2px;
border-radius: 100px;
margin-top: 50px;
}
.form .wpcf7-submit:hover {
background: var(--dark-red);
color: var(--white);
}
.google-map{
margin-bottom: -10px;
}
.contact-card {
background-color: var(--white);
border-radius: var(--radius-10px);
padding: 2rem;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.contact-header {
font-weight: 600;
font-size: 1.25rem;
color: #343a40;
}
.contact-text {
color: #495057;
}
.contact-text i{
color: var(--dark-red);
font-size: 18px;
}
.information-title{
text-align:center;
}
@media (max-width: 992px) {
.contact-form img {
width: 100%;
margin-bottom: 40px;
}
}
@media (max-width: 600px) {
.information-title{
text-align:left;
}
.f-wrap {
flex-wrap: wrap !important;
}
.w-sm-100 {
width: 100% !important;
}
.form-floating {
margin-right: 0 !important;
}
} .industries-list {
border-bottom: 1px solid #266494;
align-items: flex-start;
margin-bottom: 30px;
padding-bottom: 30px;
display: flex;
margin-left: 60px;
}
.industries-list-img {
width: 50px;
margin-right: 20px;
margin-top: -5px;
}
.industries-box{
background: #242424;
padding: 30px;
border-radius: 15px;
margin-top: 30px;
}
.industries-box h4{
color: var(--white);
font-size: 22px;
line-height: 34px;
font-weight: 600;
margin-bottom: 30px;
}
.industries-box ul{
padding:0px;
margin:0px;
}
.industries-box ul li{
color: var(--white);
font-weight: 500;
font-size: 16px;
line-height: 28px;
margin-top: 8px;
}
@media (max-width:767px) {
.industries-section-home{
padding-top:0px;
}
.industries-list {
margin-left: 0;
}
.industries-btn-mob{
display:block !important;
width: 260px;
}
.industries-btn-desktop{
display:none !important;
}
} .career img {
border-radius: 20px;
}
.career h3 {
font-size: 30px;
color: var(--white);
margin-bottom: 30px;
}
.career a {
padding: 10px 30px;
background-color: #245d8a;
display: inline-block;
color: var(--white);
font-size: 18px;
font-weight: 400;
border-radius: 50px;
margin-right: 20px;
} .bord-top {
border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.bord-bottom {
border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.sec-head2{
font-size:50px;
text-transform:uppercase;
}
.fw-200 {
font-weight: 200 !important;
}
.page-intro{
z-index: 1;
}
.line-overlay {
position: absolute;
top: -10%;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.line-overlay svg path {
stroke: #353535;
}
.page-intro .fit-img {
margin-top: 70px;
height: 520px;
border-radius: 30px 0px 0 30px;
overflow: hidden;
}
.fit-img img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: center;
object-position: center;
}
.page-intro-desc h4{
font-size:18px;
font-weight: 500;
}
.page-intro-desc p{
font-size:22px;
}
.card-item-grid .service-box{
height:100%;
padding: 40px 50px;
font-size:18px;
}
.listing-section{
padding: 0px;
}
.listing-section li {
text-align: left;
list-style: none;
margin-bottom: 16px;
position: relative;
padding-left: 45px;
font-size: 18px;
}
.listing-section li:before {
content: "";
position: absolute;
top: 0px;
left: 0px;
width: 32px;
height: 32px;
background: url(//mmjc.in/wp-content/themes/mmjc/assets/images/icons/check-yellow-icon.svg);
background-size: cover;
}
@media screen and (max-width: 992px) {
.page-banner{
padding-top: 100px !important;
}
.section-gap-bottom {
padding-bottom: 60px;
}
.section-gap {
padding-top: 60px;
}
.sec-head2 {
font-size: 35px;
}
.insight-box a{
font-size: 18px !important;
padding: 12px;
}
.about-pg-rt{
padding-top:30px;
height: 300px;
}
.single-blog-banner {
padding-bottom: 80px !important;
}
.footer-content{
margin-bottom: 25px;
}
.copyright{
margin-top:0px !important;
padding: 0px 0px 30px;
}
}
@media screen and (max-width: 767px){
.sec-head2 {
font-size: 28px;
}
.page-intro .fit-img {
margin-top: 0px;
border-radius: 0;
}
.single-blog{
padding-top:50px;
}
.home-blog, .listing-blog{
padding-top:110px;
}
}
@media (max-width: 1025px) {
.navbar-expand-lg {      
padding: 0 20px !important;
}
} @media (max-width:500px){
.wp-pagenavi{
width: 90%;
word-wrap: break-word;
margin: auto;
}
.wp-pagenavi a, .wp-pagenavi span{
margin: 8px 4px !important;
display: inline-block;
}	
}
.post-categories{
padding:0;   
}
.post-card .post-categories{
padding:0;
display: flex;
gap: 6px;
}
.get-modal{
max-width: 600px;
}