@font-face {
    font-family: 'WorkSans-Regular';
    src: url('../fonts/WorkSans-Regular.ttf');
}
@font-face {
    font-family: 'WorkSans-SemiBold';
    src: url('../fonts/WorkSans-SemiBold.ttf');
}
body {
    width: 100%;
    height: 100%;
    font-family: 'WorkSans-Regular';
    font-size:16px;
    background-color:#fff;
    line-height:28px;
}
html {
    width: 100%;
    height: 100%;
}
a {
	text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
a:hover,
a:focus {
    text-decoration: none;
}
button:focus {
    outline: 0px dotted;
}
a:focus {
    outline: medium none;
}
b{
	font-weight:normal;
	color:#111;
	font-family: 'WorkSans-SemiBold';
	}
p{
	color:#111;
	line-height: 27px;
	font-size: 16px;
	font-family: 'WorkSans-Regular';
	}

h1, .title-1{
    color: #000;
    line-height:36px;
    font-size:36px;
    font-weight: normal;
	font-family: 'WorkSans-SemiBold';
    margin-top: 0;
    margin-bottom:21px;
}
h2{
    color: #2f3193;
    line-height:30px;
    font-size:24px;	
	font-family: 'WorkSans-SemiBold';
}
h3{
    color: #000;
    line-height:24px;
    font-size:18px;	
	font-family: 'WorkSans-SemiBold';
}
h4{
	font-size:16px;	
	font-family: 'WorkSans-SemiBold';
}
.text-justify{
	text-align: justify;
}
.row-box{
	width:100%;
	clear:both;
	display:-webkit-flex;
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
section, footer{
	width:100%;
	clear:both;
    display:-webkit-flex;
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	}
.padding{
	padding:50px 0;
	}
.padding-sm{
	padding:40px 0;
	}
.navbar-toggler{
	border:0;
}
.navbar-toggler span {
    width: 25px;
    height:2px;
    background:#222;
    display: block;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 4px;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.navbar-toggler span:nth-child(1) {
    width: 16px;
}
.navbar-toggler:hover span:nth-child(1) {
    width: 25px;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    width: 25px;
    -webkit-transform: rotate(45deg) translate(5px,5px);
    -ms-transform: rotate(45deg) translate(5px,5px);
    transform: rotate(45deg) translate(5px,5px);
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2){
	opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(3){
	-webkit-transform:rotate(-45deg) translate(4px,-4px);
	-ms-transform:rotate(-45deg) translate(4px,-4px);
	transform:rotate(-45deg) translate(4px,-4px);
}
.navbar-dark{
	background-color: #fff;
	padding: 0;
	background-color: #fff;
-webkit-box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
-moz-box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.navbar-dark .navbar-nav .nav-link {
    color:#000;
	font-size:16px;
	padding: 1.5rem 1.2rem;
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #a70202;
}
.navbar-dark .navbar-nav .active > .nav-link{
	color:#a70202;
}
.dropdown-toggle .fa-caret-down {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    font-size: 12px;
    position: relative;
    top: 2px;
    color:#f88816;
    left: 2px;
}
.dropdown-menu{
	min-width: 16rem;
	margin-top: 0;
	box-shadow:0 14px 14px 0 rgba(0, 0, 0, 0.08);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-radius: 0;
	border: 0;
}
.dropdown-menu .dropdown-item {
    padding:.36rem 1.5rem;
    font-weight: normal;
    font-size:15px;
    border: 0;
	color: #666;
	line-height:24px;
	white-space: normal;
}
.dropdown-submenu .dropdown-menu::before {
    content: none;
}
.dropdown-submenu .dropdown-menu .dropdown-item{
	color: #212529;
	font-size:15px;
}
.dropdown-toggle::after{
	content: none;
}
.dropdown-menu li.dropdown::after {
    position: absolute;
    content: "›";
    right: 17px;
    top: 6px;
    font-size: 19px;
    color: #666;
    border: 0;
}
.navbar ul li.dropdown:hover > a{color:#d02825;}
.navbar ul.dropdown-menu li:hover > a{color:#d02825;}
.dropdown-item:hover{background:transparent; color:#d02825;}
@media only screen and (min-width: 767px) {
	.navbar ul li:hover> ul{display:block}
	.navbar ul ul{position:absolute;top:100%;min-width:220px;display:none;margin:0;}
	.navbar ul ul li:hover> ul{display:block}
	.navbar ul ul ul{position:absolute;top:0;left:100%;min-width:220px;padding: 0;display:none}
	.navbar ul ul ul li:hover ul{display:block}
	.navbar ul ul ul ul{position:absolute;top:0;left:100%;min-width:220px;display:none;z-index:1}
}

/*---- slider ----*/
.menu-right .btn-br{
	margin-left:15px;
}
.btn{
	font-size: 16px;
	padding: 9px 26px;
	border-radius: 7px;
}
.btn-red{
	background-color: #b83634;
	border: 1px solid #b83634;
	color:#fff;
}
.btn-red:hover{
	background-color:transparent;
	border: 1px solid #b83634;
	color:#b83634;
}
.btn-br{
	border: 1px solid #b83634;
	border-radius:6px;
	padding: 5px 22px;
	color:#b83634;
}
.btn-br:hover{
	background-color: #b83634;
	color:#fff;
}

footer{
	background-color: #222;
	padding-top:40px;
}
.f-logo p{
	font-size:14px;
	line-height:21px;
	margin-top:15px;
}
footer h4{
	color: #fff;
	margin-bottom: 15px;
}
.f-logo img{
	background-color:#fff;
	padding:5px;
	border-radius:5px;
}
footer p a, footer p, footer a{
	color:#d2d1d1;
	font-size: 15px;
	text-decoration: none;
}
footer ul{
	list-style-type: none;
	padding-left: 0;;
}
footer ul li a{
	color: #d2d1d1;
	font-size:15px;
	text-decoration: none;
	display: block;
    padding: 3px 0;
}
footer ul li a:hover, footer a:hover{
	color:#b4b4b4;
}
.footer-bottom{
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid #676767;
}
.con-icon {
    margin: 14px 0;
}
.con-icon i {
    margin-top: 4px;
    color: #d3d3d3;
    font-size: 18px;
    width: 20px;
}
.con-icon p {
    width: 80%;
    margin-left: 5px;
    line-height: 22px;
    margin-bottom: 0px;
}
.m-top{
	margin-top:110px;
}

.owl-sd .owl-nav{
	position: absolute;
	top:35%;
	left:-45px;
	right:-45px;
	display: flex;
	z-index: -1;
}
.owl-sd .owl-nav button.owl-prev, .owl-sd .owl-nav button.owl-next{
	background-color: #b83634;
	color: #fff;
	border-radius: 50%;
	font-size: 0;
	width: 30px;
	height: 30px;
	background-size: 18px;
	background-repeat: no-repeat;
	background-position: center;
}
.owl-sd .owl-nav button.owl-prev, .owl-sd .owl-nav button.owl-prev:hover{
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.owl-sd .owl-nav button.owl-next, .owl-sd .owl-nav button.owl-next:hover{
	margin-left: auto;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.owl-sd .owl-nav button.owl-prev:hover, .owl-sd .owl-nav button.owl-next:hover{
	background-color: #333;
	background-size: 18px;
	background-repeat: no-repeat;
	background-position: center;
}
.ex-pro-box {
    position: relative;
    margin: 15px 0;
}

.img-zoom {
    transform: scale(1);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.img-zoom:hover, .img-box:hover .img-zoom {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.test-box{
	border-radius:6px;
	padding:20px;
	text-align: center;
}
.test-box h4{
	color: #a70202;
    text-transform: uppercase;
	margin-top:10px;
	margin-bottom: 2px;
}
.testimonial .owl-item .test-box{
    opacity:0.4;
}
.testimonial .center .test-box{
	background-color:#fafafa;
	opacity:1;
}
.owl-theme .owl-dots .owl-dot.active span{
	width:30px;
}
.testimonial .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}
.text1{
	font-size:15px;
	color: #333;
	margin-bottom: 0;
}

.right-fixed{
    position: fixed;
    z-index: 9999;
    top:45%;
    right:0;
} 
.btn-inquire {
    vertical-align: top;
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    margin: 0;
    padding:4px 14px;
    background-color:#f6821f;
    font-size: 15px;
	text-transform: uppercase;
	text-decoration: none;
    color: #fff;
    border-top-left-radius:7px;
    border-top-right-radius:7px;
	position: absolute;
	right: -29px;
	top: 0;
}
.btn-inquire:hover{
	background-color:#333;
	color:#fff;
}
ul.fixed-icons {
    padding: 0;
    list-style: none;
	display: block;
	margin-top: 75px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
ul.fixed-icons {
    list-style: none;
}
ul.fixed-icons li a {
    display: block;
    margin-right: -2px;
    height: 37px;
    width:37px;
    border-radius:7px 0 0 7px;
    background: #FFF;
    margin-bottom: 4px;
    transition: all .4s ease;
    color: #2980b9;
    text-decoration: none;
    line-height: 60px;
    position: relative;
	float: right;
	clear: both;
	
}
ul.fixed-icons li .facebook {
    background: #4868af;
}
ul.fixed-icons li .instagram {
    background: #e4405f;
}
ul.fixed-icons li .youtube {
    background:#e83f3a;
}

ul.fixed-icons li a span {
    padding: 0 15px 0 30px;
    position: absolute;
    left:7px;
    line-height: 37px;
    transition: right .4s ease;
	font-size: 11px;
	color: #fff;
	width: 100%;
	letter-spacing: 2px;
	text-transform: uppercase;
	white-space: nowrap;
}
ul.fixed-icons li a i {
    position: absolute;
    top: 50%;
    left: 11px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size:18px;
	color:#fff;
}
ul.fixed-icons li a:hover {
    cursor: pointer;
     width:120px;
}
ul.fixed-icons li a:hover span {
    right:0;
}
.ml-auto{
	margin-left: auto;
}
.head-top {
    background-color:#2f3193;
    padding: 5px 0;
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.head-top ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}
.head-top ul li {
    display: inline-block;
    margin-right: 20px;
}
.head-top ul li a {
    color:#fff;
    font-size: 13px;
}
.social-icon {
    display: inline-block;
    margin-left: 5px;
}
.social-icon a {
    padding: 5px;
}
.social-icon a .fa {
    color: #fff;
}
.head-top ul li a:hover {
    color: #d4d4e7;
}
.fix-nav .head-top {
    display: none;
}
.about-img {
    position: relative;
}
.round2 {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    background-color:#2f3193;
}
.round2 img {
    opacity: 0.7;
    width: 100%;
}
.round3 {
    width: 220px;
    height: 220px;
    background-color:#2f3193;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: center;
    padding-top:68px;
}
.round3 h1 {
    color: #fff;
    font-size: 31px;
    line-height: 41px;
	font-family: 'WorkSans-SemiBold';
}
.round3 h1 span {
    color: #fff;
    font-size:21px;
    display: block;
    width: 100%;
	font-family: 'WorkSans-Regular';
}
.ex-pro-box {
    position: relative;
    margin: 15px 0;
}
.img-box {
    border-radius:8px;
    overflow: hidden;
    position: relative;
}
.img-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80%;
    z-index: 1;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(28,30,98,0.79) 0%, rgba(0,0,0,0) 65%);
    background: -webkit-linear-gradient(0deg, rgba(28,30,98,0.79) 0%, rgba(0,0,0,0) 65%);
    background: linear-gradient(0deg, rgba(28,30,98,0.79) 0%, rgba(0,0,0,0) 65%);
}
.ex-pro-box h4 {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 1;
    margin: 0;
	color: #fff;
    line-height: 30px;
    font-size: 21px;
    font-weight: normal;
    font-family: 'WorkSans-Regular';
}
.ter-sec{
	background-color:#f1f1f1;
}
.doct-sec img{
	border-radius:50%;
}
.strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
#banner .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
#banner .container .carousel-caption {
    bottom: 60px;
    max-width: 650px;
    left: 15px;
    right: 15px;
    text-align: center;
    margin: 0 auto;
}
#banner .carousel-item h1 {
    font-size: 30px;
    line-height: 42px;
	color: #fff;
}
.btn-org {
    color: #f6821f;
    font-size: 16px;
    position: relative;
    padding-right: 10px;
    margin-top: 15px;
    z-index: 1;
    display: inline-block;
}
.btn-org:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    background-color: #f6821f;
    height: 100%;
    border-radius: 50px;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}
.btn-org .fa {
    color: #fff;
    background-color: #f6821f;
    border-radius: 50%;
    padding: 3px 6px;
    font-size: 22px;
    text-align: center;
    width: 30px;
    height: 30px;
    float: left;
    margin-right: 5px;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}
.btn-org:hover {
    color: #fff;
}
.btn-org:hover:before {
    width: 100%;
}
.btn-org:hover .fa {
    color: #f6821f;
    background-color: #fff;
}
.red-sec {
    background-color:#2f3193;
}
.red-sec h1{
	color: #fff;
	margin-bottom: 10px;
}
.red-sec p{
	color: #fff;
	margin-bottom:0px;
}
.whatsapp_btn{
    position: fixed;
    bottom:8em;
    left: 20px;
    width: 55px;
    height: 55px;
    z-index: 11;
}
.whatsapp_btn .icon_logo{
    position: relative;
    z-index: 100;
    padding: 5px;
}
.whatsapp_btn .icon_logo > a > img{
    width: 100%;
}
.whatsapp_btn .circle_waves{
    border-radius: 50%;
    background-color: #3cc04e;
    width: 55px;
    height: 55px;
    position: absolute;
    opacity: 0;
    bottom: 1px;
    left: 0px;
    z-index: 99;
    animation: waves 4s infinite cubic-bezier(.36, .11, .89, .32);
}
@keyframes waves {
    from {
        transform: scale(.55, .55);
        opacity: .6;
    }
    to {
        transform: scale(1.8, 1.8);
        opacity: 0;
    }
}
 
.callus {
    width: 100%;
    margin: 8px 0 0 0;
    text-align: right;
     position: fixed;
    bottom:3em;
    left: 30px;
    width: 50px;
    height: 50px;
    z-index: 11;
}
.callus .callusL {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 100%;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    background: #eb1d39;
    color: #fff;
    margin: 0 20px 0 0;
    -webkit-box-shadow: 0px 0px 0px 7px #dc3545;
    -moz-box-shadow: 0px 0px 0px 7px rgba(232, 154, 17, 0.25);
    box-shadow: 0px 0px 0px 7px #dc354536;
    -webkit-animation: tada 1.25s infinite;
    -moz-animation: tada 1.25s infinite;
    -ms-animation: tada 1.25s infinite;
    animation: tada 1.25s infinite;
}
.callus p {
    font-size: 13px;
    text-align: left;
    font-weight: 400;
    line-height: 17px;
    margin: 0;
    letter-spacing: .6px;
    padding: 0;
    color: #545454;
}
.callus .callusR {
    float: left;
    margin: 2px 0 0 0;
}
.callus .callusR a {
    font-size: 13px;
    text-align: left;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
    letter-spacing: .4px;
    padding: 0;
    color: #153996;
    display: block;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.callus .callusR a:hover, .callus .callusR a:focus {
    color: #e89a11;
}
.test-sec{
	background-color: #f1f1f1;
}
.test-sec .carousel {
    margin: 0 auto;
    max-width: 900px;
    position: relative;
    padding-bottom: 60px;
}
.test-sec .carousel:before {
    content: '';
    position: absolute;
    top: 24px;
    left: -100px;
    background-image: url(../images/coma-left.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 50px;
    height: 100%;
}
.test-sec .carousel:after {
    content: '';
    position: absolute;
    top: 24px;
    right: -100px;
    background-image: url(../images/coma-right.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 50px;
    height: 100%;
}
.carousel-indicators [data-bs-target]{
	background-color: #2f3193;
}
.inner-banner {
    background-color: #000;
    position: relative;
}
.inner-banner img {
    opacity: 0.7;
}
.inner-banner .inner-text {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 630px;
    top:40%;
    margin: 0 auto;
}
.inner-banner .inner-text h1 {
    font-size: 45px;
    line-height: 53px;
    color: #fff;
}
.inner-banner .inner-text h6 {
    color: #fff;
}
.b-radius{
    border-radius:8px;
}
.treat-sec .col-md-6{
    margin-bottom:30px;
}
.con-round{
	width: 82px;
	height: 82px;
	background-color:#2f3193;
	border-radius: 50%;
	padding: 10px;
	color: #fff;
	text-align: center;
	align-content: center;
	font-size: 30px;
	margin: 0 auto;
	position: relative;
}
.con-round:before{
	position:absolute;
	content:'';
	top:-10px;
	left:-10px;
	right:-10px;
	bottom:-10px;
	border-radius:50%;
	border:1px dashed #2f3193;
	
}
.blu-r{
	background-color:#2f3193;
}
.blu-r:before{
	border:1px dashed #2f3193;
}
.black-r{
	background-color:#2f3193;
	font-size: 22px;
}
.black-r:before{
	border:1px dashed #2f3193;
}
.contact-page iframe{
	margin:50px 0;
}
.contact-page form{
	max-width:1050px;
	margin:0 auto;
}
.form-control {
    height: 48px;
    color: #222;
    border: 1px solid #c8c8c8;
    border-radius: 0.15rem;
    font-size: 15px;
}
textarea.form-control {
    height: auto;
}
.form-group {
    margin-bottom: 1.5rem;
}
.inner-page {
    background-color: #f8f8f8;
    padding: 40px 15px;
    text-align: center;
}
.inner-page h1 {
    margin-bottom: 0;
    width: 100%;
}
.gray-box{
    background-color: #f6f7fd;
    border-radius: 8px;
    padding: 20px 30px;
    height: 100%;
}
.gray-box h3{
    color: #2f3193;
    margin:0;
    background-image: url(../images/coma.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left:38px;
}

@media (min-width:300px) and (max-width:575px){
    .h-con li span{
        display: none;
    }
	.navbar-brand img{
		width:110px;
	}
	.navbar-dark {
		padding: 5px 0;
	}
	.m-top {
		margin-top:94px;
	}
	.navbar-dark .navbar-nav .nav-link {
		padding: 0.5rem;
	}
    #banner .carousel-item h1 {
        font-size: 16px;
        line-height: 20px;
      }
    #banner .container .carousel-caption {
        bottom: 0;
    }
	.padding {
		padding: 30px 0;
	}
	.owl-sd .owl-dots {
		display: block;
	}
	.owl-sd .owl-nav{
		display: none;
	}
	h1 {
		line-height: 31px;
		font-size: 24px;
	}
	.img-box {
		margin: 0 auto;
	}
	footer h4 {
		margin-top: 12px;
	}
	.footer-bottom{
		flex-direction: column;
	}
	.footer-bottom p{
		margin-bottom: 0;
	}
    .about-img {
        margin-bottom: 30px;
      }
    .round2 {
        width:100%;
        height: auto;
        border-radius: 10px;
      }
    .round3 h1 {
      font-size: 21px;
      line-height: 28px;
      margin-bottom:0;
    }
    .round3 {
        width: 100%;
        height: auto;
        border-radius: 10px;
        padding: 8px 0;
    }
    .round3 h1 span {
        font-size: 16px;
      }
    .red-sec .num{
        margin:10px 0;
      } 
    .red-sec h1 {
        margin-bottom: 0px;
    }
    .test-sec .carousel::before {
        content: none;
    }
    .test-sec .carousel::after {
        content: none;
    }
    .callus {
        bottom: 1em;
        left: 19px;
    }
    .whatsapp_btn {
        bottom: 5em;
        left: 15px;
      }
      .inner-banner .inner-text h1 {
        font-size: 25px;
        line-height: 16px;
      }
      .inner-banner .inner-text {
        top: 25%;
      }

}

@media (min-width:576px) and (max-width:767px){
	.navbar-brand img{
		width:150px;
	}
	.m-top {
		margin-top: 48px;
	}
    .navbar-dark {
		padding: 5px 0;
	}
	.m-top {
		margin-top:104px;
	}
	.navbar-dark .navbar-nav .nav-link {
		padding: 0.5rem;
	}
    #banner .carousel-item h1 {
        font-size:18px;
        line-height: 24px;
      }
    #banner .container .carousel-caption {
        bottom: 0;
    }
    .red-sec h1 {
        margin-bottom: 0px;
        line-height: 31px;
        font-size: 24px;
      }
      .red-sec p {
        line-height: 18px;
        font-size: 14px;
      }
      .test-sec .carousel::before {
        content: none;
    }
    .test-sec .carousel::after {
        content: none;
    }
    .f-logo img {
        margin-bottom: 26px;
      }
      .callus {
        bottom: 1em;
        left: 19px;
    }
    .whatsapp_btn {
        bottom: 5em;
        left: 15px;
      }
	
	}
@media (min-width:768px) and (max-width:991px){
	.navbar-brand img{
		width:170px;
	}
	.navbar-dark .navbar-nav .nav-link {
		padding: 0.5rem;
	}
	.m-top {
		margin-top:105px;
	}
	.owl-sd .owl-nav {
		left: -30px;
		right: -30px;
		z-index:0;
	}
    .red-sec h1 {
        margin-bottom: 0px;
        line-height: 31px;
        font-size: 24px;
      }
      .red-sec p {
        line-height: 18px;
        font-size: 14px;
      }
      .test-sec .carousel::before {
        content: none;
    }
    .test-sec .carousel::after {
        content: none;
    }
      .callus {
        bottom: 1em;
        left: 19px;
    }
    .whatsapp_btn {
        bottom: 5em;
        left: 15px;
      }
    .round2 {
        width: 450px;
        height: 270px;
    }
    .round3 h1 {
        font-size: 26px;
        line-height: 31px;
    }
    .round3 h1 span {
        font-size: 18px;
    }
    .round3 {
        width: 170px;
        height: 170px;
        bottom: -100px;
        padding-top: 53px;
      }

	}	
@media (min-width:991px) and (max-width:1199px){	
   .navbar-brand img{
	  width: 160px;
   }
   .round2 {
    width: 370px;
    height: 370px;
  }
   .m-top {
    margin-top: 112px;
  }
   .navbar-dark .navbar-nav .nav-link{
	font-size: 15px;
	padding-right: 0.6rem;
	padding-left: 0.6rem;
   }
   .test-sec .carousel {
    max-width:800px;
  }
  .test-sec .carousel::before {
    left: -70px;
  }
  .test-sec .carousel::after {
    right: -70px;
  }

 }
@media (min-width:1100px) and (max-width:1199px){
	.round-img {
		width: 65px;
		height: 65px;
	}
}
@media (min-width:1200px) and (max-width:1299px){

}
@media (min-width:1300px) and (max-width:1566px){
	.container {
		max-width: 1270px;
	}
	.round-img {
		width: 65px;
		height: 65px;
	}
}
@media (min-width:1600px){

  
}
@media (min-width:1920px){

  
}