/********** Template CSS **********/
:root {
    --bs-tertiary: #797E88;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
p.jwiwi {
    font-size: 44px;
    font-weight: 800;
    line-height: 54px;
    font-family: "Jost", sans-serif;
    color: #1a685b !important;
}
.fa-chevron-circle-right, .fa-circle-chevron-right {
    margin-right: 5px;
    color: #ffac00;
}
a.scvbh {
    margin-top: 12px;
}
.col-md-12.me2 p {
    font-size: 20px;
    line-height: 2px;
    color: #000;
}
.hhfo.p-3 {
    margin-left: 0px;
    text-align: left;
    margin-top: -180px;
}


.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}


/*** 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;
}


/*** Button ***/
.btn {
    transition: .5s;
}

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

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

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

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


/*** Top Bar ***/
.top-bar {
    height: 90px;
    padding: 0 90px;
}

.top-bar h6 {
    letter-spacing: 1px;
}


/*** Nav Bar ***/
.nav-bar {
    padding: 0 90px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 18px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header Carousel ***/
.header-carousel {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

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

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
}


/*** Video ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-dark);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}


/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

.service-item a {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    transition: .5s;
}

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    border-bottom: 2px solid var(--bs-primary);
}


/*** Donation ***/
.donation-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.donation-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.donation-item .donation-progress {
    width: 80px;
}

.donation-item .progress .progress-bar {
    height: 20px;
    overflow: visible;
    transition: 3s;
}


/*** Banner ***/
.banner .banner-inner {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}


/*** Event ***/
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}


/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group {
    display: flex;
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group .btn-check:checked+.btn {
    border: none;
    background: var(--bs-white);
}



/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}



/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    transition: .5s;
}

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

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}


.sbbvd {
   
    height: 400px;
}
.carxja {
    position: absolute;
    margin-top: -282px;
    margin-left: 75px;
    width: 42%;
}
/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
    background: linear-gradient(rgba(5, 19, 17, .95), rgba(5, 19, 17, .95));
    background-size: cover;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-tertiary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.alert{ color: #666; text-align: center; margin: 50px 0; }

@media handheld, screen and (min-width: 767px){
  .no_scroll{ overflow-y: hidden; }
  .abrir_menu{ display: none; }  
  
  #menu{
    width: 100%;
    height: 50px;
    margin: 0 auto;
    }  
 
  #navigator{
    height: 50px;
    line-height: 50px;
		box-shadow: 0 7px 6px -7px #373435;
		-webkit-box-shadow: 0 7px 6px -7px #373435;
		-moz-box-shadow: 0 7px 6px -7px #373435;
    }
  
  
  #navigator .title{ display: none; }
  #navigator ul{ list-style: none;width: 75%;
        float: left; }
  #navigator > ul > li{
    padding: 0px 10px;
    
    }
    ul.nav {
    margin-left: 80px;
}
  .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.dropdown-toggle {
    white-space: nowrap;
}
i.fa-solid.fa-caret-down {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-left: 4px;
}
  #navigator ul li a {
        
        color: #000;
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
        display: block;
        padding: 0px 4px;
    }
  
  
  i.inner.fa-solid.fa-caret-down {
    color: #fff;
}


/*menu css starts*/

  #navigator ul li > ul,
  #navigator ul li li > ul,
  #navigator ul li li li > ul,
  #navigator ul li li li li> ul,
  #navigator ul li li li li li > ul{ display: none; }
  
  #navigator ul li:hover > ul,
  #navigator ul li li:hover > ul,
  #navigator ul li li li:hover > ul,
  #navigator ul li li li li:hover > ul,
  #navigator ul li li li li li:hover > ul{
      padding-left: 8px;
    position: absolute;
    z-index: 10;
    width: 180px;
    line-height: 20px;
    display: block;
    background: #ce9233;
		
		box-shadow: 0 7px 6px -7px #373435;
		-webkit-box-shadow: 0 7px 6px -7px #373435;
		-moz-box-shadow: 0 7px 6px -7px #373435;
    }
  
  #menu ul ul li ul{
    top: 0;
    left: 179px;
    min-height: 100%;
    border-left: 1px solid #444;
  }
  
  #menu ul ul li{ /*position: relative;*/ }
  #menu ul ul li a{
    color: #fefefe;
        font-size: 12px;
        font-family: 'Open Sans Condensed', sans-serif;
        text-transform: uppercase;
        display: block;
        padding: 7px 7px;
        border-top: 1px solid rgba(255, 255, 255, 0.045);
        border-bottom: 1px solid rgba(0, 0, 0, 0.045);
        text-transform: uppercase;
        text-align: left;
    }
   
  #menu ul ul li:hover > a{ background: #444; }
  #menu ul ul li li:hover > a{}
  #menu ul ul li li li:hover > a{}
  #menu ul ul li li li li:hover > a{}
  #menu ul ul li li li li li:hover > a{}
}



