body{
    font-family: 'Work Sans', sans-serif;
}
.btn-link.focus, .btn-link:focus{
    text-decoration: none;
}
/*** Spinner ***/
#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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

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

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

.btn-md-square {
    width: 44px;
    height: 44px;
}

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

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn-square i {
    color: #09133A;
}

.btn-square{
    background-color: #fff;
    padding: 20px;
    margin: 5px;
    border-radius: 10px;
}

.btn.btn-primary {
    color: #fff;
    border-radius: 5px !important;
    padding: 10px 30px !important;
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
    border: 1px solid #DB9D00;
}

.btn.btn-primary:focus{
    background: #DB9D00;
    border: 1px solid #DB9D00;
}

.btn.btn-primary:active{
    background: #DB9D00;
    border: 1px solid #DB9D00;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Work Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 15px;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
    padding: 10px 20px;
    max-height: 100px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 60px;
    padding: 5px 0;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 60px;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


i.fas.fa-phone-alt.phone-icon.me-2 {
    color: #1D2651;
    background: #fff;
    padding: 1px;
    width: 20px;
    height: 20px;
    place-content: center;
    text-align: center;
    border-radius: 2px;
}



/*** Footer Start ***/
.footer {
    background: #09133A;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
  
    color: #DB9D00;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: #09133A;
    
    border-top: 1px solid #ffffff23
}

.home-bg{
    background-image: url("../img/bg-home.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.home-ban{
    align-content: center;
}

.home-ban h1{
    font-size: 48px;
    font-weight: 700;
    color: #1D2651;
}

.home-ban h1 span{
    color: #DB9D00;
}

.home-ban p{
    font-size: 17px;
    color: #6E6E6E;
}

.about-bg{
    background-image: url("../img/balls.png");
    background-position: bottom;
    background-position-x: left;
    background-repeat: no-repeat;
}

.line-small{
    height: 5px !important;
    width: 80px;
    border-radius: 30px;
    color: #DB9D00;
    opacity: 1;
}

 h6{
   color: #1D2651; 
   font-weight: 600;
   font-size: 20px;
}
 h2{
    font-size: 36px;
    color: #1D2651; 
   font-weight: 700;
}

.about-bg p{
    
    font-size: 17px;
    color: #6E6E6E;
}

.about-bg ul{
    list-style: none;
    padding-left: 0;
}

.about-bg ul li img{
    padding-right: 10px;
}
.about-bg ul li{
    padding: 10px 0;
}

.bg-gray{    background: #F8F8F8;
    background-repeat: no-repeat;
    background-size: cover;
}

.box{
    background: #fff;
    box-shadow: 0 0 10px #00000034;
    border-radius: 10px;
    padding: 30px;
    min-height: 100%;
}

.box img{
    margin: -100px 0 0 0;
    border-radius: 10px;
}
.box p{
    text-align: center;
    margin-top: 20px;
    font-size: 17px;
    color: #6E6E6E;
}

.box h3{
    text-align: center;
    color: #1D2651;
    font-weight: 600;
    font-size: 24px;
}

#myCarousel {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }

    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
.mobile-mt-0{
    margin-top: 0 !important;
}

.mobile-pt-0{
    padding-top: 0 !important;
}

h1{
    font-size: 25px !important;
}
h2{
    font-size: 24px !important;
}
.about-bg{
    background-image: none;
}

.contact-info{
    position: inherit !important;
}

}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-start,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

@media (min-width: 768px) {

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next,
    .carousel-item-next:not(.carousel-item-start) {
        transform: translateX(25%) !important;
    }

    .carousel-inner .carousel-item-left.active,
    .carousel-item-prev:not(.carousel-item-end),
    .active.carousel-item-start,
    .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(-25%) !important;
    }

    .carousel-item-next.carousel-item-start,
    .active.carousel-item-end {
        transform: translateX(0) !important;
    }

    .carousel-inner .carousel-item-prev,
    .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(-25%) !important;
    }
}

.card{
    border: none;
}

.carousel-control-next-icon {
    background-image: url(../img/arrow.png);
    width: 50px;
    height: 50px;
}

.carousel-control-prev-icon {
    background-image: url(../img/arrow.png);
    transform: rotate(180deg);
    width: 50px;
    height: 50px;
}

.carousel-control-prev, .carousel-control-next {
    opacity: 1;
}
.carousel-control-prev{
    justify-content: flex-start;
}
.carousel-control-next{
    justify-content: flex-end;
}

.bg-gray-img {
    background-image: url(../img/bg-gray-img.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.btn-acc1{
    width: 100%;
    text-align: left;
    background: #fff;
    border-radius: 0;
    padding:10px 15px;
    color: #06113C;
    box-shadow: 0 0 10px #33333317;
    display: flex;
    place-content: space-between;
    align-items: center;
}

.btn-acc1 i{
    font-size: 15px;}
    
    .btn-acc1 span{
        font-size: 15px;
        font-weight: 700;
    }
    
    .btn-acc1:hover{
        text-decoration: none;
        border: none;
        color: #f39c12;
    }



.btn-acc{
    width: 100%;
    text-align: left;
    background: #fff;
    border-radius: 0;
    padding: 15px;
    color: #06113C;
    box-shadow: 0 0 10px #33333317;
    display: flex;
    place-content: space-between;
    align-items: center;
}
.btn-acc i{
color: #fff;
background: #DB9D00;
padding: 10px;}

.btn-acc span{
    font-size: 18px;
    font-weight: 700;
}

.btn-acc:hover{
    text-decoration: none;
    border: none;
    color: #f39c12;
}

.contact-menu ul{
    list-style: none;
    padding-left: 0;
}

.contact-menu ul li img{
    padding-right: 10px;
}

.contact-menu ul li {
    padding: 10px 0;
}


.counter-box {
	display: block;
	background: #fff;
	padding: 40px 20px 37px;
	text-align: center
}

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

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

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

.counter-box.colored {
      background: #DB9D00;
}

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


.testimonial-box {
    box-shadow: 0 0 10px #0000002b;
    text-align: center;
    padding: 20px;
    margin: 20px;
    background-color: #fff;
    position: relative; 
    overflow: hidden;
    border-radius: 10px;
    min-height: 300px;
  }
  .testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  .rating {
    color: #f39c12;
  }

  .carousel-indicators li{
    background-color: #f39c12;
  }


  .quote-cat{
    position: absolute;
    right: 25px;
    top: 20px;
    line-height: 1;
    z-index: 1;
  }
.quote-cat::before{
    position: absolute;
    content: "";
    top: -100px;
    left: -30px;
    width: 160px;
    height: 160px;
    z-index: -1;
    border-radius: 50%;
    background-color: #DB9D00;
  }
.testimonial-box h3{
    font-weight: 700;
    font-size: 20px;
  }

  .testimonial-box h5{
    font-size: 17px;
    color: #f39c12;
  }

  .accordion-toggle::after {
    display: inline-block;
    content: '\e114'; /* Unicode for the "caret-down" icon */
    font-family: 'Glyphicons Halflings'; /* Bootstrap's icon font family */
    float: right;
  }
  .accordion-toggle.collapsed::after {
    content: '\e113'; /* Unicode for the "caret-right" icon */
  }


  .contact-info {
    box-shadow: 0 0 10px #0000002a;
    padding: 30px;
    border-radius: 10px;
    position: absolute;
    z-index: 31;
    background: #fff;
}

.section-heading p {
    font-size: 18px;
    color: #333;
}

.form-wrap {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    background: #FAFAFA;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    border: none;
    height: 60px;
}

textarea.form-control {
    height: 120px;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:20px;
	left:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
