/* ===================================
	Table of Content
====================================== */

/*- Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Banner-Section
  - About-Section
  - Project Section
  - Press-Release-Section
  - Contact-Section
  - StandAlone Page
  - Media queries
*/

/* ===================================
	Fonts
====================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* ===================================
	Scrollbar
====================================== */

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	width: 12px;
	background: white;
	border-left: 0 solid white;
	border-right: 0 solid white;
}

::-webkit-scrollbar-thumb {
	background: #a60317;
	width: 0;
	height: 25%;
	transition: .5s ease;
	cursor: pointer;
}

/* ===================================
    General
====================================== */

body {
	overflow-x: hidden;
	font-family: 'Roboto', sans-serif;
}

a {
	text-decoration: none;
}

.font {
	font-family: 'Montserrat', sans-serif;
}

/*Headings*/
.subheading {
	color: #a60317;
	font-size: 24px;
	text-align: center;
	font-weight: 600;
}

.heading {
	color: #000;
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 80px;
	text-align: center;
}

/*Social Icons*/
.social-icons-simple li {
	display: inline-block;
	padding-left: 8px;
}

.social-icons-simple li:first-child {
	padding-left: 0;
}

.social-icons-simple li a {
	display: block;
	font-size: 16px;
	height: 40px;
	line-height: 42px;
	border: 1px solid transparent;
	text-align: center;
	width: 40px;
	border-radius: 50%;
	position: relative;
	z-index: 1;
	overflow: hidden;
	transition: background-color .5s ease;
	color: #ffffff;
}

.social-icons-simple li.animated-wrap a:hover {
	background-color: transparent;
}

.icon-hovr:hover {
	background-color: #fff;
	color: #a60317;
}

/*Button*/
.btn {
	z-index: 2;
	letter-spacing: .5px;
	border-radius: 0;
	font-weight: 500;
	overflow: hidden;
	position: absolute;
	line-height: inherit;
	display: inline-block;
	color: #202020;
	border: 2px solid transparent;
	text-transform: capitalize;
	transition: all .5s ease !important;
}

.btn.button {
	font-size: 12px !important;
	font-weight: 600;
	color: #202020;
	padding: 9px 27px !important;
	line-height: 1.8em !important;
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
	font-family: 'Montserrat', sans-serif;
}

.btn.btn-rounded {
	border-radius: 50px;
}

.btn.white-btn {
	background: transparent;
	border-color: #fff;
	color: #fff;
}

.btn.red-btn {
	background: #fff;
	border-color: #a60317;
	color: #a60317;
}

.center-button {
	text-align: center;
}

/*Button hover*/
.btn.btn-hvr-white:hover {
	background-color: #fff;
	border-color: #fff;
	color: #a60317;
}

.btn.btn-hvr-red:hover {
	background-color: #a60317;
	border-color: #a60317;
	color: #fff;
}

/* ===================================
        Preloader
====================================== */

.center-block {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.loader {
	height: 100%;
	width: 100%;
	position: fixed;
	overflow: hidden;
	z-index: 11111111;
	background: #000;
}

.spinner {
	margin: 100px auto;
	width: 100px;
	height: 100px;
	position: relative;
}

.container1>div,
.container2>div,
.container3>div {
	width: 20px;
	height: 20px;
	border: 6px solid #a60317;
	background-color: #000;
	border-radius: 100%;
	position: absolute;
	animation: bouncedelay 1.2s infinite ease-in-out;
	animation-fill-mode: both;
}

.spinner .spinner-container {
	position: absolute;
	width: 100%;
	height: 100%;
}

.container2 {
	transform: rotateZ(45deg);
}

.circle1 {
	top: 0;
	left: 0;
}

.circle2 {
	top: 0;
	right: 0;
}

.circle3 {
	right: 0;
	bottom: 0;
}

.circle4 {
	left: 0;
	bottom: 0;
}

.container2 .circle1 {
	animation-delay: -1.1s;
}

.container1 .circle2 {
	animation-delay: -0.9s;
}

.container2 .circle2 {
	animation-delay: -0.8s;
}

.container1 .circle3 {
	animation-delay: -0.6s;
}

.container2 .circle3 {
	animation-delay: -0.5s;
}

.container1 .circle4 {
	animation-delay: -0.3s;
}

.container2 .circle4 {
	animation-delay: -0.2s;
}

@-webkit-keyframes bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0.4)
	}
	40% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes bouncedelay {
	0%,
	80%,
	100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.25);
	}
	40% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}