@media handheld, screen and (max-width: 767px){
  
  /* [ Open/Close =====================================*/
  /* ==================================================*/
  .abrir_menu{ display: block; }
      img.djinm {
        width: 5%;
        margin-left: 10px;
    }
    ul.qnbh.nav {
        display: block;
        margin-left: 0px !important;
    }
  .abrir_menu span{
    color: #fefefe;
    font-size: 20px;
    font-family: 'Open Sans Condensed', sans-serif;
    text-align: center;
    letter-spacing: 5px;
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    display: block;
    cursor: pointer;
    background: #333 url() no-repeat 10px center;

    box-shadow: 0 7px 3px -7px #373435;
    -webkit-box-shadow: 0 7px 3px -7px #373435;
    -moz-box-shadow: 0 7px 3px -7px #373435;
    }

  .open > .abrir_menu{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: block; background: rgba(225,225,225,0.85); }
  .open > .abrir_menu span{ opacity: 0.1 !important; }
  
  .menu_aberto{
    position: fixed;
    z-index: 99;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    background: #555;
    transition: 0.3s;

    box-shadow: -4px 0 15px 0px #373435;
    -webkit-box-shadow: -4px 0 15px 0px #373435;
    -moz-box-shadow: -4px 0 15px 0px #373435;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
  }
  .open > .menu_aberto{ left: 0; }	
  
  /* Open/Close ] =====================================*/
  /* ==================================================*/
  
  
  /* [ Menu ===========================================*/
  /* ==================================================*/
  #navigator .title{
    color: #666;
    font-size: 20px;
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
    text-shadow: 0.8px 0.8px 3px #111;
    height: 60px;
    line-height: 62px;
    display: block;
    padding: 0 20px;
    border-bottom: 1px solid rgba(0,0,0,0.045);
    background: #333 url() no-repeat 20px center;

    box-shadow: -4px 0 5px 0px #373435;
    -webkit-box-shadow: -4px 0 5px 0px #373435;
    -moz-box-shadow: -4px 0 5px 0px #373435;
  }

  #navigator ul li > ul,
  #navigator ul li li > ul,
  #navigator ul li li li > ul,
  #navigator ul li li li li > ul,
  #navigator ul li li li li li > ul{
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0,0,0,0.1);

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
  }

  #navigator ul li{ float: none; display: block; }		
  #navigator ul li a{
    color: #999;
    font-size: 14px !important;
    display: block;
    padding: 20px !important;
    border-top: 1px solid rgba(255,255,255,0.045) !important;
    border-bottom: 1px solid rgba(0,0,0,0.045) !important;
  }

  #navigator > ul > li:hover > a{ color: #aaa; background: #444; }


  /* Styles (Links/Hover/Ativo Sub Menu) ==============*/
  /* ==================================================*/
  #navigator > ul > li > .parent,
  #navigator > ul > li:hover > .parent,
  #navigator > ul > li.hover > .parent,

  #navigator ul li li > .parent,
  #navigator ul li li:hover > .parent,
  #navigator ul li li.hover > .parent{ background-repeat: no-repeat; background-position: 260px center; }

  #navigator > ul > li > .parent,
  #navigator > ul > li:hover > .parent{ color: #aaa; background-color: inherit; background-image: url(); }	
  #navigator > ul > li.hover > .parent{ color: #aaa; background-color: #444; background-image: url(); }	

  
  /* Styles (Links/Hover/Ativo Sub>Sub Menu) ==========*/
  /* ==================================================*/
  #navigator ul li li a{ color: #aaa; font-size: 12px; }
  #navigator ul li li > .parent,
  #navigator ul li li:hover > .parent{ color: #aaa; background-color: inherit; background-image: url(); }	
  #navigator ul li li.hover > .parent{ color: #aaa; background-color: rgba(0,0,0,0.1); background-image: url(); }

  .nav ul{ display: none; left: -9999px; }
  .nav li.hover > ul,
  .nav li li.hover > ul,
  .nav li li li.hover > ul,
  .nav li li li li.hover > ul,
  .nav li li li li li.hover > ul,
  .nav li li li li li li.hover > ul{
    position: static !important;
    display: block !important;
  }
  /* Menu ] ===========================================*/
  /* ==================================================*/
}

@media handheld, screen and (max-width: 480px){
	
  .open > .menu_aberto{ width: 250px; }
  #menu > ul > li > .parent,
  #menu > ul > li:hover > .parent,
  #menu > ul > li.hover > .parent,

  #menu ul li li > .parent,
  #menu ul li li:hover > .parent,
  #menu ul li li.hover > .parent{ background-repeat: no-repeat; background-position: 210px center; }
	
}

@media handheld, screen and (max-width: 319px){
	
  .open > .menu_aberto{ width: 200px; }
  #menu > ul > li > .parent,
  #menu > ul > li:hover > .parent,
  #menu > ul > li.hover > .parent,

  #menu ul li li > .parent,
  #menu ul li li:hover > .parent,
  #menu ul li li.hover > .parent{ background-repeat: no-repeat; background-position: 150px center; }

}
.qnmjk {
    width: 100%;
    display: block;
    margin-bottom: 8px;
}
.wnbhy {
    width: 100%;
    display: block;
}
/*menu css ends*/


img.cvnk {
    width: 42%;
    background: #fff;
}

img.cblfj {
    width: 4%;
    margin-left: 8px;
}
h4.forres a {
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
}
.ajap.col-lg-4 {
    margin-left: 110px;
}
p.bro {
    text-align: center;
    margin-bottom: 0px;
}
.lksa {
    transition: color .3s 
ease-in-out, box-shadow .3s 
ease-in-out;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    font-style: italic;
    text-decoration: underline !important;
}
p.cvb.spacehead {
    margin: 0px !important;
    text-align: center;
    color: #ffac00;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    font-style: italic;
    padding-bottom: 5px;
    width: 75%;
    margin: auto !important;
}
span.kloc {
    color: #f5e9d9;
}
.jaxjpa.col-lg-4 {
    width: 45%;
    margin: auto;
}

