@import url('https://fonts.googleapis.com/css?family=Montserrat:100,300,400,700');
* {
margin: 0;
padding: 0;
}
body {
    font-family: 'Montserrat', sans-serif;
    margin: 20px;
    padding: 0;
    line-height: 1.6;
    height: 100%
}
.header {
    margin-top: 30px;
    text-align: center;
    margin-bottom: 20px;
}
.skills {
    width: 80%;
    margin: 20px 20px 20px 40px;
}
.services {
    margin-bottom: 20px;
}
.contact {
    text-align: center;
}
.highlight {
    font-weight: bold;
    color: #1a0dab;
}
.rightpic {
    justify-content: left;
    margin-bottom: 50px;
    border-radius: 10%;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.content {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 60vh;
}
.colum{
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 20px 20px 20px;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 5px 20px 50px rgba(16, 112, 177, 0.2);
    border-radius: 20px;
}
.colum_center{
    padding: 5px 32px 44px;
}

.img_box {
    width: 20%;
}
.post-content {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    height: 90%;
    overflow: auto;
}

.post-content img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}
h2 {
    font-size: 1.75rem;
}
p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.small-text {
  font-size: 12px;
}

.bot-button {
    padding: 20px;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

   .phone-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%; /* Делаем круг */
  background-color: #56bebe; /* Синий цвет */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s;
}

.phone-btn:hover {
    background-color: #1a5dc5;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(37, 117, 252, 0.5);
    animation: pulse 0.6s ease-in-out;

}

.phone-btn:active {
  transform: scale(0.95);
}

.phone-icon {
  font-size: 20px;
  color: white;
}

.bounce-left {
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    color: #56bebe;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding-right: 20px;
      /* Запускаем анимацию */
      animation: bounce-left 1.5s ease-in-out infinite;
    }

    @keyframes bounce-left {
      0% { transform: translateX(0px); opacity: 1; }
      50% { transform: translateX(15px); opacity: 1; }
      100% { transform: translateX(0); opacity: 1; }
    }


    .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  color: #333;
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none; /* Сначала скрыто */
  max-width: 100%;
  z-index: 1000;
}

.cookie-banner p {
  display: inline;
  margin-right: 20px;
}

.cookie-banner button {
  background: #007BFF;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-banner button:hover {
  background: #0056b3;
}




@media(max-width: 1024px) {
    h1 {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .post-content {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        overflow: auto;

    }
}

@media(max-width: 768px) {
    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .colum {
        max-width: 95%;
        margin-bottom: 5px;
        padding: 5px 5px 5px;
    }
    .img_box {
        justify-content: flex-start;
        width: 15%;
        margin: 10px 10px 10px 10px;
        display: flex;
        align-items: flex-start;
    }
    .rightpic {
        display: flex;
        border-radius: 100%;
        object-fit: contain;

}
    .skills {
        width: 100%;
        margin: 5px 3px 3px 5px;
    }
    h1 {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    p {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    .post-content {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        height: auto;
        overflow: auto;
    }
     .phone-btn {
    width: 50px;
    height: 50px;
  }
  .phone-icon {
    font-size: 20px;
  }
  .bounce-left {
      display: none;
    }
}
