/*
Theme Name: SeaStyle
Theme URI: https://www.graphilandia.it/
Description: Il tema di SeaStyle
Version: 1.0
Author: Graphilandia
Author URI: https://www.graphilandia.it/
*/

@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

:root{
    /*--blue: #13131F;*/
    --blue: #0b131f;
    --dark-blue: #0d0d14;
    --light-blue: #1e1e30;

    --light-alfa-blue: #1e1e30d0;

    --gold: #d8a27a;
    --dark-gold: #bd885f;
    --light-gold: #e4af87;

    --header-desk-height: 90px;
    --header-mob-height: 90px;

    
}

/* SCROLLBAR */

::-webkit-scrollbar {
    width: 5px;
}
  
::-webkit-scrollbar-track {
    background: var(--light-blue);
}
  
::-webkit-scrollbar-thumb {
    background: var(--light-gold);
}
  
::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}
/* /SCROLLBAR */

/* GENERAL */
.custom-body{
    background-color: var(--blue) !important;
}

.ms_page-wrapper *, .custom-header *{
    font-family: "Lexend Deca", sans-serif !important;
}

.ms_page-wrapper{
    overflow-x: hidden;
}

.op-0{
    opacity: 0;
}

.text-blue{
    color: var(--blue) !important;
}

.text-gold{
    color: var(--gold);
}

.text-white{
    color: rgb(216 216 216) !important;
}

.bg_blue{
    background-color: var(--blue);
}

.bg_gold{
    background-color:var(--gold);
}

.text-upper{
    text-transform: uppercase;
}

.shape-divider-blue{
    fill: var(--blue);
}

.shape-divider-gold{
    fill: var(--gold);
}

.ms_section{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.animate-in{
    opacity: 0;
    transform: scale(0.1);
}

.animate-from-left{
    position: relative;
    left: -100px;
    opacity: 0;
}

.animate-from-right{
    position: relative;
    right: -100px;
    opacity: 0;
}

@media screen and (max-width: 769px){
    .ms_section{
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.section-subt{
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.section-title{
    text-transform: uppercase;
    font-size: 2rem;
}

@media screen and (max-width: 769px) {
    .section-title{
        font-size: 1.7rem;
    }
}

.section-text{
    font-size: 1.1rem;
    text-align: justify;
    font-weight: 250;
}

@media screen and (max-width: 769px){
    .section-text{
        font-size: 1rem;
    }
}

/* BUTTONS */
.ms_btn {
    display: inline-block;
    position: relative;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2em;
    cursor: pointer;
    border-radius: 6em;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: var(--blue);
    background-color: var(--gold);
}

.ms_btn-blue{
    display: inline-block;
    position: relative;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2em;
    cursor: pointer;
    border-radius: 6em;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: var(--gold);
    background-color: var(--blue);
}
  
.ms_btn:hover, .ms_btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

  
.ms_btn:active, .ms_btn-blue:active{
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
  
.ms_btn::after, .ms_btn-blue::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}
  
.ms_btn::after {
    background-color: var(--gold);
}

.ms_btn-blue::after{
    background-color: var(--blue);
}
  
.ms_btn:hover::after, .ms_btn-blue:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

/* Animations */
.overflow-x-hidden{
    overflow-x: hidden;
}

.animate-from-left{
    position: relative;
    left: -100px;
    opacity: 0;
}
/* /Animations */

/* HEADER */
.custom-header{
    height: var(--header-desk-height);
    width: 100%;
    position: fixed;
    top: -50%;
    left: 0;
    overflow: hidden;
    z-index: 990;
    background: rgb(19,19,31);
    background: -moz-linear-gradient(180deg, rgba(19,19,31,1) 0%, rgba(19,19,31,0.4374124649859944) 50%, rgba(102,186,221,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(19,19,31,1) 0%, rgba(19,19,31,0.4374124649859944) 50%, rgba(102,186,221,0) 100%);
    background: linear-gradient(180deg, rgba(19,19,31,1) 0%, rgba(19,19,31,0.4374124649859944) 50%, rgba(102,186,221,0) 100%);
    backdrop-filter: blur(5px);
}

.header-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo{
    width: 200px;
}

#header-burger{
    padding: 5px;
    font-size: 1.1rem;
    color: white;
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: relative;
}

#header-burger::after{
    content: '';
    display: block;
    width: 30%;
    height: 2px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 200ms linear;
}

#header-burger::before{
    content: '';
    display: block;
    width: 30%;
    height: 2px;
    background-color: white;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 200ms linear;
}

#header-burger:hover::after{
    left: 70%;
}

#header-burger:hover::before{
    right: 70%;
}

