
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
/********** Template CSS **********/

body {
    font-family: 'Roboto', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091e3e;
}
a {
    text-decoration: none;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

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

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


/*** Button ***/
.btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

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

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}
/*** Navbar ***/
.navbar {
    background-color: #f0f8ff8a;
}
.manu:hover {
    margin-top: -10px;
    box-shadow:none!important;
}
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 19px 5px;
    color: #091e3e;;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    transition: .5s;
    text-transform: uppercase;
    letter-spacing: 1px;

}


.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding:  19px 5px;
    color: var(--dark);
}



.navbar-dark .navbar-nav .nav-link:hover,

.navbar-dark .navbar-nav .nav-link.active {

    color: var(--dark);

}



.navbar-dark .navbar-brand h1 {

    color: #FFFFFF;

}



.navbar-dark .navbar-toggler {

    color: var(--primary) !important;

    border-color: var(--primary) !important;

}
.dropdown-menu-last {
    position: absolute!important;
    left: 65px!important;
    
}


@media (max-width: 991.98px) {

    .sticky-top.navbar-dark {

        position: relative;

        background: #FFFFFF;

    }
    

    

    .navbar-dark .navbar-nav .nav-link,

    .navbar-dark .navbar-nav .nav-link.show,

    .sticky-top.navbar-dark .navbar-nav .nav-link {

        padding: 10px 0;

        color: var(--dark);

    }



    .navbar-dark .navbar-brand h1 {

        color: var(--primary);

    }

}



@media (min-width: 992px) {

    .navbar-dark {

        position: absolute;

        width: 100%;

        top: 0;

        left: 0;

        border-bottom: 1px solid rgba(256, 256, 256, .1);

        z-index: 999;

    }

    

    .sticky-top.navbar-dark {

        position: fixed;

        background: #FFFFFF;

    }



    .navbar-dark .navbar-nav .nav-link::before {

        position: absolute;

        content: "";

        width: 0;

        height: 2px;

        bottom: -1px;

        left: 50%;

        background: var(--primary);

        transition: .5s;

    }



    .navbar-dark .navbar-nav .nav-link:hover::before,

    .navbar-dark .navbar-nav .nav-link.active::before {

        width: 100%;

        left: 0;

    }



    .navbar-dark .navbar-nav .nav-link.nav-contact::before {

        display: none;

    }



    .sticky-top.navbar-dark .navbar-brand h1 {

        color: var(--primary);

    }

}





/*** Carousel ***/

.carousel-caption {
    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: rgba(9, 30, 62, .4);

    z-index: 1;

}
  .respons {
    position: absolute;
    top: 0;

  }
/*
@media (min-width: 1200px) {
    .respons{
        top: 205px;
        position: absolute;
        left: 84px;
    }
    .carousel-inner img {
        height: 500px;
    }
    .carousel-inner {
        height: 500px;
    }
    .carousel-caption h1 {
        font-size: 33px;
        font-weight: 600 !important;     
    }

}


@media (max-width: 992px) {
    .respons{
        top: 205px;
        position: absolute;
        left: 14px;
    }
    .carousel-inner img {
        height: 500px;
    }
    .carousel-inner {
        height: 500px;
    }

}


@media (max-width: 576px) {

    .carousel-caption h5 {

        font-size: 14px;

        font-weight: 500 !important;

    }
    .respons{
        font-size: 15px;
        font-weight: 600 !important;
        top: 98px;
        position: absolute;
        width: 382px;
        left: 111px;
    }
    .carousel-caption h1 {
        font-size: 13px;
        font-weight: 600 !important;        
    }
    .d-flex {
        display: block!important;
    }
    .carousel-inner img {
        height: 300px;
    }
    .carousel-inner {
        height: 300px;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2rem!important;
        height: 2rem!important;
        margin-top: 23px;
    }
    .btn {
        padding: 9px;
        font-size: 10px;
    }

}

*/

.carousel-control-prev,

.carousel-control-next {

    width: 10%;

}



.carousel-control-prev-icon,

