@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
p {
    color: black;
    font-size: 1.4rem;
    margin-top: 5px;
    line-height: 2.5rem;
    font-weight: 300px;
    letter-spacing: 0.05rem;
}

/* header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 7vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 95%;
	padding: 0 5px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgba(31, 30, 30, 0.85);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.3s ease left;
}
#header .nav-list ul.active {
	left: 0;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.1rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 19px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(0, 104, 136, 0.3);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: crimson;
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* end header section */

/* home section */
#home {
	background-image: url(./img/Home-1920x1080.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;
	position: relative;
    border-radius: 0 0 10px 10px;
    margin-bottom: 120px;
	z-index: 1;
}
#home::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.5;
    border-radius: 0 0 10px 10px;
	z-index: -1;
}
#home h1 {
	display: block;
	width: fit-content;
	font-size: 11vw;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}
#home h1:nth-child(1){
    animation: text_reveal_name 0.5s ease forwards;
    animation-delay: 1s;
}
#home h1:nth-child(2){
    animation: text_reveal_name 0.5s ease forwards;
    animation-delay: 2s;
}
#home h1 span {
	position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: transparent;
    animation: text_reveal_box 1s ease;
    animation-delay: 1s;
}
#home h1:nth-child(1) span{
    animation-delay: 1s;
}
#home h1:nth-child(2) span{
    animation-delay: 2s;
}
#home .cta {
	display: inline-block;
    padding: 10px 30px;
	color: white;
    background-color: transparent;
    border: 2px solid crimson;
    font-size: 2rem;
    letter-spacing: 1rem;
    margin-top: 30px;
    transition: 0.3 ease;
    transition-property: background-color, color;
}
#home .cta:hover {
	color: white;
    background-color: crimson;
}
/* end home section */

/* about section */
#about {}
#about .about {
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
	width: 100%;
    padding: 100px 0;
}
#about .section-title {
    font-size: 9vh;
    font-weight: 300;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
    color: white;
    text-shadow: 2px 2px 10px #00000059;
    letter-spacing: 0.2rem;
	text-transform: uppercase;
    text-align: center;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#about .section-title span {
    color: crimson;
}
#about .about-top {
    background-image: url(./img/1920x500-AboutUs.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;
	position: relative;
    width: 100%;
    height: 400px;
    padding: 50px;
    background-size: cover;
    margin: 10px 5%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#about .about-item {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 800px;
	margin: 0 20px;
    margin-top: 40px;
	margin-bottom: 30px;
	/* gap: 2rem; */
}#about p {
	text-align: justify;
    flex-direction: column;
    max-width: 90%;
    margin: 0 auto;
	color: black;
	font-size: 2vh;
}
#about .about-item:nth-of-type(even) {
	flex-direction: row-reverse;
}
#about .about-item .left {
	flex: 1;
}
#about .about-item .right {
	margin-left: -50px;
	flex: 1;
	background-color: white;
	padding: 3rem 2rem;
	border-radius: 12px;
	box-shadow: 0px 0px 20px #00000028;
	z-index: 2;
}
#about .about-item:nth-of-type(even) .right {
	margin-left: 0;
}
#about .about-item:nth-of-type(even) .left {
	margin-left: -50px;
}
#about .about-item .left .img {
	height: 500px;
	overflow: hidden;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0px 0px 20px #00000028;
	position: relative;
}
#about .about-item .left .img::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
#about .about-item .left .img img {
	object-fit: cover;
	transition: 0.3s ease transform;
}
#about .about-item:hover .left .img img {
	transform: scale(1.1);
	z-index: 1;
}
#about .about-item .right .about-title {
	font-size: 2.5rem;
	font-family: 'Montserrat';
	margin-bottom: 1rem;
}
#about .about-item .right .about-desc {
	color: var(--secondary-gray);
}
#about .about-item .right .external-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: calc(0.6em - 4px) calc(1.6em - 4px);
}
#about .about-item .right .external-link svg {
	width: 25px;
}
@media only screen and (max-width: 768px) {
	#about .about-item {
		flex-direction: column;
	}
	#about .about-item .left {
		width: 100%;
	}
	#about .about-item .right {
		margin-left: 0;
		width: 90%;
		margin-top: -150px;
	}
	#about .about-item:nth-of-type(even) {
		flex-direction: column;
	}
	#about .about-item:nth-of-type(even) .left {
		margin-left: 0;
	}
}
@media only screen and (max-width: 450px) {
	#about .about-item .right .buttons {
		flex-direction: column;
	}
	#about .about-item .right .buttons a {
		width: 100%;
		text-align: center;
	}
}
/* end about section */

