
/*MecB (https://mecb.com)*/

/*Copyright 2011-2023 ANSOFT - www.an-soft.it*/
/*Licensed under ATHENAE NOCTUA SOFTWARE DI LOSI GIULIANO*/

/*********************************/
/*********************************/
/********* LOADER ************/
/*********************************/
/*********************************/
.mask {
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
}
#intro-loader {
    width: 40px;
    height: 40px;
    background-color: #FF2800;
    margin: 500px 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);
        }
}

@media (max-width: 767px) {
    #intro-loader {
        margin: 250px auto;
    }

}

/*general*/
html {
    font-family: 'DM Sans', sans-serif;
}
::-moz-selection { /* Code for Firefox */
    color: #FFFFFF;
    background: #FF2800;
}
::selection {
    color: #FFFFFF;
    background: #FF2800;
}
h1, h2, h3, h4, h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: bold;
}
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 3%), inset 0px 4px 3px -2px rgb(0 0 0 / 7%);
    text-decoration: none!important;
    cursor: pointer;
}
.btn-primary {
    background-color: #202125;
}
.btn-primary:hover {
    background-color: #44464E;
}
.btn-secondary {
    background-color: #FF2800;
}
.btn-secondary:hover {
    background-color: #FF5839;
}
/*loader*/
.mask {
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
}
#intro-loader {
    width: 40px;
    height: 40px;
    background-color: #FF2800;
    margin: 500px 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);
        }
}

@media (max-width: 767px) {
    #intro-loader {
        margin: 250px auto;
    }

}




/*header*/
.main-header .navbar .navbar-brand img {
    height: 120px;
    margin: 0 30px 0 20px;
}

.main-header .navbar .navbar-nav .nav-item {
    min-width: 125px;
    text-align: center;
}
.main-header .navbar .navbar-nav .nav-item .nav-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 60px;
    padding: 20px 20px 0px;
}

#header-sticky .navbar {
    background: #FFFFFF;
    /*background: transparent;*/
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 1.2rem 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
#header-sticky.sticky .navbar {
    /*height: 80px;*/
    /*background: #FFFFFF;*/
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.10);
    box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.10);
}
#header-sticky .navbar .navbar-brand img {
    max-height: 80px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
#header-sticky.sticky .navbar .navbar-brand img {
    max-height: 50px;
}
#header-sticky.sticky .navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


.banner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .content-wrapper {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: auto;
    padding: 1rem;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.banner .image-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

.banner .image-wrapper .image {
    width: 100%;
    display: block;
}

.banner .image-wrapper .video {
    width: 100%;
    display: block;
}

.banner-metadata {
    margin: 3rem 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-metadata.absolute {
    position: absolute;
    z-index: 1;
    bottom: 2.5rem;
}

.banner-metadata .item:not(:first-child):not(:last-child) {
    margin: 0 2rem;
}

.banner-metadata .item .text {
    margin: 0;
    color: #FF2800;
}

.banner-metadata .item .icon {
    margin-right: 10px;
}

.banner .banner-breadcrumb {
    margin: 3rem 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .banner-breadcrumb.absolute {
    position: absolute;
    z-index: 1;
    bottom: 2.5rem;
}

.banner .banner-breadcrumb .item:not(:first-child):not(:last-child) {
    margin: 0 1rem;
}

.banner-breadcrumb .item .text {
    color: #FF2800;
}

.banner-breadcrumb .item .link {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .banner-breadcrumb .item .icon {
    font-size: 0.85rem;
    margin: 5px 0 0 5px;
}

@media (max-width: 767px) {

    .banner-metadata {
        flex-direction: column;
    }

    .banner-metadata .item:not(:first-child):not(:last-child) {
        margin: 1rem;
    }
}

@media (max-width: 991px) and (orientation: landscape) {

    .banner .image-wrapper .image,
    .banner .image-wrapper .video {
        height: 150vh !important;
    }
}

/* #endregion Banner */
.shock-section {
    position: relative;
    z-index: 10;
}

.shock-section .container {
    position: relative;
    z-index: 1;
}

.shock-section .container-fluid {
    position: relative;
    z-index: 1;
    padding: 0;
}

:root .shock-section .content.scheme-1 {
    --color-1: #000;
}

:root .shock-section .content.scheme-2 {
    --color-1: #000;
}

.shock-section .archive,
.shock-section .content {
    max-width: 77%;
    margin-right: auto;
    margin-left: auto;
}

.shock-section .content .stretched-section {
    margin-right: -15%;
    margin-left: -15%;
}

.shock-section .content .block-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.shock-section .content h1 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
}

.shock-section .content h2 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
}

.shock-section .content h3,
.shock-section .content h4,
.shock-section .content h5,
.shock-section .content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000000;
}

.swiper.thumbnails {
    margin-top: 15px;
}

.swiper.gapped {
    padding: 0 45px;
    background-color: #000000;
}

.swiper.gapped:before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 45px;
    height: 100%;
    background-color: inherit;
}

