@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --themeBlueColor:#0e4886;
    --themeYellowColor:#e8e303;
    --headingColor: #252525;
    --paragraphColor: #555555;
    --lightThemeBlueColor: #E8F9FF;
    --borderRadius: 2px;
    --lightColor: #dddddd;
}

::-moz-selection { 
	background-color: var(--themeBlueColor);
	color: white;
}

::selection {
	background-color: var(--themeBlueColor);
	color: white;
}

body{
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	color: var(--paragraphColor);
	line-height: 1.6em;	
}

a, input, button, select, textarea, .transition{
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

input:focus, button:focus, select:focus, textarea:focus, :focus{
	outline: none;
}

a{
	display: inline-block;
	text-decoration: none;
}

a:hover{
	text-decoration: none;
}

ul, ol{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

strong{
	font-weight: 600
}

h1, h2, h3, h4, h5, h6{
	color: var(--headingColor);
	font-weight: 700
}

.lightBg{
	background-color: var(--lightColor);
}

.themeTextColor{
	color: var(--themeBlueColor);
}

blockquote{
	background-color: var(--themeBlueColor);
	color: white;
	border-left: 10px solid var(--themeYellowColor);
	padding: 30px;
	line-height: 1.7em;
}

.blueBG{
	background-color: var(--themeBlueColor);
}

.customList{
	color: var(--themeBlueColor);
}

.customList li{
	margin:8px 0;
}

.customList li i{
	font-size: 12px;
	display: inline-block;
	margin: 0 10px 0 0;
}

.listStyle li{
	margin:8px 0;
}

.listStyle li i{
	font-size: 12px;
	display: inline-block;
	margin: 0 10px 0 0;
}

.headStyle {
    background-color: var(--themeBlueColor);
    color: white;
    padding: 10px 10px;
    display: inline-block;
    font-weight: 400;
    font-size: 18px;
}

.buttonStyle{
	background-color: var(--themeBlueColor);
	color: white;
	border-radius: var(--borderRadius);
	padding: 10px 30px;
	border: 1px solid var(--themeBlueColor);
}

.buttonStyle.active{
	background-color: white;
	color: var(--themeBlueColor);
}

.buttonStyle:hover{
	background-color: white;
	color: var(--themeBlueColor);
}

#header-sticky-wrapper{
	position: relative;
	z-index: 999;
}

#header{
	background-color: var(--lightThemeBlueColor);
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.navbar-light .navbar-nav .nav-link{
	font-weight: 16px;
	text-transform: uppercase;
	color: var(--headingColor);
	padding: 0;
	margin: 0 15px;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link{
	color: var(--themeBlueColor);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{
	color: var(--themeBlueColor);
}

#mainSlider{
	background-image: url(../images/pattern.jpg);
	background-position: left top;
	background-repeat: repeat;
	border-top: 10px solid var(--themeBlueColor);
	border-bottom: 10px solid var(--themeBlueColor);
	position: relative;
}

#mainSlider:before {
    position: absolute;
    content: "";
    background-image: url(../images/right-image.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    width: 114px;
    height: 111px;
    right: 0px;
    top: 0px;
    z-index: 99;
}

#mainSlider:after {
    position: absolute;
    content: "";
    background-image: url(../images/left-image.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    width: 114px;
    height: 111px;
    left: 0px;
    bottom: 0px;
    z-index: 99;
}

.carousel-control-next, .carousel-control-prev{
	width: 5%;
}

.carousel-control-prev-icon, .carousel-control-next-icon{
	background-color: rgba(0, 0, 0, .8);
	width: 50px;
	height: 50px;
	background-size: 30px;
}

.carousel-indicators [data-bs-target]{
	width: 10px;
	height: 10px;
	background-color: var(--themeBlueColor);
	margin: 0 5px;
}

.highLighted{
	background-image: url(../images/pattern.jpg);
	background-position: left top;
	background-repeat: repeat;
	padding: 20px 50px;
}

.highLighted p{
	font-size: 26px;
	color: var(--headingColor);
	line-height: 1.7em;
	margin: 0;
}

.socialList li{
	display: inline-block;
	margin: 0 2px;
}

.socialList li a{
	width: 40px;
	height: 40px;
	border: 1px solid var(--headingColor);
	line-height: 40px;
	text-align: center;
	color: var(--headingColor);
}

.socialList li a:hover{
	background-color: var(--themeBlueColor);
	border-color: var(--themeBlueColor);
	color: white;
}

.blogBox{
	border: 1px solid var(--themeBlueColor);
	margin-bottom: 30px;
}

.blogBox h4 a{
	font-size: 16px;
	color: var(--themeBlueColor);
	line-height: 1.6em;
	font-weight: 600;
}

.blogBox h4 a:hover{
	color: var(--headingColor);
}

.reviews{
	background-image: url(../images/review-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.review-info {
    display: block;
    position: relative;
}

.review-ptn {
    margin-top: 70px;
}

.team-image {
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    display: inline-block;
    padding: 2px;
    position: absolute;
    top: -70px;
    transform: translateX(-50%);
}

.team-image img {
    border-radius: 50%;
}

.team-details {
    background: #f3f3f3 none repeat scroll 0 0;
    border-radius: 2px;
    padding: 100px 45px 33px;
}

.formStyle{
	background-color: white;
	padding: 20px;
	border-radius: var(--borderRadius);
	box-shadow: 0 0 5px rgb(0 0 0 / 6%);
}

.formStyle input[type="text"], .formStyle input[type="email"], .formStyle textarea{
	padding: 8px;
	border: none;
	border-bottom: 1px solid var(--paragraphColor);
	width: 100%;
	margin-bottom: 30px;
}

.formStyle textarea{
	min-height: 100px;
}

.formStyle input[type="text"]:focus, .formStyle input[type="email"]:focus, .formStyle textarea:focus{
	border-bottom-color: var(--themeBlueColor);
}

.bottomContact{
	background-color: white;
	padding: 30px;
	box-shadow: 0 0 10px rgb(0 0 0 / 10%);
	-moz-transform: translateY(55px);
	-webkit-transform: translateY(55px);
	-o-transform: translateY(55px);
	-ms-transform: translateY(55px);
	transform: translateY(55px);	
}

.bottomContact .icon{
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 21px;
	border: 1px solid var(--lightColor);
	display: inline-block;
}

.socialListLight li{
	display: inline-block;
	margin: 0 2px;
}

.socialListLight li a{
	width: 40px;
	height: 40px;
	border: 1px solid white;
	line-height: 40px;
	text-align: center;
	color: white;
}

.socialListLight li a:hover{
	background-color: var(--themeBlueColor);
	border-color: var(--themeBlueColor);
	color: white;
}

#footer{
	color: white;
}

#footer p a{
	color: white;
}

#footer p a:hover{
	color: var(--themeBlueColor);
}

.gallery a{
	border: 1px solid var(--themeBlueColor);
}

@media screen and (min-width: 100px) and (max-width: 767px){

	.navbar-light .navbar-toggler{
		background-color: white;
		position: absolute;
		right: 0;
		top: -40px;
	}

	.navbar .container-fluid{
		padding: 0;
	}

	.navbar-light .navbar-nav .nav-link{
		margin: 10px 0;
	}

	.highLighted{
		padding: 20px;
	}

	.socialList{
		margin-top: 20px;
	}

	.lightBg .justify-content-center{
		background-color: white;
	}

}

@media screen and (min-width: 768px) and (max-width: 1023px){

	.navbar-light .navbar-toggler{
		background-color: white;
		position: absolute;
		right: 0;
		top: -45px;
	}

	.navbar .container-fluid{
		padding: 0;
	}

	.navbar-light .navbar-nav .nav-link{
		margin: 10px 0;
	}

	.highLighted{
		padding: 20px;
	}

	.lightBg .justify-content-center{
		background-color: white;
	}

}