/*
Theme Name: SM Theme
Theme URI: http://shamweb.net
Author: Shamweb
Author URI: http://shamweb.net
Version: 1.0
Description: Welcome to chose my theme.
Tags: No tags available
License: Unlimited
License URI: http://www.fb.com/shamolsudakar
Text Domain: Default English(USA)
=====================================
font-family: 'Suisse Intl',sans-serif;
=====================================
*/

@font-face {
    font-family:'Suisse Intl';
    src:url('../fonts/suisseIntl/SuisseIntl-Regular.woff2') format('woff2'),
    url('../fonts/suisseIntl/SuisseIntl-Regular.woff') format('woff');
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}
@font-face {
    font-family:'Suisse Intl';
    src:url('../fonts/suisseIntl/SuisseIntl-Book.woff2') format('woff2'),
    url('../fonts/suisseIntl/SuisseIntl-Book.woff') format('woff');
    font-weight:500;
    font-style:normal;
    font-display:swap;
}

:root{
    --primary: #283682;
    --secondary: white;
    --accent: #E51937;
    --text-heading-color: #4F616B;
    --text-color: #4F616B;
    --text-gray: #C4C4C4;
}
body {    
    font-family: 'Suisse Intl',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #f9f9f9;
    min-height: 100vh;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
h1, h2, h3, h4 {
    color: var(--text-heading-color);
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
h1, h2, h3, h4 {
    color: var(--text-heading-color);
}

header {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding-block: 25px 0;
    background: rgba(0,0,0,0.3);
    box-shadow: 0 0 20px rgba(0,0,0,0.20);
    top: 0;
    left: 0;
}

.header-top {
    display: flex;
    justify-content:  flex-end;
    gap: 20px;
    align-items: center;
    padding-bottom: 20px;    
}
.header-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.social-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px 30px;
}
.social-content li a {
	text-decoration: none;
	color: #F9F9F9;
	font-size: 16px;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 5px;
}
.navbar-desktop {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid #F9F9F9;
}
.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu ul {
    display: flex;
    align-items: center;
    gap: 10px 30px;
}
.menu ul li a {
	display: inline-flex;
    justify-content: space-between;
    align-items: flex-start;
	font-size: 16px;
	line-height: 20px;
	text-decoration: none;
	color: #F9F9F9;
	padding-block: 20px;
	gap: 10px;
}
.menu ul li {
    position: relative;
}
.nav-sticky header {
    top: -84px;
    background-color: #F9F9F9;
}
.nav-sticky header .menu ul li a {
    color: var(--text-heading-color);
}
body:not(.nav-sticky) .button-on-sticky {
    display: none;
}

.menu ul > li:has(>ul) > a::after {
    position: relative;
    content: '\f0d7';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    width: 20px;
	aspect-ratio: 1;
	border: 1px solid #f9f9f9;
	border-radius: 50%;
	display: inline-flex;
	text-align: center;
	justify-content: center;
	font-size: 12px;
	line-height: 18px;
}
.menu ul > li:has(>ul).active > a::after {
    border-color: var(--accent);
}
.nav-sticky .menu ul > li > a::after {
    border-color: #e9e8e8;
}
.menu > ul > li:hover > a::after {
    border-color: var(--accent);
    background-color: var(--accent);
    color: var(--secondary);
}

.menu ul > li > ul {
    position: absolute;
    top: 100%;    
    background-color: #fff;
    padding: 30px 40px;
    min-width: 250px;
    display: grid;
    gap: 0;
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.2);
    display: none;
}
.menu ul li:hover > ul {
    display: grid;
}

.menu ul > li > ul li a {
    padding: 12px 0;
    color: var(--text-heading-color);
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.menu ul > li > ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.menu ul > li.active > a,
.menu ul > li > ul li:hover > a, .menu ul > li > ul li.active > a {
    color: var(--accent) !important;
}
.menu ul > li > ul ul {
    top: 0;
    left: 100%;
}
.navbar-mobile {
    display: none;
}

.menu-toggler {
	border: none;
	outline: none;
	width: 46px;
	height: 40px;
	font-size: 20px;
	padding: 0;
	background-color: var(--primary);
	color: var(--secondary);
	box-sizing: border-box;
	padding-top: 2px;
}
.menu-dropdown {
    position: relative;
}
.menu-dropdown > ul {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 40px 30px !important;
    min-width: 300px;
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.2);    
    max-height: 400px;
    overflow-y: auto;
}
.menu-dropdown ul {
    background-color: #fff;
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;    
}
.menu-dropdown ul li > a {
    white-space: nowrap;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-heading-color);
}
.menu-dropdown ul li:not(:last-child) > a {
    border-bottom: 1px solid #eee;
}
.menu-dropdown ul > li:has(>ul) > a::after {
    position: relative;
    content: '\f0d7';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
}
.menu-dropdown ul ul {
    padding-left: 30px;
    padding-block: 5px;
}
.menu-dropdown ul ul > li > a {
    border: none !important;
    padding-block: 5px;
    position: relative;
}
.menu-dropdown ul ul > li > a::before {
	position: absolute;
	top: 5px;
	content: "\f105";
	left: -12px;
	font-family: 'Font Awesome 6 Pro';
}
.menu-dropdown .button-on-sticky {
    display: block !important;
	padding-top: 10px;
}
.menu-dropdown .button-on-sticky .button {    
    --border-radius: 2px;
}
.menu-dropdown li.active > a {
    color: var(--accent);
}

