/* CSS Reset */
body, header, nav, footer, main, h1, div, img, ul, figure, figcaption, section,
article, aside, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}

h2 {
    font-size: 16px;
}

p{
    font-size: 20px;
}

html {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

body{
     background: linear-gradient(to right, #ff8000, #fbff00);
}

img, video{
    max-width: 100%;
    display: block;
}

video {
    margin: 0 auto 4%;
}

/* Style Rule for Box sizing applies to all elements */
*{
    box-sizing: border-box;
}

/* Style rules for mobile viewport */
        header{
            top: 0;
            background: linear-gradient(to right, #9c0000, #ffe600);
            position: -webkit-sticky;
            position: sticky;
            height: 80px;
        }

        header img{
            margin: 0 auto;
        }

        main{
            background: linear-gradient(to right, #ff8000, #fbff00);
            padding: 2%;
            font-size: 1.15em;
            font-family: "Numans", sans-serif;
        }

        .mobile h3{
            text-shadow: 5px 5px 8px #ccc;
        }

        article{
            padding: 2%;
        }

        article h3{
            text-align: center;
        }

        article img{
            margin: 0 auto;
        }

        article ul{
            margin-left: 10%;
        }

        article:nth-of-type(2){
            background-color: rgba(204, 204, 204, 0.3);
        }

        .frame{
            position: relative;
            max-width: 450px;
            margin: 2% auto;
        }

        .pic-text{
            position: absolute;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            width: 100%;
            padding: 20px;
            text-align: center;
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
            font-size: 1.5em;
            font-weight: bold;
        }

        .tel-link{
            background-color:chocolate;
            padding: 2%;
            margin: 0 auto;
            width: 80%;
            text-align: center;
            border-radius: 5px;
        }

        .tel-link a{
            color: #000000;
            text-decoration: none;
            font-size: 1.5em;
            display: block;
        }

        .hours{
            margin-left: 10%;
        }

        h1{
            text-align: center;
        }

        ul{
            list-style: square;
        }

        #Racoons{
            margin: 0 2%;
        }

        .round {
            border-radius: 8px;
        }

        .map{
            border: 2px soild #000;
            width: 95%;
            height: 50%;
        }

        #form {
            margin-top: 2%;
            background-color: #ffd502;
            padding: 2%;
        }

        #form h2{
            text-align: center;
        }

        /*Style rule for form elements*/
        fieldset, input, select, textarea{
            margin-bottom: 2%;
        }

        fieldset legend {
            font-weight: bold;
            font-size: 1.25em;
        }

        label {
            padding-top: 3%;
        }

        form #submit{
            margin: 0 auto;
            border: none;
            display: block;
            padding: 2%;
            background-color: #b3b3b3;
            font-size: 1em;
            border-radius: 10px;
        }

/* Style rules for hamburger menu */
.mobile-nav a{
    color: #fff;
    font-family: 'Francois One', sans-serif;
    text-align: center;
    font-size: 2em;
    text-decoration: none;
    padding: 3%;
    display: block;
}

.mobile-nav a.menu-con{
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

/* nav li a{
    display: block;
    color: #fff;
    padding: 0.5em 1em;
    text-decoration: none;
} */

/* show mobile class, hide tablet-desktop class and menu-links id */
.mobile {
    display: block;
}

.tablet-desktop, #menu-links {
    display: none;
}

img{
    max-width: 100%;
    display: block;
}

/* Media Query for Tablet Viewport */
@media screen and (min-width: 630px), print {
    /* Tablet viewport: Show Tablet-desktop class, hide mobile class */

    .features-container {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 16px;
    }

.tablet-desktop{
    display: block;
   }

   .mobile, .mobile-nav {
    display: none;
}

/* Tablet Viewport: Style rule for header */
header{
    padding-bottom: 2%;
}

/* Tablet Viewport: Style rules for nav area */
nav {
    padding: 1%;
    margin-bottom: 1%;
}

nav ul{
    list-style-type: none;
    text-align: center;
}

nav li{
    font-size: 1.5em;
    font-family: 'Francois One', sans-serif;
    display: inline-block;
    border-right: 1px solid #fff;
}

nav li:last-child{
    border-right: none;
}

nav li a{
    padding: 0.1em 0.75em;
}

nav li:last-child{
    border-right: none;
}

nav li a:hover{
        color:#fbff00;
        background-color: #ff9100;
        transform: scale(1.3);
    }

/* Tablet Viewport: Style rules for main content area */
main ul{
    margin: 0 0 4% 10%;
}

.grid {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
}

.pic-text{
    font-size: 1em;
    padding: 10px;
}

aside {
    text-align: center;
    font-size: 1.25em;
    font-style: italic;
    font-weight: bold;
    padding: 2%;
    background-color: rgba(204, 204, 204, 0.5);
    box-shadow: 5px 5px 8px #000;
    text-shadow: 5px 5px 5px #b3b3b3;
    border-radius: 0 15px;
}

.grid-item4{
    grid-column: 1 / span 3;
}

#Racoons{
    background: linear-gradient(to right, #ff8000, #fbff00);
}

.tel-num {
    font-size: 1.25em;
}

.map {
    width: 600px;
    height: 450px;
  }

  /* Tablet Viewport: Style rules for table */
table{
    border: 1px solid #000;
    border-collapse: collapse;
    margin: 0 auto;
    width: 100%;
}

caption {
    font-size: 1.5em;
    font-weight: bold;
    padding: 1%;
}

th, td{
    border: 1px solid #000;
    padding: 2%;
}

th {
    background-color: #000;
    color: #fff;
    font-size: 1.15em;
}

tr:nth-child(odd) {
    background-color: #ffe600;
}

/* Tablet Viewport: Style rule for form element*/
form{
    width: 70%;
    margin: 0 auto;
}

/* Tablet Viewport: Animation */
@-webkit-keyframes text-animation{
    0% {font-size: 1em;}
    50% {font-size: 2em;}
    100% {font-size: 1.35em;}
}

@keyframes text-animation {
    0% {font-size: 1em;}
    50% {font-size: 2em;}
    100% {font-size: 1.35em;}
}

figcaption {
    -webkit-animation-name: text-animation;
    animation-name: text-animation;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
}

}

