/* ----------------------- main.css ----------------------- */
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: "Euclid Circular A", Arial, Sans-serif;
    scroll-behavior: smooth
}

*{                              
    margin: 0;
    padding: 0;                  
    box-sizing: border-box;
}  

*,:after,:before,html {
    box-sizing: border-box
}

body {
    
    width: 100%
}

body {
    font-family: "Euclid Circular A", Arial, Sans-serif;    
    margin: 0;
    overflow-x:hidden; 
}

article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,div,section,summary {
    display: block
}

a {
    font-weight: 500;
    -webkit-text-decoration: none;
    text-decoration: none;
    color: #282f2e   
}

a:hover {
    color: #057aff   
}

a.dark {
    color: #057aff  
}

a.dark:hover {
    color: #383838  
}

a.bold {
    font-weight: 700
}

a {
    background-color: transparent;   
}

a:active,a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub {
    vertical-align: baseline
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative
}

img {
    border-radius: 7px;
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

.heading-1,h1 {
    font-size: 45px;
    letter-spacing: .5px
} 

.heading-2,h2 {
    font-size: 39px;
    letter-spacing: .5px
}

.heading-3,h3 {
    font-size: 32px;
    letter-spacing: .5px
}

.heading-4,h4 {
    font-size: 28px
}

.heading-5,h5 {
    font-size: 24px
}

.heading-6,h6 {
    font-size: 20px
}

.heading-1,.heading-2,.heading-3,.heading-4,.heading-5,.heading-6,h1,h2,h3,h4,h5,h6 {
    font-family: "Euclid Circular A", Arial, Sans-serif;                       
    font-weight: 700;
    margin-bottom: .6em;
    margin-top: .6em
}

.heading-1 a,.heading-2 a,.heading-3 a,.heading-4 a,.heading-5 a,.heading-6 a,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {
    color: inherit;    
    font-weight: 700
} 

.border-left {
    border-left: 1px solid #d7d7d9
} 

.nav-placeholder {
    height: 75px;           
}

.logo {
    display: ;
    min-width:;
    max-width:;
}

 ul{
    list-style: none;
    font-family: Comic Sans MS;
}

.navbar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 2;
}
.navbar, .buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
}
.brand{
    font-weight: bolder;
    font-size: 1.2em;           
    color: #04aa6d;            
    font-family: Comic Sans MS;
}
.brand:hover{
    font-weight: bolder;
    color: #428aff;
}
 
 button{
    border: none;
    transition: 0.3s;
    cursor: pointer;
}

.btn{
    
    background: #428aff;
    padding: 0.5em 1.3em;
    border-radius: 16px;
    color: #fff;
}

.btn:hover{
    background: #3877db;
}

.menu-btn{
    margin-left: 1em;
    background: none;
    display: inline-block;
}

.menu-btn span{
    font-size: 2.3em;
}

.dropdown > div, .sub-dropdown > div {
    cursor: pointer;
}

.dropdown .menu a:hover{
    color: #e90606;        
}

@media screen and (min-width: 1025px) {
    .navbar{
        padding: 0 1.5em;
    }
    .dropdown > div{
        padding: 1.5em 1em;
    }
    .mega-menu{
        display: flex;
        justify-content: center;
    }
    .menu-btn{
        display: none;
    }
    .menu{
        background: #fff; 
        position: absolute;
        top: 4.65em;
        left: 0;
        width: 100%;
        padding: 0 2em;
        overflow-y: scroll;
        transition: 0.4s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 2em;
    }

    .menu > li:first-child{
        margin: 0;
    }

    .sub-dropdown > div span:first-child{
        font-weight: bold;
    }
    
    .dropdown > div{
        border-bottom: 2px #ffffff solid; 
        transition: 0.3s;
    }

    .dropdown:hover > div{
        border-color: #04aa6d;            /
    }

    .dropdown li{
        margin-bottom: 1em;
    }

    .dropdown > div span:last-child, 
    .sub-dropdown > div{
        display: none;
    }

    .menu::-webkit-scrollbar{
        width: 18px;
    }
    
    .menu::-webkit-scrollbar-track{
        background: #f1f1f1;
    }
    
    .menu::-webkit-scrollbar-thumb{
        background: #888;
    }

    .menu::-webkit-scrollbar-thumb:hover{
        background: #555;
    }

    .menu{
        height: 0;
    }
        
    .dropdown:hover .menu{
        height: auto;      
        padding: 2em;      
    }
}