.area-hero {
    height: 100dvh;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.area-hero.hero-banner-less {
    height: 60dvh;    
}
#hero, #hero .carousel-inner, #hero .carousel-item {
    height: 100%;
}
.area-hero img {
    width: 100%;
    min-height: 100%;
}
#hero .carousel-item h3 {
    color: #fff;
}

.area-hero .carousel-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,0.25);
	z-index: 2;
}
.carousel-caption {
    z-index: 3;
}

.logo-box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.logo {
	position: relative;
	top: -18px;
}
.nav-sticky .logo {
    top: 0;
}
.logo img {
	max-width: 150px;
	max-height: 80px;
}
.nav-sticky .logo img {
	max-width: 150px;
	max-height: 65px;
}
/* .logo-regular {
	filter: grayscale(100%) brightness(10);
} */
.logo-sticky, .nav-sticky .logo-regular {
    display: none;
}
.nav-sticky .logo-sticky {
    display: block;
}
.nav-sticky .header-nav {
    padding-block: 10px;
}
.logo-mobile img {
	max-width: 100px;
	max-height: 40px;
}
.logo-footer img {
    max-width: 175px;
	max-height: 65px;
}

.button {
    --border-radius: 25px;
	font-size: 16px;
	line-height: 22px;
	background-color: var(--primary);
	color: var(--secondary) !important;
	padding: 12px 25px;
	border-radius: var(--border-radius);
	text-decoration: none;
	outline: none;
	display: inline-flex;
    position: relative;
    z-index: 1;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
}
.button::after {
    position: absolute;
    content: "";
    inset: 0;
    background-color: var(--accent);
    border-radius: var(--border-radius);
    z-index: -1;
    transform: scale(0);
}
.button:hover::after {
    transform: scale(1);
}
.button.button-small {
    font-size: 12px;
    line-height: 18px;
    padding: 10px 15px;
}
.button.button-white {
    background-color: #fff;
    color: var(--text-heading-color) !important;
    -webkit-transition: .7s;
    -moz-transition: .7s;
    transition: .7s;
}
.button.button-white:hover {
    color: var(--secondary) !important;
}
.button:has(+ .button) {
    margin-left: 5px;
}
.button i {
	font-size: 18px;
}

.area-services {
    padding-block: 120px 0px;
}
.sec-title {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-heading-color);
    font-size: 60px;
    margin-bottom: 40px;
}
.service-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.srv-card {
	position: relative;
	z-index: 1;
	overflow: hidden;
	aspect-ratio: 1;
}
.srv-thumb {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.srv-thumb img {
    width: 100%;
    min-height: 100%;
}
.srv-caption-top {
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
    color: #fff;
    position: relative;
    min-height: 114px;
    z-index: 1;
}
.srv-caption-top::before {
	position: absolute;
	content: "\f061";
	top: 16px;
	right: 12px;
	width: 30px;
	height: 30px;
	z-index: 1;
	font-family: 'Font Awesome 6 Pro';
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
}
.srv-caption-top::after {
	position: absolute;
	content: "";
	inset: 0 0 auto 0;
	z-index: -1;
	background-color: var(--text-heading-color);
	height: 100%;
}
.srv-caption-bottom {
    color: #F9F9F9;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 20px;
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
}
.srv-card:hover .srv-caption-bottom {
    bottom: 0;
}
.srv-card:hover .srv-caption-top::after{
    margin-top: -100%;
}
.srv-card:hover .srv-caption-top::before {
    transform: rotate(-45deg);
}
.srv-caption-bottom,
.srv-caption-top::after {
    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
}

.sec-title h3 {
    font-size: 16px;
    font-weight: 400;     
    margin-bottom: 2px;   
}
.sec-title:has(h3) {
    text-transform: initial;
    border-bottom: 1px solid var(--text-heading-color);
}

.area-about {
    padding-block: 120px;
    background: url(../images/bg-bangladesh.svg) no-repeat top right;
    min-height: 600px;
}

.about-content {
    display: flex;
    gap: 107px;
    padding-top: 60px;
}
.about-caption {
    flex: 2;
}
.about-details {
    flex: 3;
}
.about-caption h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 48px;
}
.customer-services-grids {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 100px;
    padding-top: 120px;
}
.srv-counter {
    font-size: clamp(1.5rem, 12vw, 100px);
    font-weight: 500;
    padding-bottom: 5px;
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    margin-bottom: 30px;
}
.customer-services p {
    color: var(--accent);
    margin-bottom: 0;
}
.feature-content {
    padding-top: 120px;
}
.feature-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); */
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
}
.feature-card h3 {
    font-size: 60px;
    line-height: 60px;
    font-weight: 500;
    border-bottom: 1px solid #C4C4C4;
    padding-bottom: 15px;
}
.feature-card .feature-caption {
    margin-top: 15px;
}

