/* GENERAL STYLES */

/* BASE COLORS */
/* SINGLE: #172a88 */
/* GRADATION: #0C164B, #00375D */

body,
html {
    width: 100%;
	height: 100%;
}
body {
	color: #444; 
	font: 500 1rem/1.625rem "Noto Serif JP", serif;
}
h1 {
	color: #333333;
	font: 500 2.5rem/3.25rem "Noto Sans JP", sans-serif;
}
h2 {
	color: #333333;
	font: 500 1.8rem/2.75rem "Noto Sans JP", sans-serif;
}
h3 {
	color: #333333;
	font: 500 1.75rem/2.375rem "Noto Sans JP", sans-serif;
}
h4 {
	color: #333333;
	font: 500 1.5rem/2.125rem "Noto Sans JP", sans-serif;
}
h5 {
	color: #333333;
	font: 500 1.25rem/1.75rem "Noto Sans JP", sans-serif;
}
h6 {
	color: #333333;
	font: 500 1rem/1.5rem "Noto Sans JP", sans-serif;
}
.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}
.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
.li-space-lg li {
	margin-bottom: 0.5rem;
}
.nowrap {
	white-space: nowrap;
}
a {
	color: inherit;
	text-decoration: underline;
}
a:hover {
	color: #6b747b;
	text-decoration: underline;
}
.no-line {
	text-decoration: none;
}
.no-line:hover {
	text-decoration: none;
}
a.white {
	color: #ffffff;
}
.bg-gray {
	background-color: #eaeaea;
}
.bg-gnp {
	background: linear-gradient(#0C164B, #00375D);
}
.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #0C164B;
	background-color: #0C164B;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}
.btn-solid-reg:hover {
	border: 1px solid #333333;
	background-color: transparent;
	color: #333333;
	text-decoration: none;
}
.btn-solid-lg {
	display: inline-block;
	padding: 1.5rem 2.5rem 1.5rem 2.5rem;
	border: 1px solid #333333;
	background-color: #333333;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}
.btn-solid-lg:hover {
	border: 1px solid #333333;
	background-color: transparent;
	color: #333333;
	text-decoration: none;
}
.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #333333;
	background-color: transparent;
	color: #333333;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}
.btn-outline-reg:hover {
	border: 1px solid #333333;
	background-color: #333333;
	color: #ffffff;
	text-decoration: none;
}
.btn-outline-lg {
	display: inline-block;
	padding: 1.5rem 2.5rem 1.5rem 2.5rem;
	border: 1px solid #333333;
	background-color: transparent;
	color: #333333;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}
.btn-outline-lg:hover {
	border: 1px solid #333333;
	background-color: #333333;
	color: #ffffff;
	text-decoration: none;
}
.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #333333;
	background-color: transparent;
	color: #333333;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}
.btn-outline-sm:hover {
	border: 1px solid #333333;
	background-color: #333333;
	color: #ffffff;
	text-decoration: none;
}
.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}
.form-group.has-error.has-danger {
	margin-bottom: 0.625rem;
}
.form-group.has-error.has-danger .help-block.with-errors ul {
	margin-top: 0.375rem;
}
.label-control {
	font: 500 1rem/1.375rem 'Noto Sans JP', sans-serif;
	cursor: text;
	transition: all 0.2s ease;
}
.label-control-select {
	font: 500 1rem/1.375rem 'Noto Sans JP', sans-serif;
	cursor: text;
	transition: all 0.2s ease;
}
.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
	top: 0.125rem;
	color: #6b747b;
	opacity: 1;
	font-size: 0.75rem;
	font-weight: 500;
}
.form-control-input,
.form-control-select {
	display: block;
	width: 100%;
	padding-top: 1.125rem;
	padding-bottom: 0.125rem;
	padding-left: 1.3125rem;
	border: 1px solid #6b747b;
	background-color: #ffffff;
	color: #333333;
	font: 500 1.2rem/1.875rem 'Noto Sans JP', sans-serif;
	transition: all 0.2s;
}
.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3.25rem;
	color: #7d838a;
}
select {
  -webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../images/down-arrow.png');
    background-position: 96% 50%;
    background-repeat: no-repeat;
    outline: none;
}
.form-control-textarea {
	display: block;
	width: 100%;
	height: 14rem;
	padding-top: 1.5rem;
	padding-left: 1.3125rem;
	padding-right: 1rem;
	border: 1px solid #6b747b;
	background-color: #ffffff;
	color: #333333;
	font: 500 1.1rem/1.7rem 'Noto Serif JP', serif;
	transition: all 0.2s;
}
.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #a8b0b6;
	outline: none; /* Removes blue border on focus */
}
.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #a8b0b6;
}
.checkbox {
	font-size: 0.75rem;
	line-height: 1.25rem;
}
input[type='checkbox'] {
	vertical-align: -10%;
	margin-right: 0.5rem;
}
.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.25rem;
	border: 1px solid #0C164B;
	background-color: #0C164B;
	color: #ffffff;
	font: 500 1rem/1rem 'Noto Sans JP', sans-serif;
	cursor: pointer;
	transition: all 0.2s;
}
.form-control-submit-button:hover {
	border: 1px solid #333333;
	background-color: transparent;
	color: #172a88;
}