#header-navbar{
    height: 100svh;
    width: 25%;
    position: fixed;
    top: 0;
    left: -100%;
    opacity: 0;
    background-color: var(--blue);
    z-index: 993;
}

#close-header{
    background-color: #13131f8e;
    width: 100%;
    height: 100svh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 992;
    cursor: url("./imgs/cursor.png") 16 16, pointer;
    opacity: 0;
}

.navbar-container{
    position: relative;
    overflow: auto;
}

#close-burger{
    display: block;
    width: fit-content;
    padding: 5px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2.4rem;
    color: var(--gold);
    transition: all 200ms linear;
}

#close-burger:hover{
    transform: scale(1.05);
}

.navbar-wrapper ul{
    padding: 0 !important;
    margin: 0 !important;
    list-style-type: none !important;
}

.navbar-wrapper ul li{
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.navbar-wrapper ul li a{
    color: white;
    text-decoration: none;
    display: block;
    width: fit-content;
    transition: all 200ms linear;
}

.navbar-wrapper ul li a:hover{
    color: var(--gold);
}

.current_page_item a{
    color: var(--gold) !important;
}

.current_page_item a::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.lang-wrapper{
    padding: 0 !important;
    margin: 0 !important;
    list-style-type: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.lang-wrapper li a{
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: all 200ms linear;
}

.lang-wrapper li a[lang='en-GB']::after{
    content: '/';
    color: white;
}

.lang-wrapper li a img{
    width: 20px !important;
    height: 15px !important;
}

.lang-wrapper li a span{
    display: none !important;
}

.current-lang li a img{
    width: 25px !important;
    height: 20px !important;
}

.mob-none{
    display: block;
}

.desk-none{
    display: none;
}

@media screen and (max-width: 1024px){
    #header-navbar{
        width: 100%;
    }

    .mob-none{
        display: none;
    }

    .desk-none{
        display: block;
    }
}

@media screen and (max-width: 769px){
    .custom-header{
        height: var(--header-mob-height);
    }

    #logo{
        width: 130px;
    }

    #header-burger{
        font-size: 1rem;
    }
}

/* Home */
.video-wrapper{
    width: 100%;
    height: 100svh;
    background-color: var(--blue);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999;
}

#close-video{
    padding: 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 4rem;
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
}

#close-video svg{
    width: 2rem;
    fill: rgba(255, 255, 255, 0.812);
    transition: all 200ms linear;
}

#close-video:hover svg{
    transform: scale(1.09);
}

#video-home{
    display: block;
}

.muted{
    cursor: url("./imgs/volume-high.png") 16 16, pointer;
}

.unmuted{
    cursor: url("./imgs/volume-mute.png") 16 16, pointer;
}

#video-home-mob{
    display: none; 
}

.adapt-video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.wrapper-container{
    position: relative;
}

.custom-shape-divider-top-1745413688{
    width: 100%;
    position: absolute;
    bottom: -20%;
    left: 0;
    /*transform: rotate(180deg);*/
}


/* first section */
.site-motto{
    font-size: 6rem;
}

#the{
    font-weight: 300;
}
/* /first section */

/* Cards */
    .ms_card{
        display: block;
        background-size: cover;
        background-position: center;
        height: 300px;
        color: inherit;
        text-decoration: none;
        transform: scale(0.1);
        opacity: 0;
    }
    
    .ms_card-overlay{
        width: 100%;
        height: 100%;
        background-color: #1e1e30d0;
        padding: 10px;
        backdrop-filter: grayscale(1);
        transition: all 200ms linear;
    }

    .ms_card-inner{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 3px solid var(--gold);
    }

    .ms_card-title{
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 1.5rem;
        text-align: center;
    }

    .ms_card-overlay:hover{
        backdrop-filter: grayscale(1) !important;
    }

