/*
0-600px: Phone
600-900px: Tablet portrait
900-1200px: Tablet landskape
[1200-1800px] - is where our normal styles apply
1800+px: Widescreen Laptop


$breakpoint argument choices
- phone
- tab-port
- tab-land
- wide-desktop

ORDER::afterBase + Typography -> General Layout + Grid -> Page Layout -> Components

*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}

::-moz-selection {
  background-color: #f4f3ea;
  color: #18262e;
}

::selection {
  background-color: #f4f3ea;
  color: #18262e;
}

body {
  font-family: "Open Sans", sans-serif;
  font-display: swap;
  font-size: 1.8rem;
  color: #495057;
  line-height: 1.8;
  font-weight: 400;
}

.accent {
  font-family: "Comfortaa", cursive;
  font-display: swap;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
}

.heading-subtitle, .heading-tertiary, .heading-secondary, .heading-primary {
  font-family: "Merriweather", serif;
  font-display: swap;
  font-weight: 700;
  line-height: 1.2;
}

.heading-primary {
  font-weight: 400;
  font-size: 6.4rem;
}

.heading-secondary {
  font-size: 4.8rem;
  letter-spacing: 0.2rem;
}

.heading-tertiary {
  font-size: 3.6rem;
}

.heading-subtitle {
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 2rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

.u-margin-bottom-huge {
  margin-bottom: 12rem !important;
}

.u-margin-top-small {
  margin-top: 1.5rem !important;
}

.u-margin-top-medium {
  margin-top: 4rem !important;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 12rem !important;
}

.btn {
  text-decoration: none;
  display: inline-block;
  border: 0.3rem solid;
  border-radius: 7px;
  text-align: center;
  font-size: 1.8rem;
}
.btn--dark {
  border-color: #f5ac27;
  color: #f5ac27;
  background-color: #18262e;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
  transition: all 200ms;
}
.btn--dark:hover {
  color: #18262e;
  background-color: #f5ac27;
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.5);
}
.btn--inactive {
  border-color: #495057;
  color: #495057;
  background-color: #a4a8ab;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}
.btn--inactive:hover {
  background-color: #92969a;
}
.btn--small-def {
  padding: 2rem 4rem;
  min-width: 20rem;
}
.btn--small {
  padding: 2rem 4rem;
}
.btn--big {
  padding: 3rem 5rem;
  min-width: 20rem;
}

.icons__social {
  display: inline-block;
  padding: 1rem;
  background-color: #18262e;
  border-radius: 50%;
  line-height: 1;
  font-size: 5rem;
  color: #f4f3ea;
}

.header-section {
  background-color: #18262e;
  justify-content: center;
}
.header-content {
  display: grid;
  gap: 4rem 4rem;
  justify-items: center;
  margin: 1rem;
}
.header-content .branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.header-content .branding__logo {
  max-width: 20rem;
}
.header-content .branding__moto {
  color: #f5ac27;
  display: inline-block;
}

.container {
  display: grid;
  grid-template-columns: [full-width-start] minmax(3rem, 1fr) [content-start] repeat(12, [col-start] minmax(-webkit-min-content, 9.5rem) [col-end]) [content-end] minmax(3rem, 1fr) [full-width-end];
  grid-template-columns: [full-width-start] minmax(3rem, 1fr) [content-start] repeat(12, [col-start] minmax(min-content, 9.5rem) [col-end]) [content-end] minmax(3rem, 1fr) [full-width-end];
  justify-content: center;
}

.grid {
  grid-column: content-start/content-end;
  max-width: 114rem;
  display: grid;
}
.grid:not(:last-child) {
  margin-bottom: grid-gap-medium;
}
.grid--2-columns {
  grid-template-columns: repeat(2, minmax(-webkit-min-content, 1fr));
  grid-template-columns: repeat(2, minmax(min-content, 1fr));
}
.grid--3-columns {
  grid-template-columns: repeat(3, minmax(-webkit-min-content, 1fr));
  grid-template-columns: repeat(3, minmax(min-content, 1fr));
}
.grid--4-columns {
  grid-template-columns: repeat(4, minmax(-webkit-min-content, 1fr));
  grid-template-columns: repeat(4, minmax(min-content, 1fr));
}

.footer {
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  background-color: #18262e;
}
.footer-copyright {
  color: #f5ac27;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.nav {
  width: 100%;
}
.nav__list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
}
@media only screen and (max-width: 31.25em) {
  .nav__list {
    gap: 0.5rem;
  }
}
.nav__item:link, .nav__item:visited {
  font-size: inherit;
  display: inline-block;
  list-style: none;
  text-decoration: none;
  color: #f4f3ea;
  border-bottom: 3px solid transparent;
  padding: 0 1rem;
  transition: all 150ms;
}
.nav__item:hover, .nav__item:active {
  color: #f5ac27;
  border-bottom: 3px solid currentColor;
}

.hero-section {
  background-image: linear-gradient(to bottom, #18262e 0%, rgba(24, 38, 46, 0.7) 50%, rgba(28, 57, 78, 0.15) 100%), url(../img/home/hero/hero-2560x854.jpg);
  background-position: center;
  background-size: cover;
  justify-content: center;
}

.hero-content {
  margin: 16rem 0;
  gap: 1rem;
}
@media only screen and (max-width: 50em) {
  .hero-content {
    grid-template-columns: 3fr 1fr;
  }
}
@media only screen and (max-width: 43.75em) {
  .hero-content {
    grid-template-columns: 1fr;
  }
}
.hero__title {
  grid-column: 1;
  color: #f4f3ea;
}
.hero__line {
  grid-column: 1;
  height: 3px;
  display: inline-block;
  width: 87%;
  background-color: #f5ac27;
  margin-left: -3rem;
}
.hero__description {
  grid-column: 1;
  color: #f4f3ea;
}
.hero__btn {
  margin-top: 10rem;
  display: flex;
  flex-wrap: wrap;
  grid-column: 1;
  gap: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .hero__btn {
    gap: 2rem;
  }
}

.services-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-content {
  margin: 16rem 0;
  justify-items: center;
  gap: 8rem;
}
@media only screen and (max-width: 50em) {
  .services-content {
    grid-column: full-width-start/full-width-end;
    max-width: 114rem;
  }
}
.services__title {
  color: #1c394e;
}
.services__academy {
  display: grid;
  grid-template-columns: repeat(12, [col-start] minmax(-webkit-min-content, 1fr) [col-end]);
  grid-template-columns: repeat(12, [col-start] minmax(min-content, 1fr) [col-end]);
  grid-template-rows: repeat(9, minmax(1rem, 1fr));
}
@media only screen and (max-width: 50em) {
  .services__academy {
    grid-template-columns: 1fr repeat(10, minmax(-webkit-min-content, 4fr)) 1fr;
    grid-template-columns: 1fr repeat(10, minmax(min-content, 4fr)) 1fr;
  }
}
.services__academy__image {
  grid-column: 1/span 9;
  grid-row: 1/-1;
}
@media only screen and (max-width: 56.25em) {
  .services__academy__image {
    grid-column: 1/span 12;
    grid-row: 1/8;
  }
}
.services__academy__description {
  grid-column: 9/span 4;
  grid-row: 2/9;
  padding: 4rem;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .services__academy__description {
    grid-column: 2/span 10;
    grid-row: 6/span 10;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
@media only screen and (max-width: 43.75em) {
  .services__academy__description {
    padding: 2.5rem;
    gap: 1rem;
  }
}
.services__consulting {
  display: grid;
  grid-template-columns: repeat(12, [col-start] minmax(-webkit-min-content, 1fr) [col-end]);
  grid-template-columns: repeat(12, [col-start] minmax(min-content, 1fr) [col-end]);
  grid-template-rows: repeat(9, 1fr);
}
@media only screen and (max-width: 50em) {
  .services__consulting {
    grid-template-columns: 1fr repeat(10, minmax(-webkit-min-content, 4fr)) 1fr;
    grid-template-columns: 1fr repeat(10, minmax(min-content, 4fr)) 1fr;
  }
}
.services__consulting__image {
  grid-column: 4/span 9;
  grid-row: 1/-1;
}
@media only screen and (max-width: 56.25em) {
  .services__consulting__image {
    grid-column: 1/span 12;
    grid-row: 1/8;
  }
}
.services__consulting__description {
  grid-column: 1/span 4;
  grid-row: 2/9;
  padding: 4rem;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .services__consulting__description {
    grid-column: 2/span 10;
    grid-row: 6/span 10;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
@media only screen and (max-width: 43.75em) {
  .services__consulting__description {
    padding: 2.5rem;
    gap: 1rem;
  }
}

.service__title {
  color: #1c394e;
  padding-bottom: 1rem;
  border-bottom: 3px solid #f5ac27;
}
.service__description {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .service__description {
    margin-bottom: 1rem;
  }
}

.img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (max-width: 43.75em) {
  .cooperation-item__02 {
    grid-row: 2;
  }
}
@media only screen and (max-width: 43.75em) {
  .cooperation-item__03 {
    grid-row: 3;
  }
}
@media only screen and (max-width: 43.75em) {
  .cooperation-item__05 {
    grid-row: 5;
  }
}
@media only screen and (max-width: 43.75em) {
  .cooperation-item__06 {
    grid-row: 6;
  }
}
.cooperation-section {
  background-color: #18262e;
  background-size: cover;
  background-image: linear-gradient(to top, #18262e 0%, rgba(28, 57, 78, 0.75) 100%), url(../img/home/cooperation/cooperation-2560x1293.jpg);
  background-position: center;
}
.cooperation-content {
  margin: 16rem 0;
}
.cooperation-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cooperation-heading__title {
  color: #f5ac27;
}
.cooperation-heading__decription {
  text-align: center;
  color: #f4f3ea;
}
.cooperation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(-webkit-min-content, 1fr));
  grid-template-columns: repeat(2, minmax(min-content, 1fr));
  gap: 0 4rem;
  align-items: center;
  justify-items: center;
  grid-auto-flow: dense;
}
@media only screen and (max-width: 43.75em) {
  .cooperation-grid {
    grid-template-columns: 1fr;
  }
}
.cooperation-offer__img-container {
  display: flex;
  justify-items: center;
  align-items: center;
}
.cooperation-offer__img {
  max-width: 100%;
  min-width: 25rem;
}
.cooperation-offer__title {
  color: #f5ac27;
  grid-column: 1/-1;
  align-self: center;
  justify-self: center;
  padding-top: 12rem;
  padding-bottom: 2rem;
}
.cooperation-offer__description {
  margin-left: 3rem;
}

.description__features {
  color: #f4f3ea;
  list-style: square;
}
.description__features-item:not(:last-child) {
  margin-bottom: 1rem;
}

.icon__cooperation {
  display: inline-block;
  color: #f4f3ea;
  font-size: 2rem;
  padding-right: 1rem;
}

.contacts-section {
  margin-top: -1px;
  z-index: 1;
  background-color: #18262e;
}
.contacts-content {
  margin: 12rem 0;
  justify-items: center;
}
.contacts__title {
  color: #f5ac27;
}
.contacts-details {
  display: grid;
  justify-items: center;
  grid-template-columns: minmax(35rem, 50rem);
  padding-top: 8rem;
}

.contacts {
  display: grid;
  grid-template-columns: minmax(35rem, 50rem);
  justify-content: center;
}
.contacts-list {
  list-style: none;
  margin: 4rem 0;
}
.contacts-item {
  text-align: center;
}
.contacts-item:not(:last-child) {
  margin-bottom: 2rem;
}
.contacts-item a {
  text-decoration: none;
  color: #f4f3ea;
}
.contacts-item:hover a {
  text-decoration: none;
  color: #dcdbd3;
}
.contacts-item a .fa {
  color: #f5ac27;
}
.contacts-item:hover a .fa {
  color: #dd9b23;
}/*# sourceMappingURL=style.css.map */