/* START FONT */

@font-face {
    font-family: "candara";
    src: url("../fonts/candara.woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "candara";
    src: url("../fonts/candara-bold.woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* END FONT */


/** START ROLES CSS **/
:root {
    --primary: #02A0E1;
    --seconadry: #F58220;
    --light: #FFF;
    --dark: #000;
    --phColor: #8e9192;
    --bgColor: #EFF4F6;
    scroll-behavior: smooth !important;

}
html{
    scroll-behavior: smooth !important;
}

body{
    font-family: 'candara', sans-serif;
    background-color: #fff ;
    color: var(--dark);
}

h1,h2,h3,h4,h5,h6,p,ul{
    margin: 0;
    padding: 0;
}

*{
    box-sizing: border-box;
    outline: none;
    margin: 0;
    padding: 0;
}

.btnMain{
    font-weight: 700;
    padding: 17px 30px;
    font-size: 14px;
    background: transparent;
}

.btnMain.hover{
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: 0.3s;
}


.btnMain.hover:hover{
    color: var(--light);
    background-color: var(--primary);
}


.btnMain.light{
    color: var(--light);
    border: 2px solid var(--light);
    background-color:rgba(255, 255, 255, 0.30);
}



.btnMainEx{
    font-weight: 700;
    padding: 17px 30px;
    font-size: 14px;
    background: transparent;
}

.btnMainEx.hover{
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: 0.3s;
}


.btnMainEx.hover:hover{
    color: var(--light);
    background-color: var(--primary);
}


.btnMainEx.light{
    color: var(--light);
    border: 2px solid var(--light);
    background-color:rgba(255, 255, 255, 0.30);
}



a, a:hover{
    color: #000;
}
.pt-6{
    padding-top: 70px;
}
.pg-6{
    margin-top: 70px;
    padding: 100px 0;
    background-color: var(--bgColor);
}
.title{
    font-size: 40px;
    color: var(--dark);
    text-align: center;
}
section{
    overflow: hidden;
}

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.modal-body {
position:relative;
padding:0px;
}
.btn-close {
position:absolute;
right:-30px;
top:0;
}

.back-to-top{
    position: fixed;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    border-color: var(--primary);
}
.back-to-top svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(270deg);
}

/** START ROLES CSS **/




/*** Start Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin: 28px 12px;
    font-weight: 500;
    color: var(--light);
    outline: none;
    transition: .5s;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    position: relative;
    padding: 0;
    padding-bottom: 5px;
}
.navbar-light .navbar-nav .nav-link:focus{
    color: var(--light);
}

.navbar .navbar-nav .nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: var(--primary);
    transition: all 0.3s ease-in;
}


.navbar-light .navbar-brand{
    display: none;
}

.navbar .navbar-nav .nav-link:hover::after, .navbar .navbar-nav .nav-link.active::after{
    width: 100%;
} 


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

.sticky-top.navbar .navbar-nav .nav-link {
    color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.sticky-top .logosHeader img:first-child{
    display: none;
}
.navbar  .logosHeader img:last-child{
    display: none;
}

.sticky-top img:last-child{
    display: block;
}


button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.navbar .custom-logo-link h1 {
    color: #FFFFFF;
}

.navbar .custom-logo-link img {
    height: 60px;
    width: auto;
    transition: .5s;
}

.sticky-top.navbar .custom-logo-link img {
    height: 50px;
}


.sticky-top.navbar .custom-logo-link img {
    height: 50px;
}

.custom-logo-link{
    margin-right: 0;
}

.navbar .btnMain {
    padding: 6px 16px;
    font-size: 18px;
    color:  var(--primary);
    font-weight: 400;
    border: 2px solid var(--primary);
}

@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark);
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar .custom-logo-link h1 {
        color: var(--primary);
    }

    .navbar-light .custom-logo-link img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        height: 90px;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        box-shadow: 0px 4px 4px rgb(0 0 0 / 5%)
    }

    .navbar .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .sticky-top.navbar .btn {
        color: var(--light);
        background: var(--primary);
        border-color: var(--primary);
    }

    .text-copy{
        text-align: right !important;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }


}

@media (min-width: 767px) {

    #modalServices .modal-dialog {
        max-height: 540px !important;
        min-height: 540px;
    }

}

.logosHeader{
    display: flex;
    align-items: center;
}



/*** End Navbar ***/


/*** Start Navbar ***/
.hero-header{
    height: 100vh;
    background: #eee;
    overflow: hidden;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
}
.hero-sirius {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.hero-sirius .img-hero{
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-sirius .img-hero::before{
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000078;
}

.hero-sirius  .btnMain.light{
    width: fit-content;
}


.hero-sirius .img-hero img{
    
}

.hero-sirius .content{
    position: relative;
    width: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.hero-sirius > div.container.left{
    align-items: center;
    justify-content:  start;
}


.hero-sirius > div.container.center{
    align-items: center;
    justify-content:  center;
}

.hero-sirius > div.container.center .content{
    align-items: center;
    justify-content: center;
    text-align: center;
}



.hero-sirius .content img{
    width: 350px;
}

.hero-sirius  .content h3{
    font-size: 22px;
    color: #FFF;
}


.owl-dots{
    width: 100%;
    position: absolute;
    bottom: 50px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: var(--primary);
    border: 2px solid var(--primary);
    transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot span{
width: 14px;
    height: 14px;
    background-color: rgb(214, 214, 214);
    display: block;
    border-radius: 30px;
    border: 2px solid #fff;
    background: transparent;
}
.owl-theme .owl-nav{
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    transform: translateY(-50%);
    justify-content: space-between;
}

.owl-carousel .owl-nav button.owl-next{
    margin-right: 40px;
} 
.owl-carousel .owl-nav button.owl-prev{
    margin-left: 40px;
}

/*** End Navbar ***/


/*** Start About ***/
.about{
    text-align: center;
}

.about .headerAbout{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about .headerAbout h3{
    font-size: 18px;
    font-weight: 400;
    color:var(--dark)
}

.about .headerAbout h3 span{
    font-size: 18px;
    font-weight: 400;
    color: var(--primary)
}


.about .headerAbout ul{
    list-style: none;
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about .headerAbout ul li{
    border-radius: 100px;
    background: #F0F5F6;
    padding: 20px 30px;
    font-size: 20px;
    color: var(--primary);
}

.about .headerAbout ul li:nth-child(odd){
    color: var(--seconadry);
}

.about .content{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}


.about .content .row{
    justify-content: center;
    align-items: center;
}

.about .box {
    text-align: left;
    display: flex;
}

.about .box:nth-child(even) .row {
    flex-direction: row-reverse;
}

.about .box img{
    width: 212px;
    height: 212px;
    border-radius: 50%;
    object-fit: cover;
}
.about .box h4{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about .box p{
    color: var(--dark);
    font-size: 16px;
    line-height: 32px; /* 200% */
}

/*** End About ***/


/*** Start services ***/
.services {
    overflow: hidden;
}

.services .boxs{
    margin-top: 70px;
}
.services .box {
    padding: 30px;
    position: relative;
    height: 190px;
    background-size: cover;
    z-index: 2;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.services .box::before{
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgba(0, 0, 0) 12.22%, rgba(0, 0, 0, 0.00) 91.48%);
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;
    opacity: 0.50; 
    transition: all 0.3s ease-in-out;
}
.services .box:hover::before{
    opacity: 1; 
}
.services .box > div{ 

    z-index: 2;
    color: var(--light);
}
.services .box .content{
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.services .box .content  img{
    width: 39px;
    height: 39px;
}

.services .box .content  h3{
    color: var(--light);
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}
.services .box .arrow {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services .box:hover .arrow{
    right: 20px;
    opacity: 1;
}

.bannerService{
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    padding-top: 60px;
}
.bannerService .row{
    
}

.bannerService .content{
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 40px;
}


.bannerService .imgBanner{
    width: 160px;
    height: 160px;
    background-color: var(--primary);
    flex: 0 0 auto;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 47.059px;
}
.bannerService .imgBanner img {
    width: 120px;
}



.bannerService .imgBanner img{
    
}

.bannerService .textBanner{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bannerService .textBanner h3{
    color: var(--dark);
    font-size: 36px;
    font-weight: 700;
    line-height: 46px; /* 127.778% */
}
.bannerService .textBanner p{
    
}

.bannerService  .btnMain{
    color: var(--light);
    border: 2px solid var(--primary);
    background: #02a0e1b8;
}

.bannerService .row > div:last-child{
    display: flex;
    align-items: center;
    justify-content: end;
}

/*** End services ***/


/** Start  Modal Servcies **/ 
#modalServices  .modal-dialog {
    max-width: 950px;
    max-height: 540px;
    overflow: hidden;
    height: 540px;
}

#modalServices  .modal-content {
    border: 0;
    overflow: hidden;
    height: 100%;
}

#modalServices .modal-body .row {
    height: 100%;
}

#modalServices img{
    cursor: pointer;
}

#modalServices .modal-body .row > div:first-child img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#modalServices .modal-body .row > div:last-child{
    padding: 40px;
}

.headerModalService {
    display: flex;
    justify-content: space-between;
    height: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.headerModalService h5{
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    width: 70%; 
}

#modal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}


#modal-list li{
    position: relative;
    color: #000;
    font-size: 18px;
    margin-left: 20px;
}

#modal-list li::after{
    position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    background: var(--primary);
    border-radius: 50%;
    left: -20px;
    top: 9px;
}
.CloseBtn{
    text-align: center;
}
.CloseBtn button{
    color: var(--light);
    font-weight: 700;
    width: 140px;
    height: 50px;
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

/** End Modal Servcies **/


/*** Start product ***/
.products  .custom-dots{
    margin: 30px 0;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.products  .custom-dots button{

    width: 260px;
    height: 100px;
    border-radius: 16px;
    background: #EFEFEF;
    border:  2px solid #EFEFEF;
    transition: 0.3s;
}
.products  .custom-dots button.active{
    border:  2px solid var(--primary);
}
.products  .custom-dots button img{
    height: 100%;
    padding: 23px 30px;
}

.products  .owl-theme .owl-dots{
    display: none;
}
.products .box{
    height: 540px;
    border-radius: 16px;
    overflow: hidden;
}

.products .box > .row{
    height: 100%;

}

.products .box > .row > div{
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products .box > .row > div:first-child{
    height: 100%;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(15px);
}
.products .box  h3{
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 10px;
}

.products .box  h2{
    color:var(--dark);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.products .box  p{
    color: var(--dark);
    font-size: 18px;
    line-height: 35px; /* 194.444% */
}
.products .owl-nav{

}

.products .owl-theme .owl-nav [class*=owl-]:hover {
    background: #02a0e136;
    color: #FFF;
    text-decoration: none;
}

.products .owl-nav svg *{
    stroke: var(--primary);
}
.products .owl-carousel .owl-nav button.owl-prev {
    margin-left: -100px;
}

.products .owl-carousel .owl-nav button.owl-next {
    margin-right: -100px;
}

.products .box > .row > div:last-child{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

#productSlider .owl-stage-outer{
    z-index: 2;
}

.products .box > .row > div:last-child a{
    
}

/*** End product ***/


/** Event Start **/
.events{
    margin-bottom: 160px;
}
.events .boxs{
    margin-top: 70px;
}

.events .imgBox{
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
}
.events .imgBox .imgEvent {
    height: 100%;
}

.events .imgBox .imgEvent img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.events .imgBox .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000094;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.events .box:hover .overlay{
    opacity: 1;
}


.events h3{
    text-align: center;
    margin-top: 12px;
    font-size: 18px;
    color: var(--dark);
    width: 210px;
    margin: auto;
    margin-top: 12px;
}

.events  .banner {
    margin-top: 50px;
    height: 330px;
    border-radius: 8px;
    background: #D9D9D9;
    overflow: hidden;
    margin-bottom: -220px;
}
.events  .banner a{
    display: block;
    height: 100%;
}
.events  .banner a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/** Event End **/

/*** Clients Start ***/

.clients{

}
.brands {
    margin-top: 40px;
}

.brands .item{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands .item img {
    max-height: 60px;
    object-fit: contain;
}
/*** Clients End ***/

/*** Testimonials Start ***/
.people{
    margin-top: 50px;
    text-align: center;
}

.people .item > img {
    width: 94px;
    height: 94px;
    margin: auto;
    object-fit: cover;
    border-radius: 50%;
}
.people .item > h4{
    color: var(--dark);
    font-size: 16px;
    margin-top: 30px;
    margin: auto;
    width: 70%;
    margin-top: 30px;
    height: 70px;
    display: flex;
    align-items: center;
}

.people .item > p{
    margin-top: 30px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.people .owl-dots{
    bottom: auto;
}

.people.owl-theme .owl-dots .owl-dot.active span, .people.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--seconadry);
    border: 2px solid var(--seconadry);
    transition: 0.3s;
}


.people.owl-theme .owl-dots .owl-dot span{
    background-color: #C5C5C5;
    border: 1px solid #C5C5C5 ;
}

.people .owl-nav svg * {
    stroke: var(--seconadry);
}

.people.owl-theme .owl-nav [class*=owl-]:hover {
    background: #f5822040;
    color: #FFF;
    text-decoration: none;
}

.people.owl-carousel .owl-nav button.owl-next, .people.owl-carousel .owl-nav button.owl-prev {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    width: 50px;
    height: 50px;
}


/*** Testimonials End  ***/


/*** Contact Start  ***/

.contact {

}

iframe{
    width: 100%;
    height: 100%;
}

.contact .container{
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
}
.contact .container > .row > div:last-child{
    padding: 40px;
}

form{
    margin-top: 40px;
}
.form-control{
    border-radius: 0px;
}
.form-control:focus{
    background-color: #fff;
    border-color: var(--primary);
    border-width: 2px;
    outline: 0;
    box-shadow: none;  
}
textarea.form-control {
    height: 150px !important;
}
/*** contact End  ***/


/*** footer Start ***/
.footer{
    background: #F0F5F6;
    margin-top: 100px;
}
.topFooter{
    padding-top: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);;
}

.topFooter .logoFooter{

}

.topFooter .logoFooter img{
    width: 260px;
}

.topFooter p{
    font-size: 14px;
    margin-top: 26px;
    width: 70%;
}

.topFooter h3{
    position: relative;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
}

.topFooter h3::after {
    position: absolute;
    content: '';
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--seconadry);
}

.linksFooter{
    list-style: none;
    font-size: 15px;
}

.linksFooter li{
    margin-bottom: 24px;
    position: relative;
}

.linksFooter li{
    margin-left: 16px;
}
.linksFooter li::before{
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--dark);
    border-radius: 50%;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
}

.linksFooter li:last-child{
    margin-bottom: 0;
}

.linksContact {
    list-style: none;
}

.linksContact li{
    margin-bottom: 24px;
    position: relative;
}

.linksContact li a{
    display: flex;
    gap: 10px;
    align-items: start;
}
.copyright {
    margin-top: 20px;
    padding-bottom: 20px;
}
.copyright .linkSocial{
    list-style: none;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}
.copyright .LinkFooter ul{
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
}
/*** footer End ***/

/*** Media **/

@media (max-width: 991.98px) {
    .hero-sirius .content img {
        width: 280px;
    }
    .hero-sirius .img-hero img {
        height: 100%;
        object-fit: cover;
    }
    #navBar.position-relative {
        position: absolute !important;
        background: transparent;
        z-index: 10;
        width: 100%;
    }

    #navBar.position-relative.open,
    #navBar.position-relative.open nav {
        background: #fff;
    }

    .open .logosHeader img:last-child {
        display: block !important;
    }
    .open  .logosHeader  img:first-child{
        display: none;
    }

    .open .openMenu{
        display: none;
    }

    .closeMenu{
        display: none;
    }

    .open .closeMenu{
        display: block;
    }

    .hero-sirius .owl-carousel .owl-item img {
        display: block;
        width: 100%;
    }
    .hero-sirius .content h3 {
        font-size: 18px;
        line-height: 32px;
        padding: 0 50px;
    }

    .hero-sirius > div.container.left .content h3{
        padding: 0px;
    }

    .navbar-light .navbar-toggler {
        color: rgba(0, 0, 0, 0.55);
        border-color: rgba(0, 0, 0, 0.1);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--primary);
        border-radius: 0 !important;
    }

    .navbar-light .custom-logo-link img {
        max-height: 50px;
    }

    .navbar .navbar-nav .nav-link, .sticky-top.navbar .navbar-nav .nav-link {
        margin: 4px 0;
        padding: 12px 20px;
        background: #EFEFEF;
        color: var(--dark);
    }
    .navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active{
        background: var(--primary);
        color: var(--light) !important;
    }
    .navbar .btnMain {
        border: 1px solid var(--primary);
        width: 100%;
        display: block;
        text-align: center;
    }

   .navbar .navbar-collapse {

        width: 100%;
    }
    .navbar .navbar-collapse .navbar-nav{
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
    .logosHeader {
        display: flex;
        align-items: center;
        margin: 15px 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }
    .sticky-top.navbar {
        background: #FFFFFF;
        position: fixed;
        width: 100%;
    }

    .topFooter .logoFooter {
        text-align: center;
        width: 190px;
        margin: auto;
    }
    .topFooter .logoFooter  img{
        width: 100%;
    }
    .topFooter p {
        width: 90%;
        text-align: center;
        margin: auto;
        margin-top: 26px;
        margin-bottom: 50px;
        line-height: 24px;
        letter-spacing: 0.14px;
    }
    .linksFooter li {
        margin-bottom: 16px;
    }
    .topFooter {
        padding-bottom: 20px;
    }
    .copyright > .row {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 40px;
    }
    .copyright .linkSocial {
        justify-content: center;
        gap: 70px;
    }
    .contact .container{
        border: 0;
        padding: 0 15px;
    }
    .contact .container > .row{
        flex-direction: column-reverse;
        gap: 70px;
    }
    .contact .container > .row > div:last-child {
        padding: 0px;
    }
    iframe {
        height: 480px;
    }
    .people .item > h4 {
        width: 90%;
        line-height: 1.6;
    }
    .title {
        font-size: 34px;
    }

    .events .boxs > .row{
        gap: 30px;
    }

    .events .imgBox {
        width: 330px;
        margin: auto;
    }

    .banner .imgBanner{
        height: 100%;
    }
    .products .custom-dots button {
        width: 180px;
        height: 75px;
    }
    .products .custom-dots button img {
        height: 100%;
        padding: 20px;
    }
    .products .box > .row > div {
        padding: 40px 26px;
        display: flex;
    }
    .products .box h2 {
        font-size: 32px;
    }
    .products .box p {
        font-size: 14px;
        line-height: 24px;
    }
    .products .box > .row > div {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        height: 199px;
    }
    .products .box > .row > div:first-child {
        height: auto;
    }
    .products .box > .row {
        flex-direction: column-reverse;
    }
    .bannerService .content {
        flex-direction: column;
        text-align: center;
        margin-bottom: 26px;
    }
    .bannerService .textBanner h3 {
        font-size: 30px;
    }
    .bannerService .textBanner p {
        width: 90%;
        margin: auto;
    }
    .btnBanner{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;    
    }
    .about .headerAbout h3 {
        font-size: 16px;
        line-height: 28px;
    }

    .about .headerAbout ul {
        flex-wrap: wrap;
    }
    .about .headerAbout ul li {
        font-size: 18px;
        padding: 14px;
    }
    
    .about .box img {
        width: 170px;
        height: 170px;
        margin-bottom: 26px;
    }

    .about .box {
        text-align: center;
    }
}