/********** Template CSS **********/
:root {
    --primary: #1D357D;
    --secondary: #EF7F1A;
    --light: #fff9f1;
    --dark: #000;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: "Poppins", serif;
    font-weight: 600;
    transition: .5s;
    white-space: nowrap;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: "Poppins", serif;
    /* padding: 25px 10px; */
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
    margin-right: 5px;
    outline: none;
    transition: .5s;
    white-space: nowrap;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    /* padding: 25px 10px; */
    margin-right: 5px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #ffffff;
    background-color: #f6802e;
    box-shadow: 3px 3px 2px 0px #c0d9f091;
    border-radius: 2px;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .85);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        /* margin-top: -90px; */
        z-index: 1;
    }
}

.section-title .h5::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    right: -40px;
    bottom: 11px;
    background: #1D357D;
}

.section-title .h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -60px;
    bottom: 11px;
    background: #ef7f1a;
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/dummybanner.jpg) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/dummybanner.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: rgba(235, 135, 14, .7);
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background:url(../img/dummybanner.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgba(235, 135, 14, .85);
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../img/dummybanner.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(255, 255, 255, 0.85);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}

.testimonial-item{
    box-shadow: 0px 0px 9px #cbcbcb96;
    margin: 10px;
    padding: 20px;
    background-color:#EF7F1A ;
}
/* mycss */

.w-85{
    width:85%;
}

.bg-blue{
    background-color:#1D357D!important ;
}
.bg-orange{
    background-color:#ef7f1a!important ;
}
.bg-green{
    background-color:#0a9941 !important ;
}

.counter-box {
	display: block;
	background: #ffc1c1;
	padding: 20px 15px 20px;
	text-align: center
}

.counter-box p {
	margin: 5px 0 0;
	padding: 0;
	color: #ffc1c1;
	font-size: 15px;
	font-weight: 500
}

.counter-box .fa {
	font-size: 60px;
	margin: 0 0 15px;
	color: #ffc1c1;
}

.counter { 
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #666;
	line-height: 28px
}

.counter-box.colored {
      background:#1D357D;
}

.counter-box.colored p,
.counter-box.colored i {
	color: #c2d9f2;
}

.counter-box.colored .counter {
	color: #ffffff;
}

.bg-light{
    background-color: #c2d9f2!important;
}
.bg-light-blue{
    background-color: #eef6ff!important;
}
.bg-grey{
    background-color: #e1e1e1!important;
}
.bg-light-green{
    background-color: #caf5ce!important;
}
.text-blue{
    color: #1D357D!important;
}
.text-green{
    color: #0a9941!important;
}

ul.list{
    list-style-type: none;
    padding-left:0;
    }
    
    ul.list li {
       display: flex;
    
    }
    ul.list li::before {
        font-family: "FontAwesome";
        content: "\f0da";
      color:#0a9941;
        padding: 0 10px 0 0;
    }
    
ul.list2{
    list-style-type: none;
    padding-left:0;
    }
    
    ul.list2 li {
       display: flex;
    
    }
    ul.list2 li::before {
        font-family: "FontAwesome";
        content: "\f0da";
      color:#ffffff;
        padding: 0 10px 0 0;
    }
    
    .table{
        color: #000 !important;
    }

    .help-block{
        color: red!important;
    }

    
    #movetop1 {
        display: block;
        position: fixed;
        bottom: 0px;
        right: 0px;
        z-index: 99;
        border: none;
        outline: none;
        cursor: pointer;
        width: auto;
        height: 45px;
        background: #0a9941;
        padding: 0;
        opacity: 1;
        transition: 0.3s ease;
        padding: 0 0px;
        border-radius: 20px 0px 0px;  padding-right: 12em;
      } 
      #movetop2 {  
      display: block; 
       position: fixed;  
       bottom: 0px;  
       right: 0px;  
       z-index: 99;  
       border: none;  
       outline: none;  
       cursor: pointer;  
       width: auto;  
       height: 45px;  
       background: #1D357D;  
       padding: 0;  
       opacity: 1;  
       transition: 0.3s ease;  
       padding: 0 10px;  
       border-radius: 20px 0px 0px;
    }

    @media (max-width: 768px) {        
        .section-title p{
            text-align: left!important;
        
        }
        .section-title .h5{            
            font-size: 13px!important;
        }
        .section-title .h5::before {
            position: absolute;
            content: "";
            width: 20px;
            height: 2px;
            right: -30px;
            bottom: 7px;
            background: #1D357D;
        }
        
        .section-title .h5::after {
            position: absolute;
            content: "";
            width: 10px;
            height: 2px;
            right: -45px;
            bottom: 7px;
            background: #ef7f1a;
        }
        .table{
            font-size: 11px;
        }
        .h5, h5{
            font-size:0.9em!important;
        }
        p{
            line-height: 1.3;
            font-size: 13px;
        }
    }

.w-35{
	width:35%;
}

.fa-2x{
    font-size: 1.4em!important;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #ffffff!important;
    background-color: #19337a!important;
    border-color: none!important;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
margin-bottom: -1px;
    background: #f6802e;
    border: none;
    color:#fff;
}


.accordion-button{
    color: #000 !important;
}

.accordion-button:not(.collapsed) {
    color: #ffffff!important;
    background-color: #19337a;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}