/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-font: "DM Sans", sans-serif;
    --secondary-font: "Urbanist", sans-serif;
    --bg-black: #000;
    --bg-white: #fff;
    --white: #fff;
    --black: #000;
    --blue: #003f72;
    --dark-blue: #00182B;
    --dark-blue-bg: #00182B;
    --gray: #F5F7F9;
    --text-color: #334655;
}

/* @view-transition {
    navigation: auto;
} */

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

img.round {
    border-radius: 16px;
}

body {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    background: var(--bg-white);
    color: var(--text-color);
    text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
    font-family: var(--secondary-font);
    text-wrap: balance;
    font-weight: 700;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: var(--dark-blue);
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid var(--dark-blue);
    z-index: 8888;
}

.scrolltotop i {
    color: #ffff;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--dark-blue);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.title-large {
    font-family: var(--secondary-font);
    color: var(--dark-blue);
    font-size: 64px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 32px;
}

.title-large span {
    font-weight: 300;
}

.title-medium {
    font-family: var(--secondary-font);
    color: var(--dark-blue);
    font-size: 40px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

.title-medium span {
    font-weight: 300;
}

.title-small {
    font-family: var(--secondary-font);
    color: var(--dark-blue);
    font-size: 32px;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 16px;
}

h3.title-small span {
    font-size: 20px;
    font-weight: 500;
}

.text-20 {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}

.text-24 {
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
}

.button {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.72px;
    text-transform: uppercase;
    padding: 10.5px 24px;
    border-radius: 40px;
    background: var(--dark-blue);
    position: relative;
    z-index: 9;
    overflow: hidden;
    animation-duration: .3s;
    text-align: center;
}

.button:hover {
    color: var(--white);
    background: var(--dark-blue-bg);
    opacity: 0.8;
}

.button.white {
    background-color: #FFF;
    color: #00182B;
}

/*=== Header area start ===*/

.header-area {
    padding: 21px 0;
    /* background-image: url(../images/header-bg.png); */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.4) 80%);
    opacity: 1;
    backdrop-filter: blur(20px);
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

.header-logo img {
    max-width: 80%;
}

