/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Header
- Facilities
- Introduction
- Project 1
- Project 2
- Details Modal
- Project 3
- Process
- Services
- About
- Testimonials
- Team
- Contact
- Footer
- Copyright
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds - light gray #f7f9fd
- Buttons, icons - green #7dc22b
- Headings text - black #2b2b4f
- Body text - dark gray #53575a
******************************************/


/**************************/
/*     General Styles     */
/**************************/
body,
html {
    width: 100%;
	height: 100%;
}

body, p {
	color: #53575a;
	font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

h1 {
	color: #2b2b4f;
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 3.25rem;
	font-family: "Poppins"
}

h2 {
	color: #2b2b4f;
	font-weight: 600;
	font-size: 2rem;
	line-height: 2.5rem;
	font-family: "Poppins"
}

h3 {
	color: #2b2b4f;
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 2.25rem;
	font-family: "Poppins"
}

h4 {
	color: #2b2b4f;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2rem;
	font-family: "Poppins"
}

h5 {
	color: #2b2b4f;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.625rem;
	font-family: "Poppins"
}

h6 {
	color: #2b2b4f;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.375rem;
	font-family: "Poppins"
}

.p-large {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.p-small {
	font-size: 0.875rem;
	line-height: 1.5rem;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-family: "Poppins"
}

.li-space-lg li {
	margin-bottom: 0.5rem;
}

a {
	color: #53575a;
	text-decoration: underline;
}

a:hover {
	color: #53575a;
	text-decoration: underline;
}

.no-line {
	text-decoration: none;
}

.no-line:hover {
	text-decoration: none;
}

.read-more {
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5rem;
}

.read-more .fas {
	margin-left: 0.625rem;
	font-size: 1rem;
	vertical-align: -8%;
}

.green {
	color: #334BFF;
}

.bg-gray {
	background-color: #D0D3D4;
}

.bg-dark-blue {
	background-color: #0b0433;
}

.center {
  margin: auto;
  width: 88%;
}

.bg-blue{
	background-color: #2551E0;
}

.bg-yellow{
	background-color: #FFBF00;
}

.bg-red{
	background-color: #F93939;
}

.hr-heading {
	display: block;
	width: 5rem;
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
	border: 1px solid #ffffff;
	background-color: #2b2b4f;
	opacity: 1;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #FF3333;
	border-radius: 4px;
	background-color: #FF3333;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	background-color: transparent;
	color: #FF3333; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #FFC300;
	border-radius: 4px;
	background-color: #FFC300;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color: #FFC300; /* needs to stay here because of the color property of a tag */
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.375rem 2.25rem 1.375rem 2.25rem;
	border: 1px solid #2b2b4f;
	border-radius: 4px;
	background-color: transparent;
	color: #2b2b4f;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	background-color: #2b2b4f;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.625rem 2.625rem 1.625rem 2.625rem;
	border: 1px solid #2b2b4f;
	border-radius: 4px;
	background-color: transparent;
	color: #2b2b4f;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	background-color: #2b2b4f;
	color: #ffffff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.5rem 1rem 1.5rem;
	border: 1px solid #2b2b4f;
	border-radius: 4px;
	background-color: transparent;
	color: #2b2b4f;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #2b2b4f;
	color: #ffffff;
	text-decoration: none;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.label-control {
	position: absolute;
	top: 0.875rem;
	left: 1.5rem;
	color: #7d838a;
	opacity: 1;
	font-size: 0.875rem;
	line-height: 1.375rem;
	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: 700;
}

.form-control-input,
.form-control-select {
	display: block; /* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.125rem;
	padding-bottom: 0.125rem;
	padding-left: 1.5rem;
	border: 1px solid #cbcbd1;
	background-color: #ffffff;
	color: #6b747b;
	font-size: 0.875rem;
	line-height: 1.875rem;
	transition: all 0.2s;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3.25rem;
	color: #7d838a;
}

select {
    /* you should keep these first rules in place to maintain cross-browser behavior */
    -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; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 14rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.5rem;
	padding-left: 1.3125rem;
	border: 1px solid #cbcbd1;
	background-color: #ffffff;
	color: #6b747b;
	font-size: 0.875rem;
	line-height: 1.5rem;
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.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 #c2337b;
	border-radius: 32px;
	background-color: #c2337b;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 1px solid #000000;
	background-color: transparent;
	color: #000000;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	background-color: #2b2b4f;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
    width: 90px;
	height: 30px;
}

.navbar .logo-text {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 1rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 3.25rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #2b2b4f;
	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: #eeeeee;
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
	color: #FFC300;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
	}
}

.navbar .dropdown-menu {
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	border: none;
	background-color: #2b2b4f;
}

.navbar .dropdown-item {
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	color: #eeeeee;
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 0.875rem;
	text-decoration: none;
}

.navbar .dropdown-item:hover {
	background-color: #2b2b4f;
	color: #FFC300;
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.5rem auto 0.5rem auto;
	border: none;
	background-color: #525296;
}
/* end of dropdown menu */

/* Fade-move Animation For 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 lightbox - magnific popup */

.navbar .fa-stack {
	width: 2em;
	margin-right: 0.25rem;
	font-size: 0.75rem;
}

.navbar .fa-stack-2x {
	color: #FFC300;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: #ffffff;
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: #FFC300;
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1rem;
}

/*****************/
/*    Header     */
/*****************/
.header {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 37.5rem;
	text-align: center;
}

.header .swiper-container {
	position: absolute;
	z-index: 0;
	/* Necessary for proper display of slides */
	width: 100%;
	height: 100%;
}

.header{
	background: linear-gradient(to bottom right, rgba(145, 74, 218, 0), rgba(145, 74, 218, 0)), url('image/offshore.JPG') center center no-repeat;
	background-size: cover;
}

.header .text-container {
	z-index: 1;
	max-width: 31.875rem;
	margin-top: 2rem;
	margin-right: 1rem;
	margin-left: 1rem;
	padding: 1.75rem 2.5rem;
	border-radius: 0.25rem;
	background-color: rgba(0, 0, 0, 0.5);
}

.header h1 {
	margin-bottom: 1.75rem;
	color: #ffffff;
}

.header .btn-solid-lg,
.header .btn-outline-lg {
	margin-right: 0.125rem;
	margin-bottom: 1rem;
	margin-left: 0.125rem;
}

.header .btn-solid-lg {
	border: 1px solid #1ebbce;
	background-color: #1ebbce;
	color: #ffffff;
}

.header .btn-solid-lg:hover {
	border: 1px solid #ffffff;
	background-color: transparent;
	color: #ffffff;
}

.header .btn-outline-lg {
	border: 1px solid #ffffff;
	color: #ffffff;
}

.header .btn-outline-lg:hover {
	border: 1px solid #ffffff;
	background-color: #ffffff;
	color: #1ebbce;
}

/*********************/
/*    Facilities     */
/*********************/
.tabs {
	padding-top: 7rem;
	padding-bottom: 7.5rem;
}

.tabs h2 {
	margin-bottom: 0.75rem;
	color: #ffffff;
	text-align: center;
}

.tabs .p-heading {
	margin-bottom: 3.75rem;
	color: #ffffff;
	text-align: center;
}

/* Tabs Links */
.tabs .nav-tabs {
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
	border: none;
	background-color: #fbfbfb;
}

.tabs .nav-tabs .nav-item {
	width: 100%;
	text-align: center;
}

.tabs .nav-tabs .nav-item .nav-links {
	padding-top: 0.375rem;
	padding-bottom: 0.375rem;
	border: none;
	border-radius: 0.125rem;
	font-size: 0.875rem;
	text-decoration: none;
}

.tabs .nav-tabs .nav-item .nav-links .fas {
	display: inline-block;
	margin-right: 0.5rem;
	color: #1ebbce;
}

.tabs .nav-tabs .nav-item .nav-links span {
	color: black;
	transition: all 0.2s ease;
}

.tabs .nav-tabs .nav-item .nav-links:hover,
.tabs .nav-tabs .nav-item .nav-links.active {
	background-color: transparent;
}

.tabs .nav-tabs .nav-item .nav-links:hover .fas,
.tabs .nav-tabs .nav-item .nav-links.active .fas,
.tabs .nav-tabs .nav-item .nav-links:hover span,
.tabs .nav-tabs .nav-item .nav-links.active span {
	color: #1F618D ;
}
/* end of tabs links */

.tabs .tab-content {
	padding: 1.5rem 1.25rem 2.625rem 1.25rem;
	background-color: #fbfbfb;
}

.tabs h3 {
	margin-bottom: 1rem;
}

.tabs .btn-solid-reg,
.tabs .btn-outline-reg {
	margin-top: 0.375rem;
	margin-right: 0.375rem;
}

.tabs .list-unstyled .fas {
	color: #15aabf;
	font-size: 0.375rem;
	line-height: 1.75rem;
}

.tabs .list-unstyled .media-body {
	margin-left: 0.5rem;
}

/* Tab 1 */
.tabs #tab-1 .image-container {
	text-align: center;
}

.tabs #tab-1 .text-container {
	margin-top: 2.5rem;
}

