/* Font */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

*{
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, a, button {
  font-family: oswald;
  margin: 0;
}

h1 {
  font-size: 51.96px;
}

h2 {
  font-size: 41.05px;
  color: #093660;
  line-height: 55px;
}

body, p, span, li {
  font-family: rubik;
  margin: 0;
}
html, body {
  margin: 0px;
  padding: 0px;
  
}

/* CTA  EN SAVOIR PLUS */

.learn-more {
  color: #093660;
  font-size: 18px;
  font-weight: bold;
  text-underline-offset : 4px;
  text-decoration-thickness: 2px;
}

.learn-more:hover {
  color: #B82B24;
}

/* HEADER */
header{
  position: sticky;
  top: 0;
  z-index: 11;
}    
    /* Contat bar + social media */

#topbar {
    display:flex ;
    justify-content: space-between;
    align-items: center;
    height: auto;
    background: #093660;
    padding: 0 9vw;
}

#contact-info{
    display: flex;
    justify-content: space-around;
    gap: 100px;
    font-size: 16px;
    list-style: none;
    font-weight: 400;
    padding: 0;
    color: white;
}

#contact-info > li{
    display: flex;
    align-items: center;
    gap: 5px;

}

.social-info{
    display: flex;
    gap: 20px;
    list-style: none;
}

.social-info > li > a{
  text-decoration: none;
}

    /* Navigation bar */

#navigation{
    display: flex;
    background: #fff ;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 9vw;
}

#nav-brand {
    width: 20vw;
}

#menu {
  display: flex;
  justify-content: space-around;
  list-style: none;
  height: 100%;
  padding: 0;
}

#menu > li {
  height: 100%;
}

#menu > li > a {
  display: inline-block;
  height: 100%;
  line-height: 100px;
  padding: 0 15px;
  color: #093660;
  text-decoration: none;
}

#menu li a:hover {
  color: #B82B24;
}

#submenu {
    display: none;
    position: absolute;
    background-color: #ffff;
    padding: 10px 150px 0px 0px;
    list-style: none;
}


#menu li:hover > #submenu {
    display: block;
}

#submenu li {
    padding: 8px 20px;
    white-space: nowrap;
}

#submenu a {
    color: #093660;
    text-decoration: none;
    font-family: oswald;
    font-size: 16px;
}

#burger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 20px;
}

#burger-toggle span {
  height: 3px;
  background: #093660;
  border-radius: 2px;
  display: block;
  transition: all 0.3s ease;
}

    /* Form Connexion */

.connexion-button {
    background: #093660;
    color: white;
    font-family: rubik;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    padding: 10px 20px;
    border: none;
    box-shadow: none;
    outline: none;
    transition: background-color 0.3s, color 0.3s;
}

.connexion-button:hover {
    background-color: #B82B24;
    color: #ffffff;
    cursor: pointer;
}

.connexion {
  position: relative;
}

.form-connexion {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    width: 300px;
    margin-top: 35px;
    background: #ffffff;
    border: 1px solid #ccc;
    visibility: hidden;
    transition: opacity 0.4s ease;
}


.form-connexion.visible {
  visibility: visible;
  pointer-events: auto;
}

.form-connexion > p {
    font-family: oswald;
    font-weight: bold;
    font-size: 14px;
    color: #093660;
    padding: 12px 15px;
    margin: 0px;
    border-bottom: 1px solid #efefef;
}

.form-connexion > a {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    color: #093660;
    text-decoration: none;
    margin: 5px 0px;

}

.form-information {
  width: 100%;
  height: 50px;
  padding: 6px 20px;
  font-weight: bold;
  box-sizing: border-box;
  border: none;
  outline: none;
}

.btn-connexion-form {
  width: 100%;
  height: 50px;
  margin-top: 20px;
  padding: 6px 20px;
  background: #093660;
  font-family: rubik;
  font-weight: bold;
  color: white;
  border: none;
  cursor: pointer;
}