.header-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right p {
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

.header-right p a {
    color: var(--black);
    transition: 0.3s;
}

.header-right p a:hover {
    text-decoration: underline;
}

.hamburger {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 11.5px 18px;
    border-radius: 41.625px;
    background: var(--bg-white);
}

.hamburger span {
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    margin-right: 12px;
}

.hamburger img {
    max-width: 100%;
}

/*=== offcanvas start ===*/

.offcanvas-start {
    width: 300px;
    border: none;
    background: var(--bg-white);
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.side-menu-logo img {
    max-width: 100%;
}

.side-menu-logo .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-logo .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: var(--dark-blue);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-logo .close:hover span {
    background: var(--dark-blue);
}

.side-menu-logo .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-logo .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-link ul li a {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    display: inline-block;
    margin: 0 0 15px;
}

.side-menu-link ul li a:hover {
    color: var(--dark-blue);
}

/*=== main content start ===*/

.main-content {
    overflow: hidden;
}

/*=== banner area start ===*/

.banner-area {
    padding: 120px 0;
    background: var(--dark-blue);
    position: relative;
    z-index: 9;
}

.banner-content h1 {
    font-size: 80px;
    margin-bottom: 48px;
}

.banner-content h3 {
    font-weight: 800;
    margin-bottom: 24px;
}

.banner-content p {
    max-width: 780px;
}

.banner-content .text-24 {
    text-wrap: balance;
}

/* .banner-side-image {
    position: absolute;
    right: 16.5px;
    bottom: -70px;
    z-index: -1;
} */

.banner-side-image img {
    max-width: 100%;
}

/*=== canvas area start ===*/

.canvas-area {
    padding: 160px 0;
}

.canvas-area.dark {
    background-color: #00182B;
    color: #fff;
}

.canvas-area.dark .title-large,
.canvas-area.dark .text-20 {
    color: #FFF;
}

.canvas-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.canvas-item-left {
    width: 400px;
}

.canvas-item-left img {
    width: 100%;
}

.canvas-item-right {
    width: calc(100% - 400px);
    padding-left: 120px;
}

.canvas-item-right p {
    margin-bottom: 16px;
}

/*=== history area start ===*/

.history-area {
    padding: 120px 0;
    background: var(--dark-blue-bg);
    text-align: center;
}

.history-content h2 {
    margin-bottom: 48px;
}

.history-content p {
    opacity: 0.8;
}

.history-area .text-24 {
    font-style: italic;
}

/*=== service area start ===*/

.service-area {
    padding: 160px 0;
}

.service-title {
    text-align: center;
    margin-bottom: 48px;
}

.service-content {
    border-top: 1px solid #CCD1D5;
    border-bottom: 1px solid #CCD1D5;
}

.service-item {
    max-width: 1232px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.service-item-inner {
    width: 33.333%;
    padding: 32px;
}

.service-item-inner-middle {
    border-left: 1px solid #CCD1D5;
    border-right: 1px solid #CCD1D5;
}

.service-item-inner img {
    max-width: 100%;
    display: block;
    margin-bottom: 16px;
}

.service-bottom-button {
    text-align: center;
    padding-top: 64px;
}

/*=== studies area start ===*/

.studies-area {
    padding: 120px 0 56px;
    background: var(--dark-blue);
}

.studies-area .row {
    --bs-gutter-x: 64px;
}

.studies-title {
    text-align: center;
    margin-bottom: 64px;
}

.studies-item-inner {
    padding: 32px;
    border-radius: 64px;
    background: var(--gray);
    margin-bottom: 32px;
}

.studies-item-inner h3 {
    margin-top: 16px;
}

.studies-item-inner img.round {
    border-radius: 32px;
}

.studies-item-inner.large {
    display: flex;
    /* width: 954px; */
    padding: 32px;
    align-items: flex-start;
    gap: var(--space-body-cta, 40px);
}


.studies-item-inner .left {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
}

.studies-item-inner .right {
    height: auto;
    flex: 1 0 0;
    aspect-ratio: 1/1;
    background-image: url("https://www.slooow.it/wpooo/wp-content/uploads/2024/11/mb3-50-anni-gruppo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #cccccc;
    border-radius: 32px;
}

.studies-item-inner a.button {
    margin-top: 40px;
}

.studies-item-inner-second {
    margin-top: 64px;
}

.studies-item-inner-third {
    margin-top: -64px;
}

.studies-item-inner-fourth {
    width: 57px;
    height: 33px;
    border-radius: 20px;
    background-color: #F5F6F7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.studies-item-inner-fourth span {
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 400;
}

.owl-carousel .owl-nav {
    text-align: center;
    transform: translateY(-34.5px);
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    color: transparent;
    width: 60px;
    height: 36px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    background-color: #F5F6F7;
    margin: 0 36.5px;
}

.owl-carousel .owl-nav button.owl-prev {
    background-image: url(../images/slider-left.png);
}

.owl-carousel .owl-nav button.owl-next {
    background-image: url(../images/slider-right.png);
}

/*=== team area start ===*/

.team-area {
    background: var(--bg-white);
}

.team-item {
    display: flex;
    align-items: center;
}

.team-item div:nth-of-type(1) {
    width: 96px;
    flex: 0 0 96px;
    padding-right: 20px;
}

.team-item img {
    width: 100%;
}

.team-item h2 {
    margin-bottom: 0;
}

.team-item p {
    color: var(--dark-blue);
}


.omi-partner {
    padding: 80px 0;
    background: rgb(245, 246, 247);
    color: #00182B;
}

.omi-partner .text-24 {
    color: #334655
}

.omi-partner img {
    margin-top: 48px;
    margin-left: 32px;
    max-width: 240px;
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

/*=== project area start ===*/

.project-area {
    padding: 80px 0;
    /* background: var(--dark-blue); */
    text-align: center;
}

.project-content h2 {
    margin-bottom: 32px;
}

.project-content p {
    margin-bottom: 40px;
}

.project-content p a {
    /* color: var(--white); */
    animation-duration: 0.3s;
    text-decoration: underline;
}

.project-content p a:hover {
    opacity: 0.5;
    text-decoration: none;
}

.project-content a.button {
    /* color: var(--dark-blue); */
    letter-spacing: 0.56px;
    /* background: var(--bg-white); */
}

.project-content a.button:hover {
    opacity: 0.8;
}

.project-area .text-24 {
    color: #00182B;
}

/*=== discover area start ===*/

.discover-area {
    padding: 120px 0;
    background: #f5f6f7;
    text-align: center;
}

.discover-content-image {
    text-align: center;
    margin-bottom: 40px;
}

.discover-content-image img {
    max-width: 100%;
}

.discover-content-image-second img {
    max-width: 192px;
}

.discover-content p {
    color: var(--text-color);
    max-width: 720px;
    margin: 0 auto 16px;
}

/*=== footer area start ===*/

.footer-area {
    padding: 80px 0 32px;
    background: var(--dark-blue);
    overflow: hidden;
}

.footer-item {
    margin-bottom: 32px;
}

.footer-item img {
    max-width: 100%;
}

.footer-item h2 {
    margin: 16px 0 32px;
}

.footer-item p {
    color: #ccd1d5;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
}

.footer-item p a {
    color: #ccd1d5;
}

.footer-item p a:hover {
    text-decoration: underline;
}

.footer-item-inner-second ul {
    display: flex;
    align-items: center;
    padding-top: 16px;
}

.footer-item-inner-second ul li a {
    margin-right: 24px;
}

.footer-item-inner-third ul li a {
    color: #F5F6F7;
    display: inline-block;
    margin-bottom: 24px;
    transition: 0.3s;
}

.footer-item-inner-third ul li:last-of-type a {
    margin-bottom: 0;
}

.footer-item-inner-third ul li a:hover {
    text-decoration: underline;
}

.footer-bottom ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 48px;
}

.footer-bottom ul li {
    color: #99A3AA;
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin: 0 20px 16px;
}

.footer-bottom ul li a {
    /* color: var(--white); */
    color: #99A3AA;
    transition-duration: 0.3s;
    text-decoration: underline;
}

.footer-bottom ul li a:hover {
    opacity: .8;
}