html{
    display: flex;
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    color: #160b95;
    font-family: 'Comfortaa', cursive;
    display: flex;
    flex-direction: column;
}

button{
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background: #160b95;
    color: white;
    border-radius: 5px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16);
    text-transform: uppercase;
    border: none;
}

button:active{
    background: orange;
}

button:focus{
    background:orange;
}

.button{
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background: #160b95;
    color: white;
    border-radius: 5px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16);
    text-transform: uppercase;
    border: none;
    margin: 5px;
}

.button:active{
    background: orange;
}

.button:focus{
    background:orange;
}

.button-large{
  padding: 20px;
  padding-left: 25px;
  padding-right: 25px;
  background: #160b95;
  color: white;
  border-radius: 5px;
  box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16);
  text-transform: uppercase;
  border: none;
  font-size: 22px;
  margin: 5px;
}

.button-large:active{
  background: orange;
}

.button-large:focus{
  background:orange;
}

main{
    flex: 1;
}

h1{
    font-size: 50px;
}
h2{
    font-size: 40px;
}
h3{
    position: relative;
    font-size: 30px;
}
h4{
    font-size: 25px;
}
h5{
    font-size: 20px;
}
h6{
    font-size: 15px;
}

.two-3{
    flex: 2;
    max-width: 300px;
}

.one-3{
    flex: 1;
}

.search-bar{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    margin: auto;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16) !important;
    background:rgba(22, 11, 149,0.9);
    color: white;
    z-index: 100;
    right: 10px;
    bottom: 10px;
    -webkit-animation: from-bottom 1s ease forwards;
            animation: from-bottom 1s ease forwards;
    transition: all 0.25s ease;
}

.search-open{
    width: 95vw;
    height: auto;
    border-radius: 5px;
    background: #160b95;
}

@-webkit-keyframes from-bottom{
    from{transform: translateY(200%)}
    to{transform: translateY(0);}
}

@keyframes from-bottom{
    from{transform: translateY(200%)}
    to{transform: translateY(0);}
}

.search-bar #search-form{
    flex: 4;
    display: none;
    transition: all 0.25s ease;
}

.search-open #search-form{
    display: block;
}

.search-bar .search-button{
    font-size: 25px;
    font-weight: bolder;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-open .search-button{
    position: absolute;
    display: block;
    top: 10px;
    right: 15px;
    margin: auto;
}

nav{
    background: linear-gradient(180deg, white, rgba(0,0,0,0.25));
    position: relative;
    margin-top: 0;
    width: 100%;
    z-index: 100;
    height: 150px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16) !important;
}
.nav-container{
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    height: 150px;
    color: rgb(30,30,40);
}

.logo-container a h6{
  color: rgb(30,30,40);
}

.nav-buttons a{
    font-size: 12px;
    font-weight: bold;
    margin: 5px;
}
.logo-container{
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.main-logo-img{
    width: auto;
    height: auto;
    max-height: 80px;
    max-width: 100%;
}

.stock-img{
    width: auto;
    height: auto;
    max-width: 100%;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23);
}

.nav-buttons{
    flex: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.section-1{
    margin: 0;
    padding: 10px;
    background: url(/home-bg2.jpg) no-repeat center center fixed; 
    background-size: cover;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    flex-direction: column;
    transition: all 0.5s ease;
    padding-bottom: 20px;
    z-index: 1;
    min-height: 70vh;
}

.section-1::after{
    content: "";
    background: linear-gradient(0deg, rgb(255, 165, 0, 0.8),rgba(150, 150, 160, 0.9));
    background: linear-gradient(0deg, rgba(205, 205, 215, 0.7),rgba(150, 150, 160, 0.8));
    background: linear-gradient(0deg, rgba(105, 105, 115, 0.7),rgba(150, 150, 160, 0.8));
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    display: block;
    z-index: -1;
}

.contact-input{
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    padding: 10px;
    width: 100%;
    background: #e9e9e9;
    border-radius: 3px;
    border: none;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16) !important;
    margin-top: 10px;
    margin-bottom: 10px;
}

.contact-form textarea{
    resize: none;
    padding: 10px;
    width: 100%;
    height: 100px;
    background: #e9e9e9;
    border-radius: 3px;
    border: none;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16) !important;
}
.contact-input::-webkit-input-placeholder{
    color: rgb(60, 60, 70);
}
.contact-input::-moz-placeholder{
    color: rgb(60, 60, 70);
}
.contact-input:-ms-input-placeholder{
    color: rgb(60, 60, 70);
}
.contact-input::-ms-input-placeholder{
    color: rgb(60, 60, 70);
}
.contact-input::placeholder{
    color: rgb(60, 60, 70);
}

.submit-button{
    padding: 7px;
    padding-left: 25px;
    padding-right: 25px;
    background:rgba(255, 165, 0, 1);
    color: white;
    border-radius: 5px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16);
    text-transform: uppercase;
    border: none;
    font-size: 18px;
}

.listings-input{
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    padding: 20px;
    background: white;
    border-radius: 3px;
    border: none;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16) !important;
    width: 100%;
    min-width: 320px;
    max-width: 80vw;
}


.listings-input::-webkit-input-placeholder{
    color: rgb(50,50,50);
}

.listings-input:-ms-input-placeholder{
    color: rgb(50,50,50);
}

.listings-input::-ms-input-placeholder{
    color: rgb(50,50,50);
}