/* Tab 2 */
.tabs #tab-2 .text-container {
	margin-top: 2.5rem;
}

.tabs #tab-2 .image-container {
	text-align: center;
}

/* Tab 3 */
.tabs #tab-3 .image-container {
	text-align: center;
}

.tabs #tab-3 .text-container {
	margin-top: 2.5rem;
}

/* Tab 4 */
.tabs #tab-4 .text-container {
	margin-top: 2.5rem;
}

.tabs #tab-4 .image-container {
	text-align: center;
}

/* Tab 5 */
.tabs #tab-5 .image-container {
	text-align: center;
}

.tabs #tab-5 .text-container {
	margin-top: 2.5rem;
}

/* Tab 6 */
.tabs #tab-6 .text-container {
	margin-top: 2,5rem;
}

.tabs #tab-6 .image-container {
	text-align: center;
}


/*************************/
/*         Details 1     */
/*************************/
.accordion {
	background: linear-gradient(to bottom right, #0A4382 ,#F40C0C );
}

.accordion .area-1 {
	padding-top: 9.5rem;
	padding-bottom: 9rem;
}

.accordion .accordion-container {
	max-width: 90%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 6.375rem;
	padding-bottom: 1.5rem;
}

.accordion h2 {
	margin-bottom: 1.625rem;
	color: #F5ED06;
}

.accordion .item {
	margin-bottom: 2rem;
}

.accordion h4 {
	margin-bottom: 0;
}

.accordion span[aria-expanded="true"] .circle-numbering,
.accordion span[aria-expanded="false"] .circle-numbering {
	display: inline-block;
	width: 2.25rem;
	height: 2.25rem;
	margin-right: 0.875rem;
	border: 0.125rem solid #F5ED06;
	border-radius: 50%;
	background-color: #F0EA47;
	color: #fff;
	font: 700 1rem/2.125rem "Montserrat", sans-serif;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	transition: all 0.2s ease;
}

.accordion span[aria-expanded="false"] .circle-numbering {
	border: 0.125rem solid #F5ED06;
	background-color: transparent;
	color: #F5ED06;
}

.accordion .item:hover span[aria-expanded="false"] .circle-numbering {
	border: 0.125rem solid #FFF ;
	color: #FFF ;
}

.accordion .accordion-title {
	display: inline-block;
	width: 70%;
	margin-top: 0.125rem;
	margin-bottom: 0.25rem;
	color: #FFF;
	font: 700 1.25rem/1.75rem "Montserrat", sans-serif;
	vertical-align: middle;
	cursor: pointer;
	transition: all 0.2s ease;
}

.accordion .item:hover .accordion-title {
	color: #FFF;
}

.accordion span[aria-expanded="true"] .accordion-title {
	color: #FFF;
}

.accordion .accordion-body {
	margin-left: 3.125rem;
	color: #fff;
}

.accordion .fas {
	margin-bottom: 1.75rem;
	color: #F5ED06;
	font-size: 4rem;
}

.accordion .card-image {
	text-align: center;
}




/************************/
/*     Introduction     */
/************************/
.basic-1 {
	padding-top: 9.5rem;
	padding-bottom: 9rem;
	text-align:center
}

.basic-1 h1 {
	margin-bottom: 2.5rem;
}

.basic-1 h2 {
	margin-bottom: 1.875rem;
}

.basic-1 p {
	margin-bottom: 2rem;
}

.basic-1 .hr-heading {
	background-color: #3433FF;
	margin-right: auto;
	margin-bottom: 4.5rem;
	margin-left: auto;
}


/********************/
/*     Projects     */
/********************/
.slider-1 {
	padding-top: 3rem;
	padding-bottom: 6rem;
}

.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	position: static;
	width: 86%;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
	width: 18px;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23505c67'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23505c67'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .image-container {
	margin-bottom: 3rem;
}

.slider-1 h3 {
	margin-bottom: 1rem;
}

.slider-1 .testimonial-author {
	color: #000000;
}

.slider-1 .hr-heading {
	background-color: #3433FF;
	margin-right: auto;
	margin-bottom: 4.5rem;
	margin-left: auto;
}

.slider-1 .title-container {
	text-align: center;
}

.slider-1 .image-container img{
	border-radius: 3rem;
	border-style: double;
	border-color: #1A5276  ;
	border-width: 0.3rem;
}


/*********************/
/*     Project 1     */
/*********************/
/*.basic-2{
	padding-top: 15rem;
	padding-bottom: 8rem;
	background: url('{{ asset("website/resources/about/image/process-background.jpg") }}');
}*/

.basic-2 .image-area {
	margin-right: auto;
	margin-left: auto;
}

.basic-2 .text-area {
	width: 100%;
	padding: 0.075rem 1rem 2rem 1rem;
}

.basic-2 .text-container {
	max-width: 610px;
	margin-right: auto;
	margin-left: auto;
}

.basic-2 .hr-heading {
	display: inline-block;
	margin-top: 0.25rem;
	margin-bottom: 1rem;
}

.basic-2 p {
	margin-bottom: 1.375rem;
}


/*********************/
/*     Project 2     */
/*********************/
/* .basic-3 { */
/*	padding-top: 10rem;*/
	/*padding-bottom: 10rem;*/
/*}*/

/*!* .basic-3 .text-container{ *!*/
/*	padding-bottom: 12rem;*/
/*}*/

.basic-3 h2 {
	margin-bottom: 1.875rem;
}

.basic-3 p {
	margin-bottom: 2rem;
}

.basic-3 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.basic-3 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}


