@import url('//fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300;1,400;1,500;1,600&display=swap');

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

#topcontent-container {
  width: 100%;
}

#header-container {
  width: 100%;
  background: #23334B;
  text-align: center;
  padding: 53px 0;
  order: 0;
  flex-grow: 0;
}

#header {
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

#header img.logo {
  height: 70px;
}

#header .about a,
#header .contact a {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0px;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 5px;
  color: #ffffff;
  transition: background 0.3s;
}

#header .about a:link, 
#header .about a:visited,
#header .contact a:link, 
#header .contact a:visited {
  text-decoration: none;
  background: transparent;
}

#header .about a:hover,
#header .contact a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

#header .menu > div > a.selected {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

a.button:link, a.button:visited {
  background-color: #99D220;
  color: #23334B;
  font-weight: 500;
  transition: background-color 1s;
  padding: 18px 24px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
}

a.button:hover {
  background-color: #CDEF84;
}

#header .menu {
  display: inline-block;
  display: flex;
  gap: 32px;
}

#content-container {
  text-align: center;
  padding: 0;
  order: 1;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#content-container .hero {
  background: linear-gradient(0deg, rgba(35, 51, 75, 0.6), rgba(35, 51, 75, 0.6)), url('/images/image-hero-v2.jpg');
  background-position: center center;
  background-size: cover;
  height: 525px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

#content-container.about #text {
  width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  text-align: left;
  font-size: 14px;
  color: #23334B;
  line-height: 140%;  
}

.krouadenn-phonetic {
  font-weight: 400;
  font-size: 54px;
  line-height: 70px;
  color: #23334B;
}

.krouadenn-phonetic .punctuation {
  font-weight: 100;
  color: rgba(35, 51, 75, 0.25);
}

.krouadenn-meaning {
  font-size: 18px; 
  margin: 8px 0 2px;
  font-weight: 500;
}

.krouadenn-pronounciation,
.krouadenn-pronounciation-v2 {
  font-weight: 300;
  font-size: 23px;
  line-height: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 16px;  
  justify-content: center;
}

.krouadenn-pronounciation-v2 {
  margin-top: 38px;
  font-size: 16px;
  line-height: 20px;
  cursor: default;
}

.krouadenn-pronounciation > span,
.krouadenn-pronounciation-v2 > span {
  opacity: 0.75;
  transition: opacity 0.250s;
}

.krouadenn-pronounciation-v2 > span:hover {
  opacity: 1;
}

.krouadenn-definition,
.krouadenn-definition-v2 {
  display: inline-block;
  margin-top: 38px;
  font-weight: 400;
  font-size: 23px;
  line-height: 30px;  
}

.krouadenn-definition-v2 {
  margin-top: 0px;
}

.krouadenn-definition .footnote,
.krouadenn-definition-v2 .footnote {
  font-size: 16px;
  line-height: 21px;
  opacity: 0.55;
}

.krouadenn-definition-v2 .footnote {
  font-size: 18px;
}

.value-prop-container {
  width: 100%;
  margin-top: 57px;
  padding: 57px 0;
  background: #F5F5F5;
  color: #23334B;
}

.value-prop-container.v2023 {
  margin-top: 0;
  background: #fff;
}

.value-prop-container h2 {
  margin: 0 0 30px;
  padding: 0 32px;
  font-weight: 500;
}

.value-prop {
  width: 100%;
  margin-top: 57px;
  padding: 57px 0;
  text-align: center;
  background: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
}

.value-prop-v2 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
}

.value-prop > .item,
.value-prop-v2 > .item {
  display: flex;
  flex-direction: column;  
  gap: 18px;
}

.value-prop .item > img,
.value-prop-v2 .item > img {
  height: 75px;
}

.value-prop > .separator,
.value-prop-v2 > .separator {
  height: 70px;
  width: 2px;
  background: url(../images/separator.svg) no-repeat;
  background-position: center center;
}