@media screen and (max-width: 1025px) {
    .navbar{
        padding: 1em 1.5em;
    }
    .menu-container{
        background: #ffffff; 
        position: absolute;
        top: 4.4em;
        left: 0;
        width: auto;
        overflow-y: hidden;
        transition: 0.3s ease-in-out;
    }

    .mega-menu::-webkit-scrollbar{
        width: 8px;
    }
        
    .mega-menu::-webkit-scrollbar-track{
        background: #f1f1f1;     
    }
    
    .mega-menu::-webkit-scrollbar-thumb{
        background: #f888;     
    }
   
    .mega-menu::-webkit-scrollbar-thumb:hover{
        background: #555;
    }
        
    .mega-menu{
        padding: 0 1em 1em 1em;
        height: 100%;
        overflow-y: scroll;
    }
    .mega-menu li{
        font-family: "Roboto",sans-serif;
        font-weight: bold;
        font-size: 1em;
    }
    .mega-menu li > div{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5em;
    }
    .menu li{
        padding: 0 1em;
        font-size: 1em;
        font-weight: 400;
    }
    .menu a{
        display: block;
        margin: 0.7em 0; 
                            
    }
    .menu{
        display: none;
    }
    .mega-dec {

    }
    
    .menu-show{
        display: block;
    }
    .material-symbols-outlined{
        transition: 0.3s;
    }
    
    .icon-rotated{
        transform: rotate(90deg);
    }
    .dropdown>div, .sub-dropdown > div{
        cursor: pointer;
        padding: 0.5em;
    }
    .sub-menu{
        font-size: 0.9em;
        display: none;
    }
    
    .sub-menu-show{
        display: block;
    }
    .dropdown:hover>div, .sub-dropdown:hover>div{
        background: #dbdbdb;
    }
    
    .menu-container{
        height: 0;
    }
    
    .mega-menu-show{
        height: 50vh;
    }
}
.main {
    background: #fff;  
    box-shadow: none;
    margin: 20px auto 4px;     
    max-width: 1260px;
    width: 100%
}

@media(min-width: 768px) {
    .main {
        margin:40px auto 4px;
        padding: 0 20px 24px
    }
}

.start {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  background-color: #fff;
  height: 35px;
  margin-bottom: 30px; margin-top: 0px;         
  text-align: center;
}

.title_home {           
  overflow: hidden;    
  font-weight: bolder;
  font-size: 1.2em;    
  font-family: Comic Sans MS;   
  color: #04aa6d;
}

.title_home:before,
.title_home:after {
  content: '';
  display: inline-block;   
  vertical-align: middle;    
  box-sizing: border-box;    
  width: 100%;          
  height: 1px;
  background: #08aa6e;
  border: solid #FFF;    
  border-width: 0 10px;
}

.title_home:before {
  margin-left: -100%;  
}

.title_home:after {
  margin-right: -100%;  
}                   

