@charset "UTF-8";
/* This is a CSS file */

@import url(./index.css);

.headerLogo {
    height: 8rem;
}

.headerLogo img {
    height: 4.5rem;
    padding: 1.25rem 1rem 1rem 1rem;
}

.portgal {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.portgalitems {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.portgal video, .portgal img{
    object-fit: contain;
    height: auto;
    width: 100%;
}

#video1 {
    object-position: 0 -2px;
}

#prototype {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    
}

#prototype > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

#iframeboxing1, #iframeboxing2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 48%;
}

.alignknap {
    justify-content: center;
}

.video {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.video > div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* responsive iframe */
.containeriframe {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    display: flex;
    flex-direction: column;
  }

#conaieriframe1 {
    padding-top: 150%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    max-width: 25rem;
    gap: 5rem;
}
  
/* Then style the iframe to fit in the container div with full height and width - from W3school */
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.containeriframe > p {
    line-height: 2rem;
}


.CTA1 {
    padding: 0.25rem 1rem 0.25rem 1rem;
}

/* Individual video/image settings */
.portgalitems:nth-child(5) > h2 {
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
}

  /* Sections MQ's */
@media screen and (min-width: 768px) {
    .headerLogo {
      padding-top: 4rem;
      height: 4rem;
      margin-bottom: 0;
    }

    .headerLogo img {
        display: none;
    }
}

@media screen and (orientation: landscape) and (max-width: 768px) {
    .headerLogo img {
    margin-top: 0rem;
    }
}