/*

00. Default Css
01. Mouse Cursor Dragging Ball
02. Header Css
03. Subpages Page
04. About Page
05. Portfolio Page
06. Contact Page
07. Media Query

*/

/*****************  Default Css  *****************/

* {
	box-sizing: border-box;
}

body {
	margin: 0px;
}

body {
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	font-weight: var(--body-font-weight);
	background: var(--body-background);
	color: var(--body-font-color);
	line-height: 1.5;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
}

#content a,
#content a:hover {
	color: var(--body-link-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--body-heading-font-color);
	line-height: 1.2;
	margin: 0px;
}

h1 {
	font-family: var(--body-heading1-font-family);
	font-size: var(--body-heading1-font-size);
	font-weight: var(--body-heading1-font-weight);
	margin-bottom: 22px;
}

h2 {
	font-family: var(--body-heading2-font-family);
	font-size: var(--body-heading2-font-size);
	font-weight: var(--body-heading2-font-weight);
}

h3 {
	font-family: var(--body-heading3-font-family);
	font-size: var(--body-heading3-font-size);
	font-weight: var(--body-heading3-font-weight);
}

h4 {
	font-family: var(--body-heading4-font-family);
	font-size: var(--body-heading4-font-size);
	font-weight: var(--body-heading4-font-weight);
}

h5 {
	font-family: var(--body-heading5-font-family);
	font-size: var(--body-heading5-font-size);
	font-weight: var(--body-heading5-font-weight);
}

h6 {
	font-family: var(--body-heading6-font-family);
	font-size: var(--body-heading6-font-size);
	font-weight: var(--body-heading6-font-weight);
}

img {
	max-width: 100%;
}

.text_center {
	text-align: center;
}

button {
	background-color: transparent;
	border: 0;
	cursor: pointer;
	outline: none;
}

button#open_offcanvas {
	padding: 0px;
}

.h-100 {
	height: 100%;
}

.bg-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.portfolio-content small {
	font-size: 16px;
}

