3@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

body {
	font-family: 'Lexend', sans-serif;
}
p, ul {
	margin-bottom: 0;
}
a {
	color: #4a6586;
}
a:hover {
	color: #263344;
	text-decoration: none;
}
.btn {
	padding: 0.6rem 1.4rem;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 1px;
}
.btn:hover, .btn:focus, .btn:active,
.btn-primary:not(:disabled):not(.disabled):active:focus {
	box-shadow: none;
}
.btn-primary {
    background-color: #be0202;
    border: 1px solid #be0202;
    color: #fff;
    border-radius: 8px;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, 
.btn-primary:not(:disabled):not(.disabled):active {
	background-color: #fff;
    color: #be0202;
    border-color: #be0202;
}
header {
	background: rgba(255, 255, 255, 0.8);
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 111;
    padding: 1rem 0;
}
header .logo_block h5 {
	text-transform: uppercase;
	font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}
header ul.menu_list li a,
.menu-block li a {
	font-size: 15px;
	text-transform: capitalize;
	font-weight: 500;
	position: relative;
	padding: 0 1rem;
}
header ul.menu_list li.active a,
.menu-block li.active a {
	color: #13335c;
}
header ul.menu_list li a:before,
.menu-block li a:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 0px;
    opacity: 1;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background: #be0202;
    border-radius: 100%;
    transition: all 0.2s ease-out;
    transform: translateY(-20px);
}
header ul.menu_list li a:hover:before, header ul.menu_list li.active a:before,
.menu-block li a:hover:before, .menu-block li.active a:before {
    height: 6px;
    transform: translateY(9px);
}
section.banner_block .caption {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	align-items: center;
	display: flex;
}
section.banner_block .caption .card-wrapper {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(3.5px);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: 0;
    padding: 3rem;
    margin: 0;
    overflow: visible;
    position: relative;
    justify-content: center;
    color: #13335c;
    width: 70%;
}
section.banner_block .card-wrapper:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.3;
    height: 100%;
    width: 100%;
    pointer-events: none;
    border: 2px solid white;
    border-radius: 0;
}
section.banner_block .caption h1{
	text-transform: capitalize;
	font-size: 3.25rem;
    font-weight: 700;
    line-height: 1;
}
section.banner_block .caption p {
	font-size: 20px;
	font-weight: 600;
}
.banner_block .carousel-control-next, .banner_block .carousel-control-prev {
    width: auto;
    padding: 15px;
    font-size: 40px;
}
footer {
	background: #f4f4f4;
	padding: 5rem 0;
	color: #000d20;
    font-weight: 500;
}
footer .subtitle {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	font-weight: 700;
}
footer li {
	line-height: 44px;
}
footer a {
	color: #000d20;
	display: inline-block;
    line-height: 1.87;
    position: relative;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-transform: capitalize;
}
footer a:hover {
	color: #000d20;
}
footer a:before {
	width: 0;
    left: auto;
    right: 0;
    bottom: 5px;
    height: 1px;
    content: "";
    position: absolute;
    transition: width 0.2s linear;
    background: #13335c;
}
footer a:hover:before {
	left: 0;
    width: 100%;
    right: auto;
}
footer .brand_wrap h5 {
	font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 700;
}
footer .brand_wrap {
	margin-bottom: 2.5rem;
}
footer p+ p {
	margin-top: 10px;
}
footer section + section .text-md-right a {
	opacity: 0.5;
}
footer section + section a:hover {
	opacity: 1;
}
footer section + section a:before {
	content: none;
}
footer section + section a + a {
	padding-left: 20px;
}
footer section + section {
    position: relative;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
}
footer section + section:before {
    background: #000d20;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0.8px;
    opacity: .5;
}
footer .img-fluid {
    max-width: 175px;
}
footer .contacts p {
    display: flex;
    width: 100%;
}
footer .contacts i {
    color: #be0202;
    margin-right: 5px;
    line-height: 2rem;
}
h2.title {
	color: #13335c;
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 700;
}
.block-para-text {
	font-size: 1.2rem;	
}
.b {
	color: #000;
}
.title-sm {
	color: #be0202;
    font-size: 1rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    line-height: 1;
}
.title-sm.w {
	color: #fff;
}
.service_section {
	padding: 5rem 0;
	background: #f9f9f9;
}
.service_block {
	text-align: center;
	margin: 0 0 4rem;
    background: #fff;
    padding: 1rem;
}
.service_block i {
	color: #be0202;
    font-size: 42px;
    line-height: 80px;
}
/*.service_block .icon-wrapper {
	box-shadow: 0px 14px 30px 0px rgb(4 219 236 / 40%);
    background-image: linear-gradient(40deg, #04dbec 0%, #5af0fc 100%);
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border-top-right-radius: 0;
    text-align: center;
    display: inline-block;
    position: relative;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}*/