.swiper.gapped:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 45px;
    height: 100%;
    background-color: inherit;
}

.swiper.has-overflow {
    overflow: inherit;
}

.swiper.has-overflow-right {
    overflow: inherit;
    width: 85%;
    margin-left: initial;
    margin-right: auto;
}

.swiper.has-gap .swiper-slide {
    padding: 15px;
}

.swiper .swiper-slide .image {
    width: 100%;
    display: block;
}

.swiper .swiper-slide .image.large {
    position: relative;
    right: 10%;
    width: 120%;
}

.swiper.thumbnails .swiper-slide .image {
    height: 120px;
    object-fit: cover;
}

.swiper .swiper-button-next, .swiper .swiper-button-prev {
    top: 50%;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    color: #FF2800;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swiper.has-pagination .swiper-button-next, .swiper.has-pagination .swiper-button-prev {
    top: calc(50% - 20px);
}

.swiper.has-scrollbar .swiper-button-next, .swiper.has-scrollbar .swiper-button-prev {
    top: calc(50% - 10px);
}

.swiper .swiper-button-next:hover, .swiper .swiper-button-prev:hover {
    background-color: #000000;
    color: #FF2800;
}

.swiper .swiper-button-next {
    right: 0;
}

.swiper .swiper-button-prev {
    left: 0;
}

.swiper .swiper-button-next.simple, .swiper .swiper-button-prev.simple {
    width: auto;
    background-color: transparent;
    color: #FFFFFF;
}

.swiper .swiper-button-next.simple:hover, .swiper .swiper-button-prev.simple:hover {
    background-color: transparent;
    color: #FF2800;
}

.swiper .swiper-button-next:after, .swiper .swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper .swiper-side-gaps-prev {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    background-color: #FF2800;
}

.swiper .swiper-side-gaps-next {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 15px;
    height: 100%;
    background-color: #FF2800;
}

.swiper.gapped .swiper-side-gaps-prev {
    width: 60px;
}

.swiper.gapped .swiper-side-gaps-next {
    width: 60px;
}

.swiper .swiper-pagination-bullets {
    position: relative;
    top: 0;
    padding: 5px;
}

.swiper .swiper-pagination-bullets.absolute {
    position: absolute;
    top: initial;
    bottom: 2.5rem;
    padding: 0;
}

.swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    vertical-align: middle;
    border-radius: 50%;
    border: 2px solid;
    border-color: var(--color-1);
    background-color: transparent;
    opacity: 0.25;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swiper .swiper-pagination-bullet:hover {
    border: 2px solid;
    border-color: #FF2800;
    background-color: #FF2800;
    opacity: 1;
}

.swiper .swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    border: 2px solid;
    border-color: #FF2800;
    background-color: #FF2800;
    opacity: 1;
}

.swiper .swiper-scrollbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    margin: auto;
    border-radius: 0;
    background-color: #FFFFFF;
}

.swiper.has-gap .swiper-scrollbar {
    left: 25px;
    width: calc(100% - 50px);
}

.swiper.has-side-gaps .swiper-scrollbar {
    left: 15px;
    width: calc(100% - 30px);
}

.swiper.gapped .swiper-scrollbar {
    left: 60px;
    width: calc(100% - 120px);
}

.swiper .swiper-scrollbar-drag {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF2800;;
    border-radius: 0;
    cursor: grab;
}