.btn-connexion-form:hover {
  background: #B82B24;
}

#info-banner {
    background: #B82B24;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-family: rubik;
    font-size: 16px;
    font-weight: 500;
}

#info-banner p {
    margin: 0;
}


/* END OF HEADER */


/* FOOTER*/

footer{
  margin-top: 100px;
}
#footer-one{
  background: white;
  display: flex;
  justify-content: center;
  padding: 25px 9vw;
  border-top: 2px solid #dddddd7a;
  border-bottom: 2px solid #dddddd7a;
}

#footer-one > div {
  width: 50%;
}

#newsletter {
  text-align: center;
}

#newsletter > h2 {
  margin-bottom: 10px;
}

#newsletter > p {
  margin-bottom: 30px;
}


#footer-social{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

#footer-two{
  background: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding : 30px 9vw;
  text-align: center;
  color: black;

}

#footer-two > div > h2{
  color: black;
  margin-bottom: 10px ;
  font-size: 30px;
}

#footer-two > div > a {
  color: black;
}

#footer-two > div > div{
  margin-bottom: 10px;

}


#footer-three {
  background: #093660;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  padding: 10px 9vw;
  font-size: 12px;
}

#footer-three > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

#footer-three > div > a {
  color: white;
  text-decoration: none;
}

#logo-footer{
  width: 28vw;
  height: auto;
}

/* END FOOTER*/


/* FIL D'ARIANE */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #ffffff;
}
/*  END FIL D'ARIANE */


/*-----------------------------
PAGE ACCUEIL
-----------------------------*/

  /*POP-UP*/

.popup-overlay {
  position:fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: auto;
  max-width: 80%;
  position: relative;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.break-line{
  margin: 1px;
}

.popup-content > h2 {
  text-align: center;
  margin: 0 0 10px 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 40px;
  font-weight: bold;
  color: #093660;
  cursor: pointer;
  line-height: 1;
}

.close-btn:hover {
  color: #B82B24;
}

  /*END POP-UP*/

#hero-home {
  position: relative;
  width: 100%;
  height: calc(100vh - 155px);
  overflow: hidden;
}


#hero-home > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top center;
  filter: brightness(60%);
}


#hero-home-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: white;
  text-align: center;
}

#hero-home-text > p {
  font-size: 20px;
  margin: 20px;
}

#hero-home-text > h1 {
  margin: 20px 0;
}

#logo{
  width: 20vw;
}

#break{
  display: block;
  font-family: oswald;
}

#hero-home-button {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

#hero-home-button > a {
  color: white;
  font-size: 20px;


}
#hero-home-button > a:hover {
  color: #B82B24;
}

#actualites {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 9vw;
}

  /*SLIDER*/

.slider-container {
  width: calc(100vw - 18vw);
  position: relative;
  margin-top: 20px;
}

.slider {
  display: flex;
  justify-content: center;
  gap: 18px;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slider::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 calc((100% - 60px) / 4);
  padding: 15px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  scroll-snap-align: start;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
}

.card h3 {
  font-size: 20px;
  color: #000;
  text-decoration: underline;
}

.card a {
  text-decoration: none;
  color: #093660;
  text-align: right;
}

.card a:hover {
  color: #B82B24;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #2f2f80;
  color: #2f2f80;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #2f2f80;
  color: white;
}

.nav-left {
  left: -60px;
}

.nav-right {
  right: -60px;
}

  /*END OF SLIDER*/

hr {
  width: 150px;
  border: none;
  border-top:#093660 5px solid;
  margin-top: 50px;

}

#hr-1 {
  width: 100px;
  border: none;
  border-top:#093660 5px solid;
  margin: 0px;
}

#corporate {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 100px 0vw;
  padding: 0 9vw;
}

#corporate > div {
  width: 50%;
}

#corporate-text{
display: flex;
flex-direction: column;
gap: 30px;
line-height: 36px;
}

#corporate-video {
  display: flex;
  justify-content: center;
}

#youtube-video {
  width: 32vw;
  height: 35vh;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

