* {
    outline: none!important;
}

body {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	color: #121A21;
	font-weight: 400;
	line-height: 150%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

a {
	text-decoration: none;
}

b, strong {
	font-weight: bold;
}

p:last-child {
	margin-bottom: 0;
}

ol, ul {
    padding-left: 1rem;
}

.material-symbols-rounded {
    font-variation-settings:
    'FILL' 0,
    'wght' 200,
    'GRAD' 0,
    'opsz' 24
}

/*--------------------------------------------------------------
# Base Styling
--------------------------------------------------------------*/

.btn.btn-black {
	background-color: #000000;
	font-weight: 600;
	color: #FFFFFF;
	line-height: 16px;
	padding: 16px 28px;
	border-radius: 30px;
	display: inline-flex;
    align-items: center;
	justify-content: center;
}

.btn.btn-white {
	background-color: #FFFFFF;
	font-weight: 600;
	color: #000000;
	line-height: 16px;
	padding: 16px 28px;
	border-radius: 30px;
	display: inline-flex;
    align-items: center;
	justify-content: center;
}

.object-cover {
	object-fit: cover;
}

/* Header Footer
--------------------------------------------- */

.site-header {
	background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 99;
}

.site-header .site-branding img {
	height: 50px;
}

.site-header .site-navigation .main-navigation {
	display: flex;
    justify-content: end;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .site-navigation .main-navigation li a {
	font-size: 18px;
    color: #FFFFFF;
}

.site-header .site-navigation .main-navigation li a:hover {
	color: #9e9e9e; 
}

.site-header.header-red {
	background: #000000;
	border-bottom: 1px solid #D4DDE6;
	padding: 16px 0;
}

.site-header.header-red .site-branding img {
	height: 45px;
}

.site-header .btn-mobile-menu {
	font-size: 40px;
	color: #FFFFFF;
}


.site-footer {
	background-color: #EAEEF2;
	color: #121A21;
}

.site-footer .footer-inner {
	border-top: 1px solid #D4DDE6;
	padding: 40px 0 64px;
}

.site-footer img {
	height: 50px;
}

.site-footer .footer-navigation {
	display: flex;
    justify-content: end;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer .footer-navigation li a {
	color: #121A21;
}


.mobile-menu {
    background: #000000;
    width: 300px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -1000px;
    z-index: 9999;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .mobile-menu-top {
    padding: 16px;
}

.mobile-menu .mobile-menu-top img {
    height: 35px;
}

.mobile-menu .mobile-menu-top .btn.btn-closed {
    padding: 0;
    border: none;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 100%;
}

.mobile-menu .mobile-menu-bottom ul.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .mobile-menu-bottom ul.mobile-nav-menu li a {
    display: block;
    background: #FFFFFF;
    padding: 18px;
    color: #121A21;
    line-height: 100%;
    border-bottom: 1px solid #eaeaea;
}

/* Content
--------------------------------------------- */

.box {
	padding: 64px 0;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000000;
    opacity: .85;
    width: 100%;
    height: 100%;
    z-index: 9998;
}

body.blackout {
    overflow: hidden;
}

body.blackout .overlay {
    display: block;
}

.banner-frontend {
	height: 100vh;
	position: relative;
	display: flex;
    align-items: center;
}

.banner-frontend .banner-overlay {
	background: linear-gradient(0deg, rgba(7, 12, 12, 0.24), rgba(7, 12, 12, 0.24)), linear-gradient(180deg, rgba(12, 24, 69, 0.2) 0%, rgba(93, 0, 0, 0.2) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-frontend .banner-image {
	position: absolute;
    width: 100%;
    height: 100%;
}

.banner-frontend > .container {
	position: relative;
    z-index: 9;
}

.banner-frontend .banner-inner .banner-title {
	font-family: "Alike", sans-serif;
    font-size: 72px;
    color: #FFFFFF;
    line-height: 110%;
}


.banner-text {
	background: linear-gradient(180deg, #E2E8F0 0%, #FFFFFF 100%);
	padding: 160px 0 32px;
}

.banner-text .banner-title {
	/*font-family: "Alike", sans-serif;*/
    font-size: 56px;
    font-weight: 400;
    line-height: 110%;
    margin: 0;
    text-transform: uppercase;
}

.banner-text .banner-subtitle {
	font-size: 20px;
    color: #425263;
    line-height: 140%;
    margin: 16px 0 0;
}


.entry-header {
	border-bottom: 1px solid #D4DDE6;
	margin-bottom: 32px;
	padding-bottom: 32px;
}

.entry-header .entry-title {
	font-family: "Alike", sans-serif;
	font-size: 48px;
	margin: 0;
	line-height: 120%;
}

.entry-header .entry-subtitle {
	font-size: 16px;
	color: #9e9e9e;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 4px;
}

.entry-desc {
	color: #425263;
}


.list-services {
	margin-top: 40px;
	margin-bottom: -24px;
}

.list-services .item {
    display: flex;
    margin-bottom: 24px;
}

.list-services .item-inner {
	border: 1px solid #D4DDE6;
	border-radius: 8px;
	padding: 24px 32px;
	display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.list-services .item-title {
	font-family: "Alike", sans-serif;
	font-size: 26px;
	margin: 0;
}

.list-services.our-services .item-title {
	min-height: 62px;
}

.list-services .item-desc {
	color: #425263;
	margin-top: 12px;
	flex-grow: 1; 
}

.list-services .item-desc ul {
  list-style: none;
  padding-left: 0;
}

.list-services .item-desc ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}

.list-services .item-desc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background-color: #9e9e9e;
  border-radius: 1px;
}

.list-services .item .item-icon {
	margin-bottom: 32px;
}

.list-services .item .item-icon span {
	font-size: 50px;
    color: #9e9e9e;
}


.list-icon {
	margin-bottom: -24px;
}

.list-icon .item {
	margin-bottom: 24px;
}

.list-icon .item .item-inner {
	border: 1px solid #D3D3D3;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    gap: 16px;
}

.list-icon .item .item-title {
	font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
}

.list-icon .item .item-icon {
	flex: 0 0 auto;
	width: 40px;
}

.list-icon .item .item-icon span {
	font-size: 40px;
    color: #E65100;
}

.list-icon .item .item-desc {
	font-size: 14px;
	color: #425263;
	margin-top: 12px;
}


.list-work .img-wrap {
	border: 1px solid #eaeaea;
	border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.list-work .item-text {
	display: flex;
	align-items: center;
	gap: 6px;
}

.list-work .item-text > span {
	color: #9e9e9e;
}

.list-work .item-title {
	font-family: "Alike", sans-serif;
	font-size: 20px;
	margin: 0;
}

.list-work .item-desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
}

.list-work .item-desc p {
    margin-bottom: 6px;
}

.list-work .item-desc p:last-child {
    margin-bottom: 0;
}

.list-work .item-desc strong {
    font-weight: 600;
    color: #121A21;
}


.section-background {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 500px;
}

.section-background .bg-inner {
	position: relative;
}

.section-background .bg-inner::after {
	content: '';
	background-image: url(images/shape-black.png);
	background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.section-background .bg-inner-text {
	position: relative;
	z-index: 9;
	color: #FFFFFF;
	display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 12%;
}

.section-background .bg-inner-text .entry-title {
	font-family: "Alike", sans-serif;
	font-size: 48px;
}

.section-background .bg-inner-text .entry-subtitle {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5;
}


.section-about .img-wrap {
	border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    overflow: hidden;
}

.section-about .item-title {
	font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 140%;
}

.section-about .item-desc {
	color: #425263;
    line-height: 180%;
}


.section-contact {
	background-color: #EAEEF2;
}

.section-contact .list-contact .item-title {
	font-family: "Alike", sans-serif;
	font-size: 24px;
	margin-bottom: 12px;
}

.section-contact .list-contact .item-desc {
	font-size: 16px;
	color: #425263;
    line-height: 180%;
    margin-bottom: 16px;
}

.section-contact .list-contact .item-info {
	line-height: 180%;
}

.section-contact .list-contact .item-info a {
	display: block;
	font-size: 16px;
	color: #121A21CC;
	font-weight: 500;
	margin-bottom: 6px;
}


/* Media Query
--------------------------------------------- */

@media (max-width: 1399.98px) {

	.section-background {
		height: 400px;
	}

	.section-background .bg-inner-text .entry-title {
		font-size: 40px;
	}

}

@media (max-width: 1199.98px) {

	.list-services.our-services .item-title {
	    min-height: unset;
	}

	.section-background .bg-inner-text .entry-subtitle {
		font-size: 18px;
	}
}

@media (max-width: 991.98px) {

	.btn.btn-white {
		font-size: 14px;
		padding: 8px 16px;
	}

	.banner-frontend {
		height: 600px;
	}
	.banner-frontend .banner-inner .banner-title {
		font-size: 56px;
	}

	.banner-text {
    	padding: 80px 0 32px;
    }
	.banner-text .banner-title {
		font-size: 40px;
	}
	.banner-text .banner-subtitle {
		font-size: 18px;
	}

	.entry-header {
		margin-bottom: 16px;
    	padding-bottom: 16px;
	}
	.entry-header .entry-title {
		font-size: 32px;
    	margin: 8px 0 0;
	}
	.entry-header .entry-subtitle {
		letter-spacing: 2px;
	}

	.list-services .item-inner {
		padding: 16px 24px;
	}
	.list-services .item-title {
		font-size: 20px;
	}
	.list-services .item .item-icon {
	    margin-bottom: 8px;
	}

	.section-background {
		height: 300px;
	}
	.section-background .bg-inner-text .entry-title {
		font-size: 32px;
	}
	.section-background .bg-inner-text .entry-subtitle {
		font-size: 16px;
	}

}

@media (max-width: 767.98px) {

	.site-footer img {
		height: unset;
	}

	.banner-frontend .banner-text .banner-title {
		font-size: 48px;
	}

	.section-background {
        height: 250px;
    }
    .section-background .bg-inner-text .entry-title {
    	font-size: 24px;
    }
    .section-background .bg-inner-text .entry-subtitle {
        font-size: 14px;
    }

}

@media (max-width: 575.98px) {

	.site-header .site-branding img,
	.site-header.header-red .site-branding img {
		height: 35px;
	}

	.site-footer .footer-navigation li a,
	.site-footer span {
		font-size: 12px;
	}

	.btn.btn-red {
        font-size: 14px;
        padding: 8px 16px;
    }

    .box {
		padding: 40px 0;
	}

    .banner-frontend {
        height: 450px;
    }
    .banner-frontend .banner-inner .banner-title {
        font-size: 40px;
    }

    .banner-text .banner-title {
    	font-size: 32px;
    }

	.entry-header .entry-title {
		font-size: 32px;
	}
	.entry-header .entry-subtitle {
		letter-spacing: 1px;
	}

	.section-background {
		height: 200px;
	}
	.section-background .bg-inner-text {
		padding: 0 8%;
	}
	.section-background .bg-inner-text .entry-title {
		font-size: 20px;
		margin-bottom: 4px;
	}
	.section-background .bg-inner-text .entry-subtitle {
		font-size: 12px;	
	}

	.list-icon .item .item-inner {
		padding: 24px;
	}
	.list-icon .item .item-title {
		font-size: 18px;
	}
	.list-icon .item .item-desc {
		margin-top: 8px;
	}

}