/* Fade-move Animation For Details Lightbox - Magnific Popup */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	-ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective(37.5rem) rotateX(0); 
	-ms-transform: translateY(0) perspective(37.5rem) rotateX(0); 
	transform: translateY(0) perspective(37.5rem) rotateX(0); 
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
	-ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
	transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
}

/* dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	transition: opacity 0.2s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}
/* end of fade-move animation for details lightbox - magnific popup */

/* Fade Animation For Image Lightbox - Magnific Popup And Morphtext */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	-webkit-animation: fadeIn 0.6s;
	animation: fadeIn 0.6s;
}
@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.fadeOut {
	-webkit-animation: fadeOut 0.8s;
	animation: fadeOut 0.8s;
}

/* NAVIGATION */
.navbar {
	font: 600 1.1rem/1.2em 'Noto Sans JP', sans-serif;
	background-color: transparent;
	box-shadow: none;
	transition: all 0.2s;
	padding: 0 1rem;
}
.navbar .subtitle {
	font: 500 .8rem/1em 'Noto Sans JP', sans-serif;
}
.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	text-decoration: none;
	font: 800 1rem/1em 'Noto Sans JP', sans-serif;
	color: white;
}
.navbar.colored .navbar-brand {
	color: #172a88;
	font-weight: 800;
	text-shadow: 0 0 5px white;
}
.navbar .logo-image img {
  height: 5rem;
	margin-right: 0.5rem;
}
.navbar .logo-text {
	color: #172a88;
	font-weight: 600;
	font-size: 2rem;
	line-height: 1rem;
	text-decoration: none;
}
.offcanvas-collapse {
	position: fixed;
	top: 5.5rem;
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 2rem;
	padding-left: 5.5rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #3b363c;
	background-image: url("../images/background-dots.png");
  background-blend-mode: color-burn;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}
.offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}
.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}
.navbar .nav-item .nav-link {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #d6d3d3;
	text-decoration: none;
	transition: all 0.2s ease;
}
.navbar-dark.top-nav-collapse .navbar-brand {
	color: #172a88;
	text-shadow: none;
}
.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 2rem;
	color: rgba(255,255,255, 0.9);
}
.navbar.colored .navbar-toggler {
	color: rgba(23, 42, 136, 0.9);
}
.navbar.top-nav-collapse .navbar-toggler {
	color: rgba(23, 42, 136, 0.9);
}
.navbar-toggler-icon {
	color: black;
}
.navbar.top-nav-collapse {
	background-color: rgba(255, 255, 255, 1);
	/* -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px); */
	/* box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4); */
	border-bottom: 1px solid rgba(0,0,0,0.4);
}