.carousel-control-next-icon {

    width: 3rem;

    height: 3rem;

}
/**********contact**********/
.border-radius-box {
    border-radius: 15px!important;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.border-radius-box:hover {
    border: 5px solid #091e3e;
}
.location .header-four {
    color: #d6d6d6;
    font-size: 20px;
}
.location  .location-content {
    font-size: 25px;
    font-weight: 400;
    font-style: normal;
}
.location-icon i{
    background-color: #06A3DA;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    padding-top: 11px;
    margin: 5px 0;
}
.background-design {
    background-color: rgba(255, 255, 255, 0.63);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 20px;
    height: 257px;
}

.contact-details span {
    font-size: 16px;
    font-weight: 600;
}
/*** Navbar ***
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 50px;
    padding: 23px 0;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

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

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

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        /*position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

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

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

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

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***
.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .5);
    z-index: 1;
}
.carousel-item .btn {
    padding: 14px!important;
}

@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;
}
/*****about us ****/
#about {
    width: 100%!important;
    background-color: #F8F8F9;
}
.text-color {
    color: #4d5b66;
}
@media (min-width: 1200px) {
    .about-us p {
        font-size: 20px;
        text-align: justify;

    }
}





@media (max-width: 992px)  {
    #about .get-btn {
        display: flex;
    }
    #about .default-btn {
        padding: 12px 46px!important;
        font-size: 14px;
    }
    .why span {
        font-size: 14px!important;
        margin-left: 25px!important;
    }
}
/*
.call-us-area {
    background-color: #070b3b;
    position: relative;
    z-index: 1;
}
.call-us-area::before {
    content: '';
    position: absolute;
    opacity: 0.1;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/call-shap1.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
/*
.section-bg{
    background-image: url(../img/call-shap1.png);

}
.shadow-use {
    box-shadow: 10px 10px 5px lightblue;
}
*/
#about .about-para {
    font-size: 21px;
    margin-bottom: 92px;
    color: #787878;
    line-height: 1.8;
}
#about .about-heading {
    font-size: 2rem;
    letter-spacing: 1px;
    word-spacing: 7px;
    color: #000;
    font-weight: 700;
    line-height: 1.2;
}
.h-100 {
    height: 100% !important;
}
.position-relative {
    position: relative !important;
}
.overflow-hidden {
    overflow: hidden !important;
}
.bg-white {
    background-color: #fff !important;
}
.ps-2 {
    padding-left: .5rem !important;
}
.pb-2 {
    padding-bottom: .5rem !important;
}
.end-0 {
    right: 0 !important;
}
.position-absolute {
    position: absolute !important;
}
.get-btn {
     display: inline-block;
    position: relative;
    top: -5px;
}
.get-btn .btn {
    padding: 10px 26px;
    margin-right: 33px;
}
.btn-bg-two {
    background-color: #06a3da;
}
.default-btn {
    display: inline-block;
    padding: 12px 32px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 0!important;
}
.btn-bg-second {
    background-color: #fff;
    border: 1px solid #000;
    color: #06a3da;
    padding: 13px 55px!important;
}
.border-radius-50 {
    border-radius: 50px;
}
.default-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    height: 100%;
    left: -36%;
    top: 0;
    -webkit-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    width: 0;
}
.default-btn:hover {
    color: #ffffff !important;
}
.default-btn:hover:before {
    height: 100%;
    width: 135%;
    background-color: #091e3e;
}
.rounded-pill {
    border-radius: 50rem !important;
}
.bg-secondary {
    background-color: #FFF0E6 !important;
}
.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
}
.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.d-inline-block {
    display: inline-block !important;
}
@media (max-width: 576px)  {
    #about .about-heading {
        font-size: 32px;
        letter-spacing: 0;
        word-spacing: 4px;
    }

}

/*
#about .btn {
        display: inline-block;
        padding: 12px 32px;
        color: #ffffff;
        background-color: #06A3DA;
        text-align: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
    
}
#about .btn::after {
        content: "";
        position: absolute;
        z-index: -1;
        height: 100%;
        left: -36%;
        top: 0;
        -webkit-transform: skew(50deg);
        transform: skew(50deg);
        -webkit-transition-duration: 0.6s;
        transition-duration: 0.6s;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        width: 0;
}
.btn:hover:before {
    height: 100%;
    width: 10%;
    background-color: #252525;
}
/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service .service-text {
    font-size:20px;
    text-align: center;
}
.service img {
    border: 3px solid #091e3e;
    padding: 2px;
    height: 439px;
}
.card-lb {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 10px;
}
.card-lb:hover {
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.2);
}
.apply .margin-bottom {
    margin-bottom: 48px!important;
}
.apply .margin-use {
    margin-bottom: 62px!important;
}
.heat .margin-use {
    margin-bottom: 38px!important;
}
.last-one .margin-use {
    margin-bottom: 20px!important;
}
.service-column {
    background-image: url(../img/services/service-shape1.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.service-img {
box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.service-column .compress-width {
    width: 86%;
    text-align: justify;
    line-height: 32px;
    font-size: 19px;
}


/*** why****/
.why {
    background-color: #fff ;

}
.why span {
    font-size: 20px;
    margin-left: 25px;
}
 .background {    
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding-bottom: 10px!important;

}