/* business section */
#business {}
#business .business {
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
	width: 100%;
    padding: 100px 0;
}
#business .section-title {
    font-size: 9vh;
    font-weight: 300;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
    color: white;
    text-shadow: 2px 2px 10px #00000059;
    letter-spacing: 0.2rem;
	text-transform: uppercase;
    text-align: center;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#business .section-title span {
    color: crimson;
}
#business .business-top {
    background-image: url(./img/1920x500-Business.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;
	position: relative;
    width: 100%;
    height: 400px;
    padding: 50px;
    background-size: cover;
    margin: 10px 5%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#business h1 {
	color: black;
	font-weight: 500;
	font-size: 5vh;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 30px;
}
#business .business-icon {
	display: flex;
	margin-bottom: 30px;
}
#business .business-item {
	height: 80px;
	width: 80px;
	margin: 0 20px;
}
#business .business-item img {
	transition: 0.3s ease filter;
}
#business p {
	text-align: justify;
    flex-direction: column;
    max-width: 75%;
    margin: 0 auto;
	color: black;
	font-size: 2vh;
}
/* end business section */

/* promise section */
#promise {}
#promise .promise {
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
	width: 100%;
    padding: 100px 0;
}
#promise .section-title {
    font-size: 9vh;
    font-weight: 300;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
    color: white;
    text-shadow: 2px 2px 10px #00000059;
    letter-spacing: 0.2rem;
	text-transform: uppercase;
    text-align: center;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#promise .section-title span {
    color: crimson;
}
#promise .promise-top {
    background-image: url(./img/1920x500-Promise.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;
	position: relative;
    width: 100%;
    height: 400px;
    padding: 50px;
    background-size: cover;
    margin: 10px 5%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#promise .promise-item {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 800px;
	margin: 0 20px;
    margin-top: 40px;
	margin-bottom: 30px;
	/* gap: 2rem; */
}#promise p {
	text-align: justify;
    flex-direction: column;
    max-width: 90%;
    margin: 0 auto;
	color: black;
	font-size: 2vh;
}
#promise .promise-item:nth-of-type(even) {
	flex-direction: row-reverse;
}
#promise .promise-item .left {
	flex: 1;
}
#promise .promise-item .right {
	margin-left: -50px;
	flex: 1;
	background-color: white;
	padding: 3rem 2rem;
	border-radius: 12px;
	box-shadow: 0px 0px 20px #00000028;
	z-index: 2;
}
#promise .promise-item:nth-of-type(even) .right {
	margin-left: 0;
}
#promise .promise-item:nth-of-type(even) .left {
	margin-left: -50px;
}
#promise .promise-item .left .img {
	height: 500px;
	overflow: hidden;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0px 0px 20px #00000028;
	position: relative;
}
#promise .promise-item .left .img::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
#promise .promise-item .left .img img {
	object-fit: cover;
	transition: 0.3s ease transform;
}
#promise .promise-item:hover .left .img img {
	transform: scale(1.1);
	z-index: 1;
}
#promise .promise-item .right .promise-title {
	font-size: 2.5rem;
	font-family: 'Montserrat';
	margin-bottom: 1rem;
}
#promise .promise-item .right .promise-desc {
	color: var(--secondary-gray);
}
#promise .promise-item .right .external-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: calc(0.6em - 4px) calc(1.6em - 4px);
}
#promise .promise-item .right .external-link svg {
	width: 25px;
}
@media only screen and (max-width: 768px) {
	#promise .promise-item {
		flex-direction: column;
	}
	#promise .promise-item .left {
		width: 100%;
	}
	#promise .promise-item .right {
		margin-left: 0;
		width: 90%;
		margin-top: -150px;
	}
	#promise .promise-item:nth-of-type(even) {
		flex-direction: column;
	}
	#promise .promise-item:nth-of-type(even) .left {
		margin-left: 0;
	}
}
@media only screen and (max-width: 450px) {
	#promise .promise-item .right .buttons {
		flex-direction: column;
	}
	#promise .promise-item .right .buttons a {
		width: 100%;
		text-align: center;
	}
}
/* end promise section */