/*.service_block a:hover .icon-wrapper {
	background-image: linear-gradient(40deg, #263d5a 0%, #5af0fc 100%);
}*/
/*.service_block .icon-block {
	margin-bottom: 40px;
}*/
.service_block h3 {
	color: #000d20;
	transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.service_block a:hover h3 {
	color: #13335c;
}
.service_block p {
	font-size: 1rem;
    line-height: 1.867;
    color: #28395a;
    min-height: 90px;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 90px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.testimonial_section {
	padding-top: 6rem;
    padding-bottom: 6rem;
    background: rgb(190,2,2);
    background: linear-gradient(191deg, rgba(190,2,2,0.5) 0%, rgba(19,51,92,0.5) 81%);
}
.testi_block {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(3.5px);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    padding: 1.5rem;
    margin: 0;
    overflow: visible;
    position: relative;
    margin: 3rem 1rem 0;
    display: flex;
}
.testi_block img + div {
    padding-left: 1rem;
}
.testi_block p {
	font-size: 1rem;
    margin: 0 0 2rem;
}
.testi_block h5 {
	color: #be0202;
	margin-bottom: 0.2rem;
    font-size: 1.1rem;
}
.testi_block h6 {
	font-size: 14px;
    color: #8b8585;
    margin-bottom: 0;
}
.testimonial-carousel.owl-carousel .owl-item img {
	width: 70px;
    height: 70px;
    border-radius: 100%;
	margin: 0 auto;
}
.testimonial-carousel.owl-theme .owl-nav [class*=owl-] {
	position: absolute;
	top: 45%;
	font-size: 40px;
}
.testimonial-carousel.owl-carousel .owl-nav button.owl-next {
	right: -3rem;
} 
.testimonial-carousel.owl-carousel .owl-nav button.owl-prev {
	left: -3rem;
}
.testimonial-carousel.owl-theme .owl-nav [class*=owl-] i {
    color: #13335c;
}
.testimonial-carousel.owl-theme .owl-nav [class*=owl-]:hover {
	background: none;
	color: #263d5a;
}
section.contact_section {
	padding: 5rem 0;
	background: #f9f9f9;
}
.form-control {
	padding: 0.5rem 1rem;
    line-height: 1.6;
    background: #f5f5f5;
    border-width: 0px;
    border-radius: 0;
    color: #616161;
    margin-bottom: 1rem;
    min-height: 50px;
}
textarea {
	resize: vertical;
}
.form-block {
	background-color: #ffffff;
    margin: 2rem 0 0;
    /*border-radius: 30px;*/
    box-shadow: 6px 5px 30px 0px rgb(0 0 0 / 12%);
    padding: 3.5rem;
}
.blog_section .inner-item{
	transition: 0.3s;
    box-shadow: 0px 0px 0px 1px rgb(0 0 0 / 10%);
    border-radius: 10px;
    background: #ffffff;
    padding: 1.2rem;
    margin: 0 0 2rem;
}
.blog_section .image {
	position: relative;
}
.blog_section .date {
	display: inline-block;
    position: absolute;
    bottom: 0;
    width: 60px;
    background-color: #05afec;
    padding: 0.7rem 0rem 0.4rem 0rem;
    text-align: center;
    border-radius: 5px;
    box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 15%);
    transform: translateY(50%);
    right: 1.3rem;
}
.blog_section .date h5, .blog_section .date h6 {
	color: #fff;
	margin: 0;
	font-weight: 700;
}
.blog_section h5 {
	font-size: 1.875rem;
    line-height: 0.8;
}
.blog_section h6 {
	font-size: 0.9rem;
    line-height: 1.9;
}
.blog_section .card-text {
	padding-top: 2.2rem;
}
.blog_section .card-text h5 {
	color: #000;
	margin-top: 0.5rem;
    line-height: 1.8rem;
    font-size: 1.15rem;
    min-height: 85px;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 85px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog_section .card-text h6 {
	color: #989898;
	font-weight: 500;
}
.blog_section .card-text a {
	color: #05afec;
	display: inline-block;
    overflow: hidden;
}
.blog_section .inner-item:hover {
	box-shadow: 3px 2px 18px 0px rgb(0 0 0 / 10%);
}
section.blog_section {
	padding: 5rem 0;
}
.read-more-arrow {
    width: 0px;
    transition-delay: 0s;
    position: relative;
    background: currentColor;
    height: 2px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    transition: 0.5s;
}
.read-more-arrow::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    right: 0;
    transition: 0.4s;
    border-color: currentColor;
    bottom: 0;
    border-bottom: 2px solid;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
.read-more-arrow::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    right: 0;
    transition: 0.4s;
    border-color: currentColor;
    top: 0;
    border-top: 2px solid;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
a:hover .read-more-arrow {
    width: 50px;
    margin-right: 13px;
}
a:hover .read-more-arrow::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-delay: 0.4s;
}
a:hover .read-more-arrow::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition-delay: 0.4s;
}
section.inner_banner_block .caption {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
    z-index: 1;
}
/*section.inner_banner_block .text_block {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(3.5px);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: 30px;
    padding: 3rem;
    margin: 3rem 0 0;
    overflow: visible;
    position: relative;
    justify-content: center;
    color: #263d5a;
    width: 70%;
}*/
section.inner_banner_block .text_block:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.3;
    height: 100%;
    width: 100%;
    pointer-events: none;
    background: rgba(0,0,0,0.8);
    z-index: -1;
}
section.inner_banner_block {
	position: relative;
}
section.inner_banner_block h2.title {
    color: #fff;
    text-align: center;
}
section.content_block {
    padding: 5rem 0;
}
section.content_block p, section.content_block li {
    line-height: 1.5;
    font-size: 1rem;
    color: #212529;
    font-weight: 400;
}
section.content_block p + p, section.content_block p + ul, section.content_block p + h5,
section.content_block ul + h5, section.content_block ul + h3,
section.content_block div.col-md-6 + div.col-md-12, section.content_block p + h3 {
	margin-top: 1rem;
}
section.content_block table {
    margin: 1rem 0;
}
section.content_block ul:not(.comment-list) li {
	position: relative;
	padding-left: 15px;
}
section.content_block ul:not(.comment-list) li:before {
	content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    opacity: 1;
    left: 0;
    background: #263344;
    border-radius: 100%;
    transition: all 0.2s ease-out;
    transform: translateY(10px);
}
section.map_block iframe {
	width: 100%;
	height: 450px;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 0;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #263d5a; 
}
.blog_content {
	margin-top: 2rem;
}
.blog_content .details p {
	color: #969494;
	font-size: 14px;
}
.blog_content .details  {
	margin-bottom: 20px;
}
.blog_content .social-block a +a {
	padding-left: 10px;
}
ul.comment-list img {
	width: 60px;
	height: 60px;
	border-radius: 100%;
}
ul.comment-list li.comment-list-item {
	display: flex;
	margin-bottom: 2rem;
}
ul.comment-list .comment-list-item-content {
	padding-left: 10px;
}
ul.comment-list li.comment-list-item p {
	font-weight: 300;
	font-size: 0.9rem;
}
ul.comment-list li.comment-list-item h5 {
	font-size: 1.1rem;
}
ul.comment-list li.comment-list-item h6 {
	font-size: 0.8rem;
	color: #adaaaa;
}
.team_block {
	padding: 5rem 0;
	background: #f9f9f9;
}
.team_block .item-wrapper {
    position: relative;
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}
.team_block .item-img, .team_block .item-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.team_block .item-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.3s ease-out;
    text-align: center;
}
.team_block .item-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.475, 0.425, 0, 0.995);
    transition-delay: .3s;
    color: #000;
}
.team_block .item-title {
    font-weight: 500;
    font-size: 1.87rem;
}
.team_block .item-subtitle {
    margin-bottom: 1rem;
    font-size: 1rem;
}
.team_block .mbr-social-likes {
    display: flex;
    align-items: center;
}
.team_block .mbr-social-likes a {
    color: #000000;
}
.team_block .mbr-social-likes a:hover {
    color: #fff;
}
.team_block .mbr-social-likes i {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #000000;
    width: 36px;
    height: 36px;
    margin-left: 0.4375rem;
    margin-right: 0.4375rem;
    transition: 0.3s ease-out;
}
.team_block .mbr-social-likes a:hover i {
    border-color: #04dbec;
    background: #04dbec;
}
.team_block .item-wrapper:hover .item-content {
    opacity: 1;
    z-index: 1;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(3.5px);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}
