*
{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: "poppins",serif;
}
::selection
{
    background-color: black;
    color: white;
}
html 
{
    scroll-behavior: smooth;
}
/*START HOME*/
nav
{
    z-index: 1000;
    width: 100%;
    background-color:aliceblue;
    padding: 1%;
    display: flex;
    justify-content: space-around;
    position: fixed;
    
}
.logo
{
    display: flex;
    justify-content: center;
    align-content: center;
}
.links
{
  
   width: 30%;
}
.links a
{
    text-transform: uppercase;
    text-decoration: none;
}
 .logo a
{
    width: 70%;
   
}
.logo a img
{
    width: 65%;
}
.icons
{
    width: 15%;
}
nav h2
{
    padding-left: 50px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: medium;
}
nav .links ul
{
    position: relative;
}
nav .links ul li:last-child::after
{
    /*display: inline-block;*/
    content: "";
    position: absolute;
    left: 40%;
    top:30%;
    height: 25px;
    border-radius: 1%;
    border-right: 2px solid rgba(112, 100, 104, 0.428);
}
nav  ul
{
   height: 100%;
   display: flex;
   justify-content: space-between;
   list-style: none;
   align-items: center;
}
.home
{
    background-image:linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)), url("images/bg2.jpg");
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
}
.home-text
{
    width: 90%;
    margin: auto;
    color: white;

}
.home .home-text p span
{
    color: rgb(255, 196, 0);
    text-decoration: underline;
}
.home .home-text h3
{
    font-size: 40px;
    font-weight: 400;
}
.home .home-text h2
{
    font-size: 90px;
    line-height: 90px;
}


/*END HOME*/
/*START ABOUT*/
.about
{
    display: flex;
    align-items: center;
    height: 100vh;
    background-color: #80808045;
}


.about .about-img 
{
    display: flex; 
    justify-content: center; 
}


.about .about-img img
{
    width: 80%;
} 

.about .about-text h1
{
    font-size: 90px;
} 

/*.about .about-text ul
{
    
}*/
.about .about-text h2
{
    font-size: 30px; 
    color: aqua;
    font-weight: 400;
    margin-bottom: 4%;
} 