.area-contacts {
    padding-block: 120px 340px;
    background: #4F616B url(../images/fixed_img.png) no-repeat center center;
    color: #fff;
}
.cnt-title {
    font-size: 40px;
    line-height: 48px;
    color: #F9F9F9;
    font-weight: 500;    
    margin-bottom: 0;
}
.cnt-caption {
    padding-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}
.cnt-card {
	border: 1px solid #C4C4C4;
	padding: 30px 30px;
	aspect-ratio: 1/.9;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
    cursor: pointer;
    color: #fff;
}
.cnt-card:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.con-title {
	font-size: 24px;
	line-height: 35px;
	font-weight: 500;
}
.con-action {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}
.area-priority {
    padding-top: 25px;
    margin-top: -140px;
    overflow-x: hidden;
}
.priority-box {
    display: flex;    
}
.priority-bg {
    padding-bottom: 135px;
}
.priority-bg, .priority-content {
    flex: 1;
}
.priority-content {
    --priority-bg: #0C286E;
    position: relative;
    top: -25px;
    background-color: var(--priority-bg);
    z-index: 1;
    padding-block: 85px;
}
.priority-content::after {
    position: absolute;
    content: "";
    inset: 0 -1000px 0 -70px;
    background-color: var(--priority-bg);
    z-index: -1;    
}
.sec-title-border {
    border-bottom: 1px solid #4F616B;
    margin-bottom: 20px;
}
.sec-title-border h3 {
    font-size: 16px;
    font-weight: 400;
    color: #f9f9f9;
    margin-bottom: 0;
    padding-bottom: 20px;
}
.priority-title {
    color: #f9f9f9;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 20px;
}
.priority-details {
    padding-block: 40px 0;
    color: #f9f9f9;
}
.priority-details p {
    font-weight: 300;
}

.contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-list li a {
    display: flex;
    gap: 5px;
    font-size: 16px;
    color: var(--text-heading-color);
}
.contact-list li a i {
	width: 25px;
	height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	top: -2px;
	margin-right: 5px;
	font-size: 21px;
}
.contact-list.list-white li a {
    color: #F9F9F9;
}
.contact-list li a:hover, .contact-list.list-white li a:hover {
    color: var(--accent);
}
.contact-list-option {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.area-contactinfo {
    padding-block: 0 60px;
}
.contactinfo {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;    
}
.contactinfo::after {
    position: absolute;
    content: "";
    inset: 90px 0 60px 0;
    background-color: var(--primary);
    z-index: -1;
}
.contactinfo .contact-thumb {
    flex: 2;
}
.contactinfo .contact-caption {
    flex: 3;
    padding-block: 180px 150px;
    padding-right: 30px;
    box-sizing: border-box;
    color: #F9F9F9;
}
.contact-cap-title, .contact-cap-title p {
    color: #F9F9F9;
    font-size: 40px;
    font-weight: 500;
}
.contact-content {
    max-width: 490px;
}
.contactinfo-action {
    padding-top: 30px;
}

.area-associates {
    padding-block: 120px 0;
}
.sec-title.sec-space {
	padding-bottom: 15px;
}

.clients-title {
    text-align: center;
    margin-top: 100px;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #4F616B;
    position: relative;
    margin-top: 40px;
}
.clients-grid::after {
    position: absolute;
    content: "";
    inset: auto 0 0 0;
    height: 1px;
    background-color: #4F616B;
    z-index: 2;
}
.clients-grid .client-item {
	padding: 20px;
	/* aspect-ratio: 1/.9; */
	display: flex;
	/* justify-content: center; */
	align-items: center;
	position: relative;
	z-index: 1;
	margin-top: -1px;
	margin-left: -1px;
	flex-direction: column;
}
.clients-grid .client-item::after {
    position: absolute;
    content: "";
    inset: 0;
    border: 1px solid #4F616B; 
    z-index: -1;
}
/* .clients-grid .client-item img {
	max-width: 150px;
	max-height: 100px;
} */
.clients-grid .client-caption {
	text-align: center;
	margin-top: 25px;
}
.clients-grid .client-caption h4 {
    color: var(--text-heading-color);
}
.clients-grid .client-caption p {
    font-size: 14px;
}

.app-gl-title {
    color: #fff;
}

.content-lrg .about-caption {
    flex: 5;
}
.content-lrg .about-details {
    flex: 4;
}
.hilight {
    color: var(--accent);
}
.area-certifications {
    padding-block: 120px;
}
.certifications-carousel {
    border: 1px solid #4F616B;
    margin-top: 90px;
}
.carousel-content {
    display: flex;
}
.crsl-item {
    padding: 40px;
    flex: 1;
}
.crsl-thumb {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
}
.crsl-caption p {
    font-size: 14px;
}
.carousel-item.active .crsl-item:has(+ .crsl-item) {
    border-right: 1px solid #4F616B;
}
.area-certifications .about-content {
    flex: 2;
}
.area-certifications .about-details {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}
.carousel-arrow-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 18px;
}
.carousel-arrow-btn i {
    font-size: 20px;
}

