
/* Lake CSS */






.mh2{
	font-size: 30px;
	color:#3A5846;
	font-weight: 500;
}
i.bi.bi-briefcase {
    font-size: 50px;
    color: #3A5846;
}
.icon-box h3{
	font-size: 24px;
	font-weight: 600;
	color: #3A5846;
	opacity: 1;
}
.icon-box p{
	font-size: 15px;
	line-height: 24px;
	color: #3A5846;
	opacity: 1;
}
@keyframes float-bob {
	0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(10px);
    }
    50% {
        transform: translateX(0);
    }
    75% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}
.section-header:before {
    position: absolute;
    content: '';
    background: url('../img/line.png');
    width: 80px;
    height: 7px;
    left: 47%;
    margin-left: 10px;
	margin: 45px 0 0px 0;
	z-index: 300;
    animation-name: float-bob;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob;
    -moz-animation-duration: 10s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.section-header {
    margin-bottom: 50px!important;
}
/* HomePage */
/* Style for the card on desktop */
@media (min-width: 768px) {
    .book-card {
        z-index: 222;
        border: none;
        border-top:5px solid #35AD6D;
        box-shadow: 0 8px 7px rgba(0, 0, 0, 0.1);
		padding: 30px 10px;
    }
}
.book-form label{
	color: #3B4C99;
	font-weight: 400;
	margin: 0 10px 10px 10px;
}
.book-form input{
	border: 1px solid #000;
	border-radius:100px;
	box-shadow: none;
	padding: 10px 20px;
}
.book-form button{
	background-color: #35AD6D;
	border-radius:100px;
	box-shadow: none;
	padding: 10px 30px;
	color: #fff;
	margin-top: 35px;
}
.book-form button:hover{
	background-color: #BA1D2C;
	color:#fff;
}