/*
Media queries were obtained from https://gist.github.com/gokulkrishh/242e68d1ee94ad05f488 and combined using https://css-tricks.com/logic-in-css-media-queries/

justify-self - horizontal
align-self - vertical
*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
}

a.nos {
    text-decoration: none;
    color: unset;
}

.atv-navbar, .top-container {
    margin-left: 7rem;
}

.atv-navbar {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.atv-navbar .atv-logo {
    grid-area: 1 / 1 / 2 / 2;
}
.atv-navbar .atv-logo img {
    width: 12rem;
    height: auto;
}

.atv-navbar .nav-container {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: right;
    margin-right: 7rem;
}

#navMenuItems .atv-nav-item {
    display: inline-block;
    text-align: center;
    margin-right: 10px;
    background-color: #fff;
    color: #480CA8;
    height: 2.5rem;
    padding-top: 7px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 15px;
    transition: .3s;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}
#navMenuItems .atv-nav-item:hover {
    background-color: #480CA8;
    color: #fff;
}

#nav-mobile {
    margin-right: 15px;
    padding: 10px;
    border-style: solid;
    border-radius: 15px;
    border-color: #240046;
    display: none;
}

#navMobileContainer {
    display: none;
    width: 100%;
    position: absolute;
    z-index: 99999;
    text-align: center;
    background-color: #fff;
}

#navMobileContainer .atv-nav-item {
    display: inline-block;
    text-align: center;
    width: 100%;
    background-color: #fff;
    color: #480CA8;
    height: 2.5rem;
    padding-top: 7px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 15px;
    transition: .3s;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}
#navMobileContainer .atv-nav-item:hover {
    background-color: #480CA8;
    color: #fff;
}

.top-container {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
    
.tc-left {
    grid-area: 1 / 1 / 2 / 2;
}
.tc-right {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: right;
    margin-right: 10rem;
}

.top-container .atv-title {
    font-weight: bold;
    width: 30rem;
    font-size: 3rem;
}
.top-container .atv-p {
    width: 40rem;
    font-size: 18px;
}

.streaming-service-logo {
    max-width: 8.5rem;
    border-radius: 34px;
    background: #e0e0e0;
    box-shadow:  20px 20px 60px #bebebe,
                -20px -20px 60px #ffffff;
    padding: 2rem;
    text-align: center;
}
.streaming-service-logo img {
    width: 5rem;
    height: auto;
}

#streaming-logo-osn {
    margin-left: 10rem;
    margin-top: 2rem;
}
#streaming-logo-bein {
    margin-left: 20rem;
    margin-top: -18rem;
    height: 7rem;
}

.featured-btn {
    margin-top: 15px;
    background-color: #480CA8;
    border-radius: 5px;
    border-style: solid;
    border-color: #480CA8;
    color: #fff;
    height: 3.2rem;
    width: 12rem;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 8px;
    transition: .3s;
    font-weight: bold;
}
.featured-btn:hover {
    background-color: #fff;
    color: #480CA8;
}

.unfeatured-btn {
    margin-left: 10px;
    background-color: #fff;
    border-radius: 5px;
    border-style: solid;
    border-color: #480CA8;
    color: #480CA8;
    height: 3.2rem;
    width: 12rem;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 8px;
    transition: .3s;
    font-weight: bold;
    margin-top: 10px;
}
.unfeatured-btn:hover {
    background-color: #480CA8;
    color: #fff;
}

.statsContainer {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    color: #5A189A;
}

.stats1 {
    grid-area: 1 / 1 / 2 / 2;
}
.stats2 {
    grid-area: 1 / 2 / 2 / 3;
}
.stats3 {
    grid-area: 1 / 3 / 2 / 4;
}

.statsItem {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    font-size: 20px;
}   
.statsIcon { grid-area: 1 / 1 / 2 / 2; font-weight: bolder; }
.statsText { grid-area: 1 / 2 / 2 / 3; }

hr.dashed {
    border-top: 3px dashed #bbb;
}
hr.solid {
    border-top: 3px solid #bbb;
}

.contentinfo-container {
    margin-top: 3rem;
    text-align: center;
}
.content-service-logo {
    width: 5rem;
    height: auto;
    margin-right: 35px;
}

.whyus-container {
    padding: 2rem;
    background-color: #F1F3FA;
    text-align: center;
}

#whyusHeader {
    width: 30rem;
    margin: 0 auto;
}

.features-container {
    margin-top: -5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.featuresText {
    grid-area: 1 / 1 / 2 / 2;
    margin-top: 1.5rem;
    align-self: center;
    justify-self: center;
}
.featuresArt {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: right;
    margin-right: 4rem;
}

.checkmarkContainer {
    display: grid;
    grid-template-columns: 1fr 10fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.checkmarkIcon { grid-area: 1 / 1 / 2 / 2; }
.checkmarkText { grid-area: 1 / 2 / 2 / 3; text-align: left; }

.pricing-container {
    margin-top: 2rem;
    text-align: center;
}

.section-title {
    background: #2414FF;
    background: linear-gradient(to right, #2414FF 0%, #8608CF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 2.3rem;
}

.pricingPlansContainer {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    text-align: center;
}

.pricingPlan1 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: right;
}
.pricingPlan2 {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: center;
}
.pricingPlan3 {
    grid-area: 1 / 3 / 2 / 4;
    justify-self: left;
}

.pricingPlan {
    border-radius: 15px;
    border-style: solid;
    border-width: thin;
    border-color: #480CA8;
    width: 20rem;
}

.pricingPlanTitle {
    background: #2414FF;
    background: linear-gradient(to right, #2414FF 0%, #8608CF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 1.3rem;
}

.comesWithText {
    background: #2414FF;
    background: linear-gradient(to right, #2414FF 0%, #8608CF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 1rem;
}

.featured-sub-btn {
    margin-top: 15px;
    background-color: #480CA8;
    border-radius: 5px;
    border-style: solid;
    border-color: #480CA8;
    color: #fff;
    height: 3.2rem;
    width: 12rem;
    padding-left: 15px;
    padding-right: 15px;
    transition: .3s;
    font-weight: bold;
    margin-bottom: 20px;
}
.featured-sub-btn:hover {
    background-color: #fff;
    color: #480CA8;
}

.unfeatured-sub-btn {
    margin-left: 10px;
    background-color: #fff;
    border-radius: 5px;
    border-style: solid;
    border-color: #480CA8;
    color: #480CA8;
    height: 3.2rem;
    width: 12rem;
    padding-left: 15px;
    padding-right: 15px;
    transition: .3s;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
}
.unfeatured-sub-btn:hover {
    background-color: #480CA8;
    color: #fff;
}

.pricingPlanHeader {
    padding: 1.2rem;
    border-top-width: thin;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #F1F3FA;
}

.pricingPlanTitleFeatured {
    background: #A7CFDF;
    background: linear-gradient(to right, #A7CFDF 0%, #4199FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 2.2rem;
}

.pricingPlanHeaderFeatured {
    color: #fff;
    padding: 1.2rem;
    border-top-width: thin;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-color: #5A189A;
}

.pricingPlanContent {
    padding: 1.5rem;
    text-align: left;
}

.faq-container {
    margin-top: 4rem;
    text-align: center;
}

#faqAccordion {
    margin-top: 2rem;
    margin-left: 10rem;
    margin-right: 10rem;
}

#guideAccordion {
    margin-left: 10rem;
    margin-right: 10rem;
}

#faqAccordion .accordion-item {
    margin-bottom: 15px;
}

#faqAccordion .accordion-button {
    font-weight: bolder;
}

.support-container {
    margin-top: 4rem;
    text-align: center;
    margin-right: 15rem;
    margin-left: 15rem;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 0px;
}
.support-channels-left {
    grid-area: 1 / 1 / 2 / 2;
}
.support-channels-right {
    grid-area: 1 / 2 / 2 / 3;
}

.supportChannelBtn {
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #F1F3FA;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.supportChannelBtnIcon {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: left;
    align-self: center;
}
.supportChannelBtnText {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: left;
    margin-left: 10px;
}

.supportChannelBtnText h4 {
    text-align: left;
}

.atv-footer {
    position: relative;
    width: 100%;
    bottom: 0;
    color: #fff;
    padding: 2rem;
    margin-top: 4rem;
    background-color: #240046;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
    
.atv-footer-left {
    grid-area: 1 / 1 / 2 / 2;
}
.atv-footer-right {
    grid-area: 1 / 2 / 2 / 3;
}

.atv-footer-logo {
    width: 12rem;
    height: auto;
}

.footerLinksContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 0px;
    text-align: center;
}

.flinks1 {
    grid-area: 1 / 1 / 2 / 2;
}
.flinks2 {
    grid-area: 1 / 2 / 2 / 3;
}
.flinks3 {
    grid-area: 1 / 3 / 2 / 4;
}

.flinks1 p {
    margin-bottom: 0.4rem;
}
.flinks2 p {
    margin-bottom: 0.4rem;
}
.flinks3 p {
    margin-bottom: 0.4rem;
}

.footer-text {
    width: 24rem;
}

.flinksTitle {
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 20px;
}

.footerLinksContainer a {
    color: #fff;
    text-decoration: none;
}

.sales-pop {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: #333;
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #480CA8;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.5s ease;
}

.sales-pop strong {
    color: #480CA8;
    font-weight: bold;
}


.getTrial-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 15px;
    margin-left: 10rem;
    margin-right: 10rem;
    border: 1px solid rgba(15, 20, 30, 0.1);
    border-radius: 10px;
    margin-top: 2rem;
    border-top: 9px solid #480CA8;
}
.getTrialText {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: left;
}
.getTrialAction {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: right;
}

.cordcutters-container {
    padding: 2rem;
    background-color: #F1F3FA;
    text-align: center;
}
#cordcuttersHeader {
    width: 30rem;
    margin: 0 auto;
}
.whycutcords-container {
    margin-top: -5rem;
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.whycutcordsText {
    grid-area: 1 / 2 / 2 / 3;
    margin-top: 1.5rem;
    align-self: center;
    justify-self: center;
}
.whycutcordsArt {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: left;
    margin-left: 4rem;
}

.ux__purple_scissors {
    width: 20rem;
    height: auto;
}

.accepted__icons {
    margin-bottom: 15px;
}
.accepted__icons .iconify {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.installationGuideDevicesContainer {
    display: grid;
    grid-template-columns: max-content max-content;
    grid-template-rows: max-content max-content;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: center;
}
.installationGDevice1 {
    grid-area: 1 / 1 / 2 / 2;
}
.installationGDevice2 {
    grid-area: 1 / 2 / 2 / 3;
}
.installationGDevice3 {
    grid-area: 2 / 1 / 3 / 2;
}
.installationGDevice4 {
    grid-area: 2 / 2 / 3 / 3;
}
.gDeviceTitle {
    width: 64px;
    height: auto;
}

#google_reviews {
    text-align: center;
}
.google_reviews_review {
    margin-left: 15px;
    height: 12rem;
}
.googleReviewInfo {
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 15px;
}
.googleReviewReviewStars {
    grid-area: 1 / 2 / 2 / 3;
    align-self: center;
    justify-self: right;
    margin-right: 10px;
}
.googleReviewReviewerImg {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
}
.googleReviewReviewerImg .reviewerNameImg {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-left: 10px;
}
.googleReviewsHeader {
    text-align: left;
    margin-left: 15px;
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.googleReviewsHeaderInfo {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
}
.googleReviewsHeaderAction {
    grid-area: 1 / 2 / 2 / 3;
    align-self: center;
    justify-self: end;
}

@media only screen and (max-width : 320px),
only screen and (max-width : 768px),
only screen and (max-width : 200px) {

    .atv-navbar, .top-container {
        margin-left: 0px;
    }

    .top-container {
        margin-left: 15px;
        margin-right: 15px;
    }

    .atv-navbar .atv-logo {
        margin-left: 15px;
    }

    .atv-navbar .nav-container {
        margin-right: 0px;
    }

    #nav-mobile {
        display: block;
    }

    #navMenuItems {
        display: none;
    }

    .top-container {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: max-content;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }

    .tc-left {
        grid-area: 1 / 1 / 2 / 2;
    }

    .tc-right {
        grid-area: 2 / 1 / 3 / 2;
        justify-self: center;
        margin-top: 7rem;
        margin-right: 0px;
    }

    .streaming-service-logo {
        max-width: 6rem;
    }

    .streaming-service-logo img {
        width: 2.5rem;
        height: auto;
    }

    #streaming-logo-bein {
        height: 5.5rem;
        margin-left: 10rem;
        margin-top: -16rem;
    }

    #streaming-logo-osn {
        margin-left: 7rem;
    }

    .top-container .atv-title {
        text-align: center;
        width: 100%;
    }

    .top-container .atv-p {
        text-align: center;
        width: 100%;
    }

    .featured-btn {
        border-radius: 0px;
        margin-left: 5px;
        margin-right: 5px;
        width: 100%;
    }
    
    .unfeatured-btn {
        display: block;
        border-radius: 0px;
        margin-left: 5px;
        margin-right: 5px;
        width: 100%;
    }

    .statsContainer {
        text-align: center;
    }

    .statsText {
        font-size: 18px;
    }

    .content-service-logo {
        width: 3rem;
    }

    .whyus-container {
        text-align: left;
    }
    
    .features-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: max-content;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }
        
    .featuresText {
        grid-area: 1 / 1 / 2 / 2;
        justify-self: normal;
        align-self: normal;
    }
    .featuresArt {
        justify-self: center;
        grid-area: 2 / 1 / 3 / 2;
        margin-right: 0px;
    }

    #whyusHeader {
        width: fit-content;
        margin-bottom: 5rem;
    }

    .pricingPlansContainer {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: max-content;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }
    
    .pricingPlan1 {
        grid-area: 1 / 1 / 2 / 2;
        justify-self: center;
        margin-bottom: 2rem;
    }
    
    .pricingPlan2 {
        grid-area: 2 / 1 / 3 / 2;
        justify-self: center;
        margin-bottom: 2rem;
    }
    
    .pricingPlan3 {
        grid-area: 3 / 1 / 4 / 2;
        justify-self: center;
    }

    #faqAccordion {
        margin-left: 0px;
        margin-right: 0px;
    }

    #guideAccordion {
        margin-left: 0px;
        margin-right: 0px;
    }

    .support-container {
        margin-left: 0px;
        margin-right: 0px;
    }

    .support-channels {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 15px;
    }
    .support-channels-left {
        grid-area: 1 / 1 / 2 / 2;
    }
    .support-channels-right {
        grid-area: 2 / 1 / 3 / 2;
    }

    .atv-footer {
        margin-top: 0px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: max-content;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        text-align: center;
    }
    
    .atv-footer-left {
        grid-area: 1 / 1 / 2 / 2;
    }
    
    .atv-footer-right {
        grid-area: 2 / 1 / 3 / 2;
    }

    .footerLinksContainer {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: max-content;
        grid-column-gap: 0px;
        grid-row-gap: 15px;
    }
    
    .flinks1 {
        grid-area: 1 / 1 / 2 / 2;
    }
    
    .flinks2 {
        grid-area: 2 / 1 / 3 / 2;
    }
    
    .flinks3 {
        grid-area: 3 / 1 / 4 / 2;
    }

    .footer-text {
        width: fit-content;
        text-align: center;
    }

    .getTrial-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: max-content;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        margin-left: 0px;
        margin-right: 0px;
    }
        
    .getTrialText {
        grid-area: 1 / 1 / 2 / 2;
        justify-self: center;
    }
    .getTrialAction {
        grid-area: 2 / 1 / 3 / 2;
        justify-self: center;
    }

    .cordcutters-container {
        text-align: left;
    }
    #cordcuttersHeader {
        width: fit-content;
        margin-bottom: 5rem;
    }

    .whycutcords-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: max-content;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    } 
    .whycutcordsText {
        grid-area: 2 / 1 / 3 / 2;
        justify-self: normal;
        align-self: normal;
    }
    .whycutcordsArt {
        justify-self: center;
        grid-area: 1 / 1 / 2 / 2;
        margin-left: 0px;
    }

    .ux__purple_scissors {
        width: 100%;
        height: auto;
    }

    .installationGuideDevicesContainer {
        display: grid;
        grid-template-columns: max-content;
        grid-template-rows: max-content max-content max-content max-content;
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }
    .installationGDevice1 {
        grid-area: 1 / 1 / 2 / 2;
    }
    .installationGDevice2 {
        grid-area: 2 / 1 / 3 / 2;
    }
    .installationGDevice3 {
        grid-area: 3 / 1 / 4 / 2;
    }
    .installationGDevice4 {
        grid-area: 4 / 1 / 5 / 2;
    }

    .googleReviewsHeader {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }
    .googleReviewsHeaderInfo {
        grid-area: 1 / 1 / 2 / 2;
    }
    .googleReviewsHeaderAction {
        grid-area: 2 / 1 / 3 / 2;
        justify-self: center;
    }
    .googleReviewsHeaderAction button {
        width: 100%;
    }

    .googleReviewInfo {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
    }
    .googleReviewReviewerImg {
        grid-area: 1 / 1 / 2 / 2;
    }
    .googleReviewReviewerImg .reviewerNameImg {
        margin-left: 0px;
    }
    .googleReviewReviewStars {
        grid-area: 2 / 1 / 3 / 2;
        justify-self: center;
    }
    
}