.swiper .drag-text {
    margin: 10px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper .drag-text .text {
    margin: 0 10px;
    font-size: 0.85rem;
}

.swiper.has-drag-text:hover .drag-text .text {
    animation: expand-animation;
    animation-duration: 1s;
    animation-iteration-count: 2;
}

.swiper .item:active,
.swiper .full-link:active {
    cursor: grabbing;
}

/* #endregion Slider */


.extended-intro {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.extended-intro .wrapper {
    display: flex;
    justify-content: center;
}

.extended-intro .left-column {
    width: auto;
    margin: 0;
    padding: 0;
}

.extended-intro .right-column {
    width: auto;
    margin: 0;
    padding: 0;
}

.extended-intro .title {
    left: -250px;
    margin: 0;
    color: #FF2800;
}

.extended-intro .text-1 {
    font-size: 6rem;
    text-shadow: 0px 0px 20px #000000;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 5px;
    display: block;
    text-align: center;
    color: #FFFFFF;;
}

.extended-intro .sub-title {
    display: block;
    font-size:1.3rem;
    text-align: center;
    color: #FFFFFF;;
    text-shadow: 0px 0px 20px #000000;
    margin: 0 0 20px;
}

.extended-intro .text-2 {
    font-size: 1.7rem;
    font-weight: 300;
    display: block;
    text-align: center;
    text-shadow: 0px 0px 20px #000000;
    color: #FFFFFF;
    margin: 0 0 20px;
    padding: 0 100px;
}

.extended-intro .description {
    max-width: 60%;
    margin: 2rem 0 0 auto;
    display: block;
    text-align: right;
    color: #FF2800;;
}

.extended-intro .button {
    margin: 0 0 0 3rem;
}

@media (max-width: 1199px) {

    .extended-intro .wrapper {
        display: block;
    }

    .extended-intro .text-2 {
        text-align: left;
    }

    .extended-intro .description {
        max-width: 100%;
        margin: 1rem 0 0;
        text-align: left;
    }

    .extended-intro .right-column {
        display: block;
        text-align: left;
    }

    .extended-intro .button {
        margin: 2rem 0 0;
    }
}

.move {
    -webkit-animation: fadein 2s ease-in alternate infinite;
    -moz-animation: fadein 2s ease-in alternate infinite;
    -o-animation: fadein 2s ease-in alternate infinite;
    -ms-animation: fadein 2s ease-in alternate infinite;
    animation: fadein 2s ease-in alternate infinite
}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
    margin-top: 125px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    top: 25%;
    z-index: 10;
}
.carousel-caption h1 {
    font-size: 65px;
    color: #202125;
    line-height:1;
    font-weight:bold;
}
/* Declare heights because of positioning of img element */
.carousel-item {
    /*height: 32rem;*/
}


/*footer*/
footer {
    color: #FFFFFF;
    background: #000000;
    padding: 40px 0 20px;
}
footer p {
    color: #808080;
}
footer a {
    color:#FF2800;
    text-decoration: none;
}
footer a img {
    width: 45px;
    margin: 5px 0;
}
footer .footer-social h5,
footer .footer-social ul {
    text-align: center;
}

footer .copyright {
    padding: 5px 0;
}
footer .copyright span {
    color: #808080;
    font-size: 12px;
}
footer .copyright a {
    font-size: 12px;
}

/*about us*/
.about-us {
    color: #FFFFFF;
    background: #202125;
    padding: 80px 0;
    overflow-x: hidden;
}
.about-us h2 {
    font-size: 55px;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: 0px;
}
.about-us img {
    margin-top: 40px;
}
.ml11 {
    font-weight: 700;
    font-size: 3.5em;
}

.ml11 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.1em;
    padding-right: 0.05em;
    padding-bottom: 0.15em;
}

.ml11 .line {
    opacity: 0;
    position: absolute;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: #fff;
    transform-origin: 0 50%;
}

.ml11 .line1 {
    top: 0;
    left: 0;
}

.ml11 .letter {
    display: inline-block;
    line-height: 1em;
}

.about-us h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
}
.about-us p {
    font-size: 18px;
    color: #808080;
}
.about-us ul {
    font-size: 16px;
    color:#fff;
    margin-left: -20px;
}
.about-us ul li {
    line-height: 1.4;
}
.about-us ul li strong {
    font-size: 20px;
}
/*cosa facciamo - metadati*/
video {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.video-wrapper {
    border: 2px solid #000;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 0;
}
.header {
    position: relative;
    color: white;
}
.header h2,
.header h5,
.header p {
    color: #202125;
    text-align: center;
}
.bg {
    background-color: rgba(255, 255, 255, 1);
    padding: 25px 80px;
    border-radius: 30px;
}



#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.metadati {
    padding-top: 500px;
    padding-bottom: 100px;
}
.metadati h2 {
    color: #202125;
    text-align: center;
    font-size: 55px;
    margin-bottom: 0px;
}
.metadati p {
    font-size: 18px;
}

/*services*/
.services {
    color: #202125;
    background: #e3e3e3;
    padding: 130px 40px;
    overflow-x: hidden;
}
.services .header-section {
    background-color:#FF2800;
    background-image: url("../img/mec-b-header-services.jpg");
    background-repeat:no-repeat;
    background-position:center top;
    padding: 110px 55px;
    border-radius: 20px;
    margin-bottom: 150px;
}
.services .row.border-bottom {
    border-bottom: 1px solid #d1d1d1
}
.services h2 {
    font-size: 55px;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: 0px;
}