/* ===================================
    Navbar
====================================== */

.navigation-bar {
	width: 100%;
}

.navbar {
	padding: 0;
	z-index: 111;
	height: 90px;
	width: 100%;
	background-color: transparent !important;
}

.navbar-brand img {
	padding-left: 15px;
}

.navbar .navbar-nav .nav-link {
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	padding: 6px 6px;
	margin-left: 30px;
	margin-right: 50px;
	transition: .5s ease;
	border: 2px solid transparent;
	display: block;
}

.navbar .navbar-nav {
	margin-right: 5rem;
}

.navbar .navbar-nav .nav-link.active {
	color: #fff;
	transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:hover {
	transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:last-child {
	margin-right: 0;
}

.navbar .navbar-nav .nav-link:after {
	content: '';
	display: block;
	margin: auto;
	height: 3px;
	width: 0;
	background: transparent;
	transition: width .5s ease, background-color .5s ease;
}

.navbar .navbar-nav .nav-link:hover:after {
	width: 100%;
	background: #fff;
}

.navbar .navbar-nav .button {
	margin-left: 30px;
}

.navbar-fixed-top.scrolled .navbar-brand {
	display: none;
}

.navbar-fixed-top.scrolled .navbar-nav {
	display: none;
}

.navbar-fixed-top.scrolled .sidemenu_btn {
	background-color: #000;
	transition: none;
}
.navbar-fixed-top.scrolled .sidemenu_btn:hover{
	background-color: #a60317;
	transition: all .5s ease;
}

/*side menu button*/
.sidemenu_btn {
	width: 36px;
	padding: 6px;
	right: 18px;
	top: 20px;
	z-index: 999;
	margin-top: 12px;
	margin-left: 16px;
	cursor: pointer;
	position: absolute;
	display: inline-block;
	transition: all .3s linear;
}

.sidemenu_btn span {
	height: 2px;
	width: 100%;
	background: #fff;
	display: block;
	margin: auto;
	transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
	width: 70%;
	background-color: #f1f1f1;
}

.sidemenu_btn:hover span:nth-child(2) {
	background-color: #fff;
}

.sidemenu_btn span:nth-child(2) {
	margin: 4px 0;
}

/* ===================================
    Side Menu
====================================== */

.side-menu {
	top: 0;
	right: 0;
	width: 30%;
	height: 100%;
	z-index: 9999;
	background: #000;
	transform: translate3d(100%, 0, 0);
	transition: transform .5s ease;
	position: fixed;
	overflow: hidden;
}

.side-menu.left {
	left: 0;
	right: auto;
	transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
	width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
	transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
	visibility: visible;
	opacity: 1;
}

.side-menu .navbar-brand {
	margin: 0 0 2.5rem 0;
}


/*Side overlay*/
#close_side_menu {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 1031;
	opacity: 0.7;
	background-color: #000;
	position: fixed;
	transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*side menu image*/
.sidemenu-image {
	position: absolute;
	top: 45px;
}

/*side menu close btn*/
.side-menu .btn-close {
	height: 33px;
	width: 33px;
	top: 30px;
	right: 25px;
	cursor: pointer;
	text-align: center;
	position: absolute;
	display: inline-block;
}

.side-menu.before-side .btn-close {
	display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
	top: 5px;
	left: 16px;
	height: 24px;
	width: 2px;
	content: ' ';
	background: #fff;
	position: absolute;
}

.side-menu .btn-close:before {
	transform: rotate(45deg);
}

.side-menu .btn-close:after {
	transform: rotate(-45deg);
}

.side-menu .btn-close:hover {
	transform: scale(0.9);
	overflow: hidden;
	transition: all .5s ease;
}


/*side menu inner-wrapper*/
.side-menu .inner-wrapper {
	height: 100%;
	padding: 4.5rem 5rem;
	position: relative;
	overflow-y: auto;
	display: flex;
	align-items: center;
	text-align: left;
	flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
	padding: 3.5rem 2.5rem;
}

.side-menu .side-nav {
	margin-bottom: 0;
	margin-top: 50px;
	display: block;
}

.side-nav .navbar-nav .nav-item {
	opacity: 0;
	display: block;
	margin: 15px 0;
	padding: 0 !important;
	transition: all 0.8s ease 500ms;
	transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
	transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
	transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
	transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
	transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
	transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
	transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
	transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
	transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
	transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
	transform: translateY(0);
	opacity: 1;
}

.side-nav .navbar-nav .nav-link {
	display: inline-table;
	color: #fff;
	padding: 2px 0 3px 0 !important;
	font-size: 24px;
	line-height: normal;
	position: relative;
	border-radius: 0;
	text-decoration: none;
}

.side-nav .navbar-nav .nav-link::after {
	content: "";
	left: 0;
	width: 0;
	bottom: 0;
	height: 2px;
	background: #fff;
	overflow: hidden;
	position: absolute;
	display: inline-block;
	transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
	width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
	background: transparent;
}

/*side menu footer */
.side-menu-footer .navbar-nav {
	transform: translateY(0);
}

.side-menu-footer p {
	color: #fff;
	font-size: 14px;
}

.side-menu-footer .banner-icons ul {
	margin-bottom: 0;
}

.side-menu-footer .banner-icons ul li {
	display: inline-block;
}

.side-menu-footer .banner-icons ul li i {
	color: #fff;
}

.side-menu-footer .banner-icons ul li a:hover {
	background-color: #fff;
	transition: all .8s ease;
}

.side-menu-footer .banner-icons ul li a {
	border-radius: 50%;
	color: #fff;
	height: 40px;
	line-height: 38px;
	width: 40px;
	border: 1px solid transparent;
	display: block;
	overflow: hidden;
	text-align: center;
}

.side-menu-footer .banner-icons ul li a:hover i {
	color: #000;
}

/* ===================================
    Banner-Section
====================================== */

.banner-section {
	background-image: url('../img/banner.jpg');
	background-size: cover;
	height: 100vh;
}

.banner-section .rectangle {
	position: absolute;
	top: 0;
	width: 340px;
	height: 610px;
	background-color: #a60317;
}

.banner-section .social-icons-simple {
	margin: 0 0 8px;
}

.banner-section .rectangle .text {
	position: absolute;
	bottom: 60px;
	left: 28px;
}

.banner-section .rectangle .text h2 {
	font-size: 80px;
	color: #fff;
	font-weight: 600;
}

.banner-section .rectangle .text p {
	font-size: 16px;
	padding-right: 130px;
	color: #fff;
	font-weight: 400;
	margin: 0;
}

.banner-section .media i {
	overflow: hidden;
	border-radius: 50%;
	color: #fff;
	height: 30px;
	line-height: 28px;
	width: 30px;
	border: 1px solid #fff;
	text-align: center;
	font-size: 15px;
	transition: .5s ease;
}

.banner-section .media {
	width: 160px;
	height: 50px;
	margin-top: 20px;
	padding: 10px 12px 10px 0;
	background-color: transparent;
}

.banner-section .media .media-body {
	margin-left: 10px;
	color: #fff;
}

.banner-section .media:hover i {
	color: #fff;
	border: 1px solid #000;
	background-color: #000;
	transition: .5s ease;
}

.banner-section .media:hover {
	cursor: pointer;
	transition: .5s ease;
}

/*Social icons*/
.social-icons {
	position: absolute;
	bottom: 0;
	left: 10px;
}

.banner-section .social-icons-simple li a {
	font-size: 15px;
	height: 30px;
	line-height: 31px;
	width: 30px;
}

/* ===================================
     About-Section
====================================== */

.about-section {
	padding-top: 120px;
	padding-bottom: 120px;
	background-color: #fff;
	position: relative;
}

.about-section .heading {
	padding-left: 250px;
	padding-right: 250px;
}

.about-section .text-section {
	margin-top: 60px;
}

.about-section .text-section .heading {
	padding-left: 0;
	padding-right: 0;
	font-size: 36px;
	margin-bottom: 40px;
	text-align: left;
}

.about-section .text-section .text {
	color: #515050;
	font-size: 16px;
	font-weight: 400;
	text-align: justify;
	padding-right: 70px;
}

.about-section .media i {
	overflow: hidden;
	border-radius: 50%;
	color: #a60317;
	height: 30px;
	line-height: 28px;
	width: 30px;
	border: 1px solid #a60317;
	text-align: center;
	font-size: 18px;
	transition: .5s ease;
}

.about-section .media {
	width: 160px;
	height: 50px;
	padding: 10px 12px 10px 0;
	background-color: transparent;
}

.about-section .media .media-body {
	margin-left: 10px;
	color: #a60317;
}

.about-section .media:hover i {
	color: #fff;
	border: 1px solid #a60317;
	background-color: #a60317;
	transition: .5s ease;
}

.about-section .media:hover {
	cursor: pointer;
	transition: .5s ease;
}

.about-section .img-section {
	z-index: 1;
}

.about-section .rectangle {
	top: 120px;
	right: 0;
	width: 350px;
	height: 400px;
	position: absolute;
	background-color: #a60317;
}

/* ===================================
     Project-Section
====================================== */

.project-section {
	position: relative;
}

.project-section .navbar {
	position: absolute;
	background-color: transparent !important;
}

.project-section .rectangle {
	bottom: 0;
	width: 320px;
	height: 400px;
	position: absolute;
	background-color: #a60317;
}

.project-section .rectangle .project-text {
	position: relative;
	left: 50px;
	top: 100px;
}

.project-section .project-text h2 {
	color: #fff;
	font-size: 40px;
	font-weight: 600;
}

.project-section .project-text p {
	font-size: 16px;
	color: #fff;
	padding-right: 90px;
	font-weight: 400;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
	width: 80px;
	height: 40px;
}

/* ===================================
     Press-Release-Section
====================================== */

.media-section {
	padding-top: 120px;
	background-color: #fff;
}

.media-section .heading {
	margin-bottom: 0;
}

.media-section .cards-section {
	position: relative;
	top: 120px;
}

.media-section .cards-section .card-body .card-text {
	color: #515050;
	font-size: 16px;
	font-weight: 400;
}

.media-section .cards-section .card-body .card-title {
	color: #a60317;
	font-size: 24px;
	margin-bottom: 25px;
}

.media-section .cards-section .active {
	background-color: #a60317;
}

.media-section .cards-section .active .card-title {
	color: #fff;
}

.media-section .cards-section .active p {
	color: #fff;
}

.media-section .active .media i {
	color: #fff;
	border: 1px solid #fff;
}

.media-section .active .media .media-body {
	color: #fff;
}

.media-section .cards-section .card {
	z-index: 1;
	margin-left: 40px;
	padding-top: 30px;
	padding-bottom: 30px;
	transition: .3s ease-in;
	border: 1px solid transparent;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.media-section .cards-section .card-body {
	padding: 18px 16px 18px 20px;
	font-weight: 400;
}

.media-section .cards-section .card-body .card-title {
	font-weight: 600;
}

.media-section .media i {
	overflow: hidden;
	border-radius: 50%;
	color: #000;
	height: 30px;
	line-height: 28px;
	width: 30px;
	border: 1px solid #000;
	text-align: center;
	font-size: 15px;
	transition: .5s ease;
}

.media-section .media {
	width: 160px;
	height: 50px;
	padding: 10px 12px 10px 0;
	background-color: transparent;
}

.media-section .media .media-body {
	margin-left: 10px;
	color: #000;
}

.media-section .media:hover i {
	color: #fff;
	border: 1px solid #000;
	background-color: #000;
	transition: .5s ease;
}

.media-section .media:hover {
	cursor: pointer;
	transition: .5s ease;
}

/* ===================================
    Contact Section
====================================== */

.contact-section {
	position: relative;
	background-color: #fff;
	padding-bottom: 120px;
	padding-top: 120px;
}

.contact-section .heading {
	text-align: left;
	margin-bottom: 0;
}

.contact-section .subheading {
	text-align: left;
	margin-bottom: 0;
}

/*Form Section*/
.contact-section .contact-form {
	margin-right: 90px;
	margin-top: 80px;
}

.contact-section .contact-form .form-control {
	border: none;
	padding: 0;
	background: transparent;
	font-weight: normal;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 47px;
	color: #000;
	font-size: 14px;
	transition: border .9s ease;
	border-bottom: 1px solid #202020;
}

.contact-form .form-control::placeholder {
	color: #202020;
}

.form-control:focus {
	color: #202020;
	box-shadow: 0 0 0 0.0rem transparent;
}

.contact-section .button {
	width: 100%;
	margin-left: 14px;
	margin-right: 14px;
}

.contact-section .img-section img {
	position: relative;
	z-index: 1;
	top: 180px;
	left: 50px;
}

.contact-section .rectangle {
	position: absolute;
	top: 120px;
	right: 0;
	width: 450px;
	height: 500px;
	background-color: #a60317;
}

.contact-section .copyright-section {
	padding-top: 120px;
	color: #000;
}

.contact-section .copyright-section i {
	font-size: 25px;
}

.contact-section .copyright-section .column{
	padding-right: 0;
}

/* ===================================
    StandAlone Page
====================================== */

.header {
	background-image: url('../img/header.jpg');
	height: 70vh;
	display: flex;
	background-size: cover;
	align-items: center;
}

.header .rectangle {
	top: 0;
	width: 324px;
	height: 400px;
	position: absolute;
	background-color: #a60317;
}

.header .social-icons-simple {
	margin: 0 0 8px;
}

.header .rectangle .text {
	position: absolute;
	bottom: 55px;
	left: 75px;
}

.header .rectangle .text h2 {
	font-size: 62px;
	color: #fff;
	font-weight: 600;
}

.header .rectangle .text p {
	font-size: 16px;
	padding-right: 130px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 20px;
}

.header .rectangle .text p:last-child {
	margin-bottom: 0;
}

.header .media i {
	overflow: hidden;
	border-radius: 50%;
	color: #fff;
	height: 30px;
	line-height: 28px;
	width: 30px;
	border: 1px solid #fff;
	text-align: center;
	font-size: 15px;
	transition: .5s ease;
}

.header .media {
	width: 160px;
	height: 50px;
	padding: 30px 12px 10px 5px;
	background-color: transparent;
}

.header .media .media-body {
	margin-left: 10px;
	color: #fff;
}

.header .media:hover i {
	color: #fff;
	border: 1px solid #000;
	background-color: #000;
	transition: .5s ease;
}

.header .media:hover {
	cursor: pointer;
	transition: .5s ease;
}

/*Main Page Start*/
.main-page {
	width: 100%;
	color: #000;
	padding-top: 120px;
	padding-bottom: 120px;
}

.main-page .standalone-heading {
	padding-bottom: 100px;
}

.main-page .sub-heading {
	font-size: 16px;
	margin-bottom: 5px;
}

.main-page .heading {
	font-size: 56px;
	margin-bottom: 20px;
}

.main-page .text{
	font-weight: 400;
}

.main-page .image {
	position: relative;
}

.main-page .image img {
	width: 100%;
	height: 100%;
	display: block;
}

.standalone-area .standalone-row {
	margin-bottom: 40px;
}

.standalone-area .standalone-row:last-child {
	margin-bottom: 0;
}

.main-page .standalone-row .text {
	padding-left: 30px;
	text-align: center;
}

.standalone-row:nth-child(2) .text {
	padding-left: 0;
	padding-right: 30px;
}

.main-page .contact-section .copyright-section {
	padding-top: 0;
}

.main-page .contact-section {
	padding-bottom: 0;
}

/* Image Hover*/
.overlay {
	position: absolute;
	transition: all 0.3s ease;
	opacity: 0;
	background-color: #a60317;
}

.hover-effect:hover .overlay {
	opacity: .4;
}

.overlayBottom {
	width: 100%;
	height: 0;
	top: 0;
	right: 0;
	cursor: pointer;
	background-color: #a60317;
}

.hover-effect:hover .overlayBottom {
	height: 100%;
}

/* ===================================
     Media Queries
====================================== */

@media (width: 1920px) {
	/*Banner Section*/
	.banner-section .rectangle {
		width: 400px;
		height: 874px;
	}
	.banner-section .rectangle .text {
		bottom: 140px;
		left: 85px;
	}

	/*About-Section*/
	.about-section img {
		position: relative;
		left: 200px;
	}

	/*Project Section*/
	.project-section .rectangle {
		height: 490px;
	}
	.project-section .rectangle .project-text {
		top: 150px;
	}

	/*Contact Section*/
	.contact-section .img-section img {
		left: 200px;
	}

	/*StandAlone Page*/
	.header .rectangle {
		height: 600px;
		width: 360px;
	}
	.header .rectangle .text {
		bottom: 90px;
	}
}

@media (width: 1600px) {
	/*StandAlone Page*/
	.header .rectangle {
		height: 615px;
		width: 365px;
	}
	.header .rectangle .text {
		bottom: 95px;
	}
}

@media (max-width: 1200px) {
	/*Navbar*/
	.navbar{
		background-color: #000 !important;
	}

	/*Side Menu*/
	.side-menu{
		width: 50%;
	}

	/*Banner Section*/
	.banner-section {
		margin-top: 4.7rem;
		text-align: center;
		background-size: contain;
		background-repeat: no-repeat;
	}
	.banner-section .rectangle {
    	width: 1024px;
    	height: 768px;
    	top: 607px;
    	left: 0;
	}
	.banner-section .media{
		padding: 0;
	}
	.banner-section .rectangle .text p
	{
		padding-right: 0;
	}
	.banner-section .rectangle .text{
       bottom: 274px;
       left: 175px;
	}
	.banner-section .media {
    	width: 100%;
    	display: block;
	}
	.social-icons {
		left: 43%;
	}

	/*About Section*/
	.about-section .rectangle{
		top: 320px;
		width: 390px;
		height: 390px;
	}
	.about-section .heading {
		padding-left: 130px;
		padding-right: 130px;
	}
	.about-section .text-section .heading{
		font-size:30px;
	}

	/*Project Section*/
	.project-section .rectangle{
          left: 125px;
          height: 280px;
	}
	.project-section .rectangle .project-text{
		left: 40px;
        top: 44px;
	}

	/*Contact Section*/
	.contact-section .rectangle{
      top: 242px;
      width: 420px;
      height: 390px;
	}
	.contact-section .img-section img{
		left:0;
	}
	.contact-section .copyright-section .media-body p{
        font-size: 13px;
	}

	/*StandAlone*/
	.header{
		margin-top: 5.6rem;
        margin-bottom: -5.6rem;
		text-align: center;
		background-size: contain;
		background-repeat: no-repeat;
	}
	.header .rectangle {
		width: 1024px;
    	height: 425px;
        top: 462px;
    	left: 0;
	}
	.header .rectangle .text {
		left: 210px;
    	bottom: 135px;
	}
	.header .rectangle .text p{
		padding-right: 0;
	}
	.header .rectangle .text h2 br{
		display: none;
	}
}

@media (max-width: 992px) {
	.heading {
		font-size: 40px;
		margin-bottom: 0;
	}
	/*Navbar*/
	.navbar {
		height: 75px;
	}
	.navbar-fixed-top.scrolled .navbar-brand {
		display: block;
	}
	.sidemenu_btn {
		top: 14px;
	}

	/*Side Menu*/
	.side-menu {
		width: 100%;
	}

	/*Banner Section*/
    .banner-section .rectangle {
		width: 768px;
	    top: 474px;
	    height: 565px;
	    left: 0;
	}
	.banner-section .rectangle .text {
		bottom: 220px;
		left: 82px;
	}
	.banner-section .rectangle .text h2 {
		font-size: 55px;
	}
	.banner-section .media .media-body {
		margin-left: 0;
	}
	.social-icons {
		left: 40%;
	}

	/*About Section*/
	.heading {
		font-size: 40px;
		margin-bottom: 0;
	}
	.about-section .heading {
		padding-left: 0;
		padding-right: 0;
	}
	.about-section {
		padding-bottom: 0;
		margin-bottom: -70px;
	}
	.about-section .text-section .text {
		text-align: center;
		padding-right: 0;
	}
	.about-section .rectangle {
		position: relative;
		top: -340px;
		right: 0;
		width: 715px;
		height: 625px;
	}
	.about-section .img-section img {
		width: 100%;
	}
	.about-section .img-section {
		top: 240px;
	}
	.about-section .text-section .heading {
		font-size: 30px;
		text-align: center;
	}
	.about-section .media {
		display: block;
		width: 100%;
		text-align: center;
		padding: 10px 0 10px 0;
	}
	.about-section .media .media-body {
		margin-left: 0;
	}

	/*Project Section*/
	.project-section .rectangle .project-text {
		left: 0;
	}
	.project-section .rectangle {
		position: relative;
		width: 767px;
		left: -39px;
	}
	.project-section .rectangle .project-text {
		text-align: center;
	}
	.project-section .project-text p {
		padding-right: 0;
	}
	.project-section .project-text h2 {
		font-size: 45px;
	}
	.carousel-control-prev {
		display: none;
	}
	.carousel-control-next {
		display: none;
	}

	/*Media Section*/
	.media-section .cards-section .card {
		margin-left: 0;
		margin-bottom: 30px;
	}
	.media-section .card-body {
		text-align: center;
	}
	.media-section .card .media {
		display: block;
		width: 100%;
	}
	/*Contact Section*/
	.contact-section .img-section img {
		width: 100%;
    	top: 0;
		position: relative;
	}
	.contact-section .contact-form{
		margin-bottom: 80px;
	}
	.contact-section .rectangle {
	  	top: 868px;
	 	width: 720px;
	 	height: 600px;
	    left: 0;
		position: absolute;
	}
	.contact-section .contact-form {
		margin-right: 0;
	}
	.contact-section .subheading {
		text-align: center;
	}
	.contact-section .heading {
		text-align: center;
	}
	.contact-section .media {
		display: block;
		text-align: center;
		margin-bottom: 50px;
	}

	/*StandAlone Page*/
	.header{
		background-size: contain;
		background-repeat: no-repeat;
	 	margin-top: 4.7rem;
	}
	.header .rectangle {
		width: 768px;
	    top: 354px;
	    height: 319px;
	    left: 0;
	}
	.header .rectangle .text {
		bottom: 90px;
	    left: 82px;
	    text-align: center;
	}
	.header .rectangle .text h2 {
		font-size: 50px;
		margin-bottom: 20px;
	}
	.header .rectangle .text h2 br {
		display: none;
	}
	.header .rectangle .text p {
		padding-right: 0;
	}
	.main-page .heading {
		font-size: 45px;
	}
	.main-page p {
		font-size: 14px;
		text-align: center;
	}
	.standalone-area .standalone-row {
		margin-bottom: 80px;
	}
	.main-page .standalone-row .text {
		padding-left: 0;
		margin-bottom: 40px;
	}
	.standalone-row:nth-child(2) .text {
		padding-right: 0;
	}
}

@media (max-width: 767px) {
	.heading{
		font-size:30px;
	}
	.wow {
		visibility: visible !important;
		animation: none !important;
  }
	.side-menu-footer p {
		font-size: 12px;
	}

	/*Banner Section*/
	.banner-section {
		margin-bottom:-7.5rem;
	}
	.banner-section .rectangle {
		width: 375px;
    	top: 270px;
    	height: 442px;
	}
	.banner-section .rectangle .text h2{
		font-size: 40px;
	}
	.social-icons {
		left: 105px;
		bottom: 100px;
	}
	.banner-section .rectangle .text {
		left: 0;
		bottom: 130px;
	}

	/*About Section*/
	.about-section .rectangle {
		top: -140px;
		width: 356px;
		height: 300px;
	}
	.about-section .img-section {
		top: 143px;
	}

	/*Project Section*/
	.project-section{
		padding-top: 70px;
	}
	.project-section .rectangle {
		width: 375px;
		left: -15px;
		background-color: #f1f1f1;
	}
	.project-section .project-text h2 {
		font-size: 35px;
		color:#000;
	}
	.project-section .project-text p{
		color: #000;
	}
	.project-section .btn.white-btn {
		border-color: #a60317;
		color: #a60317;
	}
	.project-section .btn.btn-hvr-white:hover{
		border-color: #a60317;
		background-color: #a60317;
		color: #fff;
	}

	/*Contact Section*/
	.contact-section .rectangle {
		top: 832px;
	    width: 335px;
	    height: 295px;
    	right: 43px;
	}

	/*StandAlone Page*/
	.header{
		margin-bottom: -3.6rem;
	}
	.header .rectangle {
		width: 375px;
    	height: 375px;
		top: 211px;
	}
	.header .rectangle .text {
		left: 0;
		bottom: 105px;
	}
	.header .rectangle .text h2{
		font-size: 38px;
	}
}

@media (max-width: 370px) {
	/*Navbar*/
	.navbar-brand img {
		width: 80px;
	}
	.sidemenu_btn {
		top: 15px;
	}

	/*Side Menu*/
	.side-menu-footer p {
		font-size: 11px;
	}
	.side-menu .side-nav {
		margin-top: 30px;
	}

	/*Banner-Section*/
	.banner-section .rectangle {
		width: 360px;
   		height: 335px;
   		top: 262px;
	}
	.banner-section .rectangle .text {
		bottom: 90px;
	}
	.banner-section .rectangle .text h2{
		font-size: 40px;
	}
	.banner-section .social-icons{
		bottom:40px;
	}

	/*About Section*/
	.about-section .heading {
		font-size: 29px;
	}
	.about-section .text-section .heading {
		font-size: 22px;
	}
	.about-section .rectangle {
		width: 340px;
	}

	/*Project Section*/
	.project-section .rectangle {
		width: 360px;
	}

	/*StandAlone*/
	.header .rectangle {
		width: 360px;
	    height: 300px;
	    top: 262px;
	}
	.header .rectangle .text {
		left: 0;
		bottom: 75px;
	}
	.header .rectangle .text h2 {
		font-size: 33px;
	}
}