.about .about-text p
{
    margin-bottom: 4px;
}
.about .about-text span
{
    color: black;
}
.about .about-text span::before
{
    content: "";
    animation: about-animation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    color: aqua;
}
@keyframes about-animation
{
    0%
    {
        content: "";
    }
    3%
    {
        content: "C";
    }
    7%
    {
        content: "Ci";
    }
    10%
    {
        content: "Cit";
    }
    13%
    {
        content: "City";
    }
    15%
    {
        content: "Cit";
    }
    17%
    {
        content: "Ci";
    }
    20%
    {
        content: "C";
    }
    24%
    {
        content: "";
    }
    25%
    {
        content: "T";
    }
    27%
    {
        content: "To";
    }
    30%
    {
        content: "Tow";
    }
    32%
    {
        content: "Town";
    }
    35%
    {
        content: "Tow";
    }
    37%
    {
        content: "To";
    }
    40%
    {
        content: "T";
    }
    42%
    {
        content: "";
    }
    45%
    {
        content: "C";
    }
    47%
    {
        content: "Co";
    }
    50%
    {
        content: "Cou";
    }
    52%
    {
        content: "Coun";
    }
    55%
    {
        content: "Count";
    }
    57%
    {
        content: "Countr";
    }
    60%
    {
        content: "Country";
    }
    62%
    {
        content: "Countr";
    }
    65%
    {
        content: "Count";
    }
    67%
    {
        content: "Coun";
    }
    70%
    {
        content: "Cou";
    }
    72%
    {
        content: "Co";
    }
    75%
    {
        content: "C";
    }
    77%
    {
        content: "";
    }
    80%
    {
        content: "L";
    }
    82%
    {
        content: "La";
    }
    85%
    {
        content: "Lan";
    }
    87%
    {
        content: "Land";
    }
    90%
    {
        content: "Lan";
    }
    92%
    {
        content: "La";
    }
    95%
    {
        content: "L";
    }
    100%
    {
        content: "";
    }

}
/*END ABOUT*/
/*START MENU*/
.Menu
{
    width: 100%;
    text-align: center;
    margin-bottom: 5%;
}
.Menu .menu-items
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;

}
.Menu h1
{
    font-size: 90px;
    
}
.Menu .menu-p
{
    color: aqua;
    font-size: 20;
    font-weight: 300;
}
.menu-items .item {
    width: 26%;
    position: relative;
    margin-bottom: 5%;
    overflow: hidden;
}
.Menu img
{
    width: 100%;
    height: auto;
    aspect-ratio: 1.2/1;
    object-fit: cover;
}
.Menu .item-hover
{
    width: 100%;
    height: 98%;
    background-color: rgba(156,156,156,0.329);
    position: absolute;
    top: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 1s ease-in;
}
.Menu .item:hover .item-hover
{
    top: 0%;
}
.Menu .item h6
{
    color: aqua;
    text-transform: uppercase;
    margin-bottom: 4%;
}
.Menu .item-hover p:last-child
{
    color: aqua;
    font-weight: 500;
    font-style: 16px;
}
/*END MENU*/
/*START REVIEW*/
.review h1
{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    font-weight: 900;
   
}
.review
{
    width: 100%;
    height: 100vh;
    text-align: center;
    background-color:#EBEBEB;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.items-rev
{
    margin-top: 5%;
    display: flex;
    justify-content: space-evenly;
}
.box1 .img
{
    width: 120px;
    height: 120px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    background-image: url("images/pexels-sound-on-3756945.jpg");
}
.box1
{
    background-color: white;
    height: 60%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 60%;
    border-radius: 4%;
    padding: 5%;
    box-shadow: -5px 3px 18px 0px #88888891;
}
/*End REVIEW*/
/*Start Form*/
.contactsection
{
    width: 100%;
    background-color: rgb(12, 143, 195);
   
    display: flex;
    flex-direction: column;
    align-items: center;

}
.container
{
    width: 80%;
}
.contactsection .container h1
{
    font-size: 90px;
    color: white;
    text-transform: uppercase;
}
.contactsection .container h4
{
    color: white;
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 5%;
}
.contactsection .container span
{
    font-weight: 700;
}
.contactsection .container input
{
    width: 43%;
    padding: 2%;
    outline: none;
    border: none;
    margin-right: 1%;
}
.contactsection .container textarea
{
    width: 100%;   
    padding: 4%;
    margin-top: 20px;
    margin-bottom: 10px;
    outline: none;
}
.contactsection .container p
{
    font-size: 33px;
    color: #EBEBEB;
    text-transform: uppercase;
}
.contactsection input[type="button"]{
    width: 17%;
    padding: 2% 3%;
    text-align: center;
    color: #EBEBEB;
    background-color: goldenrod;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 2%;

}
.find
{
    width: 100%;
    margin-top:5%;
    padding: 2% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-between;
    background-color: rgb(2, 200, 255);
}
.find h1
{
  margin-left: 5%;
  color: white;
}
.contactsection iframe
{
    width: 100%;
    height: 500px;
  
  
}

/*End Form*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    nav .logo
    {
        justify-content: flex-start;
        align-items: center;
    }
    nav .logo a
    {
        width: 55%;
    }
    nav .logo a img
    {
        width: 132%;
    }
    nav .links 
    {
        width: 95%;
    }
    nav .links ul
    {
        font-size: 12px;
    }
    nav .icons
    {
        width: 35%;
    }
    nav .icons ul li
    {
        font-size: 10px;
    }
    nav .links ul li:last-child::after
    {
        border: none;
        top: 18%;
        right: 20%;
    }
    .home .home-text h2
    {
        font-size: 60px;
    }
    .about 
    {
        height: auto;
        flex-direction: column-reverse;
    }
    .about .about-text
    {
        margin-left: 10%;
    }
    .about .about-text h1
    {
        font-size: 70px;
    }
    .about .about-text h3
    {
        font-size: 18px;
    }
    .about .about-text ul ,.about p
    {
        font-size: 15px;
    }
    .about .about-img img
    {
        width: 88%;
    }
    .Menu h1
    {
        font-size: 70px;
    }
    .Menu .menu-p
    {
        font-size: 16px;
    }
    .Menu .menu-items .item
    {
        width: 45%;
    }
    .contactsection input[type="button"]{
        width: 38%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    nav
    {
        padding: 2%;
    }
    nav .logo 
    {
        justify-content: flex-start;
    }
    nav .logo a
    {
        width: 50%;
    }
    nav .logo a img
    {
        width: 100%;
    }
    nav .links 
    {
        width: 60%;
        margin-right: 3%;
    }
    nav .icons 
    {
        width: 22%;
    }
    nav .icons ul li 
    {
        padding-left: 2%;
    }
    .home .home-text h2
    {
        font-size: 105px;
    }
    nav .links ul li:last-child::after
    {
        border: none;
        display: inline;
        content: "";
        right: 30%;
        top:30%
    }
    .contactsection input[type="button"]{
        width: 30%;
       
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
   
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    nav .links 
    {
        width: 30%;
        margin-right: 10%;
    }
    nav .links ul li:last-child::after
    {
        display: inline;
        content: "";
        left: 120%;
        top:30%;
        border-right: 2px solid rgba(112, 100, 104, 0.428);
    }
    nav .icons ul li 
    {
        padding-left: 1%;
    }
  
    nav .icons 
    {
        width: 15%;
    }
    .contactsection input[type="button"]{
        width: 25%;
        text-align: center;
        font-weight: 500;
        font-size: large;
        padding-left: 3%;
    }
   
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    nav .logo 
    {
        justify-content: center;
    }
    nav .icons 
    {
        width: 20%;
    }
    .contactsection input[type="button"]{
        width: 22%;
        font-size: larger;
        padding-left: 3%;
        text-align: center;
    
    }
    nav .links ul li:last-child::after
    {
        display: inline;
        content: "";
        left: 120%;
        top:30%;
        border-right: 2px solid rgba(112, 100, 104, 0.428);
    }
}