#rgreen-home {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 9vw;
}

#rgreen-home > div {
  width: 50%;
}

#rgreen-home-img{
  display: flex;
  justify-content: center;
}

#rgreen-home-img > img {
  width: 32vw;
  height: auto;
}

#rgreen-home-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  line-height: 36px;
}


/*-----------------------------
PAGE DOCUMENTATION 
-----------------------------*/

#documentation-un {
  display: flex;
  margin: 100px 0;
  padding: 0 9vw;
  gap: 50px;
}

#documentation-un > div{
  width: 50%;
  height: 47vh;
  background: white;
  border: #D2D2D2 solid 1px;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
  padding: 20px 80px ;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#documentation-un > div > h2 {
  display: block;
  width: max-content;
  margin: 0 auto 20px;
}
#documentation-un > div > a {
  display: block;
  width: max-content;
  margin: auto auto 0;
  text-decoration: none;
  color: #093660;
  font-weight:500;
}

#documentation-un > div > a:hover{
  color: #B82B24;
}


#documentation-deux {
  display: flex;
  padding: 0 9vw; 
  gap: 50px;
}

#documentation-deux > div{
  width: 50%;
  height: 47vh;
  background: white;
  border: #D2D2D2 solid 1px;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
  padding: 20px 80px ;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#documentation-deux > div > h2{
  display: block;
  width: max-content;
  margin: 0 auto 20px;
}

#documentation-deux > div > a{
  display: block;
  width: max-content;
  margin: auto auto 0;
  text-decoration: none;
  color: #093660;
  font-weight:500;
}

#documentation-deux > div > a:hover{
  color: #B82B24;
}

/*-----------------------------
PAGE ACTUALITES
-----------------------------*/
    .zone-actu {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;;
      padding: 100px 9vw 0 9vw;
      margin: auto;
    }

    .bloc-actu {
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      width: 30%;
      min-width: 280px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;

      /* Pour aligner le bouton en bas */
      display: flex;
      flex-direction: column;
    }

    .bloc-actu:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .image-actu {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .contenu-actu {
      display: flex;
      flex-direction: column;
      justify-content: space-between; /* Sépare texte et bouton */
      flex-grow: 1;
      padding: 15px;
    }

    .contenu-actu h2{
      margin-top: 0;
      font-size: 25px;
      color: #093660;
    }

    .contenu-actu a {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 15px;
      background-color: #093660;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      text-align: center;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .contenu-actu a:hover {
      background-color: #B82B24;
    }

/*-----------------------------
 PAGE ACTUALITES 2 
-----------------------------*/
#communication-customer {
  position: relative;
  width: 100%;
  margin-bottom: -105px;
}

#communication-customer > img {
  width: 100%;
}

#communication-text {
  position: absolute;
  top: 50%;               
  left: 50%;              
  transform: translate(-20%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;      
}

#communication-text .cta {
  display: inline-block; 
  margin: 20px auto 0 auto; 
  text-align: center;
}
/*-----------------------------
 PAGE GROUPE RG
-----------------------------*/

#hero-rg {
  position: relative;
}


#hero-global {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  display: block;
  object-position: center;
  filter: brightness(60%);
}


#hero-rg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: white;
  text-align: center;
}

#iframe-stats{
  border: none;          /* Supprime la bordure */
  overflow: hidden;      /* Cache le scroll interne (si possible) */
  width: 100%;           /* Largeur pleine */
  height: 323px;         /* Hauteur fixe (modifiable selon besoin) */
}

#rgreen {
margin:0vh 9vw ;
}

#rgreen-concept{
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 100px 0px;
  line-height: 36px;
}

#rgreen-concept > div > h2{
  margin-bottom: 30px;
}

#scoring-rgreen{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#scoring-rgreen-text{
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

#scoring-rgreen > div {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

#scoring-rgreen > div > img {
  border-right: black 1px solid;

}

#scoring-rgreen > img {
  width: 65vw;
}


