* {

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

:root {
    --orange: #ff7200;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

ul {
    list-style-type: none;
}

.text-link {
    transition: 250ms;
}

.text-link:hover {
    color: var(--orange)
}

@keyframes orangeExpand {

    0% {
        height: 0%;
        width: 0%;
        border-radius: 50%;
    }

    75%{
        height: 100%;
        width: 100%;
        border-radius: 50%;
    }

    100%{
        height: 100%;
        width: 100%;
        border-radius: 0;
    }
}

@keyframes expandMenu {

    0% {
        border-radius: 0 0 100% 0;
    }

    100%{
        border-radius: 0 0 0% 0;
    }
}

/* Scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius:5px;
}

/* Font */
h1 {
    font-weight: 100;
    text-transform: uppercase;
    font-size: 3rem;
    margin-bottom:50px;
}

h2, h3, h4, h5, h6 {
    font-weight: 100;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom:50px;
}

p, a {
    font-size: 1rem;
    line-height: 2;
}

a {
    text-decoration: none;
    color: white;
    line-height: 2;
}

@media only screen and (min-width: 0px) {

    /* Social top */
    #social-top {
        width: 100%;
        display: flex;
        justify-content: right;
    }

    .icon {
        margin: 10px;
        display: block;
        width: 30px;
        height: 35px;
    }

    /* Header */
    header {
        text-align: center;
        margin-bottom: 25px;
        border-bottom: 1px solid white;
        padding-bottom: 20px;
    }

    #desktop-menu {
        display: none;
    }
    
    /* Find us page */

    #find-us-container {
        margin: 0 20px;
    }
    
    #find-us-text-container {
        margin-bottom: 100px;
    }

    #find-us-unit {
        width: 800px;
        max-width: 100%;
    }

    #find-us-google-maps-icon {
        color:#ff7200;
    }
    
    #find-us-google-maps-icon, #find-us-google-maps-text {
       font-size: 2rem; 
    }

    /* Mobile menu */
    .mobilemenu {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999;
    }

    .mobile-menu-icon-container {
        position: relative;
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        background: var(--orange);
        border-radius: 0 0 100% 0;
        transition: 250ms linear;
        z-index: 99999; 
        -webkit-box-shadow: 5px 5px 5px -3px rgba(0,0,0,0.77); 
        box-shadow: 5px 5px 5px -3px rgba(0,0,0,0.77);
    }

    .expand-menu {
        text-align: left;
        transition: 250ms linear;
        position: relative;
        top: 0;
        left: 0;
        width: 300px;
        height: 350px;
        z-index: 99999;
        background: var(--orange);
        border-radius: 0 0 50% 0;
        -webkit-box-shadow: 5px 5px 5px -3px rgba(0,0,0,0.77); 
        box-shadow: 5px 5px 5px -3px rgba(0,0,0,0.77);
    }

    #mobile-menu-icon {
        position: absolute;
        top:0;
        left:0;
        padding: 15px;
        font-size: 2rem;
        cursor: pointer;
        border-radius: 50%;
        transition: 250ms linear;
    }

    #mobile-navigation {
        display:none;
        padding:70px;
    }

    .mobile-link {
        font-size: 1.5rem;
    }

    /* sections */
    section {
        text-align: center;
        padding: 100px 0;
    }

    .text-section {
        color:black;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }

    .text-container {
        margin: 0 20px;
    }

    .text-block {
        max-width: 800px;
        margin: auto;
        text-align: justify;
    }

    .orange-animate {
        padding-top:100%;
        border-radius: 50%;
        background:var(--orange);
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .expand-orange {
        z-index: -1;
        -webkit-animation-fill-mode: forwards; /* Chrome 16+, Safari 4+ */
        -moz-animation-fill-mode: forwards;    /* FF 5+ */
        -o-animation-fill-mode: forwards;      /* Not implemented yet */
        -ms-animation-fill-mode: forwards;     /* IE 10+ */
        animation-fill-mode: forwards; 
        animation-name: orangeExpand;
        animation-duration: 500ms;
        animation-iteration-count: 1;
    }

    /* FAQ */
    #faq-container {
        margin: auto;
        max-width: 1200px;
    }

    .faq-row {
        transition: 2s;
        opacity: 0;
        display: flex;
        flex-direction: column;
        margin-bottom: 100px;
    }

    .faq-icon-container {
        display:none;
    }

    .faq-text-container {
        text-align: left;
        display: flex;
        flex-direction: column;
        margin: 0 20px;
    }

    /* Footer */
    footer {
        padding: 98px 0;
        width: 100%;
        border-top: 20px solid var(--orange);
    }

    .footer-item {
        width:100%;
        text-align: center;
        margin-bottom: 50px;
    }

    #footer-container {
        max-width: 1200px;
        margin:auto;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
    }

    .footer-heading {
        font-size: 1.5rem;
        text-transform: uppercase;
        margin-bottom: 50px;
        color: var(--orange)
    }

    /* Contact form */
    #contact-form-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 0 20px;
    }

    #contact-form {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 500px;
        margin: 0 20px;
        padding: 20px;
        text-align: left;
        border: 20px solid white;
        border-radius: 20px;
    }

    input, label {
        margin-bottom: 10px;
    }

    input::-webkit-input-placeholder {
        color: white;
    }

    textarea::-webkit-input-placeholder {
        color: black;
    }

    input {
        color: white;
        background-color: black;
    }

    input, textarea {
        padding: 10px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 1rem;
        border:1px solid white;
    }

    textarea {
        resize: none;
        overflow-y: scroll;
        margin-bottom: 10px;
        background-color: #ff7200;
    }

    .vertical-line{
        height: 50px;
        border-left: 10px solid white;
        border-right: 10px solid white;
        width:0;
        margin:auto;
    }

    input[type="submit"] {
        font-size: 1.5rem;
        transition: 250ms;
        text-transform: uppercase;
    }

    input[type="submit"]:hover {
        background-color: #ff7200;
        cursor: pointer;    
    }

    /* Carousel */

    .main-carousel {
        display: block;
        width: 100%;
        height: 500px;
        margin-bottom: 10px;
    }
    
    .carousel-cell {
        height: 100%;
        margin-right: 10px
    }
    
    .slide-image {
        height: 100%;
    }

    /* Colour grid */

    #grid-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        margin: 100px auto;
        max-width: 1200px;
    }

    #colour-grid {
        display: grid;
        gap: 25px;
        margin: auto;
        max-width: 100%;
        padding: 0 20px;
        grid-template-columns: repeat(auto-fill, 100px);
    }

    .grid-circle {
        top: 0;
        Left: 0;
        right: 0;
        bottom: 0;
        transition: 500ms;        
        width: 0px;
        height: 0px;
        border-radius: 50%;
    }

    .expanded {
        width: 100px;
        height: 100px;
    }
    .relative {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }

    /* Bullet point section home page */
    #bullet-container {
        text-align: left;
        width: fit-content;
        margin: auto;
    }

    .bullet-row {
        opacity: 0;
        transition: 2s;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 10px;
    }

    .dot {
        color: var(--orange);
        font-size: 1.5rem;
        margin-right: 25px;
    }

    .bullet-text {
        font-size: 1.5rem;
    }

    #top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        border: none;
        background: none;
    }

    #top-icon {
        font-size: 3rem;
        color: #ff7200;
        background-color: black;
        border-radius: 50%;
        border: 1px solid black;
        transition: 250ms;
    }

    #top-icon:hover {
        color: white;
    }
 }