/* /Cards */

/* Brochure home */
.brochure-section{
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.brochure-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

#download-brochure{
    display: flex;
    gap: 8px;
}

.brochure-card{
    width: calc(100% / 3);
    height: 400px;
    overflow: hidden;
    position: relative;
}

.brochure-card .brochure-card-img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}


.brochure-text{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #1e1e3099;
    z-index: 3;
    text-align: center;
}

.brochure-card-icon{
    display: block;
    width: 65px;
}

.brochure-title{
    font-size: 1.3rem;
    color: var(--gold);
    text-transform: uppercase;
    margin: 0 !important;
}

.btn-card{
    padding: 0.6em 1em !important;
    font-size: .9rem !important;
    margin: 0 !important;
}

#shipyards{
    position: relative;
    left: -100px;
    opacity: 0;
}
#industrial{
    transform: scale(0.7);
    opacity: 0;
}
#design{
    position: relative;
    right: -100px;
    opacity: 0;
}

#industrial-ita{
    position: relative;
    right: -100px;
    opacity: 0;
}
#design-ita{
    transform: scale(0.7);
    opacity: 0;
}

#img-section{
    transform: scale(0.5);
}

.trigger{
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
}

.brochure-section .section-overlay{
    background-color: rgba(11, 19, 31, 0.6);
}

@media screen and (max-width: 1024px) {
    #img-section{
        height: 300px !important;
    }
}

@media screen and (max-width: 769px) {
    .brochure-section{
        height: 30svh;
    }

    #download-brochure{
        flex-direction: column;
    }
    
    .brochure-card{
        width: 100%;
    }
}


/* /Brochure home */

@media screen and (max-width: 1024px) {
    #video-home-mob{
        display: block;
    }

    #video-home{
        display: none;
    }

    .ms_card-title{
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 769px) {
    .site-motto{
        font-size: 3rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Mission */
#mission{
    transform: scale(0.5);
    width: 100%;
    height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
}

.section-overlay{
    width: 100%;
    height: 100%;
}

#mission .section-overlay{
    display: flex;
    justify-content: center;
    align-items: center;
}

.blue-overlay{
    background-color: var(--light-alfa-blue);
}

.grayscale{
    width: 100%;
    height: 100%;
    backdrop-filter: grayscale(0%);
}
/* /Mission */

/* Home map */
.wave{
   width: 100%;
   margin: 2rem auto;
   display: block;
}

.row-map{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.spec-title{
    background-color: var(--gold);
    color: white;
    padding: 10px;
    font-size: 1.3rem;
}

.spec-text{
    font-size: 1.1rem;
}

.col-btn,  .col-spec{
    width: 20%;
}

.col-map{
    width: 50%;
    position: relative;
}

.col-map img{
    width: 100%;
}

.first-map-img{
    transform: scale(0.3);
}

.place-col{
    width: 100%;
    height: 90px;
    border: 2px solid var(--gold);
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--blue);
}

.place-col.active{
    background-color: var(--gold);
}

.place-col.active .section-title{
    color: white;
}

.place-title{
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.place-col::after{
    content: '';
    display: block;
    width: 500px;
    height: 120px;
    position: absolute;
    top: 100%;
    left: -100%;
    transition: all 400ms linear;
    z-index: 1;
}

.place-col:hover::after{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 90%;
    background-color: var(--gold);
}

.place-col:hover .place-col .section-title{
    color: var(--blue);
}

@media screen and (max-width: 1024px) {
    .place-title{
        font-size: 1rem;
    }

    .spec-title{
        font-size: 1rem;
    }

    .spec-text{
        font-size: 1rem;
    }
}

@media screen and (max-width: 769px){
    .row-map{
        flex-direction: column;
        flex-wrap: wrap;
    }

    .col-btn,  .col-spec, .col-map{
        width: 100%;
        margin-bottom: 10px;
    }

    .col-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .place-col{
        width: calc(100% / 2 - 10px);
        margin-bottom: 0;
    }

    .place-title{
        font-size: 0.9rem;
    }
}
/* /home-map */

/* home news */
.blob-wrapper{
    display: flex;
    align-items: center;
    gap: 5px;
}

.image-blob{
    display: block;
    width: 70%;
    border-bottom-right-radius: 300px;
}

@media screen and (max-width: 769px){
    #news-section{
        padding-bottom: 1.5rem;
    }

    .blob-wrapper{
        flex-direction: column;
    }

    .image-blob{
        width: 100%;
        margin-bottom: 1rem;
    }
}


