@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Light.ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  margin: 0;
  background-color: #fffef8;
}

p,
a,
h2,
h3,
input,
li,
label {
  font-family: "Cormorant Garamond";
  hyphens: none;
  margin: 0;
  padding: 0;
  color: #06273a;
}

.heading {
  color: #06273a;
  text-transform: uppercase;
}
.heading--hidden {
  display: none;
}
.heading__2 {
  font-size: 40px;
  line-height: 55px;
  font-weight: 400;
}
.heading__2--bold {
  font-weight: 700;
}
.heading__3 {
  font-size: 38px;
  line-height: 59px;
  font-weight: 400;
}
.heading__3--larger {
  color: #06273a;
  font-size: 47px;
  line-height: 70px;
  font-weight: 400;
}

.paragraph,
.link {
  font-size: 20px;
  color: #06273a;
  line-height: 19px;
  text-decoration: none;
}

.header {
  z-index: 3;
  height: 160px;
  display: block;
  position: sticky;
  background: #fffef8;
  top: 0;
}
@media (max-width: 1080px) {
  .header {
    height: 70px;
    background-color: #06273a;
  }
}
.header .header--hover:hover .header__dropdown-list, .header .header__dropdown-list:hover .header__dropdown-list, .header .header__dropdown:hover .header__dropdown-list {
  visibility: visible;
  height: 120px;
  max-width: 500px;
  max-height: 150px;
  padding: 20px;
  transition: 0.25s ease-in-out;
}
.header .header--hover:hover .header__list-item, .header .header__dropdown-list:hover .header__list-item, .header .header__dropdown:hover .header__list-item {
  opacity: 1;
  transition: opacity 0.75s;
}
.header__control {
  display: flex;
  align-items: center;
  max-width: 1600px;
  width: auto;
  height: 100%;
  margin: auto;
  padding: 0px 50px;
}
@media (max-width: 1080px) {
  .header__control {
    padding: 0px 25px;
  }
}
.header__menu-button {
  width: 50%;
  justify-content: right;
  display: none;
}
@media (max-width: 1080px) {
  .header__menu-button {
    display: flex;
  }
}
.header__menu-toggle {
  display: block;
  cursor: pointer;
  margin-left: auto;
}
.header__menu-toggle:before, .header__menu-toggle:after,
.header__menu-toggle .header__menu-line {
  background: #fffef8;
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 3px;
  margin: 7px 0;
  transition: 0.5s;
}
.header__menu-toggle--opened:before {
  transform: translateY(9.5px) rotate(135deg);
  width: 45px;
}
.header__menu-toggle--opened:after {
  transform: translateY(-8px) rotate(-135deg);
  width: 45px;
}
.header__menu-toggle--opened span {
  transform: scale(0);
}
.header__logo_section {
  width: 50%;
  text-align: left;
}
.header__logo {
  width: 64px;
  transition: all 0.5s;
}
.header__logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.header__logo-link h2 {
  color: #06273a;
  font-size: 20px;
  font-weight: 300;
}
@media (max-width: 1080px) {
  .header__logo-link h2 {
    display: none;
  }
}
.header__logo-link h2 span {
  font-size: 28px;
}
.header__buttons {
  width: 50%;
  display: flex;
  justify-content: right;
  align-items: center;
}
@media (max-width: 1080px) {
  .header__buttons {
    display: none;
  }
}
.header__buttons--mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.header__nav {
  padding: 30px 0px;
  display: flex;
  gap: 30px;
  justify-content: right;
  align-items: center;
  max-width: 1600px;
  width: 50%;
  margin: auto;
}
@media (max-width: 1080px) {
  .header__nav {
    display: none;
  }
}
.header__nav--mobile {
  display: block;
  background: #fffef8;
  padding: 30px 0px;
  min-height: 220px;
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(100%) scale(0);
}
.header__nav--min-content {
  height: min-content;
}
.header__nav--opened {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.header__nav--opened .header__dropdown--mobile {
  opacity: 1;
  visibility: visible;
}
.header__nav--opened .header__buttons--mobile {
  opacity: 1;
  visibility: visible;
}
.header__dropdown {
  text-align: center;
  max-height: 20px;
}
.header__dropdown--mobile {
  text-align: center;
  margin: 25px;
  opacity: 0;
  transition: all 0.5s;
  visibility: hidden;
}
.header__menu--mobile {
  border-bottom: solid 2px #06273a;
}
.header__dropdown-arrow {
  position: absolute;
  cursor: pointer;
  right: 20%;
  transform: rotate(90deg);
}
.header__dropdown-list {
  text-align: left;
  visibility: hidden;
  padding: 0px;
  display: flex;
  flex-direction: column;
  background: #fffef8;
  height: 0px;
  width: auto;
  max-width: 0px;
  transition: 0.75s, max-width 1.5s, padding 1.5s;
}
.header__dropdown-list--mobile {
  visibility: hidden;
  margin: 10px 0px 0px 0px;
  transition: 0.75s;
  padding: 0px;
}
.header__dropdown-list--opened {
  visibility: visible;
}
.header__dropdown-list--opened .header__list-item--mobile {
  height: 17px;
  visibility: visible;
  opacity: 1;
}
.header__list-item {
  list-style: none;
  width: 100%;
  white-space: nowrap;
  margin: 10px 20px;
  transition: opacity 0.25s;
  opacity: 0;
}
.header__list-item--mobile {
  list-style: none;
  margin: 0px 20px;
  height: 0px;
  visibility: hidden;
  transition: height 0.5s, opacity 0.25s, visibility 0.5s;
  opacity: 0;
}
.header__item-link {
  border-bottom: solid 5px transparent;
  padding-bottom: 5px;
}
.header__item-link:hover {
  border-bottom: solid 5px #ffeee0;
}
.header__account-link {
  font-size: 25px;
  text-transform: none;
  margin: 0px 15px;
}
.header__account-link:last-child {
  margin-right: 0px;
}
.header__shopping-menu {
  transition: all 0.5s;
  margin-left: 60px;
}
@media (max-width: 1330px) {
  .header__shopping-menu {
    margin-left: 20px;
  }
}
.header__shopping-icon {
  transition: all 0.5s;
}
.header__shopping-icon:first-child {
  margin-right: 30px;
}
@media (max-width: 1330px) {
  .header__shopping-icon:first-child {
    margin-right: 10px;
  }
}

.container {
  max-width: 1920px;
  margin: auto;
  overflow-x: hidden;
}

.hero {
  position: relative;
  display: flex;
  justify-content: right;
  align-items: center;
  min-height: 800px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/main-hero.jpg");
}
.hero.user {
  background-image: url("../images/user-background.webp"), url("../images/user-background.jpg");
  min-height: 400px;
}
@media (max-width: 1080px) {
  .hero.user {
    min-height: 300px;
    display: none;
  }
}
@media (max-width: 1080px) {
  .hero {
    min-height: 650px;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  background-color: rgba(249, 255, 248, 0.5);
  margin-left: 210px;
  margin-right: auto;
  padding: 50px 125px;
  transition: all 0.5s;
}
@media (max-width: 1080px) {
  .hero__content {
    text-align: center;
    max-width: 90%;
    margin: auto;
    padding: 0px;
  }
}
.hero__content h2 {
  font-size: 50px;
  word-wrap: break-word;
  text-align: center;
  line-height: 1.75;
}
@media (max-width: 1080px) {
  .hero__content h2 {
    word-wrap: normal;
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 50px;
  }
}
.hero__content h2 > span {
  display: block;
}
.hero__content h2 > span span {
  font-size: 70px;
}
.hero__text {
  max-width: 375px;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
}

.separator {
  height: 110px;
  background-color: #fffef8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.separator .paragraph {
  max-width: 950px;
}
.separator.user {
  height: auto;
}
@media (max-width: 1080px) {
  .separator.user div {
    padding: 0px 25px;
  }
}

.user_experience {
  border-top: 1px solid #06273a;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.user_experience--double-line {
  border-bottom: 1px solid #06273a;
  padding: 50px 0px;
}
.user_experience div {
  width: 950px;
  text-align: left;
}
@media (max-width: 1080px) {
  .user_experience div {
    padding: 0px 25px;
  }
}

.user_info {
  display: flex;
  margin-top: -250px;
  z-index: 2;
  position: relative;
  justify-content: center;
}
@media (max-width: 1080px) {
  .user_info {
    margin-top: 0px;
  }
}
.user_info > div {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.user_info > div > div {
  width: 50%;
  text-align: center;
}
@media (max-width: 1080px) {
  .user_info > div > div {
    width: 100%;
  }
}
.user_info > div > div img {
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  display: flex;
}
.user_info > div .info {
  display: flex;
  background-color: #fffef8;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #06273a;
}
.user_info > div .info div {
  width: 80%;
}

.user_experience_table {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.user_experience_table .container {
  max-width: 1000px;
  width: 100%;
}
.user_experience_table .text {
  font-size: 18px;
}
@media (max-width: 1080px) {
  .user_experience_table .text {
    margin-top: 30px;
  }
}
.user_experience_table .experience {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.user_experience_table .experience div {
  width: 50%;
}
@media (max-width: 1080px) {
  .user_experience_table .experience div {
    padding: 0px 25px;
    width: 100%;
  }
}
.user_experience_table .experience div h3 strong {
  font-size: 25px;
}

section.contact {
  display: flex;
  flex-wrap: wrap;
}
section.contact > div {
  width: 50%;
  background-color: #ffeee0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1080px) {
  section.contact > div {
    width: 100%;
  }
}
section.contact > div .contact_information {
  text-align: center;
  max-width: 400px;
}
section.contact > div img {
  height: 500px;
  max-width: 100%;
  object-fit: cover;
}
@media (max-width: 1080px) {
  section.contact > div img {
    margin-top: 50px;
  }
}

.section {
  max-width: 1600px;
  width: 95%;
  margin: auto;
  position: relative;
}

.our-services {
  text-align: center;
  background-color: #e0e6ff;
  width: 100%;
  padding: 100px 0px;
}
@media (max-width: 1080px) {
  .our-services {
    margin-top: 50px;
  }
}
.our-services .paragraph {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1080px) {
  .our-services .paragraph {
    max-width: 95%;
  }
}

.our-team {
  background-color: #06273a;
}
.our-team section {
  margin-top: 50px;
  text-align: center;
}
.our-team section > h2,
.our-team section > p {
  color: #ffeee0;
}
.our-team .card_panel {
  height: auto;
  margin: 50px 0px 50px;
}
.our-team .card_panel__card_panel-container {
  align-items: stretch;
  flex: wrap;
}
.our-team .card_panel__container {
  justify-content: flex-start;
}
.our-team .card_panel__container > picture {
  height: 900px;
}
.our-team .card_panel__information {
  height: 100%;
  min-height: 50px;
}
.our-team .card_panel__text {
  font-size: 25px;
  line-height: 30px;
}
.our-team .card_panel__card {
  width: 50%;
  margin-top: 20px;
}
@media (max-width: 1080px) {
  .our-team .card_panel__card {
    width: 100%;
  }
}
.our-team .card_panel__image {
  max-height: 900px;
}

.practices {
  background-color: #06273a;
}
.practices section {
  margin-top: 50px;
  text-align: center;
}
.practices section > h2,
.practices section > p {
  color: #ffeee0;
}
.practices .card_panel {
  height: auto;
  margin: 50px 0px 50px;
}
.practices .card_panel__card_panel-container {
  align-items: stretch;
}
.practices .card_panel__card {
  width: 30%;
}
@media (max-width: 1080px) {
  .practices .card_panel__card {
    width: 100%;
  }
}
.practices .card_panel__container {
  justify-content: flex-start;
  flex-wrap: nowrap;
  height: 100%;
}
.practices .card_panel__information {
  height: 100%;
}
.practices .card_panel__text {
  font-size: 25px;
  line-height: 30px;
}
.practices .card_panel__image {
  max-height: 235px;
  height: 100%;
}

.card_panel {
  min-height: 500px;
  transition: all 0.5s;
  overflow: hidden;
  position: relative;
}
.card_panel__card_panel-container {
  position: relative;
  display: flex;
  transition: all 0.5s;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1080px) {
  .card_panel__card_panel-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 1330px) {
  .card_panel {
    height: min-content;
  }
}
.card_panel__card {
  transition: all 0.5s;
  width: 40%;
  margin: 25px;
  display: inline-block;
}
@media (max-width: 1080px) {
  .card_panel__card {
    margin: 15px;
  }
}
@media (max-width: 1330px) {
  .card_panel__card {
    width: 50%;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .card_panel__card {
    width: 100%;
  }
}
.card_panel__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}
.card_panel__image {
  max-height: 235px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: 0.5s;
}
.card_panel__information {
  padding: 25px;
  position: relative;
  width: calc(100% - 50px);
}
.card_panel__information.primary {
  background-color: #ffeee0;
}
.card_panel__title, .card_panel__text {
  width: 100%;
  display: flex;
  justify-content: center;
}
.card_panel__title {
  font-size: 30px;
  text-align: center;
}
.card_panel__text {
  text-transform: none;
}

.collection {
  margin-top: 50px;
  position: relative;
  display: flex;
}
@media (max-width: 1080px) {
  .collection {
    flex-direction: column;
  }
}
.collection__text_container {
  width: 40%;
  display: flex;
}
@media (max-width: 1080px) {
  .collection__text_container {
    width: 100%;
    text-align: center;
  }
}
.collection__text_container .heading__3 {
  max-width: 350px;
  margin: auto;
}
.collection__image_container {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1080px) {
  .collection__image_container {
    width: 100%;
  }
}
.collection__image {
  width: 28%;
  object-fit: cover;
  object-position: 50% 50%;
}
.collection__image--double {
  width: 56%;
  object-fit: contain;
  object-position: 50% 50%;
  margin-right: 20px;
}
@media (max-width: 1080px) {
  .collection__image {
    margin: 10px 0px;
  }
}
.collection__image_row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1080px) {
  .collection__image_row {
    display: none;
  }
}
.collection__image_row--mobile {
  display: none;
}
@media (max-width: 1080px) {
  .collection__image_row--mobile {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.collection__image_row--mobile .collection__image {
  width: 50%;
}
.collection__image_row--mobile .collection__image--double {
  width: 100%;
}

.footer {
  background: #ffeee0;
  margin-top: 40px;
  height: 240px;
  display: flex;
  align-items: center;
}
@media (max-width: 1080px) {
  .footer {
    height: 350px;
  }
}
.footer__container {
  max-width: 1600px;
  width: 95%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-wrap: wrap;
}
.footer__container h2 {
  color: #06273a;
  font-size: 20px;
  font-weight: 400;
}
.footer__container h2 span {
  font-size: 28px;
}

/*# sourceMappingURL=style.css.map */