/*--------------------------------------------------------------
# Work Process Section
--------------------------------------------------------------*/
.work-process .steps-item {
  background: #fff;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 20px color-mix(in srgb, #444444, transparent 92%);
}

.work-process .steps-item .steps-image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.work-process .steps-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.work-process .steps-item:hover .steps-number {
  background: #1a685b;
     color: #fff;
}

.work-process .steps-item:hover .steps-image img {
  transform: scale(1.1);
}

.work-process .steps-image {
  position: relative;
  height: 280px;
}

.work-process .steps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-process .steps-content {
  position: relative;
  padding: 40px 30px 30px;
}
p.ksj, .cdslfs {
    text-align: center;
}
.work-process .steps-content .steps-number {
  position: absolute;
  left: 30px;
  top: -30px;
  width: 60px;
  height: 60px;
  background: #feab00;
    color: #fff;
  border-radius: 50%;
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.work-process .steps-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.work-process .steps-content p {
  
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.work-process .steps-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.work-process .steps-features .feature-item:last-child {
  margin-bottom: 0;
}

.work-process .steps-features .feature-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.work-process .steps-features .feature-item span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}
@media (max-width: 1322px) {
p.cvb.spacehead {
    
    font-size: 16px;
    line-height: 24px;
}
.cncn > ul > li > a {
        
        font-size: 14px;
        text-transform: capitalize;
}
.jaxjpa.col-lg-4 {
    width: 52%;
}
h4.skd.forres {
    line-height: 22px;
}
a.jjhfd {
    color: #fff !important;
    font-size: 16px !important;
    line-height: 17px !important;
}
}

@media (max-width: 1040px) {
    .cncn > ul > li > a {
        font-size: 14px !important;
        padding: 0px 3px !important;
    }
    p.hwdb {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    margin-left: -27px;
}
    .wnvgyh.sbhym, .col-md-12.me2 p {
        
        margin-left: -30px;
    }
    a.snkborder {
    
    margin-left: -22px;
}
    
}
@media (max-width: 962px) {
    ul.nav {
        margin-left: 40px !important;
    }
        .cncn ul {
        width: 73% !important;
    }
    }
    @media (max-width: 940px) {
    .wbbvbmm.wnvgyh.sbhym {
        font-size: 20px !important;
        line-height: 25px !important;
        margin-bottom: 5px !important;
    }
    .bshka.col-lg-4.col-md-4.text-center.text-lg-start {
    text-align: left !important;
}
img.cvnk {
    width: 50%;
}
    .hsahsj.jaxjpa.col-lg-4 {
        width: 60% !important;
       
    }
    .ajap.col-lg-4 {
    margin-left: 96px;
}
    a.snkborder {
        font-size: 12px !important;
        margin-top: 6px !important;
    }
        .col-md-12.me2 .ljgio {
        font-size: 15px !important;
        line-height: 16px !important;
    }
    .fa-chevron-circle-right, .fa-circle-chevron-right {
    margin-right: 1px;
    color: #ffac00;
    font-size: 13px;
}
    }
    
    @media (max-width: 922px) {
    #navigator > ul > li {
        padding: 0px 2px !important;
    }
}
@media (max-width: 880px) {
    p.cvb.spacehead {
        font-size: 12px !important;
        line-height: 20px !important;
        padding-top: 13px !important;
        margin-left: -17px !important;
    }
        .hsahsj.jaxjpa.col-lg-4 {
        width: 55% !important;
    }
    .hslnm.hsj.dhsfhs.flex-shrink-0.btn-square.bg-primary {
    width: 35px;
    height: 35px;
}
}
@media (max-width: 1076px) {
    .jaxjpa.col-lg-4 {
        width: 55% !important;
        margin-left: -64px !important;
    }
}
@media (max-width: 1026px) {
    a.jjhfd {
        color: #fff !important;
        font-size: 14px !important;
        line-height: 15px !important;
    }
}
@media (max-width: 1282px) {
    .jaxjpa.col-lg-4 {
        width: 52%;
        margin-left: -57px;
    }
}
@media (max-width: 1099px) {
    .sbbvd {
        height: 310px !important;
    }
        .shufe.carxja {
        margin-top: -229px !important;
    }
}
@media (max-width: 1199px) {
  .work-process .steps-image {
    height: 240px ;
  }
      .carxja {
        margin-top: -256px !important;
    }
  .sbbvd {
    height: 350px;
}
  .fvbqc .container-xxl {
    padding-bottom: 0px !important;
}
.cdjkc .container-xxl {
    padding-bottom: 0px !important;
}
.ncns.askab {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}
  .service-item2 {
    height: 375px !important;
    padding-top: 0px !important;
}
  #navigator ul li a {
        
        font-size: 15px;
        text-transform: capitalize;
        padding: 0px 2px;
    }
  .jilslkl {
    padding-top: 15px !important;
}
  .footer {
    
    padding-bottom: 15px !important;
}
  .hdlhs {
    padding: 0px !important;
}
  a.snkborder {
    
    font-size: 15px !important;
  }
  .wnvgyh.sbhym {
        font-size: 26px !important;
        line-height: 34px !important;
    }
  .work-process .steps-content {
    padding: 35px 25px 25px;
  }

  .work-process .steps-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 890px) {
    ul.nav {
        margin-left: 13px !important;
    }
        .cncn ul {
        width: 76% !important;
    }
}
@media (max-width: 715px) {
.bshka.col-lg-4.col-md-4.text-center.text-lg-start {
        
        width: 40% !important;
        
    }
    .njxztty.col-lg-8.col-md-8.d-lg-block {
        width: 56% !important;
    }
        img.cvnk {
        width: 70%;
    }
}
@media (max-width: 700px) {
.carousel .carousel-caption {
        padding-left: 110px !important;
    }
        .sjzhcj.sbbvd {
        height: 200px !important;
    }
        .carousel .anngyup.carousel-item {
        min-height: 229px !important;
    }
    .wbbvbmm.wnvgyh.sbhym {
        font-size: 16px !important;
        line-height: 23px !important;
    }
        .col-md-12.me2 .ljgio {
        font-size: 13px !important;
        line-height: 14px !important;
    }
    a.snkborder {
        font-size: 11px !important;
    }
}
@media (max-width: 767px) {
   .bshka.col-lg-4.col-md-4.text-center.text-lg-start {
        text-align: left !important;
        width: 45%;
        float: left;
    }
    
    .sbbvd {
        height: 215px !important;
    
}
        .hso {
        font-size: 24px !important;
        line-height: 30px !important;
        }
            h3.scb {
        font-size: 22px !important;
        line-height: 24px !important;
    }
    .cncn ul {
        width: 100% !important;
    }
    img.muzzk {
    width: 80% !important;
    margin: auto;
    text-align: center;
}
    .jsdi {
    margin-top: 22px;
}
    .kecwz .container-fluid.py-5 {
    padding-bottom: 0px !important;
}
    .testimonial-text.pb-5.pb-md-0 {
    padding-bottom: 0px !important;
}
    img.shttbhje.img-fluid {
    width: 75%;
}
    .carousel .carousel-indicators {
   
    width: 65px !important;
        margin-left: 20px !important;
}
        .carousel .carousel-item {
        min-height: 259px !important;
    }
    ul.nsajaamk.nsssn {
    width: 100% !important;
}
    .top-bar {
    height: 110px;
    }
    p.cvb.spacehead {
        
        padding-top: 3px !important;
    }
        .hsahsj.jaxjpa.col-lg-4 {
        width: 100% !important;
        float: right;
        margin: auto !important;
    }
    .njxztty.col-lg-8.col-md-8.d-lg-block {
    width: 50%;
}
.ajap.col-lg-4 {
        margin-left: 75px;
    }
}
@media (max-width: 655px) {
    .hslnm.hsj.dhsfhs.flex-shrink-0.btn-square.bg-primary {
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 640px) {
    .bshka.col-lg-4.col-md-4.text-center.text-lg-start {
        width: 35% !important;
    }
    img.cvnk {
        width: 85%;
    }
        .njxztty.col-lg-8.col-md-8.d-lg-block {
        width: 59% !important;
    }
}
@media (max-width: 600px) {
.carousel .anngyup.carousel-item {
        min-height: 184px !important;
    }
        .cnxo.hwdb {
        font-size: 12px !important;
        line-height: 18px !important;
        }
            .sjzhcj.sbbvd {
        height: 180px !important;
    }
    .jsack.shufe.carxja {
        margin-top: -139px !important;
    }
    img.shttbhje.img-fluid {
        width: 100%;
    }
    .hsqnc {
    margin-top: 20px;
}
.jeieq .container-fluid {
    padding-bottom: 26px !important;
}
    img.muzzk {
        width: 90% !important;
    }
    .jcxkc {
    margin-top: 16px;
}
    .about-img::before, .about-img::after {
    
   
    height: 0px;
    }
        .carousel .carousel-indicators {
        width: 45px !important;
        }
            .carousel .carousel-caption {
        padding-left: 92px !important;
    }
    .bxsxaxkh {
    font-size: 20px;
    line-height: 24px;
}
    h3.cgii {
    font-size: 22px;
    line-height: 29px;
}
     h3.scb {
        font-size: 20px !important;
        line-height: 22px !important;
    }
    .dhhdkx {
    width: 90%;
    margin-left: 10px;
}
    .ajap.col-lg-4 {
        margin-left: 0px;
    }
        .hslnm.hsj.dhsfhs.flex-shrink-0.btn-square.bg-primary {
        width: 32px;
        height: 32px;
        float: left;
        margin-right: 14px;
    }
    h4.skd.forres {
        line-height: 20px;
        font-size: 18px;
        margin-bottom: 4px;
    }
    a.jjhfd {
       
        font-size: 15px !important;
        line-height: 23px !important;
    }
        .top-bar {
        height: 175px;
    }
    .fsljdfq {
    display: block !important;
    margin-left: 85px;
}
    .hjgqxo.d-flex.justify-content-end {
    display: block !important;
    text-align: center !important;
}
p.cvb.spacehead {
    width: 100%;
    font-size: 15px !important;
    margin: auto;
    line-height: 22px !important;
    padding-top: 10px !important;
}
.hsahsj.jaxjpa.col-lg-4 {
       
        float: unset;
    }
    .hsjhlob.njxztty.col-lg-8.col-md-8.col-sm-12.d-lg-block {
    width: 100% !important;
}
        .wbbvbmm.wnvgyh.sbhym {
        font-size: 14px !important;
        line-height: 20px !important;
    }
        .col-md-12.me2 .ljgio {
        font-size: 10px !important;
        line-height: 9px !important;
        margin-bottom: 5px !important;
    }
        a.snkborder {
        font-size: 9px !important;
    }
        .hqpxty.bshka.col-lg-4.col-md-4.text-center.text-lg-start {
        width: 100% !important;
        margin: auto !important;
        text-align: center !important;
    }
            img.cvnk {
        width: 30%;
        margin: auto;
        margin-top: 10px;
    }
    .bxuio.hso {
        font-size: 22px !important;
        line-height: 28px !important;
        margin-bottom: 4px !important;
    }
}
@media (max-width: 550px) {
.top-bar {
    
    padding: 0 58px;
}
p.cvb.spacehead {
        
        margin: auto !important;
    }
}
@media (max-width: 500px) {
    .jsack.shufe.carxja {
        margin-top: -133px !important;
        margin-left: 49px;
    }
        .cnxo.hwdb {
        font-size: 10px !important;
        line-height: 15px !important;
    }
}
@media (max-width: 480px) {
    .top-bar {
        padding: 0 31px;
    }
}
@media (max-width: 420px) {
    .top-bar {
        padding: 0 15px;
    }
}
@media (max-width: 414x) {
    .sjzhcj.sbbvd {
        height: 160px !important;
    }
}
@media (max-width: 510px) {
   
        .carousel .anngyup.carousel-item {
        min-height: 167px !important;
    }
        .fa-chevron-circle-right, .fa-circle-chevron-right {
       
        font-size: 10px;
    }
    .wbbvbmm.wnvgyh.sbhym {
        font-size: 12px !important;
        line-height: 17px !important;
    }
}

@media (max-width: 465px) {
p.cvb.spacehead {
        font-size: 13px !important;
        line-height: 20px !important;
        padding-top: 0px !important;
        margin: auto !important;
    }
        a.jjhfd {
        font-size: 13px !important;
        line-height: 21px !important;
    }
}
@media (max-width: 450px) {
    .carousel .anngyup.carousel-item {
        min-height: 146px !important;
    }
    .carousel .carousel-caption {
        padding-left: 55px !important;
        padding-top: 20px !important;
    }
    a.snkborder {
        
        margin-top: 2px !important;
    }
    .carousel-indicators {
    display: none;
}
}
@media (max-width: 436px) {
    
               img.cvnk {
        width: 33% !important;
        margin-top: 0px !important;
    }
                .hqpxty.bshka.col-lg-4.col-md-4.text-center.text-lg-start {
      
        margin-bottom: 0px !important;
    }
}
@media (max-width: 425px) {
    .hslnm.hsj.dhsfhs.flex-shrink-0.btn-square.bg-primary {
        width: 25px;
        height: 30px;
        margin-right: 5px;
    }
}
@media (max-width: 406px) {
    a.jjhfd {
        font-size: 12px !important;
        line-height: 19px !important;
    }
}
@media (max-width: 390px) {
    .sjzhcj.sbbvd {
        height: 165px !important;
    }
}
@media (max-width: 350px) {
    .top-bar {
        padding: 0 6px;
    }
        .carousel .carousel-caption {
        padding-left: 39px !important;
        
    }
}
@media (max-width: 991px) {
       p.cvb.spacehead {
        font-size: 14px;
        line-height: 21px;
        padding-top: 10px;
    }
        .shufe.carxja {
        margin-top: -205px !important;
    }
    p.hwdb {
        
        font-size: 16px !important;
        line-height: 22px !important;
        margin-left: -27px;
        margin-bottom: 3px;
    }
        .wnvgyh.sbhym {
        font-size: 22px !important;
        line-height: 26px !important;
        margin-bottom: 4px !important;
    }
    .sbbvd {
        height: 270px !important;
    }
    .service-item2 {
        height: 285px !important;
    }
    .cenfr {
    text-align: center;
}
    .fhjop {
    padding-bottom: 0px !important;
    padding-top: 10px !important;
}
    .anhjil {
    margin-top: 10px;
}
    .askab {
    padding: 10px 0px !important;
}
    .shclsa {
    margin-top: 10px;
}
  .work-process .steps-item {
    margin-bottom: 30px;
  }

  .work-process .steps-image {
    height: 220px;
  }

  .work-process .steps-content {
    padding: 30px 20px 20px;
  }

  .work-process .steps-item {
    background: #fff;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s 
ease-in-out;
    box-shadow: 0 5px 20px 
 color-mix(in srgb, #444444, transparent 92%);
}
.work-process .steps-item {
    height: 100%;
    box-shadow: 0 5px 20px
 color-mix(in srgb, var(--default-color), transparent 92%);
    background: var(--surface-color);
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}
  .work-process .steps-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .work-process .steps-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media (max-width: 850px) {
    .sbbvd {
        height: 235px !important;
    }
    .shufe.carxja {
        margin-top: -177px !important;
    }
}
.service-item2 {
  background: antiquewhite;
    transition: .5s;
}
.service-item2:hover {
    margin-top: -10px;
    background: #ffac00 !important;
}
.service-item2:hover * {
    color: #fff !important;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: calc(100vh - 112px);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  z-index: 3;
}

.hero .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.hero .welcome p {
  font-size: 24px;
  margin: 0;
  color: #fff;
}

.hero .content {
  margin-top: 40px;
}

.hero .content .why-box {
 color: #000;
    background: #ffac00;
  padding: 30px;
  border-radius: 4px;
}

.hero .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.hero .content .why-box p {
  margin-bottom: 30px;
}

.hero .content .why-box .more-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.hero .content .why-box .more-btn i {
  font-size: 14px;
}

.hero .content .why-box .more-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .content .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}

.hero .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.qmkld {
    background: beige;
}
.sjhs {
    background: #ffac00;
    padding-top: 20px !important;
    height: 392px;
}
.sjhs h4.mb-4, .sjhs p.mb-4 {
    text-align: center;
}

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
    height: 540px;
    margin-bottom: 10px;
}
.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
    height: 300px;
}
.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*=======================
	Start Blog CSS