/* soical section */
#soical {}
#soical .soical {
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
	width: 100%;
    padding: 100px 0;
}
#soical .section-title {
    font-size: 9vh;
    font-weight: 300;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
    color: white;
    text-shadow: 2px 2px 10px #00000059;
    letter-spacing: 0.2rem;
	text-transform: uppercase;
    text-align: center;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#soical .section-title span {
    color: crimson;
}
#soical .soical-top {
    background-image: url(./img/1920x500-SoicalResponibility.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;
	position: relative;
    width: 100%;
    height: 400px;
    padding: 50px;
    background-size: cover;
    margin: 10px 5%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#soical h1 {
	color: black;
	font-weight: 500;
	font-size: 5vh;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 30px;
}
#soical h2 {
	font-size: 3rem;
	font-weight: 500;
	margin-top: -20px;
	margin-bottom: 10px;
}
#soical h4 {
	font-size: 3rem;
	font-weight: 500;
	margin-top: -5px;
	margin-bottom: -20px;
}
#soical p {
	text-align: justify;
    flex-direction: column;
    max-width: 95%;
    margin: 0 auto;
	color: black;
	font-size: 2vh;
}
#soical .soical-items {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#soical .soical-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#soical .soical-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: white;
}
#soical .soical-info h1 {
	font-size: 4rem;
	font-weight: 500;
}
#soical .soical-info h2 {
	font-size: 3rem;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
}
#soical .soical-info p {
	color: white;
}
#soical .soical-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}
#soical .soical-img:after {
	content: '';
	position: absolute;
	left: 0;
	height: 100%;
	width: 100%;
	align-items: center;
	opacity: 0.1;
}
#soical .soical-img img {
	max-width:100%;
	transition: 0.3s ease transform;
	vertical-align: middle;
    max-height: 100%;
}
#soical .soical-item:hover .soical-img img {
	transform: scale(1.1);
}
#soical .public-container{
	max-width: 1200px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 30px;
	margin-top: 5%;
	z-index: 2;
}
#soical .public-container .card {
	width:308px;
	position: relative;
	height: 700px;
	background: #ffffff;
	margin: 30px 10px;
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
	box-shadow: 0px 0px 20px #00000028;
	border-radius: 10px;
	transition:0.3s ease-in-out;
	margin-top: 5%;
	margin-bottom: 60px;
	z-index: 2;
}
#soical .public-container .card .imgBx{
	position: relative;
	width:260px;
	height: 280px;
	top: -60px;
	left:10px;
	border-radius: 10px;
	box-shadow: 0px 0px 20px #00000028;
}
#soical .public-container .card .imgBx img{
	max-width: 100%;
	border-radius: 10px;
}
#soical .imgBx:hover img{
	transform: scale(1.1);
}
#soical .public-container .card .imgBx h2 {
	font-size: 3rem;
	font-weight: 500;
	margin-top: 15px;
}
#soical .public-container .card .imgBx p {
	font-size: 1.75rem;
	color: black;
	margin-top: -25px;
}
@media only screen and (min-width: 768px) {
	#soical .soical-item {
		flex-direction: row;
	}
	#soical .soical-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#soical .soical-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#soical .soical-items .soical-info {
		height: 100%;
	}
	#soical .soical-items .soical-img {
		height: 100%;
	}
}
/* end soical section */

