/********** Template CSS **********/
:root {
    --primary: #a89b01;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #0783a3;
}

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

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


h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;

}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}
.mb-0 a{
    color:#066085;
}


/*** 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;
    font-weight: 500;
}

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

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

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


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: auto;
    display: flex;
    align-items: center;
    /* background: var(--primary); */
}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    /* background-color: var(--primary); */
}

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

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.mb-2 a{
    color:#fff;
}
.mb-2 a:hover{
    color:#a89b01;
}
.fs-5  a{
    font-weight: 700 !important;
    color:#fff;
}
.pho {
    font-size:20px;
}





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

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@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-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 993px) {
    /* #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    } */
    
    /* #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    } */
    .navbar-brand img{width: 70%;}
    .top-bar{text-align: center;}
    .topbar-right::before{transform: skewX(0deg);}
    .navbar-light .navbar-toggler{position: absolute; right: 20px;}
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

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

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


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.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(--primary);
    border-radius: 100%;
    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(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    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;
    }
}

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

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

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}
 .project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
} 

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

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

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



/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}

.fixed-bg{background-image: url("../img/call-bg2.jpg"); background-repeat: no-repeat;
    background-size: cover;
    background-position: top center; padding-top: 200px;
    padding-bottom: 200px;}
    .fixed-bg h1{margin: 0px; font-size: 34px; line-height: 60px; margin-left: 15%;
    margin-right: 15%;}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    /* background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); */
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    /* background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); */
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

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

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    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: #a89b01;
    letter-spacing: 1px;
    box-shadow: none;
}

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