/*********************/
/*     Resources     */
/*********************/
.basic-4 {
	padding-top: 2rem;
	padding-bottom: 5.375rem;
	background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../image/spices.jpg') center center no-repeat;
	background-size: cover;
}

.basic-4 .resource-container {
	margin-bottom: 4rem;
	padding: 1.5rem 1.125rem 1.5rem 1.125rem;
	border-radius: 4px;
	background-color: #3a3458;
}

.basic-4 img {
	margin-bottom: 1.75rem;
}

.basic-4 .resource-container p {
	margin-bottom: 0;
}

.basic-4 .text-container h4 {
	color: #fff;
}

.basic-4 .text-container p {
	color: #fff;
}

.basic-4 .p-heading {
	margin-bottom: 3.75rem;
	color: #ffffff;
	text-align: center;
}

.basic-4 .h-heading {
	margin-bottom: 1rem;
	color: #ffffff;
	text-align: center;
}


/*******************/
/*     Process     */
/*******************/
.basic-5 {
	padding-top: 9.5rem;
	padding-bottom: 9rem;
	background: url('../images/process-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}

.basic-5 h2 {
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.basic-5 .hr-heading {
	background-color: #ffffff;
	margin-right: auto;
	margin-bottom: 4.5rem;
	margin-left: auto;
}

.basic-5 .step-container {
	margin-bottom: 2.5rem;
}

.basic-5 .step {
	display: block;
	margin-bottom: 1.5rem;
	padding: 1.75rem 3.25rem;
	border: 1px solid #ffffff;
	border-radius: 4px;
	color: #ffffff;
	font-size: 2rem;
}

.basic-5 .fas {
	display: none;
}

.basic-5 p {
	color: #ffffff;
	opacity: 0.9;
}

/*****************/
/*     About     */
/*****************/
.basic-6 {
	padding-top: 5rem;
	padding-bottom: 10rem;
}

.basic-6 .text-container {
	padding: 2.5rem 1.5rem 1.5rem 1.5rem;
}

.basic-6 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.basic-6 .list-unstyled .media-body {
	margin-left: 0.5rem;
}


/************************/
/*     12. Projects     */
/************************/
.filter {
	padding-top: 2.5rem;
	padding-bottom: 3rem;
}

.filter .section-title {
	margin-bottom: 0.5rem;
}

.filter h2,
.filter .section-title {
	text-align: center;
}

.filter h2 {
	margin-bottom: 3.25rem;
}

.filter .button-group {
	text-align: center;
}

.filter .button-group a {
	display: inline-block;
	margin-right: 0.1875rem;
	margin-bottom: 0.5rem;
	margin-left: 0.1875rem;
	padding: 0.3125rem 1.375rem 0.25rem 1.375rem;
	border-radius: 0.25rem;
	background-color: #0D48AC ;
	color: #ffffff;
	font: 700 0.75rem/1.25rem "Montserrat", sans-serif;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration:none;
}

.filter .button-group a:hover {
	background-color: #F51907  ;
	color: #fff;
}

.filter .button-group a.button.is-checked {
	background-color: #F51907  ;
	color: #fff;
}

.filter .grid {
	margin-top: 1.25rem;
	border-radius: 0.375rem;
}

/* Hover Animation */
.filter .element-item {
	position: relative;
	float: left;
	overflow: hidden;
	width: 50%;
	background-color: #000; /* to hide 1px white margin in IE */
}

.filter .element-item img {
	max-width: 100%;
	margin: 0;
	transition: all 0.3s;
}

.filter .element-item:hover img {
	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}
/* end of hover animation */

.filter .element-item .element-item-overlay {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 1;
	text-align: center;
	transition: all 0.3s;
}

.filter .element-item .element-item-overlay span {
	position: absolute;
	z-index: 3;
	top: 42%;
	right: 0;
	left: 0;
	color: #fff;
	font: 700 1.125rem/1.625rem "Montserrat", sans-serif;
}


/**********************************/
/*     13. Project Lightboxes     */
/**********************************/
.lightbox-basic {
	position: relative;
	max-width: 62.5rem;
	margin: 2.5rem auto;
	padding: 1.5625rem;
	border-radius: 0.25rem;
	background: #fff;
	text-align: left;
}

.lightbox-basic img {
	margin-right: auto;
	margin-bottom: 2rem;
	margin-left: auto;
	border-radius: 0.25rem;
}

.lightbox-basic .line-heading {
	width: 3rem;
	height: 1px;
	margin-top: 0;
	margin-bottom: 0.625rem;
	margin-left: 0;
	border: none;
	background-color: #14bf98;
}

.lightbox-basic h6 {
	margin-bottom: 2rem;
}

.lightbox-basic .testimonial-container {
	margin-top: 1.75rem;
	margin-bottom: 2.125rem;
	padding: 1.125rem 1.5rem 1.125rem 1.5rem;
	border-radius: 0.25rem;
	background-color: #fbfbfb;
}

.lightbox-basic .testimonial-text {
	margin-bottom: 0.5rem;
}

.lightbox-basic .testimonial-author {
	margin-bottom: 0;
}

.lightbox-basic .btn-solid-reg,
.lightbox-basic .btn-outline-reg {
	margin-right: 0.375rem;
	margin-bottom: 1rem;
}

.lightbox-basic a.mfp-close.as-button {
	position: relative;
	width: auto;
	height: auto;
	margin-right: 0.5rem;
	color: #484a46;
	opacity: 1;
}

.lightbox-basic a.mfp-close.as-button:hover {
	color: #f2f2f2;
}

.lightbox-basic button.mfp-close.x-button {
	position: absolute;
	top: -0.375rem;
	right: -0.375rem;
	width: 2.75rem;
	height: 2.75rem;
}

.lightbox-basic .list-unstyled {
	margin-bottom: 1.5rem;
}

.lightbox-basic .list-unstyled .fas {
	color: #129dd8;
	font-size: 0.75rem;
	line-height: 1.75rem;
}

.lightbox-basic .list-unstyled .media-body {
	margin-left: 0.375rem;
}

/********************/
/*     Services     */
/********************/
.cards-1 {
	padding-top: 9.5rem;
	padding-bottom: 7rem;
}

.cards-1 .h2-heading {
	margin-bottom: 1.125rem;
	text-align: center;
}

.cards-1 .p-heading {
	margin-bottom: 4rem;
	text-align: center;
}

.cards-1 .card {
	margin-left: 3rem;
	margin-bottom: 3rem;
	padding: 3.5rem 1.5rem;
	border: none;
	border-radius: 6px;
}

.cards-1 .card-body {
	padding: 0;
}

.cards-1 .card-icon {
	width: 90px;
	height: 90px;
	margin-bottom: 2rem;
	border-radius: 50%;
	background-color: #7dc22b;
	text-align: center;
}

.cards-1 .card-icon .far,
.cards-1 .card-icon .fas {
	color: #ffffff;
	font-size: 2.125rem;
	line-height: 90px;
}

.cards-1 .card-title {
	margin-bottom: 0.625rem;
}

/*****************/
/*     About     */
/*****************/
.counter {
	padding-top: 9.5rem;
	padding-bottom: 5rem;
	background: url('../images/about-background.jpg') center center no-repeat;
	background-size: cover;
}

.counter h2 {
	margin-bottom: 1.5rem;
	color: #ffffff;
	text-align: center;
}

.counter .hr-heading {
	background-color: #ffffff;
	margin-right: auto;
	margin-bottom: 4.5rem;
	margin-left: auto;
}

.counter .list-unstyled {
	margin-bottom: 6rem;
}

.counter .list-unstyled li {
	margin-bottom: 2.5rem;
}

.counter .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.counter .list-unstyled h5,
.counter .list-unstyled .text {
	color: #ffffff;
}

.counter .list-unstyled .text {
	opacity: 0.9;
}

.counter .counter-container {
	text-align: center;
}

.counter .counter-cell {
	margin-bottom: 5rem;
}

.counter .purecounter {
	margin-bottom: 1.5rem;
	color: #7dc22b;
	font-weight: 600;
	font-size: 6rem;
	line-height: 4rem;
}

.counter .counter-info {
	color: #ffffff;
	font-size: 0.875rem;
	line-height: 1.5rem;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	position: relative;
	padding-top: 9.75rem;
	padding-bottom: 9.75rem;
}

.slider-1 .quotes-decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 240px;
}

.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	position: static;
	width: 86%;
	text-align: center;
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -10px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .testimonial-image {
	width: 120px;
	height: 120px;
	margin-bottom: 2.25rem;
	border-radius: 50%;
}

.slider-1 .testimonial-text {
	margin-bottom: 1.75rem;
	font-size: 1.25rem;
	line-height: 2rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0.25rem;
	color: #2b2b4f;
}

/****************/
/*     Team     */
/****************/
.cards-2 {
	padding-top: 8rem;
	padding-bottom: 4rem;
	text-align: center;
}

.cards-2 .h2-heading {
	margin-bottom: 1.125rem;
}

.cards-2 .p-heading {
	margin-bottom: 3.5rem;
	color: #fff;
}

.cards-2 .h2-heading {
	color: #fff;
}

.cards-2 .card {
	margin-bottom: 4rem;
	padding: 3.25rem 1.5rem 2.125rem 1.5rem;
	border: none;
	border-radius: 6px;
	background-color: #3a3458;
}

.cards-2 .card-image {
	margin-right: auto;
	margin-left: auto;
}


.cards-2 .card-body {
	padding: 0;
}

.cards-2 .card-body h5 {
	color: #fff;
}

.cards-2 .card-title {
	margin-bottom: 0.5rem;
	color: #3dcac8;
}

.cards-2 .card-text {
	margin-bottom: 0.875rem;
}

.cards-2 .fa {
	color: #F2D610;
	font-size: 4rem;
	margin-bottom: 0.875rem;
}

/*******************/
/*     Contact     */
/*******************/
.form-1 {
	padding-top: 9.5rem;
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../image/contactus.jpg') center center no-repeat;
	background-size: cover;
}

.form-1 h2 {
	margin-bottom: 0.75rem;
}

.form-1 h2,
.form-1 .p-heading,
.form-1 .list-unstyled {
	color: #dad5d5;
	text-align: center;
}

.form-1 a {
	color: #dad5d5;
}

.form-1 .p-heading {
	margin-bottom: 0.25rem;
}

.form-1 .list-unstyled {
	margin-bottom: 3.5rem;
}

.form-1 .form-control-input:focus + .label-control,
.form-1 .form-control-input.notEmpty + .label-control {
	color: #dad5d5;
}

.form-1 .label-control {
	color: #dad5d5;
}

.form-1 .form-control-input {
	border: 1px solid #585757;
	background-color: #3a3939;
	color: #dad5d5;
}

.form-1 .form-control-input:hover {
	border-color: #817e7e;
}

.form-1 .form-control-submit-button:hover {
	border: 1px solid #ffffff;
	color: #ffffff;
}


/******************/
/*     Footer     */
/******************/
.footer {
	padding-top: 6.5rem;
	padding-bottom: 2rem;
	background-color: #2b2b4f ;
}

.footer a {
	text-decoration: none;
}

.footer .footer-col {
	margin-bottom: 3rem;
}

.footer h6 {
	margin-bottom: 0.625rem;
	color: #bfc4cd;
}

.footer p,
.footer a,
.footer ul {
	color: #bfc4cd;
}

.footer .li-space-lg li {
	margin-bottom: 0.375rem;
}

.footer .footer-col.third .fa-stack {
	width: 2em;
	margin-bottom: 1.25rem;
	margin-right: 0.375rem;
	font-size: 1.375rem;
}

.footer .footer-col.third .fa-stack .fa-stack-2x {
	color: #4d475c;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack .fa-stack-1x {
    color: #d3caca;
	transition: all 0.2s ease;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-2x {
    color: #FFC300;
}

.footer .footer-col.third .fa-stack:hover .fa-stack-1x {
	color: #ffffff;
}


/*********************/
/*     Copyright     */
/*********************/
.copyright {
	padding-bottom: 1rem;
	background-color: #2b2b4f;
	text-align: center;
}

.copyright p,
.copyright a {
	color: #bfc4cd;
	text-decoration: none;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	position: fixed;
  	z-index: 99;
	bottom: 20px;
	right: 20px;
	display: none;
	width: 52px;
	height: 52px;
	border: none;
	border-radius: 50%;
	outline: none;
	background-color: #323137;
	cursor: pointer;
}

#myBtn:hover {
	background-color: #0f0f11;
}

#myBtn img {
	margin-bottom: 0.25rem;
	margin-left: 0.125rem;
	width: 18px;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: #2b2b4f;
}

.ex-header h1 {
	color: #ffffff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fd;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: #7dc22b;
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}




/*************************/
/*     Media Queries     */
/*************************/
/* Min-width 768px */
@media (min-width: 768px) {

	/* Header */
	.header {
		height: 43.75rem;
	}

	.header .text-container {
		width: 43.125rem;
		max-width: 100%;
		margin-right: 0;
		margin-left: 0;
	}

	.header .btn-solid-lg,
	.header .btn-outline-lg {
		margin-right: 0.25rem;
		margin-left: 0.25rem;
	}
	/* end of header */

	/* Details 2 */
	.basic-2 .text-container {
		max-width: 690px;
	}
	/* end of details 2 */


	/* Contact */
	.form-1 form {
		width: 500px;
		margin-right: auto;
		margin-left: auto;
	}

	.form-1 .list-unstyled li {
		display: inline-block;
		margin-right: 1rem;
	}
	/* end of contact */


	/* Extra Pages */
	.ex-basic-1 .text-box {
		padding: 1.75rem 2rem 0.875rem 2rem;
	}
	/* end of extra pages */

	/* Projects */
	.filter .element-item {
		width: 25%;
	}

	.filter .element-item .element-item-overlay {
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.filter .element-item:hover .element-item-overlay {
		opacity: 1;
	}
	/* end of projects */

	/* Resources */
	.basic-4 .resource-container {
		padding: 1.75rem 1.375rem 1.75rem 1.375rem;
	}
	/* end of resources */
}
/* end of min-width 768px */


/* Min-width 992px */
@media (min-width: 992px) {

	/* General Styles */
	.h2-heading {
		width: 35.25rem;
		margin-right: auto;
		margin-left: auto;
	}

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


	/* Navigation */
	.navbar {
		padding-top: 1.75rem;
		background-color: #2b2b4f;
		box-shadow: none;
		transition: all 0.2s;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: #2b2b4f;
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.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;
	}

	.navbar .dropdown-menu {
		margin-top: 0.25rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
	/* end of navigation */

	/* Header */
	.header {
		height: 50rem;
	}

	.header .text-container {
		width: 48.75rem;
		padding: 2rem 3rem;
	}
	/* end of header */


	/* Details 1 */
	.basic-1 .text-container {
		margin-bottom: 0;
	}
	/* end of details 1 */


	/* Details Lightbox */
	.lightbox-basic {
		padding: 3rem 3rem;
	}

	.lightbox-basic .image-container {
		margin-bottom: 0;
		text-align: left;
	}
	/* end of details lightbox */


	/* Details 3 */
	.basic-3 .text-container {
		margin-bottom: 0;
	}
	/* end of details 3 */


	/* Projects */
	.slider-1 .swiper-container {
		width: 98%;
	}

	.slider-1 .image-container {
		margin-bottom: 0;
	}

	.slider-1 .swiper-button-prev {
		left: -22px;
	}

	.slider-1 .swiper-button-next {
		right: -22px;
	}

	.slider-1 .hr-heading {
	background-color: #3433FF;
	margin-right: auto;
	margin-bottom: 4.5rem;
	margin-left: auto;
	}

	.slider-1 .title-container {
	text-align: center;
    }
	/* end of projects */


	/* About */
	.basic-6 .text-container {
		padding: 2.75rem 2.75rem 2rem 2.75rem;
	}
	/* end of about */


	/* Resources */
	.basic-4 .resource-container {
		display: inline-block;
		width: 454px;
		vertical-align: top;
	}

	.basic-4 .resource-container {
		margin-right: 1rem;
	}
	/* end of resources */


	/* Invitation */
	.basic-7 h4 {
		width: 830px;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of invitation */


	/* Footer */
	.footer .footer-col {
		margin-bottom: 2rem;
	}

	.footer .footer-col.first {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}

	.footer .footer-col.second {
		display: inline-block;
		width: 320px;
		margin-right: 1.75rem;
		vertical-align: top;
	}

	.footer .footer-col.third {
		display: inline-block;
		width: 224px;
		text-align: right;
		vertical-align: top;
	}

	.footer .footer-col.third .fa-stack {
		margin-right: 0;
		margin-left: 0.375rem;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		display: inline-block;
		width: 296px;
		vertical-align: top;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 1rem;
		margin-left: 1rem;
	}
	/* end of extra pages */

	/* Services */
	.cards-1 .card {
		display: inline-block;
		width: 290px;
		vertical-align: top;
	}

	.cards-1 .card:nth-of-type(3n+2) {
		margin-left: 2.5rem;
	}
	/* end of services */

	/* Facilities */
	.tabs .nav-tabs {
		justify-content: center;
		margin-right: auto;
		margin-left: auto;
		padding-top: 1.25rem;
		border: none;
	}

	.tabs .nav-tabs .nav-item {
		width: auto;
		height: auto;
		margin-right: 1rem;
		margin-bottom: 0;
		margin-left: 1rem;
	}

	.tabs .nav-tabs .nav-item .nav-links {
		padding: 0 0 0 0;
		background-color: transparent;
	}

	.tabs .nav-tabs .nav-item .nav-links .fas {
		display: block;
		margin-right: 0;
		margin-bottom: 0.25rem;
		color: #909399;
		font-size: 2rem;
		vertical-align: middle;
		transition: all 0.2s ease;
	}

	.tabs .nav-tabs .nav-item .nav-links span {
		color: black;
		transition: all 0.2s ease;
	}

	.tabs .nav-tabs .nav-item .nav-links:hover,
	.tabs .nav-tabs .nav-item .nav-links.active {
		background-color: transparent;
	}

	.tabs .nav-tabs .nav-item .nav-links:hover .fas,
	.tabs .nav-tabs .nav-item .nav-links.active .fas,
	.tabs .nav-tabs .nav-item .nav-links:hover span,
	.tabs .nav-tabs .nav-item .nav-links.active span {
		color: #1F618D ;
	}

	.tabs .tab-content {
		padding-top: 2.75rem;
		padding-right: 2rem;
		padding-left: 2rem;
	}

	/* Tab 1 */
	.tabs #tab-1 .text-container {
		margin-top: 0;
	}

	/* Tab 2 */
	.tabs #tab-2 .text-container {
		margin-top: 0;
	}

	/* Tab 3 */
	.tabs #tab-3 .text-container {
		margin-top: 0;
	}

	/* Tab 4 */
	.tabs #tab-4 .text-container {
		margin-top: 0;
	}

	/* Tab 5 */
	.tabs #tab-5 .text-container {
		margin-top: 0;
	}

	/* Tab 6 */
	.tabs #tab-6 .text-container {
		margin-top: 0;
	}
	/* end of facilities */

	/* Features */
	.cards-2 .card {
		display: inline-block;
		width: 300px;
		vertical-align: top;
	}

	.cards-2 .card:nth-of-type(3n+2) {
		margin-right: 0.5rem;
		margin-left: 0.5rem;
	}
	/* end of features */
}
/* end of min-width 992px */