/* partner section */
#partner {}
#partner .partner {
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
	width: 100%;
    padding: 100px 0;
}
#partner .section-title {
    font-size: 9vh;
    font-weight: 300;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
    color: white;
    text-shadow: 2px 2px 10px #00000059;
    letter-spacing: 0.2rem;
	text-transform: uppercase;
    text-align: center;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#partner .section-title span {
    color: crimson;
}
#partner .partner-top {
    background-image: url(./img/1920x500-Partnership.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;
	position: relative;
    width: 100%;
    height: 400px;
    padding: 50px;
    background-size: cover;
    margin: 10px 5%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#partner .wrapper {
	width: 90%;
	margin: 50px 0;
	padding: 0 10px;
	padding-bottom: 10px;
	text-transform: capitalize;
}
#partner .partner-items {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
#partner .partner-item {
	height: 285px;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0px 0px 18px 0 #0000002c;
}
#partner .icon {
	width: 200px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}
#partner .partner-info h2 {
	font-size: 1.3rem;
	line-height: 2.25rem;
	font-weight: 500;
	text-align: center;
}
#partner .partner-item:hover {
	transform: scale(1.03);
	box-shadow: 0px 0px 5px 0 #0000002c;
}
@media (max-width: 770px) {
	#partner .wrappers {
		padding: 10px;
	}
}
/* end partner section */

/* contact section */
#contact {}
#contact .contact {
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
	width: 100%;
    padding: 100px 0;
}
#contact .section-title {
    font-size: 9vh;
    font-weight: 300;
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
    color: white;
    text-shadow: 2px 2px 10px #00000059;
    letter-spacing: 0.2rem;
	text-transform: uppercase;
    text-align: center;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#contact .section-title span {
    color: crimson;
}
#contact .contact-top {
    background-image: url(./img/1920x500-CustomerService.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;
	position: relative;
    width: 100%;
    height: 400px;
    padding: 50px;
    background-size: cover;
    margin: 10px 5%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#contact .contact-wrap {
	width: 100%;
	height: 100%;
	display: grid;
	align-items: center;
	padding-top: 50px;
}
#contact .contact-in {
	width: 80%;
	height: auto;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0px 0px 20px #00000028;
}
#contact .contact-map {
	width: 100%;
	height: auto;
	flex: 60%;
}
#contact .contact-map iframe {
	width: 100%;
	height: 100%;
	flex: 50%;
}
#contact .contact-in h2 i {
	font-size: 16px;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	background: #f5f5f5;
	color: #000;
	border-radius: 50px;
	line-height: 40px;
	text-align: center;
}
#contact .contact-info {
	width: 100%;
	height: auto;
	flex: 150px;
}
#contact .contact-info h1 {
	color: black;
	font-weight: 100;
	font-size: 2.5rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
}
#contact .contact-info h2 {
	font-size: 2rem;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left: 20px;
}
#contact .contact-info p {
	color: black;
	padding-left: 60px;
}
/* end contact section */

/* footer section */
#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 10px;
	padding-bottom: 10px;
}
#footer h1 {
	color: white;
	font-weight: 600;
	font-size: 2rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}
#footer h2 {
	color: white;
	font-weight: 600;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}
#footer .footer ul a i {
	font-size: 16px;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	background: #f5f5f5;
	color: #000;
	border-radius: 50px;
	line-height: 40px;
	text-align: center;
}
#footer p {
	color: white;
	font-size: 1.3rem;
	padding-top: 10px;
}
/* end footer section */

/* keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
    50%{
        width: 100%;
        left: 0;
    }
    100%{
        width: 0;
        left: 100%;
    }
}
@keyframes text_reveal {
    100% {
        color: white;
    }
}
@keyframes text_reveal_name {
    100% {
        color: white;
        font-weight: 500px;
    }
}
/* end keyframes */

/* Media Query For Tablet */
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
    /* header */
    #header .hamburger {
		display: none;
    }
    #header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
    #header .nav-list ul li {
		display: inline-block;
	}
    #header .nav-list ul li a {
		font-size: 1.8rem;
	}
    #header .nav-list ul a:after {
		display: none;
	}
    /* End header */
    #services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* End  Media Query For Desktop */