/* Скидання стилів */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;

  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0.01em;
  color: #737373;
  background-color: #fafafa;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

.visually-hidden {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #2e2f42;

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

.wraper {
  height: 100%;
  overflow: hidden;
}

.container {
  max-width: 1076px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

/* ----------------------header----------------------*/
.header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 50;
}

.header-container {
  display: flex;
  align-items: center;
  min-height: 104px;
}

.header-logo {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: 0em;
  color: #252b42;
  margin-right: 132px;
}

.menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}

.menu-link {
  font-weight: 600;
  line-height: 1.71429;
  text-align: center;
  color: #737373;
  padding: 40px 0;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover {
  color: #0d5c63;
}

@media screen and (max-width: 600px) {
  .header-logo {
    margin-right: 60px;
  }
}

/* ----------------------hero----------------------*/

.main-block {
  position: relative;
  background-color: transparent;
}

.main-block-container {
  padding-top: 184px;
  padding-bottom: 191px;
  position: relative;
  z-index: 2;
}

.maine-block-body {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 409px;
}

.main-block-title {
  font-weight: 800;
  font-size: 58px;
  line-height: 1.37931;
  letter-spacing: 0em;
  color: #252b42;
}

.main-block-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #737373;
}

.main-block-buttons {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.main-block-btn {
  font-weight: 700;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-items: center;
}

.main-block-btn-get {
  color: #fff;
  border-radius: 37px;
  padding: 10px 36px;
  height: 48px;
  background-color: #ff7b47;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.main-block-btn-get:hover,
.main-block-btn-get:active {
  background-color: #0d5c63;
}

.main-block-btn-learn {
  color: #0d5c63;
  border: 1px solid #0d5c63;
  border-radius: 37px;
  padding: 10px 36px;
  min-height: 48px;
  background-color: transparent;
  transition: border 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1), background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.main-block-btn-learn:hover,
.main-block-btn-learn:active {
  border: 1px solid #ff7b47;
  color: #ff7b47;
  background-color: #fafafa;
}

.-ibg {
  position: relative;
}

.-ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: right;
}

.maine-block-container-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0 auto;
}

@media screen and (max-width: 1050px) {
  .-ibg img {
    opacity: 50%;
  }
}

@media screen and (max-width: 600px) {
  .maine-block-body {
    max-width: 409px;
  }

  .-ibg img {
    opacity: 30%;
  }

  .main-block-title {
    font-size: 42px;
  }

  .main-block-text {
    font-size: 16px;
  }
}

/* --------------------consulting--------------------*/

.consulting-container {
  position: relative;
  margin-top: -111px;
  z-index: 2;
}

.consulting-list {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.consulting-item {
  width: calc((100% - 60px) / 3);
  padding: 35px 60px 35px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: #ffffff;
  box-shadow: 0 13px 19px 0 rgba(0, 0, 0, 0.07);
}

.consulting-item-visible {
  color: #ffffff;
  background-color: #0d5c63;
}

.consulting-svg-img {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #0d5c63;
}

.consulting-svg-img-visible {
  fill: #ffffff;
}

.consulting-svg {
  border: none;
  background-color: inherit;
}

.title-three {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: 0em;
  color: #252b42;
}

.consulting-title-three-visible {
  color: #ffffff;
}

.text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: 0.01em;
  color: #737373;
}

.consulting-text-visible {
  color: #ffffff;
}

@media screen and (max-width: 800px) {
  .consulting-list {
    flex-wrap: wrap;
  }

  .consulting-item {
    width: 100%;
  }
}

/* --------------------experience--------------------*/

.experience-block {
  padding: 80px 0;
}

.experience-main {
  margin-bottom: 50px;
}

.experience-text {
  max-width: 510;
  text-align: center;
}

.title-two {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.425;
  letter-spacing: 0.01em;
  color: #252b42;
  text-align: center;
}

.experience-title-two {
  padding-bottom: 10px;
}

.experience-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.experience-item {
  flex-basis: calc((100% - 90px) / 4);
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #fff;
  width: 240px;
  min-height: 209px;
}

.experience-svg {
  width: 48px;
  height: 48px;
}

.experience-icon {
  fill: #0d5c63;
}