=========================*/
.blog{
	background:#fff;
}
.blog .blog-title{
	text-align:center;
}
.blog .single-news {
	background: #fff;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	box-shadow: 0px 0px 10px #00000014;
}
.blog .single-news img{
	width:100%;
	margin:0;
	padding:0;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.blog .single-news .news-head{
	position:relative;
	overflow:hidden;
}
.blog .single-news .news-content {
	text-align: left;
	background: #fff;
	z-index: 99;
	position: relative;
	padding: 30px;
	left: 0;
	z-index: 0;
}
.blog .single-news .news-content:before{
	position:absolute;
	content:"";
	left:0;
	bottom:0;
	height:2px;
	width:0%;
	background:#1A76D1;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.blog .single-news:hover .news-content:before{
	opacity:1;
	visibility:visible;
	width:100%;
}
.blog .single-news .news-body h2 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 24px;
}
.blog .single-news .news-body h2 a{
	color:#2C2D3F;
	font-weight: 500;
}
.blog .single-news .news-body h2 a:hover{
	color:#1A76D1;
}
.blog .single-news .news-content p {
	font-weight: 400;
	text-transform: capitalize;
	font-size: 13px;
	letter-spacing: 0px;
	line-height: 23px;
}
.blog .single-news .news-body .date {
	display: inline-block;
	font-size: 14px;
	margin-bottom: 5px;
	background: #1A76D1;
	color: #fff;
	padding: 4px 15px;
	border-radius: 3px;
	font-size: 14px;
	margin-bottom: 10px;
}
.blog.grid .single-news{
	margin-top:30px;
}
/* Blog Sidebar */
.main-sidebar {
	background: #fff;
	margin-top: 30px;
	background: transparent;
}
.main-sidebar .single-widget {
	margin-bottom: 30px;
	padding: 40px;
	background: #fff;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	border-radius: 8px;
}
.main-sidebar .single-widget .title {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 30px;
	display: block;
	background: #fff;
	padding-left: 12px;
}
.main-sidebar .single-widget .title::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	height: 100%;
	width: 3px;
	background: #1A76D1;
}
.main-sidebar .single-widget:last-child{
	margin:0;
}
.main-sidebar .search{
	position:relative;
}
.main-sidebar .search input {
	width: 100%;
	height: 45px;
	box-shadow: none;
	text-shadow: none;
	font-size: 14px;
	border: none;
	color: #222;
	background: transparent;
	padding: 0 70px 0 20px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 0;
	border: 1px solid #eee;
	border-radius: 5px;
}
.main-sidebar .search .button {
	position: absolute;
	right: 40px;
	top: 40px;
	height: 44px;
	width: 50px;
	line-height: 45px;
	box-shadow: none;
	text-shadow: none;
	text-align: center;
	border: none;
	font-size: 14px;
	color: #fff;
	background: #333;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 0 5px 5px 0;
}
.main-sidebar .search .button:hover {
	background:#1A76D1;
	color:#fff;
}
/* Category List */
.main-sidebar .categor-list {
	margin-top: 15px;
}
.main-sidebar .categor-list li {
	margin-bottom: 10px;
}
.main-sidebar .categor-list li:last-child{
	margin-bottom:0px;
}
.main-sidebar .categor-list li a {
	display: inline-block;
	color: #333;
	font-size:14px;
}
.main-sidebar .categor-list li a:hover{
	color:#1A76D1;
	padding-left:7px;
}
.main-sidebar .categor-list li a i {
	display: inline-block;
	margin-right:0px;
	font-size: 9px;
	transform: translateY(-1px);
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.main-sidebar .categor-list li a:hover i{
	margin-right: 6px;
	opacity:1;
	visibility:visible;
}
/* Recent Posts */
.main-sidebar .single-post {
	position: relative;
	border-bottom: 1px solid #ddd;
	display: inline-block;
	padding: 17px 0;
}
.main-sidebar .single-post:last-child{
	padding-bottom:0px;
	border:none;
}
.main-sidebar .single-post .image img{
	float: left;
	width: 80px;
	height: 80px;
	margin-right: 20px;
}
.main-sidebar .single-post .content{
	padding-left:100px;
}
.main-sidebar .single-post .content h5 {
	line-height: 18px;
}
.main-sidebar .single-post .content h5 a {
	color: #2C2D3F;
	font-weight: 500;
	font-size: 14px;
	font-weight: 500;
	margin-top: 10px;
	display: block;
	margin-bottom: 10px;
	margin-top: 0;
}
.main-sidebar .single-post .content h5 a:hover{
	color:#1A76D1;
}
.main-sidebar .single-post .content .comment li{
	color:#888;
	display:inline-block;
	margin-right:15px;
	font-weight:400;
	font-size:14px;
}
.main-sidebar .single-post .content .comment li:last-child{
	margin-right:0;
}
.main-sidebar .single-post .content .comment li i{
	display:inline-block;
	margin-right:5px;
}
/* Blog Tags */
.main-sidebar .side-tags .tag{
	margin-top:40px;
}
.main-sidebar .side-tags .tag li {
	display: inline-block;
	margin-right: 7px;
	margin-bottom: 20px;
}
.main-sidebar .side-tags .tag li a {
	background: #fff;
	color: #333;
	padding: 8px 14px;
	text-transform: capitalize;
	border-radius: 0;
	font-size: 13px;
	background: #F6F7FB;
	border-radius: 4px;
}
.main-sidebar .side-tags .tag a:hover{
	color:#fff;
	background:#1A76D1;
	border-color:transparent;
}
/* News Single */
.news-single {
	padding: 15px 0 90px;
	background: #f8f8f8;
}
.news-single .single-main {
	margin-top: 30px;
	background: #fff;
	padding: 30px;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	border-radius: 8px;
}
.news-single .news-head{}
.news-single .news-head img{
	width:100%;
	height:100%;
}
.news-single .news-title {
	font-size: 25px;
	margin: 20px 0;
}
.news-single .news-title a {
	color: #252525;
	font-weight: 600;
}
.news-single .news-title a:hover {
	color: #1A76D1;
}
/* Blog Meta */
.news-single{
	background:#fff;
}
.news-single .meta {
	overflow: hidden;
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	width: 100%;
	padding: 10px 0;
	margin-bottom: 15px;
}
.news-single .meta span {
	margin-right: 10px;
	display: inline-block;
}
.news-single .meta span:last-child{
	margin:0;
}
.news-single .meta span, .news-single .meta span a {
	color: #2C2D3F;
	font-weight: 400;
}
.news-single .meta span i {
	margin-right: 5px;
	color:#1A76D1;
}
.news-single .meta-left{
	float:left;
}
.news-single .meta-left .author img {
	width: 45px;
	height: 45px;
	border-radius: 100%;
	margin-right: 12px;
}
.news-single .meta-left .author {
	float: left;
}
.news-single .meta-left span.date {
	margin-top: 10px;
}
.news-single .meta-right {
	float: right;
	margin-top: 10px;
}
.news-single .news-content{
	margin:20px 0;
}
.news-single .news-content p{
	margin-bottom:10px;
}
.news-single .news-content p:last-child{
	margin:0;
}
.news-single .news-text p {
	font-size: 14px;
	margin-bottom:20px;
}
.service-item-top:hover img {
    transform: scale(1.1);
}
.service-item-top img {
    transition: .5s;
}
a.wcfgy {
    border: 1px solid #ce9233 !important;
}
/* Image Gallery */
.news-single .image-gallery {
	margin-bottom: 20px;
}
.news-single .image-gallery .single-image {
	overflow: hidden;
}
.news-single .image-gallery .single-image:hover img{
	-webkit-transform:scale(1.2);
	-moz-transform:scale(1.2);
	transform:scale(1.2);
}



@media (max-width: 1399px) {
p.jwiwi {
    font-size: 34px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 9px !important;
}
h3.sbhym {
    font-size: 34px !important;
    line-height: 42px !important;
    margin-bottom: 13px !important;
}
.col-md-12.me2 p {
    font-size: 17px !important;
    line-height: 20px !important;
    
    margin-bottom: 8px;
}
}
ul.nsssn {
    width: 18% !important;
}
@media (max-width: 1299px) {
#navigator ul {
        
        width: 70%;
}
.carxja {
    
    margin-top: -297px;
}
.cdsbfh .container-xxl {
    padding-top: 0px !important;
}
.djfoif .container-fluid {
    padding: 20px 0px !important;
}
.service-item .btn-square {
    width: 55px;
    height: 55px;
    margin-bottom: 15px !important;
}
section.dwkjd .container-fluid.py-5 {
    padding: 30px 0px !important;
}
h3.shcjksd {
    font-size: 22px;
    line-height: 30px;
}
.hso {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px !important;
}
h3.scb {
    font-size: 24px;
    line-height: 28px;
}
    .cncn > ul > li {
        padding: 0px 5px !important;
    }
    .cncn > ul > li > a {
        
        font-size: 15px;
        text-transform: capitalize;
        padding: 0px 4px;
    }
}
.btntxt.ftr a.snkborder {
    margin-top: 13px;
}    
.modalbg span.contact-title {
    font-size: 22px;
    margin-top: 13px;
    border-radius: 3px;
    font-family: system-ui;
    background: #1a685b !important;
    color: #0000;
    text-shadow: 2px 1px #150505;
    padding: 10px 10px 10px 10px;
    text-align: center;
    text-transform: uppercase;
    display: block;
    width: 100%;
    line-height: initial;
    font-weight: 600;
    margin-bottom: 16px;
}
.whatsapp-float {
    position: fixed;
    bottom: 177px;
    right: 51px;
    z-index: 100;
    cursor: pointer;
}
.chat {
    position: fixed;
    width: 90px;
    bottom: 101px;
    right: 20px;
    z-index: 88;
    cursor: pointer;
}
.sliding_form {
    background: #1a685b !important;
    position: fixed;
    right: 0;
    top: 164px;
    border-radius: 20px 0 0 20px;
    width: 350px;
    z-index: 9999;
}
span.close-button {
    color: #fff;
    float: right;
    padding-right: 15px;
    padding-top: 3px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}