.main .headline {
    align-items: baseline;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

@media(min-width: 768px) {
    .main .headline {
        align-items:inherit;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start
    }
}

.main .headline h1 {
    border-bottom: 3px solid rgba(0,0,0,.102);
    color: #010334; 
    display: inline-flex;
    font-family:"Euclid Circular A", Arial, Sans-serif;             
    font-size: 36px;
    font-weight: 500;
    letter-spacing: .55px;
    line-height: 1.08;
    margin: 5px 15px;
    padding: 0 0 10px;
    text-transform: uppercase
}

@media(min-width: 768px) {
    .main .headline h1 {
        border-bottom:none;
        flex: auto 0;
        font-size: 52px;                   
        padding: 0 10px 0 0
    }
}

.main .top-tags {
    display: none
}

@media(min-width: 768px) {
    .main .top-tags {
        border-bottom:1px solid rgba(0,0,0,.1);
        display: flex;
        flex-basis: 100%;
        font-family: "Euclid Circular A", Arial, Sans-serif;        
        font-size: 16px;
        justify-content: flex-start;
        letter-spacing: .17px;
        margin: 10px 0 0;
        padding-bottom: 1px;
        text-align: center;
        /*text-transform: uppercase*/
    }

    .main .top-tags span {
        margin: 0 20px 0 0
    }

    .main .top-tags a {
        color: #000;
        -webkit-text-decoration: none;
        text-decoration: none
    }
}  

.main .headline-underline {
    border-bottom: 1px solid rgba(0,0,0,.1);
    display: block;
    height: 1px;
    margin: -1px 10px 0 15px
}

@media(min-width: 768px) {
    .headline-underline {
        display:none
    }
} 

.main .latest {
    padding-top: 20px
}

@media(min-width: 768px) {
    .main .latest {
        padding-top:0
    }
}

.main .latest .latest_primary {
    display: block;
    margin: 10px 0 20px
}

@media(min-width: 1024px) {
    .main .latest .latest_primary {
        grid-column-gap:20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        display: grid;
        grid-template-columns: 1fr 300px
    }
}

.main .latest .latest_primary .left .vertical-image .image {
    background-color: #fff
}

.main .latest .latest_primary .left .vertical-image .image img {
    left: 0;
    margin: auto;
    right: 0;
    width: auto
}

@media(min-width: 768px) {
    .main .latest .latest_primary .left .image {
        padding-bottom:56.25%
    }

    .main .latest .latest_primary .left .text {
        margin: 10px 0 0
    }
}

.image-wrapper {
    margin: 0
}

@media(max-width: 768px) {
    .image-top {
        margin: 0 20px;
    }
}

@media(max-width: 768px) {
    .image_credit {
        margin-right: 20px; 
    }
}

.image_credit {       
    color: #6e6e6e;
    font-size: 10px;
    font-weight: 400;
    margin-top: 4px;
    /*margin-right: 4px;*/    
    text-align: right;
    /*visibility: hidden;*/
}

.main .latest .latest_primary .left .text .headline {
    font-size: 24px
}

@media(min-width: 768px) {
    .main .latest .latest_primary .left .text .headline {
        font-size:36px;
        font-weight: 600
    }
}

.title-text {                             
    letter-spacing: .03125rem;
    font-size: 1.0625rem;
    font-family: "Euclid Circular A", Arial, Sans-serif;
    font-weight: 600
}

.article-menu-box {
   display: flex; 
   column-gap: 1rem;
   justify-content: space-between;

}

@media (min-width: 768px) {
  .article-menu-box {
    justify-content: flex-start;
  }
}

.article-menu {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    align-items: center;
    margin-left: 4px
}

.article-menu-item {
    font-size: small;
    line-height: 1.25rem;
    font-weight: 800;
}

.article-menu-item:hover{
    color: red;
}

.article-menu-item-p {
    font-size: small;
    line-height: 1.25rem;
    font-weight: 800;
    color: #04aa6d
}

.article-content {  
    display: flex;
    flex-direction: column;
    column-gap: 1.75rem;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem
}

.article-text {  
    align-self: baseline;
    line-height: 1.75rem;
    letter-spacing: .03125rem;
    font-size: 1.0625rem;
    font-family: "Euclid Circular A", Arial, Sans-serif;
    margin: 0 5px;
}

.article-content a:hover{
    color: #e90606;        
}

@media (min-width: 1024px) {
  .article-text {
    padding-right: 3.5rem;
    padding-left:  6.5rem
  }
}

.main .latest .latest_secondary {
    display: block
}

@media(min-width: 768px) {
    .main .latest .latest_secondary {
        grid-column-gap:20px;
        grid-row-gap: 0;
        display: grid;
        grid-template-columns: repeat(3,1fr);
        grid-template-rows: 1fr
    }
}

@media(min-width: 1024px) {
    .main .latest .latest_secondary {
        grid-template-columns:repeat(3,1fr) 300px
    }
}

.main .latest .latest_secondary .left .headline {
    font-size: 24px
}

@media(min-width: 768px) {
    .main .latest .latest_secondary .left .headline {
        font-size:22px;
        line-height: 24px
    }
}

.main .latest .left {
    margin: 0 0 25px
}

@media(min-width: 768px) {
    .main .latest .left {
        margin:0
    }
}

.main .latest .left .headline {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    color: #000;
    display: -webkit-box;
    font-family: "Euclid Circular A", Arial, Sans-serif;            
    font-weight: 700;
    letter-spacing: .25px;
    margin: 15px 0 10px;
    overflow: hidden;
    text-overflow: ellipsis
}

@media(min-width: 768px) {
    .main .latest .left .headline {
        margin:10px 0 8px
    }
}

.main .latest .left .text {
    display: flex;
    flex-direction: column;
    margin: 0 20px
}

@media(min-width: 768px) {
    .main .latest .left .text {
        margin:0
    }
}

.main .latest .left .summary {
    display: none
}

.main .latest .left .byline {
    color: #6d7278;
    font-family: "Euclid Circular A", Arial, Sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .17px;
    text-transform: uppercase
}

.byline-child-top {
    background-color: #ccffe1;
    border-radius: 2px;
    /*padding: 8px 12px;*/
    font-size: 13px;
}

.byline-child {
    background-color: #ccffe1;
    border-radius: 2px;
    /*padding: 8px 12px;*/
    font-size: 13px;
}

@media(min-width: 768px) {
    .main .latest .left .byline {
        font-weight:400;
        margin: 8px 12px 8px 0
    }
}

.main .latest .left .image {
    background-color: #fff;
    line-height: 0;
    max-width: 100%;
    padding-bottom: 66%;
    position: relative
}

.main .latest .left .image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%
} 