@media screen and (max-width: 800px) {
  .experience-block {
    padding: 40px 0;
  }

  .experience-list {
    flex-wrap: wrap;
  }

  .experience-item {
    flex-basis: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 650px) {
  .experience-block {
    padding: 20px 0;
  }

  .experience-main {
    margin-bottom: 20px;
  }

  .title-two {
    font-size: 32px;
  }

  .text {
    font-size: 12px;
  }

  .experience-list {
    gap: 10px;
  }
}

@media screen and (max-width: 400px) {
  .experience-item {
    flex-basis: calc((100% - 15px) / 1);
  }
}

/* ---------------------practice---------------------*/

.practice-block {
  padding: 80px 0px;
}

.practice-main {
  padding: 0 0 45px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.practice-main-text {
  text-align: center;
}

.practice-content-list {
  display: flex;
  gap: 30px;
}

.practice-content-item {
  flex-basis: calc((100% - 90px) / 4);
  width: 240px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff
}

.practice-content-text {
  padding: 30px;
  flex: 1 1 auto;
}

.practice-content-img {
  max-width: 230px;
}

.title-four {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #252b42;
}

@media screen and (max-width: 1050px) {
  .practice-block {
    padding: 40px 0px;
  }

  .practice-content-list {
    flex-wrap: wrap;
  }

  .practice-content-item {
    flex-basis: calc((100% - 30px) / 2);
    align-items: center;
  }
}

@media screen and (max-width: 550px) {
  .practice-block {
    padding: 20px 0px;
  }

  .practice-content-item {
    flex-basis: calc((100% - 10px) / 1);
    align-items: center;
  }
}

/* ---------------------whoweare---------------------*/

.whoweare-block {
  padding: 100px 0px;
  background-color: #fff;
}

.whoweare-main {
  text-align: center;
  margin-bottom: 100px;
}

.whoweare-title {
  padding-bottom: 15px;
  text-align: left;
}

.whoweare-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* .whoweare-video {
  width: 600px;
  height: 442px;
} */

.whoweare-video iframe {
  width: 600px;
  height: 442px;
}

.whoweare-content {
  border-radius: 9px;
  max-width: 333px;
  padding-left: 10px;
}

.whoweare-text-item {
  padding: 20px 0;
  margin-bottom: 30px;
}

.whoweare-content-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.whoweare-content-item {
  display: flex;
  gap: 20px;
}

.whoweare-item-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.whoweare-svg-icon {
  fill: #ff7b47;
}

.whoweare-item-desc-text-one {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #252b42;
  margin-bottom: 5px;
}

.whoweare-item-desc-text-two {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71429;
  letter-spacing: 0.01em;
  color: #737373;
}

@media screen and (max-width: 970px) {

  .whoweare-block {
    padding: 50px 0px;
  }

  .whoweare-body {
    flex-direction: column;
    align-items: center;
  }

  .whoweare-content {
    max-width: none;
    width: auto;
  }

  .whoweare-main {
    text-align: center;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 650px) {
  .whoweare-block {
    padding: 20px 0px;
  }

  .whoweare-video iframe {
    width: 400px;
    height: 295px;
  }

  .whoweare-main {
    text-align: center;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 450px) {
  .whoweare-video iframe {
    width: 300px;
    height: 221px;
  }
}

/* ---------------------clients---------------------*/

.clients-block {
  position: relative;
  background-color: #fafafa;
}

.clients-block::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 77px;
  background-color: #252b42;
  left: 0;
  bottom: 0;
}

.clients-container {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.clients-logo-container {
  display: flex;
  padding: 50px 0px;
  max-width: 1054px;
  gap: 30px;
  flex-wrap: wrap;
}

.clients-logo-box {
  width: 150px;
  flex-basis: calc((100% - 150px) / 6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-logo-box-img {
  background-color: inherit;
}

.clients-subscribe {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: 0em;
  color: #fff;

  border-radius: 2px;
  padding: 30px 40px 30px 50px;
  max-width: 986px;
  background-color: #17213c;

  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}

.clients-form {
  display: flex;
  align-items: center;
  width: 450px;
  padding: 0 0 0 10px;
}

.clients-title-three {
  color: #fff;
  max-width: 266px;
}

.clients-input {
  color: #252b42;
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.01em;

  border: 1px solid #e6e6e6;
  border-radius: 5px 0 0 5px;
  padding: 15px 25px;
  min-height: 58px;
  background-color: #f9f9f9;

  box-sizing: border-box;
  width: 100%;
}

.clients-input::placeholder {
  color: #737373;
}

.clients-button {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;

  border: 1px solid #e6e6e6;
  border-radius: 0 5px 5px 0;
  padding: 15px 20px;
  min-height: 58px;
  background-color: #ff7b47;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.clients-button:hover {
  background-color: #0d5c63;
}

@media screen and (max-width: 850px) {
  .clients-subscribe {
    justify-content: center;
    padding: 15px 20px 15px 20px;
  }
}

@media screen and (max-width: 800px) {
  .clients-logo-container {
    padding: 20px 0px;
  }

  .clients-logo-box {
    flex-basis: calc((100% - 60px) / 3);
  }

  .clients-form {
    width: 400px;
    padding: 0;
  }
}

@media screen and (max-width: 800px) {
  .clients-input {
    padding: 7px 10px;
    min-height: 32px;
  }

  .clients-button {
    padding: 7px 10px;
    min-height: 32px;
  }
}

/* ---------------------clients---------------------*/

.getintouch-block {
  padding: 80px 0 148px 0;
  background-color: #f3f3f3;
}

.getintouch-main {
  margin-bottom: 80px;
}

.getintouch-main-text {
  text-align: center;
}

.getintouch-content-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32.5px;
  flex-direction: row;
  height: 333px;
}

.getintouch-column-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12.5px 10px;
  max-width: 328px;
  height: 333px;
  background-color: #fff;
  transition: padding 250ms cubic-bezier(0.4, 0, 0.2, 1), height 250ms cubic-bezier(0.4, 0, 0.2, 1), background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* .getintouch-column-item:hover {
  padding: 80px 40px;
  height: 393px;
  background-color: #252b42;
} */

.getintouch-icon-svg {
  width: 73px;
  height: 72px;
  fill: #0d5c63;
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* .getintouch-column-item:hover .getintouch-icon-svg {
  fill: #ffffff;
} */

.getintouch-emails {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71429;
  letter-spacing: 0.01em;
  text-align: center;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* .getintouch-column-item:hover .getintouch-link-email {
  color: #ffffff;
} */

.getintouch-email-one:hover,
.getintouch-email-two:hover {
  text-decoration: underline;
}

.getintouch-link-email {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71429;
  letter-spacing: 0.01em;
  text-align: center;
  color: #252b42;
}

.getintouch-column-text {
  text-align: center;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* .getintouch-column-item:hover .title-four {
  color: #ffffff;
} */

.getintouch-button {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71429;
  letter-spacing: 0.01em;
  text-align: center;
  color: #ff7b47;
  border: 1px solid #ff7b47;
  border-radius: 5px;
  padding: 10px 20px;
  background-color: transparent;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1), background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), border 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* .getintouch-column-item:hover .getintouch-button {
  color: #ffffff;
  border: 1px solid #ffffff;
} */

/* .getintouch-button:hover {
  background-color: #ff7b47;
  color: #ffffff;
} */

@media screen and (max-width: 800px) {
  .getintouch-block {
    padding: 40px 0 72px 0;
  }

  .getintouch-main {
    margin-bottom: 40px;
  }

  .getintouch-content-list {
    flex-direction: column;
    height: auto;
  }
}

@media screen and (max-width: 849px) {
  .getintouch-button:hover {
    color: #ffffff;
    border: 1px solid #ffffff;
    background-color: #0d5c63;
  }
}

@media screen and (min-width: 850px) {
  .getintouch-column-item:hover {
    padding: 80px 40px;
    height: 393px;
    background-color: #252b42;
  }

  .getintouch-button:hover {
    background-color: #ff7b47;
    color: #ffffff;
  }

  .getintouch-column-item:hover .title-four {
    color: #ffffff;
  }

  .getintouch-column-item:hover .getintouch-icon-svg {
    fill: #ffffff;
  }

  .getintouch-column-item:hover .getintouch-link-email {
    color: #ffffff;
  }

  .getintouch-column-item:hover .getintouch-button {
    color: #ffffff;
    border: 1px solid #ffffff;
  }
}

/* ---------------------contactus---------------------*/

.contactus-block {
  background-color: #fafafa;
  padding: 40px 0;
}

.contactus-container {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.contactus-main {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
}

.contactus-button-content {
  padding-right: 15px;
}

.contactus-button {
  border-radius: 5px;
  padding: 15px 40px;
  width: 163px;
  height: 58px;
  background-color: #ff7b47;
  font-weight: 700;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fff;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contactus-button:hover {
  background-color: #0d5c63;
}

.contactus-main-title {
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media screen and (max-width: 500px) {
  .contactus-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* ---------------------footer---------------------*/

.footer-top {
  background-color: #17213c;
  padding: 50px 0;
}

.fotter-top-container {
  display: flex;
  gap: 30px;
}

.fotter-column {
  flex-basis: calc((100% - 120px) / 5);
}

.fotter-column-title-four {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #fff;
  padding: 0 0 20px 0;
}

.footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* .footer-menu-list:hover {
  text-decoration: underline;
} */

.footer-menu-item {
  box-sizing: border-box;
}

.footer-menu-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.01em;
  color: #fff;
}

.footer-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contacts-tel {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71429;
  letter-spacing: 0.01em;
  color: #fff;
  font-style: normal;
}

.footer-contacts-map-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71429;
  letter-spacing: 0.01em;
  color: #fff;
  font-style: normal;
}

.footer-contacts-email {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71429;
  letter-spacing: 0.01em;
  color: #fff;
  font-style: normal;
}

.footer-bottom {
  background-color: #fafafa;
  padding: 25px 0;
}

.fotter-bottom-container {
  display: flex;
  flex-wrap: wrap;
}

.fotter-bottom-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.71429;
  letter-spacing: 0.01em;
  color: #737373;
  display: flex;
  flex-grow: 1;
  align-content: center;
  justify-items: center;
}

.footer-bottom-icon {
  padding: 0 40px 0 0;
}

.footer-bottom-icon-list {
  display: flex;
  gap: 20px;
}

.footer-bottom-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-facebook {
  fill: #335bf5;
}

.footer-social-instagram {
  fill: #e51f5a;
}

.footer-social-twitter {
  fill: #21a6df;
}

.footer-social-youtube {
  fill: #e42f08;
}

@media screen and (max-width: 800px) {
  .fotter-top-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .fotter-column {
    flex-basis: calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 500px) {
  .fotter-top-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .fotter-column {
    flex-basis: calc((100% - 20px) / 2);
  }
}