.h-about{background: #544ed3;
    display: inline-block;
    margin-top: 30px;
    padding: 10px 50px;
    border-radius: 10px;
    box-shadow: 0 0 1px #ccc;
    -webkit-transition-duration: .5s;
    -webkit-box-shadow: 0 0 0 0 #000 inset,0 0 0 0 #000 inset;}
    .h-about:hover{
        -webkit-box-shadow: 115px 0 0 0 #0783a3 inset,-115px 0 0 0 #0783a3 inset;
        -webkit-transition-duration: .7s;
      }
      .section-div{
        background-color: #000000 !important;
        padding-bottom:40px;
      }
      .about-item p{
        text-align: justify;
      }
      .section_title{
        margin-top:50px;
      }
      .about-box img{
        margin-top:50px;
        padding-bottom:50px;
      }
      .section_title{} .section_subtitle{
        margin-bottom:7px;
        padding-left: 7px;
        font-size:16px;
        line-height: 1;
        text-transform: uppercase;
        color:#aaaaaa;
        border-left: 3px solid#a89b01;
        font-size:700;
        font-family:tahoma;
      }
      .section_main_title{
        margin-top: 0;
        margin-bottom: 37px;
       font-size:30px;
       line-height: 1.27;
      
      }
      .about-box2{
        /* -webkit-box-shadow:0 0 0 10px #000000 inset;
        box-shadow: 0 0 0 10px #000000 inset; */
        /* margin-right:-181px; */
        margin-top:0;
        position:relative;
        display:block;
        border:10px solid #0783a3; padding:10px;
        margin-top:180px;
        margin-left:34px;
       
        
      }
      .about-box1{
        position:relative;
        display:block;
       

      }
      .about-box1 img{
        margin-left: -30px;
        margin-bottom:-30px;
        margin-top:10px;
       
      }
      /* .box-overlay{
        position:absolute;
        top:0;
        left:0;
        height:100%;
        width:100%;
        background-color: #000;
        opacity:0.5;
        z-index:3;
        margin-left: -30px;
        bottom:-30px; */
       
        /* transform:translateY(30px) translateX(-30px);
        -webkit-transform:translateY(30px) translateX(-30px); */
      /* } */
      .about-box .videopopup img{
        transform:translateY(30px) translateX(-30px);
        -webkit-transform:translateY(30px) translateX(-30px);
        width:100%;
      }
      .about-link{
        margin: 0;padding: 0;
        
      }
      .about-link li{
        list-style: none;
        background:url(../img/dots.jpg)no-repeat left top 12px; 
        padding-left:20px;
        line-height: 30px; 
       
        

    }
    .about-link li:hover{
        -webkit-transition: All .5s ease;
      -moz-transition: All .5s ease; 
      -o-transition: All .4s ease;
       background-position: top 10px left 5px; 
       color:#a89b01;
       
    }

    
    



    
    .aboutlist-div {
        margin-top:25px;
    }
    .balloonwork-div {
        background-color: #000000 !important;
        padding-bottom: 50px;
        
    }
    .balloonwork-div1 h2{
        text-align: center;
        margin-top:40px;
        margin-bottom: 30px;
    }
    .baloondecoration-div1{
        margin-top:30px;
        margin-bottom:30px;
       
    }
    
    .baloondecoration-div2{
        padding:10px 10px 10px 5px;
        background:#a89b01;
       
      }

     .baloondecoration-div3 h5{
        text-align: center;
        color:#fff;
      }
      .namingceremony-div1{
        margin-top:30px;
        margin-bottom:30px;
        /* margin-right:-41px; */
      }
      .namingceremony-div2{
        padding:10px 10px 10px 5px;
        background:#a89b01;
        /* margin-right:95px; */
      }
      .homedecoration-div1{
        margin-top:30px;
        margin-bottom:30px;
        /* margin-left:-41px; */
      }
      .homedecoration-div2{
        padding:10px 10px 10px 5px;
        background:#a89b01;
        /* margin-right:95px; */
      }
      .anniversary-div1{
        margin-top:6px;
        margin-bottom:30px;
        /* margin-left:41px; */

      }
      .anniversary-div2{
        padding:10px 10px 10px 5px;
        background:#a89b01;
       /* margin-right: 14px; */
      }
      .newborn-div1{
        margin-top:6px;
        margin-bottom:30px;
      }
      .newborn-div2{
        padding:10px 10px 10px 5px;
        background:#a89b01;
        /* margin-right: 56px; */
        margin-top: -10px;
      }
      .babyshower-div1{
        margin-top:6px;
        margin-bottom:30px;
        /* margin-left:-41px; */
      }
      .babyshower-div2{
        padding:10px 10px 10px 5px;
        background:#a89b01;
        margin-right: 97px;
      }
      .officedecoration-div1{
        margin-top:-15px;
        margin-bottom:30px;
        /* margin-left:41px; */
      }
      .officedecoration-div2{
        padding:10px 10px 10px 5px;
        background:#a89b01;
        /* margin-right: 14px; */
      }
      .roomdecoration-div1{
        margin-top:-15px;
        margin-bottom:30px;
      }
      .roomdecoration-div2{
        padding:10px 10px 10px 5px;
        background:#a89b01;
        /* margin-right: 56px; */
      }
      .momtobe-div1{
        margin-top:-15px;
        margin-bottom:30px;
        /* margin-left:-41px; */
      }
      .momtobe-div2{
        padding:10px 10px 10px 5px;
        background:#a89b01;
        /* margin-right: 104px; */
      }
      .engagement-div1{
        margin-top:6px;
        margin-bottom:30px;
        /* margin-left: 41px; */
      }
      .engagement-div2{
        padding:10px 10px 10px 5px;
        background:#a89b01;
        /* margin-right: 14px; */
      }
     
      .photogallery-div img{
        border:2px solid #066085; margin-bottom:20px;padding:5px; transition:All .5s ease;
        
      }
      
    
      .contact-div{
        background-color: #000000 !important;
      }
      .hi {
        background-color:#fff;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
        border-radius: 25px;
        margin-top:70px;
        margin-bottom:70px;
    }
    .hi a:hover{
        color: #a89b01;
    }
    .copy a:hover{
        color: #a89b01; 
    }
    .c1 {
        font-size: 20px;
        font-weight: 600;
        color: #066085;
    }
      
      .hi b{
        font-size: 17px;
        line-height: 32px;
      }
      .h1 p{
        color: black;
      }
      .hi a{
        color:#4d4d4d
        
      }
      .iframe {
        background-color:  #066085;
        color: rgba(0, 0, 0, 1);
      }
      .form{
        margin-top:57px;
      }
      .office p{
        color: #fff;
      }
      
      /* .rowgallery-div img{border:2px solid #066085; margin-bottom:30px; padding:5px; transition:All .5s ease;
        -webkit-transition:All .5s ease;
        -moz-transition:All .5s ease;
        -o-transition:All .5s ease;} */
        /* @media(max-width:1025px) {
            .baloondecoration-div2{
                margin-right:0px;
            }
        } */
       
        
@media (max-width: 768px) {
.footer{text-align: center;}
.footer .btn.btn-link{display: inline-block;}
.copyright{font-size: 11px;}
.home-about, .home-choose{text-align: center;}
.hlist{margin-top: 30px; text-align: left;}
/* .baloondecoration-div2{
    margin-right:215px;} */
     
}
/* @media(max-width:501px) {
   .baloondecoration-div2{
    margin-right:176px;
   }
}

@media (max-width: 981px) {
    .about-box2{
        margin-top:256px;
    }
}
@media (max-width: 768px) {
    .about-box2{
        margin-top:50px;
    }
}
@media(max-width:401px){
    .baloondecoration-div2{
        margin-right: 76px;
    }
}
@media(max-width:1025px){
    .baloondecoration-div1{
        margin-left:0px;
    }
}
@media(max-width:1025px){
    .homedecoration-div1{
        margin-left:3px;
    }
    .namingceremony-div2{
        margin-right: 37px;
    }
    .homedecoration-div2{
        margin-right: 0px;
    }
    .anniversary-div1{
        margin-left:0px;
    }
    .anniversary-div2{
        margin-right: 0px;
    }
    .babyshower-div1{
        margin-left:3px;
    }
    .babyshower-div2{
        margin-right: 0px;
    }
    .newborn-div2{
        margin-right: 0px;
    }
    .officedecoration-div1{
        margin-left:0px;
    }
    .officedecoration-div2{
        margin-right: 0px;
    }
    .momtobe-div1{
        margin-left:3px;
    }
    .momtobe-div2{
        margin-right: 0px;
    }
    .roomdecoration-div2{
        margin-right: 0px;
    }
    .engagement-div1{
        margin-left: 3px;
    }
    .engagement-div2{
        margin-right: 0px;
    }
    } */
    /* @media(max-width:981px){
        .namingceremony-div1{
            margin-right:3px;
        }
        .namingceremony-div2{
            margin-right:0px;
        }
    } */
    @media(max-width:768px){
      
      
        .baloondecoration-div2{
            margin-left: auto;
            margin-right: auto;
        }


        
        .photogallery-div img{margin-left: auto; margin-right: auto; display: block;}



    }
    @media(max-width:401px){
        .baloondecoration-div2{
            margin-left: auto;
            margin-right: auto;
        } 
        
    }
  
    .home-link a{
   font-size: 12px;
    }
/* .footer-con a{font-size: 13px;} */
  
.footer .btn-square{width: 30px; height: 30px;}
.ourservices p{
    font-size:25px;
}
.pow a{
    color:#fff;
}
.baloondecoration-div1 img{
    width:100%;
}
@media(max-width:401px){
    .callus{
        padding-right:5px;
    }
}
.number{
    /* margin-left:20px; */
    margin-top:auto;
}
@media(max-width:1025px){
   .number{
    margin-left:25px;
   }
}
@media(max-width:401px){
    .number{
     margin-left:4px;
     margin-top:10px;
    }
 }
 @media(max-width:501px){
    .number{
     margin-left:4px;
    }
 }
 .email p{
    margin-left:1px;
 }
 @media(max-width:501px){
    .email p{
     margin-left:-70px;
    }
 }
 @media(max-width:501px){
    .number{
     margin-top:10px;
    }
 }
 @media(max-width:768px){
    .navbar .navbar-brand{
     padding-right: 0px;
    }
    .pho a{
        font-size:18px;
    }
 }
 .float img{
	position:fixed;
	width:60px;
	height:60px;
	bottom:82px;
	right: 25px;;
	/* 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;
}
.callus-div{
    display:none;
}
.callus-div a{
    color:#fff;
}
@media(max-width:768px){
    .callus-div{
        display:block !important;
        bottom:0px;
        position:fixed;
        width:100%;
        z-index: 1000;
        bottom:0;
        background:var(--primary);
        text-align:center;
        padding:0px;
        color:#ddd9d9;
        font-weight:600;
    }

}


    