.value-prop .separator.horizontal,
.value-prop-v2 .separator.horizontal {
  display: none;
  background: url(../images/separator-horizontal.svg) no-repeat;
  background-position: center center;
}

.value-prop > .item label,
.value-prop-v2 > .item label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}

footer {
  width: 100%;
  text-align: center;
  order: 2;
  flex-grow: 0;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 53px 0;
}

footer ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  line-height: 16px;
}

#play-button,
#play-button-v2 {
  opacity: 1;
  transition: opacity 0.250s;
}

#play-button-v2 {
  width: 25px;
}

#play-button:hover,
#play-button-v2:hover {
  opacity: 0.7;
}

footer ul a:link,
footer ul a:visited {
  color: #23334B;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

footer ul a:hover {
  text-decoration: underline;
}

footer ul li .logo-edp {
  width: 34px;
}

footer ul li {
  list-style: none;
  display: inline-block;
}

footer ul.links {
  
}

footer ul.links li {
  
  
}

footer ul.social {
  gap: 16px;
}

footer ul.social li {
  
  
}

h1 {
  text-transform: uppercase;
  color: #23334B;
  margin-bottom: 40px;
}

.hero h1 {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0px;
}

.hero p {
  margin: 0;
  font-size: 28px;
}

h2 {
  margin-top: 40px;
}

.main {
  padding: 50px 0;
  color: #23334B;
}

.main-contact,
.main-privacy,
.main-legal {
  padding: 50px 0;
}

form,
.main h1,
.main p,
.main-privacy ul.text {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.main-legal p {
  max-width: none;
  width: fit-content;
}

.main-legal h1 {
  margin-bottom: 0;
}

.main p.text,
.main-legal p.text,
.main-privacy ul.text {
  text-align: left;
}

input, textarea {
  background-color: #F7F7F9;
  font-weight: 300;
  color: #23334B;
  font-size: 20px;
  border: 0;
  padding: 18px 16px;
  display: block;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 30px;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}

.main a:link, .main a:visited, .main a:hover {
  color: #23334B;
  text-decoration: underline;
}

input[type=submit], 
input[type=button] {
  background-color: #99D220;
  color: #23334B;
  font-weight: 500;
  transition: background-color 1s;
  height: 54px;
}

input[type=submit]:hover,
input[type=button]:hover {
  background-color: #CDEF84;
}

input[type=submit].disabled {
  transition: background-color 0s;
}

input[type=submit].disabled,
input[type=submit]:hover.disabled {
  background-color: #E0E0E0;
  color: #fff;
}

textarea {
  height: 150px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #23334B;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #23334B;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #23334B;
}

.msg {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}

.msg.success {
  background-color: rgb(209, 249, 223);
  color: rgb(65, 122, 84);  
}

.msg.error {
  background-color: rgb(255, 236, 236);
  color: rgb(214, 27, 27);
}

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

  #header {
    padding: 0 20px;
  }

  footer ul.links {
    margin-left: 20px;
  }

  footer ul.social {
    margin-right: 20px;  
  }
    
}

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

  #header img.logo {
    height: 55px;
  }
  
  #header-container {
    padding: 30px 0px;
  }

  .krouadenn-phonetic {
    font-size: 44px;
  }
  
  .krouadenn-pronounciation {
    font-size: 20px;
  }
  
  .krouadenn-pronounciation-v2 {
    font-size: 16px;
  }

  .krouadenn-meaning {
    font-size: 16px; 
    margin: 8px 0;
  }
  
  .krouadenn-definition,
  .krouadenn-definition-v2 {
    font-size: 21px;
    line-height: 25px;    
  }
  
  .krouadenn-definition .footnote,
  .krouadenn-definition-v2 .footnote {
    font-size: 14px;
    line-height: 18px;
  }

  .krouadenn-definition-v2 .footnote {
    font-size: 16px;
    line-height: 20px;
  }

  #content-container.about #text {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-size: 14px;
    color: #23334B;
    line-height: 140%;  
  }
  
  .value-prop {
    padding: 37px 0;
    gap: 30px;
  }

  .value-prop-container {
    padding: 37px 0;
  }

  .value-prop-container h2 {
    font-size: 20px;
  }

  .value-prop-v2 {
    gap: 30px;
  }

  .value-prop .item > img,
  .value-prop-v2 .item > img {
    height: 54px;
  }
  
  .value-prop > .item label,
  .value-prop-v2 > .item label {
    font-size: 12px;
    line-height: 15px;
  } 
      
  .value-prop > .separator,
  .value-prop-v2 > .separator {
    height: 50px;
  }

  h1 {
    font-size: 26px;
  }
  
  .msg {
    font-size: 16px;
  }

  input, textarea {
    font-size: 16px;
  }

}