.team_block .item-wrapper:hover .item-text-wrap {
    opacity: 1;
    transform: translateY(0);
}
section.career_block {
    background-image: url(../images/background5.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem 0;
}
section.career_block .card {
    flex-direction: row;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(3.5px);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    border-radius: 30px;
    align-items: center;
    border: none;
    margin-bottom: 2.5rem;
}
section.career_block div.desc {
    width: 80%;
}
section.career_block div.right_block {
    width: 20%;
}
section.career_block h3 {
    text-transform: capitalize;
    font-size: 1.5rem;
    color: #263d5a;
    margin-bottom: 0;
}
section.career_block ul {
    font-size: 0.9rem;
    color: #706f6f;
}
section.career_block ul b, section.career_block h5 span {
    color: #04dbec;
}
section.career_block h5 {
    font-size: 1rem;
    margin: 0.4rem 0;
}
section.career_block p.detal_desc {
    font-size: 1rem;
    min-height: 75px;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 75px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5rem;
}
section.job_detail_block.career_block {
    background: #f9f9f9;
}
section.job_detail_block.career_block p.detal_desc{
    text-overflow: inherit;
    -webkit-line-clamp: inherit;
    height: inherit;
    min-height: inherit;
}
#applyJob .modal-content {
    background: none;
    border: none;
}
#applyJob .modal-body {
    padding: 0;
}
#applyJob .modal-dialog {
    max-width: 800px;
}
#applyJob .form-block {
    margin: 0;
}
#applyJob .close {
    position: absolute;
    right: -35px;
    top: -15px;
    text-shadow: none;
    opacity: 1;
    font-size: 35px;
    color: #fff;
    z-index: 111;
}
.custom-file-label::after {
    content: "\f574";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    height: 50px;
    line-height: 2.25;
}
.custom-file-label, .custom-file-input, .custom-file {
    min-height: 50px;
    font-weight: 500;
    border-radius: 0;
    color: #000;
    font-size: 15px;
    background: #f5f5f5;
    color: #616161;
    border: none;
}
.custom-file-label {
    line-height: 2.3;
    padding: 0.5rem 1rem;
    color: #858181;
}
.form-control:focus {
    border-color: none;
    box-shadow: none;
    background: #f5f5f5;
}
section.job_detail_block.career_block div.desc {
    width: 100%;
}
section.courses_block {
    padding: 5rem 0;
    background-image: url(../images/background5.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.courses_block .block {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(3.5px);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    position: relative;
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
}
.courses_block .block:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.3;
    height: 100%;
    width: 100%;
    pointer-events: none;
    border: 2px solid white;
    border-radius: 8px;
}
.courses_block .block a h4{
    margin-bottom: 0.4rem;
    font-size: 1rem;
    color: #263d5a;
    transition: all 0.3s;
    min-height: 38px;
    height: 38px;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.courses_block .block a:hover h4 {
    color: #05afec;
}
.courses_block .block p {
    font-size: 0.8rem;
    color: #000;
}
.courses_block .block p.desc {
    min-height: 40px;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    height: 40px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.courses_block .block p span {
    color: #878484;
    position: relative;
}
.courses_block .block i, p.rating i {
    color: #e59819;
}
.courses_block .block li img {
    width: 100%;
    transition: all 1s linear 0s;
    transform: scale(1);
}
.courses_block .block li:first-child {
    overflow: hidden;
}
.courses_block .block li:nth-child(2) {
    padding: 1rem;
}
.courses_block .block a:hover img {
    transition: all 1s linear 0s;
    transform: scale(1.1);
}
.courses_block .block p span + span {
    padding-left: 10px;
}
.courses_block .block p span + span:before {
    content: '';
    width: .02rem;
    height: 12px;
    background: #878484;
    position: absolute;
    top: 3px;
    left: 3px;
}
.content_block img, .content_block iframe {
    border-radius: 30px;
    margin-bottom: 3rem;
}
h3.title {
    color: #263d5a;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}
section.content_block ul:not(.comment-list) ul li::before {
    background: #04dbec;
}
.content_block .form-block {
    padding: 2rem;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0,0,0,0.8);
    overflow: auto;
    z-index: 102;
}
.menu-block {
    position: fixed;
    right: -100%;
    width: 320px;
    max-width: 476px;
    overflow-y: auto;
    z-index: 9999999999;
    top: 0;
    bottom: 0;
    right: 0;
    transition: .3s all ease-in-out;
    background: #fff;
    border-bottom: 42px solid #f2f2f2;
}
.menu-block ul {
    background: #f2f2f2;
    overflow-y: auto;
    height: 85%;
    margin: 25% 0 0;
    text-align: left;
    padding-top: 30px;
}
.menu-block ul li {
    margin: 10px 0;
    padding: 0 20px;
}
.side-hb {
    cursor: pointer;
    display: inline-block;
}
.side-hb span {
    height: 2px;
    width: 30px;
    background: #066585;
    display: block;
    transition: all .3s ease;
}
.side-hb .b {
    width: 20px;
    margin-left: -8px;
}
.side-hb span + span {
    margin-top: 8px;
}
.side-hb.btn-close span+span {
    margin-top: 0;
}
.btn-close {
    position: fixed!important;
    right: 30px;
    top: 30px;
    z-index: 999;
    /* font-size: 30px; */
}
.btn-close span.a {
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.btn-close span.b {
    display: none;
}
.btn-close span.c {
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.side-hb:hover li, .side-hb:hover, .side-hb:focus {
    text-decoration: none;
    color: #ff8800;
}
.side-hb:hover span {
    background: #f99c3c;
}
.side-hb:hover .b {
    margin-left: 0;
    width: 30px;
}
div.toggle {
    display: none;
}
.banner_mask img, section.inner_banner_block img {
    width: 100%;
    height: auto;
}
.content_block .col-md-4.col-lg-12 img {
    margin-bottom: 0;
}
section.about_block {
    padding: 5rem 0 0;
}
section.service_section.in h3 {
    color: #be0202;
}
section.service_section.in p {
    color: #212529;
}
.form-block.ts {
    width: 60%;
    margin: 0 auto;
}
.detail_block th {
    background: #ccc;
}
label.error {
    color: #d70404;
    position: relative;
    top: -15px;
}