@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');



.oval {
  color: #063d4c;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 7px 16px;
  display: inline-block;
  
}

.w30 img{
width: 35%;
}
  .sponsors-row .sponsors-cell {
    border-bottom: 1px solid #ddd;
    border-right: none;
  }
}

body {
    font-size: 18px;
    font-family: 'Figtree', sans-serif;
}

p, table, .form-control {
  font-size: 18px;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* od tabletów w górę */
@media (min-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
}

/* iframe */
.videos-grid iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}
@media (min-width: 768px) {
    .videos-grid iframe:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        justify-self: center;
    }
}


.pricing {
  
  text-align: center;
  background: #fff;
  border: 1px solid #ecf0f1;
  border-radius: 60px;
}

.pricing__content {
  padding: 0px 15px;
  border-top: 1px solid #ecf0f1;
  border-bottom: 1px solid #ecf0f1;
  min-height: 10em;
}
body {
  background-color: #063D4C;
  color: #FFF;
}
.navbar-inverse {
  background: #063D4C;
  border-color: #080808;
}

@media (max-width: 768px) {
  .banner__slide {
    height: 200px;
  }
}

.banner__tint {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.speaker {
  margin-bottom: 50px;
  min-height: 350px;
}





.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
   
    padding: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item img {
    width: 74px;
    height: 74px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    object-fit: contain;
}

.feature-text h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
line-height: 1.1;
}

.feature-text p {
    margin: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.3;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}