@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --black: #333539;
  --white: #ffffff;
  --grey: #d7d7d7 ;
  --red: #DE1228;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    * {
        font-size: 14px;
        line-height: 22.5px;
    }
}


/* ----- Typography & Color ----- */
h1{
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    line-height: 60px;
    font-weight: 500;
    text-transform: uppercase;
}


@media (max-width: 768px) {
    h1{
        font-size: 28px;
        line-height: 36px;
    }
}

h2{
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
}

h3{
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 26px;
}

p{margin-bottom: 10px;}

p .min{
    font-size: 12px;
    font-weight: 400;
}

@media (max-width: 992px) {
    p .min{
        font-size: 10px;
    }
}


/* ------ Elements Template ----- */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

main {
  flex: 1;
  margin-top: 120px;
}

@media (max-width: 600px)
{
    main {
        margin-top: 92px;
    }   
}

.logo-txt {
    font-family: 'Raleway';
    color: var(--red);
    font-weight: bold;
}

.logo-txt span {
    font-weight: 500;
    color: var(--black);
}

.logo-txt span.white {
    color: var(--white);
}

.underline{
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    display: block;
}

.underline::after{
    display: inline-block;
    position: absolute;
    bottom: -10px;
    left: calc(100% / 2 - 125px);
    border-bottom: 2px solid var(--red);
    content: "";
    transition: width 250ms ease-in-out 0s;
    width: 250px;
}

.underline-left{
    margin: 50px 0;
    position: relative;
    display: block;
}

.underline-left::after{
    display: inline-block;
    position: absolute;
    bottom: -10px;
    left: 0%;
    border-bottom: 2px solid var(--red);
    content: "";
    transition: width 250ms ease-in-out 0s;
    width: 150px;
}


.btn-contact-2 {
  color: var(--black);
  border: 2px solid var(--black);
  font-weight: 400;
  width: fit-content;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 10px;
  transition-duration: 0.3s;
}

.btn-contact {
    color: var(--black);
    border: 2px solid var(--black);
    font-weight: 400;
    width: 100px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 10px;
    transition-duration: 0.3s;
}

.btn-contact:hover, .btn-contact-2:hover {
  border-radius: 5px;
  font-weight: bold;
  color: var(--black);
}

.btn-contact:hover:after, .btn-contact:hover:after {
    width: 0;
}

.btn-contact-white{
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 400;
    width: 100px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 10px;
    transition-duration: 0.3s;
}


.btn-contact-white:hover{
    border-radius: 5px;
    font-weight: bold;
    color: var(--white);
  }

.txt-red {
    color: var(--red);
}

.txt-center {
    text-align: center;
}

/* ------ Footer ----- */
footer {
    background-color: var(--black);
    width: 100%;
    display: flex;
}

footer .container {
    max-width: 1410px;
    margin: auto;
    padding: 25px 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer h2 {
    text-align: center;
}

footer .row {
    display: flex;
    flex-flow: row nowrap;
    gap: 50px;
    justify-content: space-around;
    margin: 25px 0;
}

footer h2, footer h3, footer p {
    color: var(--white)
}

footer h2, footer span {
    text-transform: none;
    font-size: 16px;
    line-height: 24px;
}

footer h3, footer span {
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
}

footer h3 span {
    font-family: 'Raleway', sans-serif;
}

footer .col hr {
    width: 1px;
    height: 100px;
    color: var(--white);
}

footer p, footer a {
    color: var(--white);
    transition-duration: 0.3s;
    margin: 0;
}

footer > div > p:first-of-type {
    margin-top: 25px;
}

footer a:hover {
    text-decoration: none;
}

footer .red{
    color: var(--red);
}

footer img {
    object-fit: contain;
    width: 200px;
    align-self: center;
}

@media (max-width: 792px) {   
    footer .row {
        flex-flow: column wrap;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    footer hr {
        width: 50%;
        background-color: var(--white);
    }
    
    footer img {
        width: 140px;
    }
}


/* ------ Cookies ----- */
#cookie-popup, #cookie-preference-form {
    display: none;
    background-color: var(--white);
    color: var(--black);
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 100;
    padding: 15px;
    width: 300px;
    border: 2px solid var(--black);
    border-radius: 5px;
}

#cookie-preference-form {
    z-index: 1000;
}

#cookie-popup p, #cookie-preference-form p {
    color: var(--black);
    margin-bottom: 10px;
}

#cookie-popup button, #cookie-preference-form button {
    padding: 5px 10px;
    border: 1px solid var(--black);
    transition-duration: 0.3s;
}

#cookie-popup button:hover, #cookie-preference-form button:hover {
    text-decoration: underline;
}

#cookie-preference-form button {
    margin-top: 10px;
}

hr {
    color: #ffffff;
}

.container-iframe {
    max-width: 900px;
    width: calc(100% - 30px);
    margin:0 auto;
    padding: 15px
}

.container-iframe iframe {
    border-radius: 10px;
    border: 1px solid var(--white);
}

.ru-img, .linkedin-img {
    padding-top: 10px;
}

.h3-paris {
    color: #000000;
}

.iframe {
    border-radius: 10px; 
    border: 1px solid var(--white);
}

.black {
    color: #000000;
}

.logout-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logout-icon:hover {
    cursor: pointer;
}