#ergos{
  margin: 100px 9vw 0 9vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#ergos-1 {
  display: flex;
  flex-direction: column;
  line-height: 36px;
  gap: 30px;
}

.cta {
  display: block;
  background-color: #093660;
  text-align: center;
  color: #fff;
  width: 180px;
  max-width: 200px;
  padding: 7px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.cta:hover {
  background-color: #B82B24;
}


/*-----------------------------
 PAGE CONTACT
-----------------------------*/

#contacts-commerciaux{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9vw;
  margin:100px 0
}

#contacts-commerciaux > div{
  text-align: center;


}

#all-contacts-commerciaux{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 100px;
}

#all-contacts-commerciaux > div {
  width: 35%;
  text-align: start;
  border-left: #000 1px solid;
  line-height: 30px;
}

#all-contacts-commerciaux > div > p,
#all-contacts-commerciaux > div > a{
  padding-left: 10px;
}

#all-contacts-commerciaux > div > h3 {
  padding-left: 10px;
  border-bottom: #000 1px solid;
  color: #093660;
}

#contact-agency-siege{
  padding: 0 9vw;
  display: flex;
  justify-content: space-around;
}

#contact-agency-siege > div{
  display: flex;
  flex-direction: column;
  line-height: 30px;
}

#contact-agency-siege > div > .cta{
  display: block;
  width: max-content;
  margin: auto auto 0;
}

#contact-agency-siege > div > h2{
  margin: 30px;
}

.text {
  text-align: center;
}

.social-info-deux{
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.social-info-deux > li > a{
  text-decoration: none;
}

#contact-support {
  background: #09366010;
  padding: 45px 9vw;
  display: flex;
  justify-content: space-around;
  align-items: center;

}

#contact-support-text{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#sib-container input:-ms-input-placeholder {
    text-align: left;
    font-family: Helvetica, sans-serif;
    color: #c0ccda;
  }

  #sib-container input::placeholder {
    text-align: left;
    font-family: Helvetica, sans-serif;
    color: #c0ccda;
  }

  #sib-container textarea::placeholder {
    text-align: left;
    font-family: Helvetica, sans-serif;
    color: #c0ccda;
  }

  #sib-container a {
    text-decoration: underline;
    color: #2BB2FC;
  }
  #sib-form {
    display: flex;
    flex-wrap: wrap;
  }

  #sib-form > :nth-child(-n+4){
  width: 50%;
  }

  #sib-form > :nth-child(n+5){
  width: 100%;
  }



/*-----------------------------
 PAGE DONNÉES PERSONNELLES
-----------------------------*/

#rgpd{
  margin: 100px 9vw;
  line-height: 36px;
}

#rgpd > h2 {
  margin: 50px 0px 20px 0px;
}

#rgpd > ul > li > span {
  font-weight: bold;
}

#rgpd > div {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/*-----------------------------
 PAGE MENTIONS LÉGALES 
-----------------------------*/

#mentions-legales {
  margin: 100px 9vw;
  line-height: 36px;
}

#mentions-legales > p > span {
  font-weight: bold;
}

#mentions-legales > ul > li > span {
  font-weight: bold;
}

#mentions-legales > h1 {
  text-align: center;
  margin: 30px 0 20px 0;
}

#mentions-legales > h2 {
  margin: 50px 0 20px 0 ;
}



@media (max-width:1405px) {
br{
  display: none;
}

  /*PAGE DOCUMENTATION*/

#documentation-un > div {
  padding: 20px 30px;
}

#documentation-deux > div {
  padding: 20px 30px;
}
}

@media (max-width:1170px) {

  /*HEADER*/

  #topbar {
    padding: 0 5vw;
}

#contact-info{
    gap: 50px;
    font-size: 14px;
}

.social-info{
    gap: 10px;
}

#navigation{
    padding: 0 5vw;
}

#nav-brand{
  width: 22vw;
}
  /*END OF HEADER*/

  /*HOME PAGE*/