.why .last-img {
    position: absolute;
    top: 29%;
    right: 59px;
    border-radius: 3px;
}
.why  .margin-apply {
    margin-top: 27px;
}
@media (min-width: 992px) {
    .why {
        position: relative;
    }
    .why .last-img {
        position: absolute;
        top: 29%;
        border-radius: 3px;
        width: 40%;
    }
    .why span {
        font-size: 16px;
    }
}
@media (max-width: 576px)   {
    .why .last-img {
    position: relative!important;
    top: 0;
    left: 9px;
}
}
/******quote*****/
.padding-apply {
    padding: 10px 20px!important;
}
/******footer****/
@media (max-width: 576px)  {
.footer .footer-inline{
    display: flex!important;
}

.footer .last-column {
    padding-left: 26px!important;
}
}
/*--------------------------------------------------------------

# Portfolio Section

--------------------------------------------------------------*/

.portfolio .portfolio-flters {

    padding: 0;
  
    margin: auto;
  
    list-style: none;
  
    text-align: center;
  
  }
  
  
  
  .portfolio .portfolio-flters li {
  
    cursor: pointer;
  
    display: inline-block;
  
    padding: 0;
  
    font-size: 18px;
  
    font-weight: 300;
  
    margin: 0 10px;
  
    line-height: 1;
  
    margin-bottom: 5px;
  
    transition: all 0.3s ease-in-out;
  
  }
  
  
  
  .portfolio .portfolio-flters li:hover,
  
  .portfolio .portfolio-flters li.filter-active {
  
    color: var(--color-primary);
  
  }
  
  
  
  .portfolio .portfolio-flters li:first-child {
  
    margin-left: 0;
  
  }
  
  
  
  .portfolio .portfolio-flters li:last-child {
  
    margin-right: 0;
  
  }
  
  
  
  @media (max-width: 575px) {
  
    .portfolio .portfolio-flters li {
  
      font-size: 14px;
  
      margin: 0 5px;
  
    }
  
  }
  .portfolio .margin-bottom {
    margin-bottom: 87px;
  }
  
  
  .portfolio .portfolio-item {
  
    position: relative;
  
  
    overflow: hidden;
  
    z-index: 1;
  
  }
  
  .portfolio .portfolio-item img {
  
    transition: all 0.3s;
    margin-left: 20%;
  
  }
  
  
  
  .portfolio .portfolio-item:before {
  
    content: "";
  
    inset: 0;
  
    position: absolute;
  
    background: rgba(var(--color-secondary-rgb), 0.8);
  
    z-index: 2;
  
    transition: 0.5s;
  
    visibility: hidden;
  
    opacity: 0;
  
  }
  
  
  
  .portfolio .portfolio-item .portfolio-info {
  
    opacity: 0;
  
    position: absolute;
  
    inset: auto 40px 40px 40px;
  
    z-index: 3;
  
    transition: all ease-in-out 0.3s;
  
    padding: 20px;
  
  }
  
  
  
  .portfolio .portfolio-item .portfolio-info h4 {
  
    font-size: 18px;
  
    font-weight: 600;
  
    color: var(--color-white);
  
    padding-right: 50px;
  
  }
  
  
  
  .portfolio .portfolio-item .portfolio-info .preview-link,
  
  .portfolio .portfolio-item .portfolio-info .details-link {
  
    position: absolute;
  
    right: 50px;
  
    font-size: 24px;
  
    top: calc(50% - 14px);
  
    color: rgba(var(--color-white-rgb), 0.7);
  
    transition: 0.3s;
  
    line-height: 0;
  
  }
  
  
  
  .portfolio .portfolio-item .portfolio-info .preview-link:hover,
  
  .portfolio .portfolio-item .portfolio-info .details-link:hover {
  
    color: var(--color-white);
  
  }
  
  
  
  .portfolio .portfolio-item .portfolio-info .details-link {
  
    right: 14px;
  
    font-size: 28px;
  
  }
  
  
  
  .portfolio .portfolio-item:hover:before {
  
    visibility: visible;
  
    opacity: 1;
  
  }
  
  
  
  .portfolio .portfolio-item:hover img {
  
    transform: scale(1.2);
  
  }
  
  
  
  .portfolio .portfolio-item:hover .portfolio-info {
  
    opacity: 1;
  
    inset: auto 10px 0 10px;
  
  }
  