.area-aim {
    padding-block: 120px 0;    
}
.aim-sec-title {
    background: url(../images/aim-bg.svg) no-repeat bottom -130px right -10px;
}
.aim-sec-title {
    padding-block: 0 200px;
}
.aim-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
}
.aim-description {
    padding-block: 160px;
    background: url(../images/aim-bgs.jpg) no-repeat;
    background-size: cover;
}
.aim-des {
    display: flex;
}
.aim-des-action, .aim-des-content {
    flex: 1;
}
.aim-content-title {
	text-transform: Capitalize;
	font-weight: 600;
	color: #F9F9F9;
	margin: 0px;
	font-size: 100px;
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
    border-bottom: 1px solid rgba(249,249,249,0.4);
    display: inline-block;
    z-index: 3;
}
.aim-des-content {
    background-color: var(--accent);
    color: var(--secondary);
    padding: 70px;
    box-sizing: border-box;
    max-width: 579px;
    position: relative;
    z-index: 1;
}
.aim-des-content::after {
    position: absolute;
    content: "";
    inset: -220px 0 0 0;
    background-color: var(--accent);
    z-index: -1;
}
.aim-des-action {
    padding: 70px 70px 70px 0;
}

footer {
    padding-top: 30px;
    background: url(../images/footer_bg.svg) no-repeat;
    background-size: cover;
}
.area-footer-top {
    padding-block: 40px 30px;
    display: flex;
    gap: 30px 100px;
    border-top: 1px solid #C4C4C4;
}
.foot-about {
    flex: 2;
}
.foot-links {
    flex: 5;
    display: flex;
    gap: 30px 40px;
}
.foot-links .widget-link {
    flex: 1;
}
.foot-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.foot-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.foot-contact .foot-helpline {
	color: var(--text-heading-color);
	font-weight: 400;
	font-size: 24px;
    text-decoration: none;
}
.foot-small-gray, .foot-address {
    font-size: 14px;
    color: var(--text-gray);
}
footer a:hover, .foot-contact a:hover {
    color: var(--accent);
}
.foot-contact a:hover svg path {
    fill: var(--accent);
}
.widget-link, .widget-link .widget-title {
    font-size: 14px;
    color: var(--text-gray);
}
.widget-title {
    margin-bottom: 15px;
}
.links {
    margin: 0;
    padding: 0;
    list-style: none;
}
.links li a {
    color: var(--text-heading-color);
}
.links li a:hover {
    color: var(--accent);
}
.links li:not(:last-child) {
    margin-bottom: 15px;
}

.area-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 50px 40px;
}
.cp {
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;	
	margin: 0;
}
.cp, .cp a {
    color: var(--text-gray);
}

.hero-page-banner {
    position: relative;

}
.hero-page-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,0.25);
	z-index: 2;
}
@media(min-width: 1201px){
    .area-hero.hero-page-banner {
        height: 70dvh;
    }
}
.banner-caption {
    position: absolute;
    inset: auto 0 18% 0;
    z-index: 3;
}
.page-title {
    margin-bottom: 0;
    color: #F9F9F9;
    font-size: clamp(1rem, 5vw, 60px);
}
.brdcmb {
    color: #F9F9F9;
}

.area-page {
    padding-block: 60px;
    min-height: 200px;
    background: url(../images/fixed_img.png) no-repeat center top;
    background-size: cover;
}

.app-con-form-box {
	padding: 40px 50px 40px 50px;
}
.invalid-feedback {
	font-size: 13px;
}

.app-social-media > li > a {
    color: var(--secondary) !important;
}


.menu ul > li > a::after,
.menu ul > li > ul li a,
header,
.contact-list li a,
.cnt-card,
.srv-caption-top::before,
.links li a,
.menu > ul > li > a > i,
.button::after {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}