#hero-home > img {
object-position: 80% 50%;
}

#actualites{
  padding: 0 5vw;
}

#corporate {
  padding: 0 5vw;
}

#youtube-video{
  width: 40vw;
}

#rgreen-home{
  padding: 0 5vw ;
}

#rgreen-home-img > img {
  width: 40vw;
  height: auto;
}

  /*END OF HOME PAGE*/

  /*PAGE DOCUMENTATION*/

#documentation-un{
  padding: 0 5vw;
}

#documentation-deux{
  padding: 0 5vw;
}


  /*FOOTER*/

#footer-one{
  padding: 50px 5vw
}

#footer-two{
  padding: 30px 5vw
}

#footer-three{
  padding: 0 5vw;
}

#logo-footer{
  width: 35vw;
}

br{
  display: none;
}
}

@media screen and (max-width: 1350px) {
  .card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

@media (max-width:1024px) {

  /*HEADER*/

#nav-brand{
  width: 35vw;
}

#menu{
  order: -1;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #093660;
  z-index: 1000;
}

#burger-toggle {
  display: flex;
  }

#menu.active {
  display: flex;
  }

#menu > li {
  text-align: left;
  padding: 0 5vw;
  }

#menu > li > a {
  line-height: 50px;
  color: white;
  height: auto;
  display: block;
  border-top: 1px solid rgba(255,255,255,0.2);
  }

#submenu {
  display: none;
  position: static;
  background-color: transparent;
  padding: 0;
  }

#submenu li {
  padding: 10px;
  }

#submenu a {
  color: white;
  }

#menu li:hover > #submenu {
  display: none;
  }

#menu li.open > #submenu {
  display: block;
  }

  /*END OF HEADER*/
 
  /*HOME PAGE*/

#corporate{
  flex-direction: column;
  gap: 20px;
}

#corporate > div {
  width: 100%;
}

#youtube-video{
  width: 50vw;
  height: 30vh;
}

#rgreen-home{
  flex-direction: column-reverse;
  gap: 20px;
}

#rgreen-home > div {
  width: 100%;
}

#rgreen-home-img > img {
  width: 50vw;
}

  /*END OF HOME PAGE*/
}

@media screen and (max-width: 1000px) {
  .card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .nav-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .nav-left {
    left: -30px;
  }

  .nav-right {
    right: -30px;
  }
}


@media (max-width:885px) {
#contact-info{
  flex-direction: column;
  gap: 10px;
}

/*FOOTER*/

#footer-one{
  flex-direction: column;
}

#footer-one > div {
  width: 100%;
}

#footer-two {
  flex-direction: column;
  gap: 20px;
}

#logo-footer{
 width: 50vw;
}
}

@media (max-width:865px) {
  #documentation-un{
    flex-direction: column;
    align-items: center;
    margin: 100px 0 50px 0;
  }

  #documentation-un > div{
    width: 100%;
    height: 40vh;
  }

  #documentation-deux{
    flex-direction: column;
    align-items: center;
  }

  #documentation-deux > div{
    width: 100%;
    height: 40vh;
  }
}

@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }

}

@media screen and (max-width: 600px) {
  #footer-three{
    flex-direction: column-reverse;
  }

    #footer-three > div{
    margin: 15px 0;
  }
}

@media screen and (max-width: 660px) {
  h1 {
    font-size: 32.44px;
  }

  h2{
    font-size: 28.83px;
  }

  h3{
    font-size: 25.63px;
  }

  #hero-home-text > p {
    font-size: 16px;
  }

  #logo{
    width: 50vw;
  }
}

@media screen and (max-width: 550px) {
  .card {
    flex: 0 0 100%;
  }

  .nav-left {
    left: -25px;
  }

  .nav-right {
    right: -25px;
  }

  h1 {
    font-size: 32.44px;
  }

  h2{
    font-size: 28.83px;
  }

  h3{
    font-size: 25.63px;
  }

  #hero-home-text > p {
    font-size: 16px;
  }
}