.desktop-only {
    display: none
}

@media(min-width: 1024px) {
    .desktop-only {
        display:block
    }
} 

.main .article {
    display: flex;
    flex-direction: column-reverse
}

@media screen and (min-width: 920px) {
    .main .article {
        grid-column-gap:20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        display: grid;
        grid-template-columns: 1fr 300px;
        margin: 5rem auto
    }
}

@media screen and (max-width: 767px) {
    .main .article .article_left-wrapper {
        margin:0 20px
    }
}

@media screen and (min-width: 920px) {
    .main .article .article_left-wrapper {
        margin:0 70px 0 0;
        min-width: 870px
    }
}

.main .article .article_left-wrapper .article_title-more {
    font-family: "Euclid Circular A", Arial, Sans-serif;      
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .38px;
    margin: 0 0 15px;
    text-align: center
}

@media(min-width: 768px) {
    .main .article .article_left-wrapper .article_title-more {
        font-size:36px;
        text-align: left
    }
}

.main .article .article_left-wrapper .article_title-more span {
    color: #04aa6d;              
    text-transform: capitalize
}

.article_title-more-child {
    font-weight: bolder;
    font-size: 1em;
    color: #04aa6d;           
    font-family: Comic Sans MS;
}

.main .artcle .article_left-wrapper .article_left {
    border-top: 1px solid #979797;
    padding-top: 10px;
    width: 100%
}

.main .article .article_left-wrapper .article_left .left.hidden {
    display: none
}

.main .article .article_left-wrapper .article_left .left:first-child a {
    border-top: initial
}

.main .article .article_left-wrapper .article_left .left a {
    border-top: 1px solid #ddd;
    color: inherit;
    display: flex;
    padding: 15px 0
}

@media(min-width: 768px) {
    .main .article .article_left-wrapper .article_left .left a {
        grid-column-gap:20px;
        align-items: center;
        -moz-column-gap: 20px;
        column-gap: 20px;
        display: grid;
        grid-template-columns: 5fr 12fr;
        justify-content: center;
        min-height: 190px
    }
}

.main .article .article_left-wrapper .article_left .left a .image-wrapper {
    position: relative
}

.main .article .article_left-wrapper .article_left .left a .image-wrapper .image {
    background-color: #eee;
    position: relative
}

@media(min-width: 768px) {
    .main .article .article_left-wrapper .article_left .left a .image-wrapper .image {
        padding-bottom:66%
    }
}

.main .article .article_left-wrapper .article_left .left a .image-wrapper .image img {
    display: block;
    height: 86px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 86px
}

