@import url(https://fonts.googleapis.com/css?family=Montserrat:regular,900);

:root {
    --color-seafoam: #8dcec9;
    --rcs-darkblue: #0e213d;
}

.container {
    width: 1200px;
}

.header {
    display: flex;
    align-items: center;
}

.header__logo {
    margin-right: 90px;
}

.header__right {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 120px;
}

.header__nav a {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    color: black;
    position:relative;
    transition: all .2s ease;
}


.header__nav a:after {
  background: var(--color-seafoam);
  bottom: -20px;
  content: "";
  display: block;
  height: 10px;
  left: 0;
  margin: 0 auto;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: all .3s ease;
  visibility: hidden;
  width: 100%;
}


.header__nav a:hover {
    color: var(--color-seafoam);
    text-decoration: none;
}


.header__nav a:hover:after {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.nav__contact {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    min-height: 100%;
    background-color: var(--color-seafoam);
    display: grid;
    place-items: center;
    padding: 0 50px;
}


.nav__contact a {
    color: var(--rcs-darkblue);
    font-weight: 900;
}

.nav__contact a i {
    font-size: 15px;
}
