/* add all custom and override css here */
/* by chuck 1/6/2022 */

/* Header Logo Image Override */
.logo img {
    width: 70%;
}
@media (max-width: 767px) {
    .logo {
        top: 3px;
    }
    .logo img {
        width: auto;
        height: 60px; 
    } 
}
/* END Header Logo Image Override */

/* sec title override */
.section-title h1 {
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1.5;
    letter-spacing: 7.2px;
    text-transform: uppercase; 
}
/* END sec title override */


/* Responsive iframe */
.iframe_container {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* padding-top: 56.25%;    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    /* padding-top: 75%;    /* 4:3 Aspect Ratio */
    /* padding-top: 66.66%; /* 3:2 Aspect Ratio */
    /* padding-top: 62.5%;  /* 8:5 Aspect Ratio */
    padding-top: 100%;   /* 1:1 Aspect Ratio */
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
/* END Responsive iframe */