/* Media Query for Desktop Viewort */
@media screen and (min-width: 1015px), print{
    /* Desktop Viewport: Style rule for header*/
    header{
        width: 25%;
        float: left;
        padding-bottom: 0;
    }

    /* Desktop viewport: Style rules for nav area */
    nav{
        float: right;
        width: 70%;
        margin: 4em 1em 0 0;
    }

    nav ul{
        text-align: right;
    }

    nav li{
        border: none;
    }

    nav li a{
        padding: 0.5em 1em;
    }

    nav li a:hover{
        color:#fbff00;
        background-color: #ff9100;
        transform: scale(1.3);
    }
    /* Desktop Viewport: Style Rules for main content */
    main{
        clear: left;
    }
main h1{
    font-size: 1.8em;
}

article h3{

    font-size: 1.75em;
}

.pic-text{
    font-size: 1.5em;
    padding: 20px;
}

.frame{
    opacity: 0.9;
}

.frame:hover{
    opacity: 1;
    box-shadow: 8px 8px 10px #ff0000;
    transform: translateY(10px);
}

/* img:hover{
    transform: rotate(35deg);
}*/

    #Raccoons {
        width: 29%;
        float: left;
        margin: 0 2%;
    }
    #tablet-desktop{
        clear: left;
    }

    .offer:hover {
        transform: scale(1.25);
        cursor: pointer;
    }

    /* Desktop Viewport: Style rules for form element*/
    form{
        width: auto;
    }

    .form-grid{
        display: grid;
        grid-template-columns: auto auto auto;
        grid-gap: 20px;
    }

    .btn{
        grid-column: 1 / span 3;
    }

}

/* Media Query for Large Desktop Viewports */
@media screen and (min-width: 1921px){
    #container{
        width: 1920px;
        margin: 0 auto;
    }

    table{
        width: 80%;
    }

}

/* Media Query for Print */

@media print{
    body{
        background-color: #fff;

        color: #000;
    }

}

@media screen {
    body{
        background: linear-gradient(to left, #ff8000, #fbff00);
    }
}

@media screen and (min-width: 481px){
    .mobile {
        display: none;
    }
}

@media all and (min-width: 481px) and (max-width: 768px) {
    body{
        color: #000;
    }
}

@media print{
    body {
        width: 100%;
        color: #000;
        background-color: #fff;
    }
}

@media only screen and (min-width: 481px) {
    nav li {
        display: inline-block;
    }
}

        nav{
            padding: 1%;
            margin-bottom: 1%;
        }

        nav ul{
            list-style-type: none;
            text-align: center;
        }

        nav li{
            font-size: 1.5em;
            font-family: "Numans", sans-serif; 
            border-top: 1px solid #fff200;
        }

        nav li:first-child{
            border-top: none;
        }

        nav li a{
            display: block;
            color: #fff;
            padding: 0.5em 1em;
            text-decoration: none;
        }

    .link {
    color:#ff8000;
    width: 100%;
    height: 100%;
    border-bottom: 2px solid black;
    text-align: center;
    padding: 12px 0;
    background-color:#fbff00;
    cursor: pointer;
}

.link:hover {
    background-color:brown;
}

.link-container{
    background-color:chocolate;
    border: solid black;
    border-width: 0 0 3px 0;
    width: 100%;
}

.baby-hawk {
    width: 100%;
}

.features-container {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.feature-image {
    width: 100%;
}

.feature-section {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.section-title{
    width: 100%;
    text-align: center;
    margin: 16px 0;
}

        #contact{
            text-align: center;
        }

        #contact a{
            color: #666600;
            text-decoration: none;
        }

        #contact .contact-email-link{
            color: darkred;
            text-decoration: none;
        }

        .map{
            border: 2px solid #000;
            width: 95%;
            height: 50%;
        }

        h2{
            text-align: center;
        }

        .action{
            font-size: 1.35em;
            color: #666600;
            font-weight: bold;
        }

        footer p a{
            color: #fff;
            text-decoration: none;
        }

footer p {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 8px;
}

/*main{
    background-color: #ff8000;
    opacity: 0.5;
}

main{
    background-color: rgb(255, 170, 0);
}*/

img{
    text-shadow: 5px 10px 8 px #ccc;
}

h1{
    font-size: 24px;
    text-shadow: 2px 2px #292933;
}

div{
    box-sizing: border-box;
}

.grid-item{
    grid-column: 1 / span 3;
}

p:nth-of-type(5){
    background-color: #ccc;
}