html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../font/Inter-Medium.ttf");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
img {
  max-width: 100%;
}

body {
  background-color: #D6D6C9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 15px;
}

strong {
  font-size: clamp(22px, 3vw, 24px);
  font-family: "Roboto";
  text-align: center;
}

.btn {
  display: flex;
  margin: 0 auto;
  background-color: #B0C4DE;
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: clamp(22px, 4vw, 25px);
  border: none;
  border-radius: 20px;
  padding: 15px;
  outline: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition-duration: 2s;
  outline: 2px solid #B0C4DE;
  outline-offset: 6px;
}

.btn:hover {
  box-shadow: 0 0 5px 5px grey;
}

.btn-link {
  text-decoration: none;
  color: #000;
}

.nav-section {
  margin-top: 50px;
  margin-bottom: 50px;
}
.nav-section__menu {
  display: flex;
  justify-content: space-between;
}
.nav-section__menu-text {
  font-size: 22px;
  text-align: center;
  font-family: "Inter";
}

.menu__link {
  color: #000;
  text-decoration: underline;
  transition-duration: 1.5s;
}

.menu__link:hover {
  text-decoration: none;
  color: #2A30C5;
}

.stom {
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 20px;
}

.line {
  border: none;
  border-top: 1px solid #000;
  margin: 10px 0;
}

.info {
  padding: 15px;
  text-align: center;
  font-size: 22px;
  background-color: rgba(219.3, 219.3, 219.3, 0.7);
}

.contact {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.contact__name {
  font-size: 30px;
  text-align: center;
}
.contact__phone {
  font-size: 30px;
  text-align: center;
}
.contact__link {
  text-decoration: none;
  text-align: center;
}
.contact__link_icon {
  vertical-align: middle;
}
.contact__link_text {
  vertical-align: middle;
  color: #000;
  transition-duration: 2s;
}
.contact__link_text:hover {
  color: #2A30C5;
  text-decoration: underline;
}

.card {
  background-color: white;
}
.card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.card__body {
  padding: 35px;
}
.card__title {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 30px;
}
.card__link {
  text-decoration: underline;
  transition-duration: 2s;
}
.card__link:hover {
  text-decoration: none;
  color: red;
  font-size: 29px;
}
.card__desc {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
}

.list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 50px;
}

@media (max-width: 1150px) {
  .nav-section {
    display: flex;
  }
  .nav-section__menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-section__menu-text {
    margin-top: 20px;
    margin-right: 30px;
  }
}
@media (max-width: 990px) {
  .contact__name {
    max-width: 200px;
    font-size: 24px;
  }
  .contact__phone {
    max-width: 200px;
    font-size: 24px;
  }
}
@media (max-width: 790px) {
  .card__title {
    font-size: 28px;
  }
  .card__link:hover {
    font-size: 29px;
  }
  .contact__name {
    max-width: 150px;
    font-size: 22px;
  }
  .contact__phone {
    max-width: 150px;
    font-size: 22px;
  }
}
@media (max-width: 650px) {
  .contact {
    display: flex;
    flex-direction: column;
  }
  .contact__name {
    max-width: 500px;
    font-size: 28px;
    padding-bottom: 20px;
  }
  .contact__phone {
    max-width: 500px;
    font-size: 28px;
    padding-bottom: 20px;
  }
  .list {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=gallery.css.map */