/****footer****/
.footer .last-column {
    font-size: 16px;
    padding-left: 0;
    padding-right: 0;
}
.footer .about-text {
    text-align: justify;
}
/********GALLRTY******/
.gallery .margin-bottom {
    margin-bottom: 80px;
}

/*
.service .content {
    font-size: 20px;
    width: 103px;
    text-align: center;
}


/*
.service .service-para {
    text-align: center;
    font-size: 20px;
}
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}*/
.carousel-content {
    color:black;
    display:flex;
    align-items:center;
}

#text-carousel {
  width: 100%;
  height: auto;
  padding: 50px;
}
.carousel-item{
    min-height: 500px;
}
#myCarousel {
    width: 80%;
    text-align: center;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position: relative;
 
}
.slider-one {
    width: 70%;
    text-align: center;
    margin: auto;
    background-color: #787878;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    height: 300px;
    position: absolute;
    top: 18%;
    left: 16%;
}
.slider-one h1 {
    padding-top: 24px;
}
.slider-one h5 {
    font-size: 20px;
    color: #fff;
}
.slider-one span {
    font-weight: 600;
    margin-left: 2px;
}
/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .5);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}
/*
.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


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

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.bg-header {
    background: url(../img/bgg.jpg);
    background-size: cover;
    background-position: center center;
    padding-bottom: 0!important;

}
.link-animated a {
    transition: .5s;
    display: block;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 1200px) {
    .bg-header {
    background: url(../img/bgg.jpg);
    background-size: 100%;
    background-position: center;
    height: 350px;
    /* top: 28px; */

}
.py-5 {
    padding-bottom: 0 !important;
}
}
@media (max-width: 992px) {

    .bg-header {

    background: url(../img/bgg.jpg);

    background-size: 100%;

    background-position: center;
        height: 257px;

    /* top: 28px; */
}
.animated {
    font-size: 43px;
    margin-top: 57px;
}
.py-5 {
    padding-bottom: 0 !important;
}
.pt-lg-5 {
    padding-top: 0 !important;
}

}
@media (max-width: 768px) {

    .bg-header {

    background: url(../img/bgg.jpg);

    background-size: 100%;

    background-position: center;
        height: 182px;

    /* top: 28px; */


    }
    .animated {
        font-size: 35px;
        margin-top: 57px;
    }
    .py-5 {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 576px) {
    .bg-header {
    background: url(../img/bgg.jpg);
    background-size: 100%;
    background-position: center center;
    height: 140px;
    /* top: 28px; */

    }
    .py-5 {
        padding-bottom: 0 !important;
    }
    .pt-lg-5 {
        padding-top: 0 !important;
    }
    .animated {

        font-size: 19px;

        margin-top: 33px;

    }
    
    .carousel,.carousel-inner,.carousel-image
    {
        height:50vh !important;
    }
    .carousel-section
    {
        margin-bottom:170px;
    }

}
.social {
    flex-direction: column;
    position: fixed;
    bottom: 72px;
    right: 0px;
    color: #FFF!important;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    background-color: #0000;
}
.float {
    position: fixed;
    width: 46px;
    height: 46px;
    bottom: 20px;
    right: 2px;
    color: #fff!important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    background-color: #33bb47;
}

.float2 {
    position: fixed;
    width: 45px;
    height:45px;
    bottom: 20px;
    left: 2px;
    color: #fff!important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    background-color: #33bb47;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}
.float2 i{
    font-size: 25px;
}
.contactform {
    border: 3px solid darkblue;
    padding: 5px 10px;
}
.contactform .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}
.contactform input {
    border: 3px solid darkblue;
}
.contactform textarea {
    border: 3px solid darkblue;
}
@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
   
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 0 0 60px 0;
}

.clients .swiper-slide img {
  /*opacity: 0.5;*/
  transition: 0.3s;
  /*filter: grayscale(100);*/
  max-width: 150px!important;
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}
.openPDF {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.openPDF:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.openPDF::after {
    content: "View PDF";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 30px;
    border-radius: 5px;
    font-size: 22px;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.openPDF:hover::after {
    opacity: 1;
}