@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus,
*:active {
  outline: none;
}

:root {
  /* Default Color */
  --color-black: #191918;
  --color-white: #ffffff;

  --color-gray: #767a77;
  --color-gray-dark: #58595c;
  --color-gray-light: #b7b5b5;
}

html {
  line-height: normal;
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  color: var(--color-gray-dark);
  font-family: "Montserrat", sans-serif;
}

a {
  color: inherit;
  text-decoration: unset;
}

b {
  font-weight: 600;
}

img {
  height: auto;
  max-width: 100%;
}

/* --------------------------------------------------------------------------------------
 *
 *  Components
 *
 *  —— Brandmark
 *  —— Social Networks
 *
----------------------------------------------------------------------------------------- */

/*  Component: Brandmark
----------------------------------------------------------------------------------------- */

/* Brandmark Area */
.brandmark-area {
  height: 100vh;
  display: flex;
  padding: 30px;
  text-align: center;
  position: relative;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.brandmark-area > *:not(:last-child) {
  margin: 0 0 25px 0;
}

/* Brandmark Figure */
#brandmark-figure {
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
}

/* Brandmark Logo */
#brandmark-logo {
  max-height: 70px;
}

/* Brandmark Text */
#brandmark-text {
  font-size: 16px;
  color: var(--color-white);
}

@media only screen and (max-width: 768px) {
  /* Brandmark Figure */
  #brandmark-figure {
    display: none;
  }
  /* Brandmark Text */
  #brandmark-text {
    color: var(--color-black);
  }
}

/*  Component: Brandmark
----------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------
 *
 *  Widgets
 *
 *  —— 
 *  —— 
 *  —— 
 *
----------------------------------------------------------------------------------------- */

/*  Widget: Widget Contacts
----------------------------------------------------------------------------------------- */

.widget-contacts {
  right: 50px;
  bottom: 50px;
  display: flex;
  position: fixed;
}

.widget-contacts > *:not(:last-child) {
  margin: 0 30px 0 0;
  padding: 0 30px 0 0;
  border-right: 1px solid #eee;
}

/*  Widget Contacts: Social Networks
------------------------------------------ */
.social-networks {
  display: flex;
  align-items: center;
}

.social-networks > *:not(:last-child) {
  margin: 0 15px 0 0;
}

.social-networks > * {
  width: 55px;
  height: 55px;
  opacity: 0.8;
  display: flex;
  color: inherit;
  font-size: 25px;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  border: 1px solid var(--color-gray-dark);
}

.social-networks > *:hover {
  opacity: 1;
}

/*  Widget Contacts: Contact List
------------------------------------------ */

/* Contact List */
.contact-list {
  display: flex;
  text-align: right;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
}

/* Contact Phone */
.contact-phone {
  font-size: 25px;
}

/* Copyright Text */
.copyright-text {
  font-size: 12px;
  color: var(--color-gray);
}

@media only screen and (max-width: 576px) {
  /* Widget Contacts */
  .widget-contacts {
    right: 30px;
    bottom: 30px;
  }
  .widget-contacts > *:not(:last-child) {
    margin: 0 15px 0 0;
    padding: 0 15px 0 0;
  }

  /* Social Networks */
  .social-networks > * {
    width: 45px;
    height: 45px;
  }

  /* Contact Phone */
  .contact-phone {
    font-size: 18px;
  }
}