.sliding_form_inner {
    height: 475px;
}
.sliding_form_inner {
    padding: 10px 20px;
    width: 100%;
    
    overflow: hidden;
}
p.frm1 {
    color: #f6821d;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
    font-weight: 600;
    padding: 10px;
    padding-bottom: 0px;
}
.mauticform-selectbox, .mauticform-input, .mauticform-textarea {
    width: 100%;
    padding: 0.5em 0.5em;
    border: 1px solid #CCC;
    background: #fff;
    box-shadow: 0px 0px 0px #fff inset;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 6px;
}
.bordr:before {
    content: '';
    position: absolute;
    border-bottom: 1px solid #f8f8f8;
    height: 200px;
    width: 55px;
    transform: translate(167%, -70%);
}
p.frm2 {
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 23px;
    padding-top: 7px;
}
.snkborder:hover{
  transition:background-image 3s ease-in-out;
  background-image: linear-gradient(90deg, #fee140 0%, #f83600 100%);
}
.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 710px;
  margin: 30px auto;
  max-width: 97%;
  border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
     -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #1a685b !important;
   background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 10px 42px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
	overflow-y: auto;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
  position: absolute;
  right: 10px;
  top: 2px;
  cursor: pointer;
  z-index: 99;

 font-size: 25px;
    color: #003073;
    font-weight: 700;
}
img.kxmm {
    width: 25%;
    float: right;
    margin-right: 31px;
}
.modal-footer {
    display: flex
;
background-color: #fff !important;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem;
}
.texnj {
    height: 35px;
    background-color: rgb(255, 172, 0);
}
a.jjhfd {
    color: #fff !important;
}
.dhsfhs {
    margin-top: 10px;
}