.ms_news-row{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.ms_news-col{
    width: calc(100% / 3 - 10px);
    opacity: 0;
    transform: scale(0.1);
}

.ms_news-card {
    color: inherit;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    padding: 2rem;
    background: var(--blue);
    box-shadow: 0 0 6px 0 rgba(32, 32, 36, 0.12);
    transition: all 0.35s ease;
    text-decoration: none;
}

.ms_news-card::before, .ms_news-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gold);
  height: 4px;
}

.ms_news-card::before {
  width: 0;
  opacity: 0;
  transition: opacity 0 ease, width 0 ease;
  transition-delay: 0.5s;
}

.ms_news-card::after {
  width: 100%;
  background: white;
  transition: width 0.5s ease;
}

.ms_news-card .logo {
  margin: 0 0 1em;
  width: 10.625em;
  transition: all 0.35s ease;
}

.ms_news-card .h6 {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
}

.ms_news-card .news-home-subt{
    color: var(--gold);
}

.ms_news-card .hover_content {
  overflow: hidden;
  max-height: 0;
  transform: translateY(1em);
  transition: all 0.55s ease;
}

.ms_news-card .hover_content p {
  margin: 1.5em 0 0;
  color: var(--gold);
  line-height: 1.4em;
}

.ms_news-card:hover {
  box-shadow: 0 10px 20px 0 rgba(32, 32, 36, 0.12);
}

.ms_news-card:hover::before {
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s ease, width 0.5s ease;
  transition-delay: 0;
}

.ms_news-card:hover::after {
  width: 0;
  opacity: 0;
  transition: width 0 ease;
}

.ms_news-card:hover .logo {
  margin-bottom: 0.5em;
}

.ms_news-card:hover .hover_content {
  max-height: 10em;
  transform: none;
}

@media screen and (max-width: 769px){
    .ms_news-row{
        flex-direction: column;
    }

    .ms_news-col{
        width: 100%;
        margin-bottom: 1rem;
    }

    .ms_news-card .hover_content {
        overflow: hidden;
        max-height: unset;
        transform: translateY(0);
    }

    .ms_news-card:hover{
        width: 100%;
    }
}
/* /home news */

/* Contacts */
.contact-icon{
    width: 100px;
    height: 100px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
    transform: scale(0.1);
}

.contact-icon svg{
    width: 70px;
    fill: var(--blue);
    opacity: 0;
}

.contact-title{
    color: var(--gold);
    font-size: 1.2rem;
    text-align: center;
}

.contact-link{
    font-size: 1.1rem;
    display: block;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    transition: all 200ms linear;
    text-decoration: none !important;
}

.contact-link:hover{
    color: #976844;
}

.svg-icon{
    width: 1.1rem;
    fill: white;
}

.custom-separator{
    width: 0%;
    opacity: 0;
    height: 3px;
    background-color: var(--gold);
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.contact-socials{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style-type: none;
}

.contact-social-link{
    display: block;
    width: fit-content;
    color: inherit;
    text-decoration: none;
    transition: all 200ms linear;
}

.contact-social-link:hover{
    transform: translateY(-10px);
}

.social-svg-icon{
    width: 4rem;
    fill: var(--gold);
    transform: scale(0.1);
}
/* /Contacts */

/* /Home */

/* Page Hero Section */
#page-hero{
    overflow-x: hidden;
}

.hero-blob-img{
    display: block;
    width: 70%;
    border-bottom-right-radius: 300px;
    position: relative;
    left: -300px;
    opacity: 0;
}

.hero-blob-img-normal{
    display: block;
    width: 70%;
    border-bottom-right-radius: 300px;
}