@media(min-width: 768px) {
    .main .article .article_left-wrapper .article_left .left a .image-wrapper .image img {
        height:100%;
        position: absolute;
        width: 100%
    }
}

.main .article .article_left-wrapper .article_left .left a .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 0 0 15px
}

@media(min-width: 768px) {
    .main .article .article_left-wrapper .article_left .left a .text {
        align-items:inherit;
        display: grid;
        grid-template-columns: none;
        height: 100%;
        margin: 0 0 0 5px
    }
}

.main .article .article_left-wrapper .article_left .left a .text h2.headline {
    font-size: 1rem;
    font-weight: 700;
    margin: 0
}

@media(max-width: 759px) {
    .main .article .article_left-wrapper .article_left .left a .text h2.headline {
        -webkit-box-orient:vertical;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

@media(min-width: 768px) {
    .main .article .article_left-wrapper .article_left .left a .text h2.headline {
        font-size:1.25rem;
        padding-right: 0
    }
}

.main .article .article_left-wrapper .article_left .left a .text h3.summary {
    display: none
}

@media(min-width: 768px) {
    .main .article .article_left-wrapper .article_left .left a .text h3.summary {
        -webkit-box-orient:vertical;
        -webkit-line-clamp: 2;
        color: #4d4d4d;
        display: -webkit-box;
        font-family: "Euclid Circular A", Arial, Sans-serif;
        font-size: 16px;
        font-weight: inherit;
        letter-spacing: .03125rem; /* letter-spacing: .17px; */
        margin-top: -10px;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

.main .article .article_left-wrapper .article_left .left a .text h3.summary a {
    font-weight: 400
}

.main .article .article_left-wrapper .article_left .left a .text .byline {
    font-family: "Euclid Circular A", Arial, Sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13px;
    margin-bottom: 5px
}

.main .article .article_left-wrapper .article_left .left a .text .byline span:first-child {
    color: inherit
}

.main .article .article_left-wrapper .article_left .left a .text .byline span {
    color: #da291c
}

.main .article .article_left-wrapper .article_load-more {
    display: flex;
    justify-content: center
}

.main .article .article_left-wrapper .article_load-more .article_load-more-button {
    background: #fff;
    border: 2px solid #000;
    border-radius: 3px;
    font-family: "Euclid Circular A", Arial, Sans-serif;
    font-size: 12px;
    font-weight: 900;
    height: 40px;
    margin-top: 40px;
    text-transform: uppercase;
    width: 221px
}

.main .article .article_left-wrapper .article_load-more .article_load-more-button.hidden {
    display: none
}

.main .article .article_left-wrapper .article_pages {
    align-items: center;
    display: flex;
    font-family: "Euclid Circular A", Arial, Sans-serif;
    font-size: 14px;
    justify-content: center;
    line-height: 1;
    margin-top: 40px
}

.main .article .article_left-wrapper .article_pages a,.main .article .article_left-wrapper .article_pages span {
    margin: 0 10px
}

.main .article .article_left-wrapper .article_pages a.current,.main .article .article_left-wrapper .article_pages span.current {
    color: #282f2f;
    font-weight: 700
}

.main .article .article_left-wrapper .article_pages .next svg,.main .article .article_left-wrapper .article_pages .prev svg {
    outline: none;
    position: relative;
    top: 1px
}

.main .article .article_left-wrapper .article_pages .next svg polygon,.main .article .article_left-wrapper .article_pages .prev svg polygon {
    fill: #e90606
}

@media(min-width: 768px) {
    .main .article .article_left-wrapper .article_pages {
        font-size:16px
    }

    .main .article .article_left-wrapper .article_pages a,.main .article .article_left-wrapper .article_pages span {
        margin: 0 12px
    }
}

.main .article_author .byline span:first-child {
    display: none
}

.ad-container {
    align-items: center;
    background: transparent;  
    display: flex;
    justify-content: center;
    min-height: 1px;
    min-width: 1px;
    position: relative;
    z-index: 100!important
}

.ad-wrapper {
    background: transparent;
    text-align: center
}  

.sponsorship-div {
    color: #6d7278;
    font-family: Roboto Condensed,Arial Narrow,arial,sans-serif;
    font-size: 12px;
    justify-content: space-evenly;
    letter-spacing: .13px;
    margin-bottom: 5px;
    text-transform: uppercase
}

.sponsorship-div.flex {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 12px
}

@media(min-width: 960px) {
    .sponsorship-div.flex {
        flex-direction:row
    }
}

.sponsorship-div.flex.margin-8-bottom {
    margin-bottom: 8px
}

.sponsorship-div.padded {
    margin-bottom: 20px;
    margin-right: 10px
}

.sponsorship-div.padded .sponsorship-div-text {
    margin-left: 15px;
    margin-top: 5px;
    text-align: left
}

@media(min-width: 768px) {
    .sponsorship-div {
        align-items:normal
    }

    .sponsorship-div.flex.items-end {
        align-items: end
    }

    .sponsorship-div.flex .sponsorship-div-text {
        margin-right: 5px
    }

    .sponsorship-div.padded {
        padding: 0 0 0 10px
    }

    .sponsorship-div.padded .sponsorship-div-text {
        margin: 0;
        text-align: center
    }

    .sponsorship-div.border-left {
        border-left: 1px solid rgba(0,0,0,.1)
    }
}

.sponsorship-div .sponsorship-div-text {
    display: none;
    text-align: center
}

.sponsorship-div .sponsorship-div-text.visible {
    display: block
}

.sponsorship-div a img {
    display: block;
    margin-top: 5px;
    max-height: 50px;
    max-width: 100px
}

@media(min-width: 768px) {
    .sponsorship-div a img {
        max-width:150px
    }
}

.main .ad-between-section {
    margin: 50px 0
}

@media screen and (max-width: 767px) {
    .main .ad-between-section {
        border:1px solid #979797;
        border-width: 1px 0;
        margin: 60px 20px;
        padding: 40px 0 0
    }
}

.tablet-ad {
    display: none
}

@media(min-width: 768px) {
    .tablet-ad {
        display:block
    }
}

@media(min-width: 1162px) {
    .tablet-ad {
        display:none
    }
}

.desktop-ad {
    display: none
}

@media(min-width: 1162px) {
    .desktop-ad {
        display:block
    }
}

.mobile-ad.tablet-ad {
    display: block
}

@media(min-width: 1162px) {
    .mobile-ad.tablet-ad {
        display:none
    }
}

.mobile-ad.tablet-ad.desktop-ad {
    display: block
}

.tablet-ad.desktop-ad {
    display: none
}

@media(min-width: 768px) {
    .tablet-ad.desktop-ad {
        display:block
    }
} 

.img-txt h3 {
    display: block;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold
}
.parentContainer {
    position: relative;
    text-align: center
 /* color: white; */
}

.bottom-left {
    display: inline-flex;
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: white
}

.top-left {
    position: absolute;
    top: 10px;
    left: 15px
}

.top-right {
    position: absolute;
    top: 10px;
    right: 15px
}

.bottom-right {
    position: absolute;
    bottom: 10px;
    right: 15px
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%
}

@media (min-width: 1025px) {
#myBtn {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 30px; 
    z-index: 9999; 
    border: none; 
    outline: none; 
    background-color: #04aa6d; 
    color: #fff; 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 10px; 
    font-size: 18px 
}

#myBtn:hover {
    background-color: #e90606 
}
}

.footer {
    background: #000;
    padding: 30px 0px;
    font-family: Comic Sans MS;    
    text-align: center
}

.footer .row {
    width: 100%;
    margin: 1% 0%;
    padding: 0.6% 0%;
    color: gray;
    font-size: 0.8em
}

.footer .row a {
    text-decoration: none;
    color: gray;
    transition: 0.5s
}

.footer .row a:hover {
    color: #fff
}

.footer .row ul {
    width: 100%
}

.footer .row ul li {
    display: inline-block;
    margin: 0px 30px
}

.footer .row a i {
    font-size: 2em;
    margin: 0% 1%
}

@media (max-width: 720px) {
    .footer {
        text-align: left;
        padding: 5%
    }
    .footer .row ul li {
        display: block;
        margin: 10px 0px;
        text-align: left
    }
    .footer .row a i{
        margin:0% 3%
    }
}
/* ------------------  ------------------ */