@media only screen and (max-width: 767px) {
  
  #header {
    font-size: 10px;
    line-height: 13px;
    padding: 0 20px;
  }
  
  #header img.logo {
    height: 35px;
  }
  
  #header-container {
    padding: 8px 0px;
  }
  
  #header .about a,
  #header .contact a {
    flex-direction: column;
  }
  
  .krouadenn-phonetic {
    font-size: 6vw;
    line-height: 150%;
  }
  
  .krouadenn-pronounciation {
    font-size: 3.5vw;
  }
  
  .krouadenn-pronounciation-v2 {
    font-size: 14px;
  }
  
  .krouadenn-definition,
  .krouadenn-definition-v2 {
    font-size: 16px;
    line-height: 20px;    
    width: 80%;
  }

  .krouadenn-definition .footnote,
  .krouadenn-definition-v2 .footnote {
    font-size: 12px;
    line-height: 14px;
  }  

  .krouadenn-definition-v2 .footnote {
    font-size: 16px;
    line-height: 20px;
  }
    
  #content-container {
    padding: 40px 0 0;
  }
  
  #content-container.about {
    padding: 40px 0;
  }

  #content-container.about #text {
    width: 80%;
    padding: 20px;
    font-size: 14px;
    margin-bottom: 40px;
  }
  
  #content-container.v2023 {
    padding: 0;
  }
  
  #header .menu {
    gap: 2px;
    flex-direction: column;
  }
  
  #header .menu > div > a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  
  #content-container .hero {
    height: 242px;
    padding: 25px;
    justify-content: end;
    align-content: flex-end;
    align-items: baseline;
  }
  
  .hero h1 {
    font-size: 20px;
    text-align: left;
  }
  
  .hero p {
    font-size: 16px;
    text-align: left;
  }
  
  .hero span {
    display: block;
  }
  
  #content-container .main {
    padding: 0 20px;
  }

  .value-prop-container {
    margin-top: 40px;
    padding: 40px 0;
  }
  
  .value-prop {
    margin-top: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
    gap: 50px;
  }

  .value-prop-v2 {
    flex-wrap: wrap;
    gap: 50px;
  }
  
  .value-prop .item,
  .value-prop-v2 .item {
    width: 30%;
  }

  .value-prop > .separator,
  .value-prop-v2 > .separator {
    height: 70px;
  }
  
  .value-prop .separator.horizontal,
  .value-prop-v2 .separator.horizontal {
    display: block;
    width: 40%;
    height: 2px;
  }
  
  .value-prop .separator.middle,
  .value-prop-v2 .separator.middle {
    display: none;
  } 
  
  footer {
    flex-direction: column;
    gap: 95px;
  }
  
  footer ul.links {
    margin-left: 0;
    flex-direction: column;
  }
  
  footer ul.social {
    margin-right: 0;
    flex-direction: row;
  }
}

@media only screen and (max-width: 414px) {
  
  h1 {
    font-size: 22px;  
    margin-top: 0;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 20px;
    line-height: 120%;
  }

  .krouadenn-pronounciation-v2 {
    font-size: 14px;
  }

  .value-prop-container h2 {
    font-size: 18px;
  }
  
  input, textarea {
    margin-bottom: 20px;
  }
  
}
