
:root{
    --white: #f9f9f9;
    --black: #36383F;
    --grey: #e3e6eb;
    --yellow: #ffcc00;
    --red: #FF0000;
    --green: #108b90;
    
}

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

html {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body{
    background-color: var(--white);
    font-family: "Poppins", sans-serif;
}

a{
    text-decoration: none;
}


.header {
    
    width: auto;
  
  
}

/* Header */
.header {
    background-color: var(--black);
    /* box-shadow: 1px 1px 5px 0px var(--grey);     */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
    
    
}
.header ul{
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: var(--black);
    overflow: hidden;
}


.header li a {
    display: block;
    padding: 6px 20px;
    text-decoration: none;
    
  }

.header li a:hover,
.header .side-menu:hover {
    background-color: var(--yellow);
  }

.logo {
    display: inline-block;
    color: var(--white);
    
    margin: 10px 10px 0;

}
 
.header .menu {
    clear: both;
    
    max-height: 0;
    transition: max-height .2s ease-out;
  }

.menu li a{
    display: block;
    padding: 15px 15px;
    color: var(--white);
    text-align: center;
	/* text-align: center; */

}

.menu li a:hover{
    background-color: var(--yellow);
    color: var(--red);
}


/* Menu Icon */

.hamb{
    cursor: pointer;
    float: right;
    padding: 32px 20px;
}


.hamb-line {
    background: var(--yellow);
    display: block;
    height: 4px;
    position: relative;
    width: 28px;
    
}

.hamb-line::before,
.hamb-line::after {
    background: var(--yellow);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before {
    top: 8px;
}

.hamb-line::after {
    top: -8px;
}


.header .side-menu {
    display: none;
}

/* Toggle menu icon */
/* Responsiveness */




.side-menu:checked ~ .menu {
    
    
    max-height: 100%;
    /* max-width: 100%; */
    /* transition: max-width .5s ease-out; */
    
    
    transition: max-height .2s ease-out;
}

/* .side-menu:not(:checked) ~ nav {
    max-height: 0;
     max-width: 100%; 
    transition: max-height .4s ease-out; } */

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;

}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}


.hero {
    position: relative;
    top: 68px;
    background: #108b90;
    
}


.herocontainer img {
    width: 100%;
    display: block;
}



  
 

button, input, .btn, a.btn {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: var(--black);
  }
  
.btn {
    font-weight: bold;
}
  
.btn:focus {
    outline: none;
}
  
.btn-success {
    background: var(--yellow);
    border: none;
    color: var(--black);
}
  
.btn-success:hover {
    background: var(--green);
    border-color: var(--green);
}
  
#optin {
    display: flex;
    flex-direction: column;
    background: #3e4249;
    margin: 68px 0 0;
    padding: 20px 0 20px 20px;
    color: white;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 1.2em;
    text-align: center;
  }
  
#optin p {
    margin: 7px 0 0 0;
}

.close {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

.newsletter {
    color: var(--yellow);
}

#sandbox,
#weather {
    position: relative;
    margin-top: 2rem;
    padding: 4% 2%;
}

#politics {
    margin-top: 2rem;
    position: relative;
    padding: 4% 2%;
}

#football,
#icons {
    background: var(--grey);
    position: relative;
    margin-top: 2rem;
    padding: 4% 2%;
}

#caruselos {
    padding: 5rem 0;
    margin: 0;
    width: 100%;
    background-image: url("./assets/images/carousel-cities/bg-carousel-1.png");
    background-size: cover;
  }
  
  
  .carousel-control-prev,
  .carousel-control-next {
    background-color: #e1e1e1;
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    top: 47%;
    transform: translateY(-50%);
  
  }
  .carousel-control-prev span,
  .carousel-control-next span {
    width: 1.5rem;
    height: 1.5rem;
  }

.footer {
    position: relative;
    padding-top: 2rem;
    background: var(--black);
    color: var(--white);
    
    text-align: center;
    font-size: 0.8em;
    font-family: "Montserrat", sans-serif;
    /* font-optical-sizing: auto; */
    font-weight: 500;
    /* font-style: bold; */
}

.footer a {
    
    color: var(--white);
}

.footer a:hover {
    text-decoration: underline;
    color: var(--yellow);
}

.rowfoot {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
    margin: 2rem 2rem 0;
    padding: 2rem 0 0;
    border-top: 1px solid rgb(103, 103, 103);
}


.downlogo,
.adminis,
.blogger,
.contactinfo {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.downlogo {
    justify-content: start;
    align-items: center;
}

.logoftr {
    width: 80px;
   
}

.socials {
    padding-top: 1rem;
}

.copyright {
    background: black;
    padding: 1rem 0 0.2rem;
    margin: 0;
    
}

#attrib {
    padding: 2rem;
    font-size: 0.80em;
}

#blob {
    margin: 40px 0;
}

.post, .widget, #comments {
    position: relative;
    border: solid 1px #ddd;
    background: white;
    margin: 0 0 40px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
  }
  
  .post header,
  .post .post-excerpt,
  .post .post-body,
  .widget,
  #comments .comments-wrap {
    padding: 20px;
  }
  
  
  article p a {
    color: #d87606;
  }
  
  article a,
  .widget li a {
    color: var(--green);
  }
  
  article p a:hover {
    color: #e2c233;
  }
  
  .imgblog {
    max-width: 100%;
  }
  
  input[type="submit"],
  button[type="submit"] {
    display: inline-block;
    /* margin-bottom: 0; */
    color: #333;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.33;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: var(--yellow);
    border: none;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    outline: none;
    border: none;
    background: var(--green);
    color: white;
}

input[type="text"],
input[type="email"],
input[type="url"] {
    width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;
}

.form-group {
  margin-bottom: 20px;
}
#comments h3 {
    text-align: center;
  }
  
  #comments h4 {
    font-size: 1.3em;
  }
  
  #comments ol {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #comments ol li {
    background: rgba(0,0,0,0.02);
    padding: 10px 20px;
    margin: 10px 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px rgba(0,0,0,0.03);
  
  }
  
  #comments ol li ol.children {
    padding: 0;
    list-style: none;
    font-size: 0.96em;
  }
  
  #leave-comment {
    margin: 40px 0 0;
    padding: 20px 0 0;
    border-top: solid 1px #eee;
  }
  
  textarea {
  height: 200px;
  width: 100%;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;
}

@media (min-width: 720px) and (max-width: 991px) {
    .downlogo,
    .adminis,
    .blogger,
    .contactinfo {
        width: 32%;

    }
}



@media (min-width: 992px) {

    .header li {
        float: left;
    }

    .menu li a {
        padding: 22px 22px;

   }


    .header .menu{
        clear: none;
        float: right;
        max-height: none;
        

    }

    .header .hamb {
        display: none;
    }
    
  
    .menu li a:hover{
        background-color: var(--yellow);
        color: var(--red);
        
    }
    
    .rowfoot {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        text-align: center;
        margin: 2rem 16rem 0;
        padding: 2rem 0 0;
    }
    .downlogo,
    .adminis,
    .blogger,
    .contactinfo {
        width: 24%;

    }

}

@media (min-width: 992px) and (max-width: 1340px) {
    .rowfoot {
        margin: 2rem 6rem 0;
        padding: 2rem 0 0;
    }

}