.hero-title-wrapper{
    padding-bottom: 2rem;
}

.hero-title{
    font-size: 5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--blue);
}
.hero-bolder{
    font-weight: 900;
    opacity: 0;
}
.hero-thight{
    font-weight: 300;
    opacity: 0;
}

@media screen and (max-width: 1024px) {
    .hero-title{
        font-size: 4rem;
    }
}

@media screen and (max-width: 769px) {
    .hero-title{
        font-size: 2.5rem;
    }
}

.hero-title-normal{
    font-size: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
}

.things-we-do{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.thing{
    width: calc(100% / 5 - 20px);
    margin-bottom: 20px;
}

.thing-icon-wrapper{
    text-align: center;
    margin-bottom: 20px;
}

.thing-title{
    font-size: 1.3rem;
    color: var(--gold);
    text-align: center;
}

.clients-row{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 22px;
    margin-bottom: 50px;
}

@media screen and (max-width: 769px) {
    .clients-row{
        margin-bottom: 0;
    }
}

.clients-row a{
    display: block;
    cursor: pointer;
    width: calc(100% / 5 - 50px);
}

.clients-row a img{
    display: block;
    width: 100%;
    opacity: 0;
    filter: grayscale(100%);
}

.row-poli{
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.col-poli{
    margin: 15px 0;
}

.col-poli-text{
    width: 50%;
}

.col-poli-img{
    display: flex;
    justify-content: flex-end;
}

.logo-politecnico{
    display: block;
    width: 200px;
    max-width: 100%;
    filter: invert(1);
}

@media screen and (max-width: 769px){
    #page-hero{
        overflow-x: hidden;
        padding-top: var(--header-mob-height);
    }

    .hero-blob-img{
        width: 90%;
    }

    .hero-title-normal{
        font-size: 1.7rem;
    }

    .thing{
        width: calc(100% / 2 - 20px);
    }

    .clients-row a{
        width: calc(50% - 20px)
    }

    .logo-politecnico{
        width: 200px;
        margin: 10px auto 10px auto;
    }

    .row-poli{
       flex-direction: column-reverse;
       gap: 10px;
    }

    .col-poli{
        margin: 0;
    }

    .col-poli-text{
        width: 100%;
    }

    .col-poli-img{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo-last{
        margin-bottom: 30px;
    }
}
/* Page Hero Section */

/* Who We are */
.section-title-page{
    font-size: 1.5rem;
    color: var(--gold);
}

@media screen and (max-width: 1281px){
    .section-title-page{
        font-size: 1.3rem !important;
    }
}

@media screen and (max-width: 1024px){
    .section-title-page{
        font-size: 1.1rem !important;
    }
}

@media screen and (max-width: 769px) {
    .section-title-page{
        font-size: 1.5rem;
    }
}

.quote-wrapper{
    width: fit-content;
    margin: 10px auto;
}

.quote{
    display: flex;
    gap: 10px;
    color: var(--gold);
    align-items: flex-start;
    text-align: center;
    justify-content: center;
}

.quote-text span{
    opacity: 0;
}

.quote svg{
    fill: var(--gold);
    width: 1.5rem;
    opacity: 0;
}

.quote-author{
    display: block;
    font-size: 1rem;
    color: var(--gold);
    text-align: right;
    position: relative;
    right: -100px;
    opacity: 0;
}

.who-col-img{
    display: block;
    transform: scale(0.6);
    opacity: 0;
}

.who-col-img-left{
    border-top-left-radius: 300px;
}

.who-col-img-right{
    border-top-right-radius: 300px;
}

.col-text{
    padding-left: 30px;
}

.col-text-right{
    padding-right: 30px;
}

.people-row{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.people-row-4 .people-col{
    width: calc(100% / 3 - 30px);
    margin-bottom: 30px;
    transform: scale(0.1);
    opacity: 0;
}

.people-col-img{
    display: block;
    margin: 0 auto 20px auto;
}

.people-col-title{
    font-size: 1.3rem;
    text-align: center;
    color: var(--gold);
}

.people-col-qual{
    color: var(--gold);
    text-align: center;
    font-size: 1rem;
}

.col-cert{
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(0.1);
}

.col-cert img{
    display: block;
    max-width: 200px;
    margin: 10px auto;
}

.ms_download-row{
    display: flex;
    justify-content: center;
    text-align: center;
}

.ms_download-col{
    padding: 10px 20px;
}

.with-separator{
    border-right: 2px solid var(--gold)
}

.ms_download-col small{
    display: block;
    text-align: center;
    color: var(--gold);
    margin-top: 10px;
}


@media screen and (max-width: 769px) {
    .who-col-img-left{
        border-top-left-radius: 100px;
    }

    .who-col-img-right{
        border-top-right-radius: 100px;
    }

    .col-text{
        padding: 0;
        margin-top: 1.5rem;
    }

    .col-text-right{
        padding: 0;
        margin-top: 1.5rem;
    }

    .people-row-4 .people-col{
        width: 100%;
        margin-bottom: 30px;
    }

    .mob-invert{
        flex-direction: column-reverse;
    }

    .ms_download-row{
       flex-direction: column;
    }

    .ms_download-col{
        padding: 10px 20px;
    }

    .with-separator{
        border-right: none;
        border-bottom: 2px solid var(--gold);
    }
}
/* /Who We are */

/* News */
.post_wrapper a{
    color: inherit !important;
    text-decoration: none !important;
}

.post_wrapper{
    margin-bottom: 30px;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.post_wrapper:not(:last-child){
    border-bottom: 1px solid var(--gold);
}

.news-cat{
    color: var(--gold);
    font-size: 1.2rem;
}

.entry-title{
    font-size: 1.1rem;
    color: white;
}

.article-date{
    display: none;
}

.news-text p{
    color: white;
    font-size: 1rem;
    text-align: justify;
}

.post_wrapper .news-btn{
    font-size: 1.1rem;
    color: var(--gold) !important;
    text-decoration: underline !important;
    cursor: pointer;
}

.post_wrapper .news-btn:hover{
    color: var(--dark-gold) !important;
}

/* /News */

/* FOOTER */
.site-footer{
    background-color: var(--blue);
    border-top: 2px solid var(--gold);
}

.footer-top{
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.footer-bottom{
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.footer-col {
    border-right: 2px solid var(--gold);
}

.footer-col-container{
    padding: 1rem 10px;
}

.footer-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#confindustria{
    width: 170px;
}

#confindustria-nautica{
    width: 150px
}

@media screen and (max-width: 1280px){

    #confindustria-nautica{
        width: 145px;
    }
}

@media screen and (max-width: 1024px){
    #confindustria{
        width: 130px;
    }

    #confindustria-nautica{
        width: 110px
    }
}

.footer-text{
    font-size: 1rem;
    color: var(--gold)
}

.footer-logo{
    display: block;
    width: 200px;
    margin: 0 auto;
}

.footer-award{
    display: block;
    width: 100px;
    margin: 0 auto;
}

.footer-menu{
    padding: 0 !important;
    margin: 0 !important;
    list-style-type: none;
}

.footer-title{
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-link{
    color: white;
    text-decoration: none;
    transition: all 200ms linear;
    cursor: pointer;
    margin-bottom: 10px;
}
.footer-link:hover{
    color: var(--dark-gold);
}

.footer-link svg{
    width: 1rem;
    fill: white;
}

.footer-social-link{
    display: block;
    width: fit-content;
    transition: all 200ms linear;
}

.footer-social-wrapper{
    list-style-type: none;
    padding: 0 !important;
    margin: 0 imo !important;
    display: flex;
    gap: 5px;
}

.footer-social-link svg{
    width: 2.5rem;
    fill: var(--gold);
}

.footer-social-link:hover{
    transform: translateY(-10px);
}

.footer-text-bottom{
    font-size: 1rem;
    text-align: center;
    color: var(--gold);
}

.footer-bottom-link{
    color: inherit;
    transition: all 200ms linear;
}
.footer-bottom-link:hover{
    color: var(--dark-gold);
}


@media screen and (max-width: 769px){
    .footer-col{
        border: none;
    }
}
/* /FOOTER */