/* font-family: "Montserrat", sans-serif;
font-family: "Roboto Slab", serif;
font-family: "Wisdom Script Regular";
font-family: "Droid Serif", serif; */

@font-face {
  font-family: "Wisdom Script Regular";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/WisdomScript.otf);
}

@font-face {
  font-family: "Droid Serif";
  font-style: italic;
  src: url(../fonts/DroidSerif-Italic.ttf);
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

.container {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 45px;
}

.logo {
  text-decoration: none;
  font-family: "Wisdom Script Regular", serif;
  color: #fed136;
  font-size: 26px;
  letter-spacing: 1.3px;
  line-height: 41px;
}

.navigation-menu {
  display: flex;
  list-style: none;
  margin-top: 12px;
}

.navigation-menu-item:not(:last-child) {
  margin-right: 39px;
}

.navigation-menu-link {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  color: #222222;
  font-weight: 600;
  transition-timing-function: linear;
  transition: 1.3s;
}

.navigation-menu-link:hover {
  transition: 0.2s;
  color: #fed136;
  transition-timing-function: linear;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 75px;
  letter-spacing: -1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-description {
  font-family: "Droid Serif", serif;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 75px;
}
.services {
  padding-top: 60px;
  text-align: center;
  padding-bottom: 120px;
}

.services .section-title {
  color: #222222;
}

.services .section-description {
  color: #777777;
}

.service-list {
  list-style: none;
  display: flex;
  justify-content: space-around;
}

.service-list-item::before {
  content: "";
  width: 68px;
  height: 68px;
  border: 3px solid #fed136;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}

.basket-bg::before {
  background-image: url(../img/Icon-Basket.png);
}

.laptop-bg::before {
  background-image: url(../img/Icon-Laptop.png);
}

.lock-bg::before {
  background-image: url(../img/Icon-Locked.png);
}

.service-list-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 274px;
}

.service-title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.45px;
  color: #222222;
  line-height: 75px;
}

.service-description {
  font-family: "Roboto Slab", serif;
  font-size: 14px;
  letter-spacing: -0.35px;
  color: #777777;
}

.contact {
  background-color: #222222;
  width: 100%;
  text-align: center;
  padding-top: 110px;
  background-image: url(../img/Map_Image.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}

.contact .section-title {
  color: #ffffff;
}

.contact .section-description {
  color: #777777;
}

.contact-form {
  padding-bottom: 144px;
}

.form-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.form-left-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 210px;
}

.form-left-column:not(:nth-last-child()) {
  margin-bottom: 20px;
}

.text-area {
  display: flex;
  padding-left: 30px;
}

.contact-name {
  width: 455px;
  height: 52px;
  border-radius: 2%;
  border: none;
  padding-left: 20px;
  font-size: 14px;

  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.contact-name::placeholder {
  text-transform: uppercase;
  color: #bbb;
}

.contact-mail {
  width: 455px;
  height: 52px;
  border-radius: 2%;
  border: none;

  font-size: 14px;
  padding-left: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.contact-mail::placeholder {
  text-transform: uppercase;
  color: #bbb;
}

.contact-subject {
  width: 455px;
  height: 52px;
  border-radius: 2%;
  border: none;

  font-size: 14px;
  padding-left: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.contact-subject::placeholder {
  text-transform: uppercase;
  color: #bbb;
}

.contact-message {
  resize: none;
  border-radius: 1%;
  border: none;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  padding: 20px 0 0 20px;
  width: 455px;
}

.contact-message::placeholder {
  text-transform: uppercase;
  color: #bbb;
}

.contact-name:invalid:not(:placeholder-shown),
.contact-mail:invalid:not(:placeholder-shown),
.contact-message:invalid:not(:placeholder-shown) {
  outline-color: rgb(255, 0, 0);
  outline-style: auto;
}

.contact-name:valid:not(:placeholder-shown),
.contact-mail:valid:not(:placeholder-shown),
.contact-message:valid:not(:placeholder-shown) {
  outline-color: rgb(0, 80, 0);
}

.submit-btn {
  width: 240px;
  height: 66px;
  background-color: #fed136;
  border: none;
  border-radius: 3%;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 18px;
}