/* HEADER */
.header {
	text-align: center;
}
.header {
	background: url("../images/header-bg.jpg") #3b363c;
	background-size: cover;
}
.header .notice {
	position: absolute;
	top: 6em;
}
.header .notice a {
	color: white;
	font-family: 'Noto Sans JP';
	font-weight: 400;
	font-size: .75em;
	text-decoration: none;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 0.5rem 2rem;
  opacity: 0.85;
	transition: all 0.2s ease-out;
}
.header .notice a:hover {
	background-color: rgba(255,255,255,.2);
	opacity: 1;
}
.header .text-container {
	position: relative;
	padding-top: 9.5rem;
	padding-bottom: 4rem;
}
.header h2 {
	position: relative;
	z-index: 1;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 2rem;
}
.header.subpage .text-container {
	position: relative;
	padding-top: 10rem;
	padding-bottom: 5rem;
}
.header .text-container .logo-container {
	width: 100px;
	margin-top: 2rem;
}
.header.subpage .text-container .logo-container {
	width: 120px;
	margin-top: 1rem;
}
#header.contact {
	background: url("../images/header-bg-contact.jpg") #3b363c;
	background-size: cover;
	background-position-x: 100%;
	background-position-y: center;
}
#header.contact h2 {
	color: white;
	text-shadow:rgba(20,27,38, 0.7) 0 0 10px;
}
#header.services {
	background: url("../images/header-bg-services-tite.jpg") #3b363c;
	background-size: cover;
	background-position-x: 75%;
	background-position-y: center;
}
#header.messages {
	background: url("../images/header-bg-messages.jpg") #3b363c;
	background-size: cover;
	background-position-x: 75%;
	background-position-y: center;
}
#header.recruitment {
	background: url("../images/header-bg-recruitment.jpg") #3b363c;
	background-size: cover;
	background-position-x: 75%;
	background-position-y: center;
}
#header.recruitment h2 {
	color: #172a88;
}
#header.shadow {
	text-shadow: 0 0 10px #0C164B;
}

/* DEIGEST */
.deigest {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.deigest_container {
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.deigest_container .content {
	background-color: white;
	padding: 2rem 1.5rem;
}
.deigest_container .content h3 {
	font-family: 'Noto Sans JP';
	font-weight: 600;
	color: #172a88;
}
.deigest_container .content p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	color: #555;
}
.deigest_container figure {
	margin: 0px;
}
.deigest_container img {
	border-radius: .5rem;
}
.bgonly {
	height: 20rem;
}
.btn-solid-reg {
	font-family: 'Noto Sans JP', sans-serif;
}

/* MESSAGES */
.messages.separate {
	border-top: 1px solid rgba(0,0,0, 0.2);
}
.messages h3 {
	font-size: 1.25rem;
	line-height: 1.2em;
	margin: 0;
}
.messages h4 {
	font-size: 2rem;
	line-height: 1em;
	font-weight: bold;
	margin: 0 0 2rem;
}
.messages h5 {
	font-size: 1.5rem;
	font-weight: bold;
	color: #172a88;
}
.messages h5.carrier {
	font-size: 1.2rem;
}
.messages .closeup {
	border-radius: 0.5rem;
}
.messages dt {
	font: 700 .9rem/1.4em 'Noto Sans JP', sans-serif;
	white-space: nowrap;
}
.messages dd {
	font: 500 .9rem/1.4em 'Noto Serif JP', serif;
}

/* SERVICES */
.basic-1 {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../images/services-background.jpg") center;
	background-size: cover;
}
#services h3 {
	color: #172a88;
}
#services .lead {
	font-family: 'Noto Sans JP';
	font-size: 1.2rem;
	font-weight: bold;
}
#services .photo {
	width: 100%;
	border-radius: .5rem;
	margin-bottom: 1rem;
}
#services .services-icon img {
	width: 70px;
}

/* RECRUITEMENT */
#recruitment h3 {
	color: #172a88;
}
#recruitment .lead {
	font-family: 'Noto Sans JP';
	font-size: 1.2rem;
	font-weight: bold;
}
#recruitment .services-icon img {
	width: 70px;
}
#recruitment th {
	font-family: 'Noto Sans JP', sans-serif;
	white-space: nowrap;
}

/* CONTACT */
.form-1 .left-wrapper {
	background: url("../images/background-dots.png") #00375D;
  background-blend-mode: color-burn;
}
.form-1 .left-wrapper h2 {
	color: #ffffff;
	margin-bottom: 1.5rem;
}
.form-1 .left-wrapper h3 {
	color: #ffffff;
	font: 500 1.5rem/1.2em 'Noto Sans JP', sans-serif;
	margin-bottom: 1rem;
}
.form-1 .left-wrapper p {
	margin-bottom: 1rem;
	color: #ffffff;
}
.contact-container {
	display: flex;
	align-items: flex-start;
	color: #ffffff;
}
.contact-icon img {
	width: 30px;
	opacity: 0.5;
}
.contact-text {
	flex: 1;
	margin-left: 0.75rem;
}
.form-1 .right-wrapper {
	padding: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../images/contact-right-background.jpg") center;
	background-size: cover;
}
.form-1 .form-control-input,
.form-1 .form-control-textarea {
	background-color: transparent;
}
#company_info th {
	font: 500 1rem/1.625rem 'Noto Sans JP', sans-serif;
	white-space: nowrap;
}
#company_info .security-license {
	border-radius: 5px;
	border: 1px solid gray;
	width: 100%;
}
#contact .right-wrapper.map {
	height: 30rem;
}
#contact .contact-tel {
	font: 300 2.5rem/1em 'Noto Sans JP';
	text-decoration: none;
}

