@charset "UTF-8";
/* CSS Document */
.tango-offer {
  max-width: 100%;
  margin: 30px auto;
  padding: 30px;
  background: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 14px;
  line-height: 1.6;
}

.tango-offer h2 {
  color: #000;
  font-size: 20px;
  margin-bottom: 20px;
text-align: center;
}

.tango-offer h3 {
  color: #00000;
  margin-bottom: 10px;
}

.offer-box {
  background: #fff;
  border-left: 5px solid #c41e3a;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 8px;
}

.price {
  font-size: 32px;
  font-weight: bold;
  color: #d4a238;
  margin: 10px 0;
}

.price span {
  display: block;
  font-size: 16px;
  color: #1D1C1C;
  font-weight: normal;
}

.small {
  font-size: 14px;
  color:  #1D1C1C;
}

.course-data {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  margin: 20px 0;
}

.highlight {
  font-size: 20px;
  font-weight: bold;
  color: #d4a238;
}

.tango-offer ul {
  padding-left: 20px;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 24px;
  background: #c41e3a;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}

.button:hover {
  background: #a81830;
}

.course-data{
  display:flex;
  align-items:stretch;
  background:#2a2a2a;
  border-radius:10px;
  overflow:hidden;
  margin:25px 0;
  box-shadow:0 5px 18px rgba(0,0,0,.25);
  max-width:100%;
}

.course-photo{
  width:320px;
  max-width:40%;
  flex:0 0 320px;
}

.course-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.course-content{
  flex:1;
  padding:30px;
  color:#fff;
  min-width:0;
}

.course-content h3{
  color:#d4a238;
  margin-top:0;
  font-size:28px;
}

.course-content p{
  margin:18px 0;
  line-height:1.6;
}

.course-content strong{
  color:#d4a238;
}

/* NATEL */
@media screen and (max-width:768px){

  .tango-offer{
    padding:15px;
    margin:15px auto;
    width:100%;
    box-sizing:border-box;
  }

  .course-data{
    display:block;
    width:100%;
    margin:20px 0;
    box-sizing:border-box;
  }

  .course-photo{
    width:100%;
    max-width:100%;
    flex:none;
  }

  .course-photo img{
    width:100%;
    height:auto;
    max-height:260px;
    object-fit:cover;
  }

  .course-content{
    padding:18px;
    box-sizing:border-box;
  }

  .course-content h3{
    font-size:22px;
  }

  .price{
    font-size:26px;
  }
}