/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
  /*  background: rgba(0, 0, 0, .7);
  z-index: 1;*/
    padding: 3rem;
    padding-left: 11rem;
    
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 300px;
    }
    
    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    

    .carousel .carousel-indicators [data-bs-target] {
        width: 30px;
        height: 30px;
    }

    .carousel .carousel-caption {
        padding-left: 135px;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

h3.sbhym {
    font-size: 36px;
    line-height: 42px;
}
.col-md-12.me2 p {
    font-size: 20px;
    line-height: 2px;
    color: #fff;
}
a.snkborder {
    position: absolute;
    font-size: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    overflow: hidden;
    padding: 4px 20px;
    background: #03231e;
    color: #fff;
    border-radius: 4px;
    margin-top: 10px;
    font-weight: 700;
}

.igit {
    margin-bottom: 60px;
}
.jtqvh {
    text-align: center;
}

.service-item2 {
    
    height: 300px;
}

.azom, .jrekq .container-fluid, .cskdncz .container-fluid {
    padding-top: 10px !important;
    padding-bottom: 0px !important;
}

.frs-sec {
    background: #eee;
    padding: 25px;
}
.hkjhkj.row {
    margin-bottom: 58px;
}
.sljcca.col-md-12 {
    width: 85%;
    margin: auto;
    background: #fff;
    padding: 60px;
    box-shadow: rgb(167 162 162) 10px 15px 50px;
    background-color: rgb(255, 255, 255) !important;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(28, 52, 112);
    border-image: initial;
}
h4.reso-heading {
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    color: #06a3da;
    padding-bottom: 12px;
    border-bottom: 1px solid #dedbdb;
    margin-bottom: 24px;
}
img.hgoghjf.img-fluid.image.scale-on-hover {
    margin-bottom: 25px;
    width: 100%;
}
section.dyim {
    padding: 65px;
}
.kdio {
    width: 85%;
    float: left;
    margin-left: 20px;
}
.qadsl.mb-4 {
    float: left;
    width: 3%;
    margin-bottom: 2px !important;
    margin-right: 12px;
    margin-top: 4px;
}
.wqdvss.col-md-5 {
    margin-top: 50px;
}
img.qmsbs.mb-4 {
    width: 100%;
    margin: auto;
    border-radius: 20px;
}
section.jslew {
    padding-top: 28px;
}
.case-klop {
    font-size: 18px;
    box-shadow: rgba(50, 50, 93, 0.25) 1px 2px 5px -1px, rgba(0, 0, 0, 0.3) 1px 4px 8px -1px;
    margin: 20px 20px 60px 20px;
    padding: 30px;
    text-align: center;
    line-height: 28px;
    margin: auto;
    width: 92%;
    margin-bottom: 60px;
    margin-top: 50px;
}
p.hwdb {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
}






