#offices .contact-container {
	color: #333;
}
#offices h3 {
	color: #172a88;
	font: 500 1.5rem/1rem 'Noto Sans JP', sans-serif;
	margin-bottom: 1rem;
}

/* PRIVACY POLICY */
#privacypolicy h4 {
	color: #172a88;
}

/* FOOTER */
.copyright {
	text-align: center;
	font: 300 1rem/1.5rem 'Noto Sans JP', sans-serif;
}
.copyright .footer-logo {
	width: 100px;
}
.copyright h5 {
	font-size: 0.8rem;
	font-weight: normal;
	color: white;
	text-decoration: none;
}
.copyright p,
.copyright a {
	color: white;
	text-decoration: none;
	font: 300 0.8rem/1.5rem 'Noto Sans JP', sans-serif;
}
.copyright .fab {
	margin-right: 1rem;
	margin-left: 1rem;
	color: white;
	font-size: 3rem;
	transition: all 0.2s;
}
.copyright .fab:hover {
	color: #777777;
}
.copyright ul {
	color: white;
	font-weight: bold;
}
.copyright .footer-nav {
	display: none;
}

/* BACK TO TOP */
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 12px;
	bottom: 12px;
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 30px;
	background: #3b363c url("../images/up-arrow.png") no-repeat center 47%;
	background-size: 18px 18px;
	text-indent: -9999px;
}
a:hover.back-to-top {
	background-color: #000000;
}


/* ======================================================= */
/* ======================================================= */
/* Min-width 768px ======================================*/
/* ======================================================= */
/* ======================================================= */



@media (min-width: 768px) {

	.navbar {
		padding-top: 1.5rem;
		background-color: transparent;
		box-shadow: none;
		transition: all 0.2s;
	}

	.navbar.top-nav-collapse {
		padding-top: 0rem;
		padding-bottom: 0rem;
	}
	.navbar .navbar-brand {
		font: 800 1.25rem/1em 'Noto Sans JP', sans-serif;
		color: white;
	}
	.navbar .navbar-toggler {
		color:rgba(255, 255, 255, 0.9);
	}
	.navbar.colored .navbar-toggler {
		color: rgba(23, 42, 136, 0.9);
	}
	.navbar.top-nav-collapse .navbar-toggler {
		color: rgba(23, 42, 136, 0.9);
	}

	/* HEADER */
	.header .text-container {
		padding-top: 15rem;
		padding-bottom: 15rem;
	}
	.header .notice {
		position: absolute;
		top: 10em;
	}
	.header .notice a {
		font-size: 1em;
	}
		.header h2 {
		width: 45rem;
		margin-right: auto;
		margin-left: auto;
		font-size: 2.125rem;
		line-height: 2.875rem;
	}
	.header .text-container .logo-container {
		width: 200px;
	}

	/* DEIGEST */
	.deigest_container {
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
	.deigest_container .content p {
		font-size: 1.1rem;
		line-height: 1.7em;
	}

	/* SERIVES */
	#header.services {
		background: url("../images/header-bg-services.jpg") #3b363c;
		background-size: cover;
		background-position-x: 75%;
		background-position-y: center;
	}

	/* FORM */
	.form-1 .right-wrapper .form-container {
		margin-left: 1rem;
		margin-right: 1rem;
		padding-top: 6rem;
		padding-bottom: 4rem;
	}
	.form-1 .right-wrapper .form-container form {
		margin-left: 1rem;
		margin-right: 1rem;
	}
	
	/* FOOTER */
	.copyright h5 {
		font-size: 1rem;
	}
	.copyright p {
		font-size: 1rem;
	}
	.copyright .footer-logo {
		width: 120px;
	}
	.copyright .footer-nav {
		display: block;
	}	

}
/* end of min-width 768px */