@media only screen and (min-width: 500px) {
    .main-carousel {
        height: 600px;
    }
}

@media only screen and (min-width: 768px) {

    /* FAQ */
    .faq-row {
        transition: 2s;
        opacity: 0;
        display: flex;
        flex-direction: row;
        margin-bottom: 100px;
    }

    .faq-icon {
        width: 180px;
        height: 180px;
    }

    .faq-icon-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Footer */

    #footer-container {
        flex-direction: row;
    }

    .footer-item {
        width:50%;
    }
}

@media only screen and (min-width: 1024px) {

    .mobilemenu {
        display:none;
    }

    .main-carousel {
        height: 700px;
    }

    .expand-orange {
        animation-duration: 1s;
    }

    #desktop-menu {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 25px;
        text-transform: uppercase;
    }
    
    .desktop-menu-item {
        padding: 10px 20px;
        margin: 0 10px;
        transition: 250ms;
        position: relative;
        display:flex;
        justify-content: center;
        align-items: center;
    }
    
    .desktop-menu-item:hover .desktop-orange {
        width: 100%;
        height: 100%;
    }
    
    .desktop-orange {
        position: absolute;
        background-color: var(--orange);
        transition: 250ms;
        width:0;
        height:0;
        border-radius: 25px;
        z-index: -1;
    }

    .footer-item {
        width:25%;
        margin-bottom: 0px;
    }

    ul#footer-navigation {
        margin: auto;
        justify-content: center;
        display: flex;
        flex-direction: column;
        width: fit-content;
    }

    #footer-logo {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media only screen and (min-width: 1266px) {
    .expand-orange {
        animation-duration: 2s;
    }

    .main-carousel {
        height: 800px;
    }
}

