
*{
	margin:0;
	padding:0;
}
body{
	background:#FFFFFF;
}
:root{
	--baseColor: #049AD3;
	--lightColor: #FFFFFF;
	--grayColor: #F7F7F7;
	--darkColor: #232323;
	--blackColor: #000000;

	--baseFont: 'Playfair Display', serif;
}


/* ===== CSS For "Common Cases" Starts Here ===== */
a{
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a:hover{
	text-decoration: none;
}
img{
	max-width: 100%;
}

/* ======================== */

.grid_item{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
	align-content: center;
}

/* ======================== */

.heading{
	margin-bottom: 30px;
}
.heading h2{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 40px;
	margin-bottom: 0px;
}

.sub_heading{
	margin-bottom: 10px;
}
.sub_heading h3{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 28px;
	margin-bottom: 0px;	
}

/* ======================== */

.para_texts p{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 10px;
}
.para_texts p:last-child{
	margin-bottom: 0px;
}
.para_texts p .bold_texts{
	font-weight: 700;
}
/* ===== CSS For "Common Cases" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Navbar" Starts Here ===== */
.navbar-toggler {
	padding: 0px;
	margin-top: -3px;
}
.navbar-toggler:focus {
	outline: none;
}
.navbar-toggler .humbergur_icon {
	width: 30px;
	height: 20px;
	position: relative;
	margin: 0px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
.navbar-toggler .humbergur_icon span {
	background: var(--blackColor);
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.navbar-toggler .humbergur_icon span:nth-child(1) {
	top: 0px;
}
.navbar-toggler .humbergur_icon span:nth-child(2),
.navbar-toggler .humbergur_icon span:nth-child(3) {
	top: 10px;
}
.navbar-toggler .humbergur_icon span:nth-child(4) {
	top: 20px;
}
.navbar-toggler .humbergur_icon.open span:nth-child(1) {
	top: 11px;
	width: 0%;
	left: 50%;
}
.navbar-toggler .humbergur_icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.navbar-toggler .humbergur_icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.navbar-toggler .humbergur_icon.open span:nth-child(4) {
	top: 11px;
	width: 0%;
	left: 50%;
}

/* ============================== */

.navbar {
	padding: 10px;
	background: transparent;
	position: relative;
	z-index: 999;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.navbar .navbar-brand{
	padding: 0px;
}
.navbar .navbar-brand img {
	max-width: 175px;
}
.navbar .nav-item {
	margin-left: 50px;
}
.navbar .nav-item:first-child {
	margin-left: 0px;
}
.navbar .nav-item .nav-link {
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 22px;
	padding: 10px 0px;
	position: relative;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.navbar .nav-item .nav-link.active{
	color: var(--baseColor);
	text-decoration: underline;
}
.navbar .nav-item .nav-link:hover{
	color: var(--baseColor);
}

.navbar .dropdown.show > .nav-link{
	color: var(--baseColor);
}

.navbar .dropdown-menu {
	top: 90%;
	border: none;
	border-radius: 0px;
	background: var(--lightColor);
	padding: 10px 5px;
	margin: 0px;
}
.navbar .dropdown-menu ul{
	margin-bottom: 0px;
}
.navbar .dropdown-menu ul li{
	list-style: none;
}
.navbar .dropdown-menu ul li a{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 22px;
	padding: 5px 15px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.navbar .dropdown-menu ul li a.active{
	color: var(--baseColor);
	background: transparent;
}
.navbar .dropdown-menu ul li a:hover{
	color: var(--baseColor);
	background: transparent;
}
.navbar .dropdown-menu ul li a:active,
.navbar .dropdown-menu ul li a:focus{
	background: transparent;
}
/* ===== CSS For "Navbar" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Hero Banner" Starts Here ===== */
.hero_banner{
	background: url('images/Hero_Banner_Bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}
.hero_banner .banner_contents{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
	min-height: 440px;
}
.hero_banner .contents h1{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 56px;
	margin-bottom: 0px;
	text-align: center;
}
/* ===== CSS For "Hero Banner" Ends Here ===== */


/* ============================== */
/* ============================== */

.middle_contents{
	background: var(--lightColor);
	padding: 60px 0px;
}

/* ============================== */
/* ============================== */


/* ===== CSS For "About Texts" Starts Here ===== */
.about_texts{
	text-align: center;
	max-width: 850px;
	margin: 0px auto;
}
.about_texts p{
	font-size: 20px;
}
/* ===== CSS For "About Texts" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Our Focus" Starts Here ===== */
.our_focus_wrap{
	border-top: 1px solid var(--blackColor);
	margin-top: 60px;
	padding-top: 60px;
}
.our_focus_wrap .heading{
	text-align: center;
	margin-bottom: 40px;
}
.our_focus{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}
.our_focus .single_focus{
	background: var(--grayColor);
}
.our_focus .thumb_image img{
	width: 100%;
	height: 210px;
	-o-object-fit: cover;
	object-fit: cover;
}
.our_focus .focus_contents{
	padding: 10px;
	text-align: center;
}
.our_focus .para_texts p{
	line-height: 1.3;
}

.our_focus .learn_more_link{
	margin-top: 10px;
}
.our_focus .learn_more_link a{
	color: var(--blackColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 18px;
	display: inline-block;
	text-decoration: underline;
}
/* ===== CSS For "Our Focus" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Footer" Starts Here ===== */
.footer{
	background: var(--blackColor);
	padding: 40px 0px;
	text-align: center;
}
.footer .address p{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 0px;
}

.footer .copyright{
	margin-top: 20px;
}
.footer .copyright p{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 0px;
}
/* ===== CSS For "Footer" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Blog Banner" Starts Here ===== */
.blog_page_banner img{
	width: 100%;
}
/* ===== CSS For "Blog Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Blog Contents" Starts Here ===== */
.blog_contents{
	padding: 60px 0px;
	background: var(--lightColor);
}
.blog_contents .sub_heading{
	margin-bottom: 30px;
}
.blog_contents .para_texts p{
	margin-bottom: 30px;
	font-size: 20px;
}
.blog_contents .para_texts p:last-child{
	margin-bottom: 0px;
}
/* ===== CSS For "Blog Contents" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Hero Banner" Starts Here ===== */
.contact_banner{
	background: url('images/Contact_Banner_Bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}
.contact_banner .overlay{
	background: rgba(0,0,0, 0.7);
}
.contact_banner .banner_contents{
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
	min-height: 480px;
}
.contact_banner .contents h3{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 400;
	font-size: 36px;
	margin-bottom: 10px;
	text-align: center;
}
.contact_banner .contents h1{
	color: var(--lightColor);
	font-family: var(--baseFont);
	font-weight: 700;
	font-size: 80px;
	margin-bottom: 0px;
	text-align: center;
}
/* ===== CSS For "Hero Banner" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "Contact Form" Starts Here ===== */
.contact_form_wrap{
	background: var(--lightColor);
	padding: 60px 0px;
}
.contact_form{
	max-width: 560px;
	margin: 0px auto;
}
.contact_form .form_input{
	border: 2px solid #373B4D;
}
.contact_form .form_row_2{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 0px;
	border-bottom: 2px solid #373B4D;
}
.contact_form .form-group{
	margin-bottom: 0px;
}
.contact_form .form-control{
	color: var(--darkColor);
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 16px;
	font-style: italic;
	height: inherit;
	padding: 15px 15px;
	border: none;
	border-radius: 0px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.contact_form .form_row_2 .form-group:first-child .form-control{
	border-right: 1px solid #373B4D;
}
.contact_form .form_row_2 .form-group:last-child .form-control{
	border-left: 1px solid #373B4D;
}
.contact_form .form-control:active,
.contact_form .form-control:focus{
	box-shadow: none;
	background: var(--grayColor);
}

.contact_form .send_button{
	margin-top: 15px;
	text-align: right;
}
.contact_form .send_button .btn{
	color: var(--lightColor);
	background: #373B4D;
	font-family: var(--baseFont);
	font-weight: 500;
	font-size: 16px;
	border-radius: 0px;
	min-width: 180px;
	text-align: center;
	display: inline-block;
	padding: 12.5px 15px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;	
}
.contact_form .send_button .btn:hover{
	color: var(--lightColor);
	background: var(--blackColor);
	text-decoration: none;
}
/* ===== CSS For "Contact Form" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */


/* ===== CSS For "" Starts Here ===== */
/* ===== CSS For "" Ends Here ===== */


/* ============================== */
/* ============================== */
/* ============================== */