/* ======================================================= */
/* ======================================================= */
/* Min-width 992px ======================================*/
/* ======================================================= */
/* ======================================================= */



@media (min-width: 992px) {
	
	/* General Styles */
	.h1-large {
		font-size: 3.5rem;
		line-height: 3.375rem;
	}

	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

	.p-heading {
		width: 42.5rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */


	/* Navigation */
	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}
	.offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}
	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}
	.navbar .nav-item .nav-link {
		padding-right: 0.625rem;
		padding-left: 0.625rem;
		color: white;
		text-shadow: 0 0 5px #000000;
	}
	.navbar.colored .nav-item .nav-link {
		padding-right: 0.625rem;
		padding-left: 0.625rem;
		color: #172a88;
		text-shadow: 0 0 5px white;
	}
	.navbar .nav-item .nav-link:hover,
	.navbar .nav-item .nav-link.active {
		color: #b4b4b4;
	}
	.navbar-dark.top-nav-collapse .navbar-brand,
	.navbar.top-nav-collapse .nav-item .nav-link {
		color: #172a88;
		text-shadow: none;
	}
	.offcanvas-collapse {
		background-image: none;
	}

	/* Services */
	.basic-1 .services-container {
		display: flex;
		align-items: flex-start;
	}
	.basic-1 .services-text {
		flex: 1;
		margin-left: 2rem;
	}

	/* MESSAGES */
	.messages-container {
		padding-left: 5rem;
		padding-right: 5rem;
	}	

	/* Details 1 */
	.basic-2 .text-container {
		width: 720px;
	}	
	.basic-2 .image-container {
		right: -100px;
	}

	/* Details 2 */
	.basic-3 .text-container {
		width: 720px;
		margin-right: 0;
		margin-left: auto;
	}	
	.basic-3 .image-container {
		left: -100px;
	}

	.form-1 .left-wrapper .text-container {
		margin-left: 1rem;
		margin-right: 1rem;
	}
	.form-1 .right-wrapper .form-container {
		margin-left: 1rem;
		margin-right: 1rem;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.form-1 .right-wrapper .form-container form {
		margin-left: 1rem;
		margin-right: 1rem;
	}
	#privacypolicy .content-container {
		margin: 3rem 10rem 3rem;
	}

	/* Copyright */
	.copyright p {
		margin-bottom: 0;
	}

}
/* end of min-width 992px */



/* ======================================================= */
/* ======================================================= */
/* Min-width 1200px ====================================== */
/* ======================================================= */
/* ======================================================= */



@media (min-width: 1200px) {

	/* General Styles */
	.h1-large {
		font-size: 4.5rem;
	}
	/* end of general styles */

	
	/* Navigation */
	.navbar .container {
		max-width: 100%;
		padding-right: 1.5rem;
		padding-left: 1.5rem;
	}
	/* end of navigation */


	/* Header */
	
	.header h2 {
		width: 40rem;
	}

	/* SERVICES */
	#services .services-icon img {
		width: 80px;
	}


	/* Details 1 */
	.basic-2 {
		padding-top: 17rem;
		padding-bottom: 13rem;
	}

	.basic-2 .text-container {
		width: 640px;
		margin-left: 4rem;
	}

	.basic-2 .image-container {
		top: -145px;
		right: 60px;
		width: 500px;
	}
	/* end of details 1 */


	/* Details 2 */
	.basic-3 {
		padding-top: 15rem;
		padding-bottom: 18rem;
	}

	.basic-3 .text-container {
		width: 640px;
		margin-right: 4rem;
	}

	.basic-3 .image-container {
		top: -145px;
		left: 60px;
		width: 500px;
	}
	/* end of details 2 */

	/* CONTACT */
	.form-1 .right-wrapper .form-container {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		padding: 0;
	}
	.form-1 .right-wrapper .form-container form {
		width: 40rem;
		margin-right: auto;
		margin-left: auto;
	}
	
	/* PRIVACY POLICY */
	#privacypolicy .content-container {
		margin: 3rem 5rem 3rem;
	}
	.copyright .credit {
		margin-top: 3rem;
	}
}
/* end of min-width 1200px */