.services .services-icon i {
    font-size: 38px;
    padding: 20px 20px 20px 0;
}
.services .service-title {
    font-size: 32px;
    color:#FF2800;
    line-height: 1.2;
    margin-bottom: 15px;
}

/*mission*/
.mission {
    color: #FFFFFF;
    background-color:#202125;
    padding: 20px 0;
}
.mission .mission-row {
    /*padding: 80px 0;*/
}
.mission h5.text-start {
    padding-top: 150px;
}
.mission h2 {
    color: #FFFFFF;
    font-size: 55px;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: 0px;
}
.mission h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: 0px;
}
.mission p.text-mission {
    color: #FFFFFF;
    font-size: 16px;
    padding-right: 160px;
}
.mission img {
    margin-top: 15rem;
}
.mission ul {
    color: #FFFFFF;
    font-size: 16px;
    list-style: none;
}
.mission ul li span {
    color: #FF2800;
    font-size: 20px;
    text-transform:uppercase;
}

.mission .mission-grid {
    display: flex;
    min-height: 245px;
    background: linear-gradient(180deg,#27272e,#303035);
    padding: 50px 50px 40px;
    border-radius: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
}
/*.mission .mission-grid:hover {*/
/*    border: 1px solid;*/
/*    border-image-source: linear-gradient(0deg, #27272E 64.45%, rgba(74, 75, 86, 0.72) 100%);*/
/*    border-radius: 30px;*/
/*    background: linear-gradient(180deg,#27272e,#303035);*/
/*    transition: all 0.3s ease-in-out;*/
/*}*/
.mission .mission-grid .thumbs {
    margin-right: 25px;
    max-width: 85px;
}
.mission .mission-grid .thumbs img {
    width: 65px;
    margin: 0 auto;
}
.mission .mission-grid .text {
    flex: 1 1;
}



/*contatti*/
.contact {
    color: #202125;
    background: #e3e3e3;
    padding: 100px 0;
    overflow-x: hidden;
}
.contact h2 {
    font-size: 55px;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: 0px;
}
.contact a {
    font-size: 24px;
    color: #202125;
    line-height: 2.2;
    font-weight: 500;
    letter-spacing: 0px;
    text-decoration: none;
}
.contact a i {
    color: #FF2800;
    padding-right: 5px;
}
.contact ul li {
    display: inline;
}
.contact ul li a img {
    width: 50px;
    margin: 0 10px;
}

.contact .contact-form-wrapper {
    margin-top: 100px;
}
.contact .contact-form-wrapper input.form-control,
.contact .contact-form-wrapper textarea {
    background: #e3e3e3;
    color: #808080;
    border: none;
    border-bottom: 2px solid #808080;
    border-radius: 0px;
    padding: 10px 20px;
}
.contact .contact-form-wrapper input::placeholder,
.contact .contact-form-wrapper textarea::placeholder {
    color: #808080;
}
.contact .contact-form-wrapper input:focus,
.contact .contact-form-wrapper textarea:focus {
    color: #202125;
    border-color: #202125;
    box-shadow: none;
}

.contact .contact-form-wrapper .form-check input.form-check-input {
    border: 1px solid #808080;
    border-radius: 0px;
    padding: 0;
}
.contact .contact-form-wrapper .form-check label,
.contact .contact-form-wrapper .form-check label a {
    font-size: 12px;
}

/* smarthphone */
@media (min-width: 320px) and (max-width: 480px) {
    /*slider*/
    .extended-intro .text-1 {
        font-size: 3rem;
    }
    .extended-intro .sub-title {
        font-size: 1rem;
    }
    .extended-intro .text-2 {
        font-size: 1.2rem;
        text-align: center;
        padding: 0 30px;
    }
    /*end slider*/
    /*about us */
    .about-us h2,
    .metadati h2,
    .services h2,
    .mission h2,
    .contact h2 {
        font-size: 40px;
        line-height: 1;
    }
    .about-us h2,
    .about-us h5 {
        padding-left: 15px;
    }
    .about-us h3 {
        font-size: 22px;
        padding-left: 15px;
    }
    .about-us img {
        margin-bottom: 35px;
    }
    /*end about us*/
    /*services*/

    /*metadata*/
    .metadati {
        padding-top: 100px;
    }
    .bg {
        padding: 50px 30px;
    }

    /*end services*/
    .mission h5.text-start {
        padding-top: 50px;
    }
    .mission h3 {
        font-size: 18px;
        line-height: 1.2;
    }
    .mission p.text-mission {
        padding: 0px;
    }
    .mission img {
        margin-top: 1rem;
    }
    footer {
        text-align: center;
    }
    footer .copyright {
        padding: 5px 15px;
    }
}

/*Privacy section*/
.privacy-section {
    margin-top: 140px;
}