.listings-input::-moz-placeholder{
    color: rgb(50,50,50);
}

.listings-input::placeholder{
    color: rgb(50,50,50);
}

.section-2{
    margin: 0;
    width: 100%;
    background: rgb(230,230,230);
    color: black;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.section-3{
    margin: 0;
    width: 100%;
    background: url(/rr.jpg) no-repeat center center fixed;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-3::after{
    content: "";
    background: linear-gradient(0deg, rgb(255, 165, 0, 0.8),rgba(150, 150, 160, 0.9));
    background: linear-gradient(0deg, rgba(105, 105, 115, 0.7),rgba(150, 150, 160, 0.8));
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    display: block;
    z-index: -1;
}
.section-1 h1, .section-1 h3{
    font-weight: bold;
    padding: 10px;
}
.section-1 h1{
    font-size: 50px;
}
.section-1 h6{
    color: rgb(30,30,40);
    margin-top: 0px;
}

.section-1 h4{
    color: rgb(30,30,40);
}


.flex-row{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.row-item{
    flex-grow: 1;
}

.card{
    color: #160b95;
}

.bottom-arrow{
    font-size: 25px;
    font-weight: bolder;   
    color: #160b95;
    border: 3px solid white;
    border-radius: 50%;
    padding: 7px;
    opacity: 0;
    -webkit-animation: fadeIn 0.5s ease forwards;
            animation: fadeIn 0.5s ease forwards;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
}

#section1-h1{
    opacity: 0;
    -webkit-animation: fadeIn 1s ease forwards;
            animation: fadeIn 1s ease forwards;
}

#section1-h4{
    opacity: 0;
    -webkit-animation: fadeIn 1s ease forwards;
            animation: fadeIn 1s ease forwards;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
}

@-webkit-keyframes bounce{
    0%{transform: translateY(0);}
    50%{transform: translateY(-10px);}
    100%{transform: translateY(0);}
}

@keyframes bounce{
    0%{transform: translateY(0);}
    50%{transform: translateY(-10px);}
    100%{transform: translateY(0);}
}

@-webkit-keyframes fadeIn{
    from{
        transform: scale(0,0);
        opacity: 0;
    }
    to{
        transform: scale(1,1);
        opacity: 1;
    }
}

@keyframes fadeIn{
    from{
        transform: scale(0,0);
        opacity: 0;
    }
    to{
        transform: scale(1,1);
        opacity: 1;
    }
}

.footer{
    background: white;
    padding: 15px;
    border: none;
    border-radius: none;
    text-align: left;
    color: rgb(30,30,40);
}

.social-media-icons{
    display:flex;
    justify-content: start;
    align-items: center;
    
}
.social-media-icons i{
    margin: 5px;
    color: rgb(30,30,40) !important;
}
.sidenav .social-media-icons{
    height: 70%;
    justify-content: center;
    align-items: flex-end;
}
.copy-footer{
    color: white;
    background: #160b95;
    padding: 15px;
}
.footer h5{
    color: rgb(30,30,40);
}
.footer h6{
    color: orange;
}
.footer a{
    color: rgb(30,30,40);
}
.footer-right-box{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

@media screen and (max-width: 480px) {
    .section-1{
        background: url(/home-bg.jpg) no-repeat center center scroll; 
        background-size: cover;
    }
    .section-3{
        background: url(/rr.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .row-item{
        max-width: 90%;
    }
}

@media only screen and (max-width: 600px) {
    .row-item{
        max-width: 90%;
    }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
    .row-item{
        max-width: 45%;
    }
}

@media only screen and (min-width: 993px) {
    .row-item{
        max-width: 30%;
    }
}

.contact-form{
    
    background: linear-gradient(0deg, rgb(255, 165, 0, 1),rgba(150, 150, 160, 1));
    background: rgba(255, 165, 0, 0.8);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16) !important;
    color: #160b95;
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: left;
}

.contact-form h3{
    color: white;
}

.contact-input{
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    padding: 10px;
    width: 100%;
    background: #e9e9e9;
    border-radius: 3px;
    border: none;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16) !important;
    margin-top: 10px;
    margin-bottom: 10px;
}

.contact-form textarea{
    resize: none;
    padding: 10px;
    width: 100%;
    height: 100px;
    background: #e9e9e9;
    border-radius: 3px;
    border: none;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16) !important;
}
.contact-input::-webkit-input-placeholder{
    color: rgb(60, 60, 70);
}
.contact-input::-moz-placeholder{
    color: rgb(60, 60, 70);
}
.contact-input:-ms-input-placeholder{
    color: rgb(60, 60, 70);
}
.contact-input::-ms-input-placeholder{
    color: rgb(60, 60, 70);
}
.contact-input::placeholder{
    color: rgb(60, 60, 70);
}

.contact-form .submit-button{
    padding: 7px;
    padding-left: 25px;
    padding-right: 25px;
    background: #160b95;
    color: white;
    border-radius: 5px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16);
    text-transform: uppercase;
    border: none;
    font-size: 18px;
}

.left-text{
    text-align: left;
}

.pad-20{
    margin-left: 10%;
}


.testimonial-box{
    padding: 20px;
    color: white;
    background: #160b95;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.23), -2px 3px 5px rgba(0,0,0,0.16);
}

.testimonial-stars{
    font-weight: bolder;
    color: orange;
}

blockquote{
    border-color: orange;
}