.site-title {
	background: var(--theme-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

::-webkit-scrollbar {
	width: 0px;
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: transparent;
}

.overflow-hidden {
	overflow: hidden;
}

/*********************** Mouse Cursor Dragging Ball ******************/

.mouseCursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 50%;
	visibility: hidden;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
}

.cursor-outer {
	position: fixed;
	width: 40px;
	height: 40px;
	border: 1px solid;
	border-radius: 50%;
	left: 0;
	top: 0;
	pointer-events: none;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 9999;
	mix-blend-mode: difference;
	transition: all 0.08s ease-out;
	-webkit-transition: all 0.08s ease-out;
	-moz-transition: all 0.08s ease-out;
	-o-transition: all 0.08s ease-out;
	-ms-transition: all 0.08s ease-out;
}

.cursor-inner {
	position: fixed;
	font-size: 0px;
	width: 8px;
	height: 8px;
	background: var(--theme-color);
	border-radius: 50%;
	left: 17px;
	top: 17px;
	pointer-events: none;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 9999;
	mix-blend-mode: difference;
	transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
	margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
	margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
	margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
	margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-ms-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
	margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-outer.active {
	width: 100px;
	height: 100px;
	opacity: 0.9;
	border: 0;
	mix-blend-mode: unset;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.cursor-inner.active {
	background: transparent;
	width: auto;
	height: auto;
	left: 26px;
	top: 33px;
	font-size: 16px;
	mix-blend-mode: unset;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

/*****************  Header Css  *****************/

.bramha_header,
.offcanvas__area {
	background: var(--header-background-color);
}

.bramha_header {
	position: fixed;
	width: 100px;
	max-width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 3;
	border-right: 1px solid #4d4d4d;
}

.bramha_header_in {
	padding: 40px 30px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	height: -webkit-fill-available;
}

.mobile_header {
	display: none;
}

.social_icons {
	padding: 0px;
	margin: 0;
}

.social_icons li a {
	position: relative;
	font-size: 16px;
	line-height: 20px;
	display: inline-block;
	background: linear-gradient(90deg, #ffffff 1.09%, #ffffff 98.21%);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	font-family: var(--body-secondary-font-family);
}

.social_icons li a:hover {
	background: var(--theme-color);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}

.social_icons li a:hover::after {
	content: "";
	background: var(--theme-color);
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0px;
}

.offcanvas__area {
	display: block;
	position: relative;
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 2;
}

.offcanvas__body {
	width: 100%;
	height: 100vh;
}

.offcanvas__body > div {
	float: left;
	height: 100%;
}

.offcanvas__left {
	width: calc(100% - (100% - 100px));
	display: block;
}

.offcanvas__middle {
	width: calc(100% - 650px);
}

.offcanvas__right {
	width: calc(100% - (100% - 550px));
	max-width: 100%;
	padding: 100px 40px 40px 40px;
	text-align: right;
}

.offcanvas__right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.offcanvas__links> * {
	height: 100%;
}

.offcanvas__links ul li {
	font-family: var(--header-font-family);
	font-weight: var(--header-font-weight);
	font-size: var(--header-font-size);
	line-height: 1.2;
}

.offcanvas__links ul li a:hover,
.offcanvas__links ul li.current_page_item a {
	background: var(--heade-font-gradient-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.offcanvas__links ul li a:hover::after,
.offcanvas__links ul li.current_page_item a::after {
	background: var(--heade-font-gradient-color);
}

.social_icons_mobile {
	display: none;
}

.menu-icon {
	width: 40px;
	height: 40px;
	background-image: url(../images/menu-icon.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.menu-icon.active {
	background-image: url(../images/menu-icon-active.png);
}

.offcanvas__contact h3 {
	background: var(--theme-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	margin-bottom: 40px;
	display: inline-block;
}

.offcanvas__contact ul {
	padding: 0;
	margin: 0;
}

.offcanvas__contact ul li {
	display: block;
}

.offcanvas__contact ul li:not(:last-child) {
	margin-bottom: 10px;
}

.offcanvas__links .menu-menu-1-container {
	height: 100%;
}

.offcanvas__links ul {
	padding: 0px;
	margin: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.offcanvas__links ul li {
	border-top: 1px solid #4d4d4d;
	display: block;
	padding: 28.5px 0px 28.5px 50px;
}

.offcanvas__links ul li a:hover {
	position: relative;
	text-decoration: underline;
}

.offcanvas__links ul li a:hover::after {
	content: "";
	width: 100%;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 5px;
}

.offcanvas__links ul li.current_page_item a {
	position: relative;
	text-decoration: underline;
}

.offcanvas__links ul li.current_page_item a::after {
	content: "";
	width: 100%;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 5px;
}

.offcanvas__links ul li:last-child {
	border-bottom: 1px solid #4d4d4d;
}


/****** Homepage ************/

@keyframes typing {
	0% {
		width: 0;
	}

	25% {
		width: 70%;
	}

	48% {
		width: 100%;
	}

	50% {
		width: 100%;
	}

	55% {
		width: 100%;
	}

	75% {
		width: 70%;
	}

	85% {
		width: 30%;
	}

	100% {
		width: 0;
	}
}

.content_main_wrapper {
	width: 100%;
	height: 100vh;
}

.content_main_wrapper > div {
	float: left;
	height: 100%;
}

.content_main_left {
	width: calc(100% - (100% - 100px));
	max-width: 100%;
}

.content_main_middle {
	position: relative;
	width: calc(100% - 650px);
	max-width: 100%;
}

.content_main_right {
	width: calc(100% - (100% - 550px));
	max-width: 100%;
	position: fixed;
	right: 0;
}

.slick-list,
.slick-track {
	height: 100%;
}

.content_main_left_wrapper {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: var(--body-page-background-color);
}

.content_main_left_wrapper_top p {
	margin-top: 5px;
	margin-bottom: 0px;
	position: relative;
	z-index: 1;
}

.content_main_left_wrapper_top small {
	position: relative;
	z-index: 1;
}

.btn_notify {
	position: relative;
	width: 198px;
	height: 198px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid;
	border-radius: 50%;
	text-decoration: none;
	font-family: var(--header-font-family);
	font-size: 16px;
	text-transform: uppercase;
	z-index: 1;
	overflow: hidden;
	border-color: var(--secondary-color);
	color: var(--secondary-color);
	cursor: pointer;
}

.btn_notify::after {
	content: "";
	background-image: url(../images/button-arrow.svg);
	width: 24px;
	height: 24px;
	right: -10px;
	position: relative;
}
.btn_notify:hover:after {
	background-image: url(../images/button-arrow-hover.svg);
}

.btn_notify:hover span {
	width: 350px;
	height: 350px;
	background-color: var(--secondary-color);
}

.btn_notify span {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	left: 0;
	top: 0;
	z-index: -1;
	border-radius: 100%;
	-webkit-transition: all 0.7s;
	transition: all 0.7s;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.btn_notify:hover, .about_year {
	color: var(--primary-color) !important;
}

.notify-form{
	position:fixed;
	width:100%;
	height:100%;
	display:none;
	z-index: 9;
	padding: 0 10px;
	top: 0;
	left: 0;
}
.notify-form .contents_in{
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 9999 !important;
}
.notify-form .contents_in .tagline{
	margin-bottom: 10px;
	display: block;
}
.notify-form .contents_in .site-title{
	margin-bottom: 20px;
	display: inline-block;
}
.notify-form .contents{
	position: relative;
	padding: 40px;
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
	background: linear-gradient(111.34deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
	box-shadow: 0px 40px 40px -20px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	z-index: 9999 !important;
}
.notify-form .close {
	width: 60px;
	height: 60px;
	line-height: 60px;
	position: absolute;
	right: 30px;
	top: -30px;
	font-size: 0px;
	color: #333;
	cursor: pointer;
	background: url(../images/popup-close.png), var(--theme-color);
	text-align: center;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto;
}
.notify-form .submit-btn{
	color: var(--body-link-color);
	width: auto;
	background: transparent;
	border: 0;
	font-family: var(--header-font-family);
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}
.notify-form  .notify_submit_btn{
	position: relative;
	display: inline-block;  
}
.notify-form  .notify_submit_btn p{
	margin: 0;
}
.notify-form .notify_submit_btn::after {
	content: "";
	background-image: url(../images/button-arrow.svg);
	width: 24px;
	height: 24px;
	right: -10px;
	position: absolute;
	left: calc(100%);
	top: calc(50% - 10px);
}
.notify-form .form-control {
	margin-bottom: 26px;
}
.notify_form .wpcf7-not-valid-tip{
	position: unset;
	margin-top: -20px;
	margin-left: 15px;
	font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
	font-size: 16px;
}
.wpcf7-spinner {
	display: unset;
	background-color: transparent;
	position: absolute;
	width: auto;
	padding: 0;
	margin: 0;
}
.datecountdown {
	margin-top: 60px;
	margin-bottom: 100px;
}

.datecountdown ul {
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.datecountdown ul li {
	display: inline-block;
	position: relative;
	z-index: 1;
}

.datecountdown ul li .counter-number {
	position: relative;
	font-family: var(--body-font-family);
	font-size: 80px;
	line-height: 1.2;
	background: var(--theme-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.datecountdown ul li .counter-number::after {
	content: "";
	position: absolute;
	width: 70px;
	height: 2px;
	left: 0;
	bottom: -2px;
	background: var(--secondary-color);
}

.datecountdown ul li .counter-text {
	display: block;
	text-transform: uppercase;
	margin-top: 15px;
	color: var(--secondary-color);
	font-family: var(--body-secondary-font-family);
	font-weight: var(--body-secondary-font-weight);
}

.datecountdown ul li {
	width: 25%;
}

.content_main_middle .video-header video {
	position: absolute;
	width: 100%;
	height: 100vh;
	z-index: -1;
	left: 0;
}

.content_main_middle .video-header iframe {
	position: absolute;
	width: 100%;
	height: 100vh;
	z-index: -1;
	left: 0;
	object-fit: cover;
}

.right_sidebar_slider_content {
	text-align: right;
	padding-right: 40px;
	padding-bottom: 40px;
}

.content_main_right_wrapper .slick-slide {
	display: flex !important;
	justify-content: end;
	align-items: flex-end;
}

.right_sidebar_slider_content p {
	margin-top: 10px;
	margin-bottom: 0;
}

.slider-content .content_main_left_wrapper {
	position: absolute;
	top: 0;
	width: calc(100%);
}

.img-overlay {
	position: relative;
}

.img-overlay::before {
	content: "";
	position: absolute;
	width: 100%;
	left: 0;
	height: 100%;
	z-index: 1;
	opacity: 0.75;
}

.full-bg .content_main_left_wrapper {
	position: absolute;
	top: 0;
	width: calc(100%);
	left: 0;
	padding-left: 150px;
}

.full-header.bramha_header {
	background-color: transparent;
}

.full-bg .content_main_middle {
	position: absolute;
	width: calc(100% - 550px);
	padding-left: 0px;
}

.full-bg.slick-slide {
	width: 100% !important;
}

.content_main_left_wrapper_top h1 {
	width: 0;
	animation: typing 6s steps(20) infinite;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.bg-animation {
	position: absolute;
	z-index: 1;
	width: 100%;
	max-width: 100%;
	right: 0;
	height: 100vh;
	object-fit: cover;
	top: 0;
}

#dots-canvas canvas {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

#moving-background canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.h_sidebar_slider .slick-arrow {
	z-index: 1;
	left: calc(100% - 80px);
	border: 2px dotted;
	padding: 5px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.h_sidebar_slider .slick-prev {
	transform: rotate(90deg);
	top: calc(50% - 80px);
}

.h_sidebar_slider .slick-next {
	transform: rotate(90deg);
	bottom: calc(50% - 80px);
	top: auto;
}

.slick-prev:before,
.slick-next:before {
	opacity: 1 !important;
	font-size: 22px !important;
}

.h_sidebar_slider .slick-dots {
	bottom: auto;
	display: block;
	width: 46px;
	height: 40px;
	padding: 0;
	margin: 0;
	top: calc(50% - 30px);
	left: calc(100% - 68px);
}

.h_sidebar_slider .slick-dots li {
	margin: 0;
	display: none;
}

.h_sidebar_slider .slick-dots li.slick-active {
	display: block;
}

.h_sidebar_slider .slick-dots li button {
	width: 46px;
	height: 40px;
	padding: 5px;
	font-size: 40px;
	line-height: 40px;
	position: relative;
	color: var(--secondary-color) !important;
	font-family: var(--body-secondary-font-family) !important;
}

.h_sidebar_slider .slick-dots li button:before {
	content: "0";
	opacity: 1 !important;
	font-size: 40px;
	line-height: 40px;
	width: 40px;
	height: 40px;
	left: -25px !important;
	top: 5px;
	color: var(--secondary-color) !important;
	font-family: var(--body-secondary-font-family) !important;
}

.content_main_right_wrapper video {
	position: absolute;
	width: 100%;
	height: 100vh;
	left: 0;
	object-fit: cover;
	object-position: center;
}

.slick-dots button[aria-label="1 of 1"] {
	display: none;
}

.h_sidebar_slider .slick-arrow,
.cursor-outer {
	border-color: var(--secondary-color);
}

.cursor-outer.active {
	background-color: var(--primary-color);
}
.dg,
#stats {
	display: none;
}

/********** Subpages Page **************/

.content_main_in {
	padding: 100px 50px;
	height: 100%;
}

.tagline {
	text-transform: uppercase;
	margin-bottom: 10px;
	display: inline-block;
}

.content_main_in .content_desc {
	margin-top: 30px;
}

.content_main_middle.content_main {
	height: auto;
	min-height: 100%;
}

/********** About Page **************/

.content_about_us .heading_box {
	display: grid;
	grid-template-columns: 1fr auto;
}

.about_heading_box .about_award_img {
	width: 170px;
	max-width: 100%;
	height: 100px;
	background-size: auto;
}

.ratio {
	position: relative;
	width: 100%;
}

.ratio-video {
	--bs-aspect-ratio: calc(500px);
}

.ratio::before {
	display: block;
	padding-top: var(--bs-aspect-ratio);
	content: "";
}

.ratio > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page_bg_image {
	background-size: contain;
	background-position: calc(50% - 25%);
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.content_about_us {
	padding-bottom: 90px;
}

.content_about_us .ratio-video {
	margin-top: 95px;
}

.about_year {
	background: var(--theme-color);
	max-width: 100%;
	width: 155px;
	height: 100px;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	top: calc(100%);
	left: calc(100% - 270px);
	padding-left: 15px;
}

.about_year span {
	font-size: 48px;
	line-height: 1.2;
}

.about_story_row {
	display: grid;
	grid-template-columns: 0.4fr 0.5fr 0.3fr;
	grid-gap: 19px;
	padding-top: 80px;
}

.about_story_row > * {
	align-self: center;
}

.story__img-left {
	text-align: right;
}

.story__img-left > img:first-child {
	margin-bottom: 20px;
}

.content_about_team {
	padding-top: 80px;
}

.heading_box {
	margin-bottom: 40px;
}

.about_team_slider .slick-track .about_team_slide {
	margin: 0 9.5px;
}

.about_team_slider .slick-track .about_team_slide:nth-child(even) {
	margin-top: 40px;
}

.about_team_slide .bg-image {
	height: 350px;
	margin-bottom: 10px;
}

.about_team_slide small {
	font-size: 15px;
	text-transform: uppercase;
}

.about_team_slide small,
.cursor-inner.active,
.offcanvas__right,
.right_sidebar_slider_content,
.h_sidebar_slider .slick-dots li button,
.h_sidebar_slider .slick-dots li button:before,
.form-control {
	color: var(--secondary-color);
}

/************* Portfolio Page ***********/

.portfolio-img {
	position: relative;
	width: 100%;
	height: 570px;
	max-width: 100%;
}

.portfolio_list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
	margin-top: 90px;
}

.portfolio-content {
	width: 100%;
	position: absolute;
	bottom: 0;
	background: linear-gradient(
		96.17deg,
		rgba(0, 0, 0, 0.4) 0%,
		rgba(0, 0, 0, 0.2) 100%
	);
	backdrop-filter: blur(5px);
	padding: 30px;
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
}

.portfolio_list_item:hover .portfolio-content {
	opacity: 1;
	visibility: visible;
}

.portfolio-content small {
	text-transform: uppercase;
}

/************ Contact Page ***********/

.contact_details {
	margin-top: 90px;
	margin-bottom: 90px;
	display: flex;
	justify-content: space-between;
}

.contact_details > * {
	width: 33.33%;
}

.contact_details > * h4 {
	display: inline-block;
	margin-bottom: 5px;
}

.contact_form h4 {
	display: inline-block;
	margin-bottom: 30px;
}

.form-control {
	background-color: transparent;
	border: none;
	border-bottom: 2px solid #d9d9d9;
	outline: none;
	font-size: 20px;
	line-height: 24px;
	padding-bottom: 20px;
	margin-bottom: 40px;
	max-width: 100%;
	width: 100%;
}

textarea.form-control {
	height: 100px;
	width: 100%;
	resize: none;
}

.contact-top {
	margin: 0 -15px;
}

.contact_form p {
	margin: 0px;
}

.contact_form .contact-top p {
	display: flex;
	justify-content: space-between;
	max-width: 100%;
}

.contact-top p > * {
	width: 33.33%;
	padding: 0 15px;
}

.contact_form .submit-btn {
	width: 100%;
	height: 100%;
	background-color: transparent;
	border-radius: 50%;
	border: 0;
	padding: 0;
	font-family: var(--header-font-family);
	font-size: 16px;
}

.contact_form .btn_notify::after {
	right: 60px;
}

#btn_wrapper {
	display: inline-block;
}

.wpcf7-not-valid-tip {
	position: absolute;
	bottom: 8px;
	font-size: 16px;
}

.contact_map {
	position: relative;
	padding-bottom: 49.5%;
	margin-top: 100px;
}

.contact_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.contact_form .submit-btn {
	color: var(--secondary-color);
}

.btn_notify:hover .submit-btn {
	color: var(--primary-color);
}

.form-control::-webkit-input-placeholder {
	/* Edge */
	color: var(--secondary-color);
	font-family: var(--body-font-family);
}

.form-control:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--secondary-color);
	font-family: var(--body-font-family);
}

.form-control::placeholder {
	color: var(--secondary-color);
	font-family: var(--body-font-family);
}

/************ Media Query ( Min-Width ) ***********/

@media (min-width: 1441px) {
	.content_main_left_wrapper {
		padding-left: 50px;
	}
	h1 {
		font-size: 90px !important;
	}
}

@media (min-width: 1025px) {
	.datecountdown ul {
		margin-right: 214px;
	}
}
@media (min-width: 769px) {
	.social_icons {
		transform: rotate(180deg);
	}

	.social_icons li {
		transform: rotate(90deg);
	}

	.social_icons li:not(:last-child) {
		margin-bottom: 30px;
	}

	.social_icons li {
		display: block;
	}
}

/************ Media Query ( Max-Width ) ***********/

@media (max-width: 1440px) {
	h1 {
		font-size: 90px;
		line-height: 116px;
	}

	h2 {
		font-size: 40px;
	}

	h3 {
		font-size: 30px;
	}

	.portfolio-content h3 {
		font-size: 28px;
	}

	.offcanvas__links ul li {
		font-size: 55px !important;
	}

	.offcanvas__middle,
	.content_main_middle {
		width: calc(100% - 500px);
	}

	.offcanvas__right,
	.content_main_right {
		width: calc(100% - (100% - 400px));
	}

	.full-bg .content_main_middle {
		width: calc(100% - 400px);
	}

	.content_main_left_wrapper {
		padding: 100px 50px;
	}

	.datecountdown ul li .counter-number {
		font-size: 70px;
	}

	.btn_notify {
		width: 175px;
		height: 175px;
	}

	.ratio-video {
		--bs-aspect-ratio: calc(425px);
	}

	.portfolio-img {
		height: 400px;
	}

	.contact_form .btn_notify::after {
		right: 40px;
	}
	
}
@media (max-width: 1366px) {
	body {
		font-size: 18px;
	}

	.content_main_left_wrapper_bottom {
		margin-top: 20px;
	}

	.datecountdown {
		margin-top: 20px;
		margin-bottom: 55px;
	}

	.btn_notify {
		width: 150px;
		height: 150px;
		font-size: 14px;
	}

	.datecountdown ul li .counter-number {
		font-size: 70px;
	}
}
@media (max-width: 1280px) {
	h1 {
		font-size: 70px !important;
		line-height: 96px;
	}
	h4 {
		font-size: 30px;
	}

	.ratio-video {
		--bs-aspect-ratio: calc(400px);
	}

	.content_about_us .ratio-video,
	.portfolio_list {
		margin-top: 60px;
	}

	.about_year {
		left: calc(100% - 225px);
	}

	.about_story_row,
	.content_about_team {
		padding-top: 60px;
	}

	.contact_details {
		margin-top: 60px;
		margin-bottom: 60px;
	}

	.contact_map {
		margin-top: 80px;
	}

	.portfolio-img {
		height: 375px;
	}
}

@media (max-width: 1180px) {
	h1 {
		font-size: 60px !important;
		line-height: 86px;
	}
	.datecountdown ul li {
		width: 50% !important;
		margin-bottom: 20px;
	}
}
@media (max-width: 1080px) {
	.content_about_us .heading_box {
		grid-template-columns: 1fr;
		grid-gap: 30px;
	}
}
@media (max-width: 1024px) {
	body {
		font-size: 16px;
	}

	h1 {
		font-size: 60px;
		line-height: 86px;
	}

	h2 {
		font-size: 36px;
	}

	h3 {
		font-size: 26px;
	}

	.form-control {
		font-size: 16px;
	}

	.page_bg_image {
		background-position: calc(-30% - 25%);
	}

	.content_main_in,
	.content_main_left_wrapper {
		padding: 80px 30px;
	}

	.offcanvas__contact h3 {
		font-size: 30px;
	}

	.offcanvas__middle,
	.content_main_middle {
		width: calc(100% - 450px);
	}

	.offcanvas__right,
	.content_main_right {
		width: calc(100% - (100% - 350px));
	}

	.full-bg .content_main_middle {
		width: calc(100% - 350px);
	}
	
	.datecountdown ul li .counter-number {
		font-size: 60px;
	}

	.datecountdown ul {
		margin-right: 35px;
	}

	.content_about_us .heading_box {
		grid-template-columns: 1fr;
		grid-gap: 30px;
	}

	.ratio-video {
		--bs-aspect-ratio: calc(300px);
	}

	.content_about_us .ratio-video {
		margin-top: 60px;
	}

	.about_year {
		width: 140px;
		height: 90px;
		left: calc(100% - 170px);
	}

	.about_year span {
		font-size: 38px;
	}

	.about_story_row,
	.content_about_team {
		padding-top: 60px;
	}

	.portfolio_list {
		grid-template-columns: 1fr;
		margin-top: 60px;
	}

	.contact_details {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 35px;
	}

	.contact_details > * {
		width: 100%;
	}

	.contact_details {
		margin-top: 50px;
		margin-bottom: 50px;
	}

	.contact_form .contact-top p {
		display: grid;
		grid-template-columns: 1fr;
	}

	.contact-top p > * {
		width: 100%;
	}

	.content_about_us .ratio-video {
		margin-top: 40px;
	}

	.about_story_row,
	.content_about_team {
		padding-top: 40px;
	}

	.portfolio_list {
		margin-top: 40px;
	}

	.contact_map {
		margin-top: 60px;
	}

	.contact_form .btn_notify::after {
		right: 30px;
	}
}
@media(max-width: 992px){
	h1 {
		font-size: 50px !important;
		line-height: 76px;
	}
}
@media (max-width: 880PX) {
	h1 {
		font-size: 35px !important;
		line-height: 66px;
	}
}
@media (max-width: 800PX) {
	h1 {
		font-size: 35px !important;
		line-height: 61px;
	}
}
@media (max-width: 768px) {
	h1 {
		font-size: 60px !important;
		line-height: 86px;
	}

	#content {
		padding-top: 80px;
	}

	.datecountdown ul li {
		width: 25% !important;
		margin-bottom: 20px;
	}

	.social_icons_mobile {
		display: block !important;
	}

	.mobile_header {
		display: block;
		width: 100%;
		height: auto;
		background: #000 !important;
	}

	.full-bg .content_main_middle {
		padding-left: 0;
		position: relative;
	} 

	.full-bg .content_main_left_wrapper {
		width: 100%;
		padding-left: 20px;
		padding-top: 140px;
	}

	.content_main_right {
		padding-left: 0;
		float: none !important;
		width: 100%;
	}
	.offcanvas__left {
		display: none;
	}

	.desktop_header,
	.content_main_left {
		display: none;
	}

	.bramha_header_in {
		padding: 20px;
		flex-direction: row;
	}
	.offcanvas__area {
		position: fixed;
		height: 100%;
		overflow-y: scroll;
		padding-top: 80px;
	}
	
	.social_icons {
		padding: 40px 15px;
		text-align: center;
	}

	.social_icons li {
		display: inline-block;
		margin: 0 15px;
	}

	.offcanvas__middle, .offcanvas__right {
		float: none !important;
		width: 100%;
	}

	.offcanvas__links .menu-menu-1-container, .offcanvas__links, .offcanvas__middle {
		height: auto !important;
	}

	.offcanvas__right {
		padding: 60px 15px;
		text-align: left;
		display: block;
		height: calc(100vh - 176px) !important;
	}
	.offcanvas__right {
		display: flex;
		padding-bottom: 40px;
	}

	.social_icons {
		transform: rotate(0deg);
	}

	.social_icons li {
		transform: rotate(0deg);
	}


	.offcanvas__links ul li {
		font-size: 46px !important;
		padding: 28.5px 0px 28.5px 30px;
	}

	.offcanvas__contact h3 {
		margin-bottom: 25px;
	}

	.full-bg .content_main_middle {
		width: 100%;
		top: 0;
	}

	.content_main_wrapper {
		overflow: unset;
	}

	.content_main_right {
		width: 100%;
		position: relative;
		/*	padding-left: 100px;*/
		height: calc(100vh - 88px);
	}

	.content_main_right_wrapper video {
		left: 100px;
	}

	div.content_main_middle {
		padding-left: 0px;
	}

	.bg-animation,
	#dots-canvas canvas {
		height: 100%;
	}

	div.content_main_middle {
		width: 100%;
		float: none;
		/*padding-left: 100px;*/
	}

	.content_main_in, .content_main_left_wrapper {
		padding: 30px 15px;
	}

	.offcanvas__links ul li a::after {
		bottom: 0px !important;
	}

	.about_team_slide small {
		font-size: 13px;
	}

	.about_year {
		width: auto;
		height: auto;
		padding: 5px 15px;
	}
}

@media (max-width: 667px) {
	.bramha_header {
		border-right: none;
	}
	.offcanvas__area {
		position: fixed;
		height: 100%;
		overflow-y: scroll;
		padding-top: 80px;
	}

	.darkHeader {
		background-color: var(--header-scroll-background-color) !important;
		backdrop-filter: blur(5px);
	}

	.content_main_in,
	.content_main_left_wrapper {
		/*padding: 60px 20px;*/
		padding: 30px 15px;
	}

	#content {
		padding-top: 80px;
	}

	#content.full-bg {
		padding-top: 0px;
	}

	.offcanvas__left {
		display: none;
	}

	.offcanvas__middle,
	.offcanvas__right {
		float: none !important;
		width: 100%;
	}

	.offcanvas__links ul li {
		padding: 20px 15px;
		font-size: 40px !important;
	}

	.offcanvas__links ul {
		display: block;
		height: auto;
	}

	.offcanvas__links .menu-menu-1-container,
	.offcanvas__links,
	.offcanvas__middle {
		height: auto !important;
	}

	.offcanvas__right {
		padding: 60px 15px;
		text-align: left;
		display: block;
	}

	.header__nav-icon {
		line-height: 0;
	}

	#open_offcanvas_mobile {
		padding: 0;
	}

	.site_logo a,
	.site_logo img {
		display: block;
	}

	.content_main_right {
		padding-left: 0;
		float: none !important;
	}

	.offcanvas__right {
		display: flex;
		padding-bottom: 40px;
	}

	.social_icons {
		padding: 40px 15px;
		text-align: center;
	}

	.social_icons li {
		display: inline-block;
		margin: 0 15px;
	}

	.btn_notify {
		font-size: 14px;
	}

	.full-bg .content_main_middle {
		padding-left: 0;
		position: relative;
	}

	.full-bg .content_main_left_wrapper {
		width: 100%;
		padding-left: 20px;
		padding-top: 140px;
	}

	.datecountdown {
		margin-top: 35px;
	}

	.datecountdown ul li .counter-number {
		font-size: 50px;
	}

	.datecountdown ul li .counter-number::after {
		width: 50px;
	}

	.datecountdown ul li .counter-text {
		font-size: 14px;
	}

	div.content_main_middle {
		padding-left: 0px;
	}
}

@media (max-width: 576px) {
	.datecountdown ul li {
		width: 50% !important;
		margin-bottom: 20px;
	}
	h1 {
		font-size: 50px !important;
		line-height: 76px;
	}
}

@media (max-width: 479px) {
	h1 {
		font-size: 35px !important;
		line-height: 61px;
	}

	h2 {
		font-size: 34px;
	}

	h5 {
		font-size: 22px;
	}

	.about_team_slider .slick-track .about_team_slide:nth-child(even) {
		margin-top: 0;
	}

	.about_team_slider .slick-track .about_team_slide {
		margin: 0;
	}

	.heading_box {
		margin-bottom: 20px;
	}

	.ratio-video {
		--bs-aspect-ratio: calc(250px);
	}

	.about_year span {
		font-size: 34px;
	}

	.about_year {
		left: calc(100% - 150px);
	}

	.about_story_row {
		grid-template-columns: 1fr;
	}

	.about_story_row > * {
		text-align: center;
	}
} 
@media (max-width: 411px) {
	h1 {
		font-size: 50px;
		line-height: 76px;
	}

	h2 {
		font-size: 30px;
	}

	h4 {
		font-size: 26px;
	}
}