* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    max-width: 3840px;
}

/*
font-family: 'Anton', sans-serif;
font-family: 'Fira Mono', monospace;
font-family: 'Poppins', sans-serif;
*/

.sh-h1 {
  font-family: 'Anton', sans-serif;
  font-weight: bold;
  font-size: 40px;
}

.sh-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 26px;
  color:  rgb(255, 121, 72);
}

.sh-h3 {
  font-family: 'Fira Mono', monospace;
  font-weight: bold;
  font-size: 26px;
}

a,
.sh-grey {
  font-family: 'Poppins', extra-light;
  color: rgb(118, 120, 127);
  font-size: 22px;
  text-decoration: none;
  font-weight: 300;
}

.sh-white {
  color: white;
  font-size: 18px;
}

/* burger  --------------------*/

.ham {
  display: none;
  position: absolute;
  z-index: 100;
  top: 1rem;
  left: 350px;
  width: 3rem;
  height: 3rem;
  border: black solid 1px;
  border-radius: 5px;
  background: white;
  cursor: pointer;
  transition: 0.5s;
}

.ham:hover {
  transform: scale(1.05,1.05);
  background-color: rgb(255, 121, 72);;
}

.xIcon {
  display: none;
}

.menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  background: rgb(255, 121, 72);;
  color: white;
  transform: translateY(-100%);
  transition: transform 0.2s;
  list-style: none;
  padding-top: 4rem;
}

.showMenu {
  transform: translateY(0);
}

li {
  padding: 1rem 0;
}

.menuLink {
  display: inline;
  font-size: 2rem;
  color: white;
  text-decoration: none;
}

.menuLink:hover {
  text-decoration: underline;
}
/* end burger -----------------*/
  
.all-doc {
  max-width: 1414px;
  margin: 0 auto;
  background-color: rgb(239, 239, 239);
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.block-header {
  height: 150px;
  position: relative;
 }

 .nav-block {
   display: flex;
   justify-content: space-between;
   padding-top: 40px;
   padding-left: 30%;
   padding-right: 5%;
 }
 
 .nav__link:hover {
  margin-top: -2px;
  color:rgb(255, 121, 72);
  border-bottom:  2px solid rgb(255, 121, 72);

 }

 .page {
  padding: 5%;
  display: flex;
  justify-content: space-evenly;
}

.contacts,
.info {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-content: center;
}

.photo {
  width: 250px;
  position: relative;
  left: 12%;
  border-radius: 50%; 
  transition: 0.5s;
}

.photo:hover {
  transform: scale(1.05,1.05);
}

.contacts-name,
.contacts-list,
.info-block {
  margin-top: 30px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  background-color: white;
}

.contacts-name {
  background-color: rgb(255, 121, 72);
  align-items: center ;
  height: 240px;
  padding: 0;
}

.contacts-list{
  height: 580px;
  padding: 50px 10px;
  display: flex;
  justify-content: space-between;
  background-color: rgb(239, 239, 239);
}

.info-block__item {
  padding-left: 30px;
}

.in-to-hover:hover {
  color:  rgb(255, 121, 72);
}

.hr-size {
  border-bottom: 2px solid  rgb(118, 120, 127);;
  margin-left: 5%;
  margin-right: 5%;
}

.footer {
  height: 100px;
}

.footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-evenly;
}
.gitlnc {
  width: 50px;
}

.rsscool {
  width: 120px;
}