/* Min-width 1200px */
@media (min-width: 1200px) {

	/* Navigation */
	.navbar .container {
		max-width: 1430px;
	}

	.navbar .a-heading {
		font-size: 1.5rem;
		font-family: "Poppins"
	}
	/* end of navigation */

	/* Header */
	.header {
		height: 56.25rem;
	}

	.header .text-container {
		margin-top: 0;
		width: 58.5rem;
		padding: 2.5rem 3.5rem;
	}

	.header h1 {
		font-size: 3.75rem;
		line-height: 4.5rem;
	}
	/* end of header */

	/* Details 1 */
	.basic-1 {
		padding-top: 18rem;
		padding-bottom: 12.5rem;
	}

	.basic-1 .text-container {
		margin-top: 3.5rem;
		margin-right: 4rem;
	}

	.basic-1 .image-container {
		margin-left: 1.5rem;
	}
	/* end of details 1 */


	/* Details 2 */
	.basic-2 .image-area {
		position: relative;
		width: 53%;
		text-align: right;
	}

	.basic-2 .image-container {
		position: absolute;
		right: 0;
		bottom: -2rem;
		max-width: 605px;
	}

	.basic-2 .text-area {
		width: 47%;
	}

	.basic-2 .text-container {
		width: 424px;
		margin-left: 4.5rem;
		margin-right: auto;
	}
	/* end of details 2 */


	/* Details 3 */
	.basic-3 {
		padding-top: 12.5rem;
	}

	.basic-3 .text-container {
		margin-top: 3.5rem;
		margin-right: 4rem;
	}

	.basic-3 .image-container {
		margin-left: 1.5rem;
	}
	/* end of details 3 */


	/* Resources */
	.basic-4 .resource-container {
		width: 536px;
	}

	.basic-4 .resource-container img {
		width: 195px;
		margin-right: 0.75rem;
		margin-bottom: 0;
	}

	.basic-4 .resource-container .text-container {
		display: inline-block;
		width: 280px;
		vertical-align: top;
	}

	/* end of resources */


	/* Strengths */
	.basic-5 {
		padding-top: 11rem;
	}

	.basic-5 .list-unstyled {
		width: 850px;
		margin-right: auto;
		margin-left: auto;
	}

	.basic-5 .media .bullet {
		width: 52px;
		font-size: 6rem;
		line-height: 5.25rem;
		text-align: center;
	}

	.basic-5 .media-body {
		margin-left: 1.5rem;
	}
	/* end of strengths */


	/* Projects */
	.slider-1 .image-container {
		margin-right: 2rem;
	}

	.slider-1 .text-container {
		margin-top: 1.75rem;
		margin-left: 2rem;
	}

	.slider-1 .swiper-button-prev {
		left: -36px;
	}

	.slider-1 .swiper-button-next {
		right: -36px;
	}

	.slider-1 .hr-heading {
	background-color: #3433FF;
	margin-right: auto;
	margin-bottom: 4.5rem;
	margin-left: auto;
	}

	.slider-1 .title-container {
	text-align: center;
}
	/* end of projects */


	/* About */
	.basic-6 .text-container {
		position: absolute;
		bottom: 6rem;
		width: 470px;
	}

	.basic-6 .image-container {
		width: 920px;
		margin-right: 0;
		margin-left: auto;
	}
	/* end of about */


	/* Footer */
	.footer .footer-col.first {
		width: 352px;
		margin-right: 6rem;
	}

	.footer .footer-col.second {
		margin-right: 6.5rem;
	}

	.footer .footer-col.third {
		text-align: right;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-cards-1 .card {
		width: 336px;
	}

	.ex-cards-1 .card:nth-of-type(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}
	/* end of extra pages */

	/* Projects */
	.filter .element-item {
		width: 17.3125rem; /* to eliminate grid overflow problem on hard refresh */
		height: 16.875rem;
	}

	.filter .element-item .element-item-overlay span {
		top: 45%;
	}
	/* end of projects */

	/* Details Lightbox */
	.lightbox-basic .image-container {
		margin-right: 1.5rem;
	}
	/* end of details lightbox */

	/* Services */
	.cards-1 .card {
		width: 352px;
		padding: 3.875rem 2.75rem;
	}
	/* end of services */

	/* Facilities */
	/* Tab 1 */
	.tabs #tab-1 .image-container {
		margin-left: 1rem;
		text-align: left;
	}

	.tabs #tab-1 .text-container {
		margin-top: 1.5rem;
		margin-right: 2rem;
		margin-left: 2.5rem;
	}

	/* Tab 2 */
	.tabs #tab-2 .text-container {
		margin-top: 1.5rem;
		margin-right: 2rem;
		margin-left: 2.5rem;
	}

	.tabs #tab-2 .image-container {
		margin-right: 1rem;
		text-align: left;
	}

	/* Tab 3 */
	.tabs #tab-3 .image-container {
		margin-left: 1rem;
		text-align: left;
	}

	.tabs #tab-3 .text-container {
		margin-top: 1.5rem;
		margin-right: 2rem;
		margin-left: 2.5rem;
	}

	/* Tab 4 */
	.tabs #tab-4 .text-container {
		margin-top: 1.5rem;
		margin-right: 2rem;
		margin-left: 2.5rem;
	}

	.tabs #tab-4 .image-container {
		margin-right: 1rem;
		text-align: left;
	}

	/* Tab 5 */
	.tabs #tab-5 .image-container {
		margin-left: 1rem;
		text-align: left;
	}

	.tabs #tab-5 .text-container {
		margin-top: 1.5rem;
		margin-right: 2rem;
		margin-left: 2.5rem;
	}

	/* Tab 6 */
	.tabs #tab-6 .text-container {
		margin-top: 1.5rem;
		margin-right: 2rem;
		margin-left: 2.5rem;
	}

	.tabs #tab-6 .image-container {
		margin-right: 3rem;
		text-align: left;
	}
	/* end of facilities */

	/* Features */
	.cards-2 .card {
		width: 80%;
		padding-right: 2rem;
		padding-left: 2rem;
		padding-top: 1.5rem;
		padding-bottom: 5rem;
	}

	.cards-2 .card:nth-of-type(3n+2) {
		margin-right: 1.75rem;
		margin-left: 1.75rem;
	}
	/* end of features */
}
/* end of min-width 1200px */
