/*----- COLOURS -----*/

/*-----
LIGHT PINK: #EDAEC0;
MEDIUM PINK: #DC6386;
DARK PINK: #BA2953;
BURGUNDY: #6F1931;
CREAM: #fbedf1;
GREY: #cfcccd;
WHITE: #fffefe;
BLACK: #0f0307;
-----*/

/*----- FONTS -----*/

@font-face {
    font-family: 'Magical Mystery';
    src: url('/fonts/MagicalMystery.woff2') format('woff2'),
        url('/fonts/MagicalMystery.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*----- GENERIC -----*/

body {
    background-color: #fffefe;
    color: #0f0307;
    font-family: 'Outfit', 'Helvetica', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
}

h1 {
    color: #fffefe;
    font-family: 'Magical Mystery', 'Outfit', 'Helvetica', sans-serif;
    font-size: 70px;
    font-weight: normal;
    font-style: normal;
    line-height: normal;
}

h2 {
    color: #fffefe;
    font-family: 'Outfit', 'Helvetica', sans-serif;
    font-size: 36px;
    font-weight: 300;
    font-style: normal;
    line-height: 40px;
    margin-bottom: 25px;
}

h3 {
    color: #fffefe;
    font-family: 'Magical Mystery', 'Outfit', 'Helvetica', sans-serif;
    font-size: 50px;
    font-weight: normal;
    font-style: normal;
    line-height: normal;
}

h4 {
    color: #fffefe;
    font-family: 'Outfit', 'Helvetica', sans-serif;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    line-height: 32px;
}

h5 {
    color: #0f0307;
    font-family: 'Outfit', 'Helvetica', sans-serif;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    line-height: 28px;
}

p {
    color: #0f0307;
    font-family: 'Outfit', 'Helvetica', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    margin-bottom: 25px;
}

a {
    color: #fffefe;
    font-family: 'Outfit', 'Helvetica', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
}

a:hover {
    color: #fbedf1;
    transition: all 0.5s;
}

.buttons .button:not(:last-child):not(.is-fullwidth) {
    margin-right: 10px;
}

a.button {
    background-color: #DC6386;
    border: 3px solid #DC6386;
    border-radius: 10px;
    color: #fffefe;
    font-family: 'Outfit', 'Helvetica', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    text-transform: none;
    padding: 15px 30px;
    cursor: pointer;
    justify-content: center;
    text-align: center;
}

a:hover.button {
    background-color: #BA2953;
    border: 3px solid #BA2953;
    color: #fffefe;
    transition: all ease-in 0.5s;
}

hr {
    background-color: #213340;
    border: none;
    display: block;
    width: 50px;
    height: 3px;
    margin: 0px 0px 25px 0px;
}

strong {
    font-weight: 600;
}

ul {
    list-style: inside disc;
}

/*----- TOP -----*/

#top {
    background-color: #EDAEC0;
    background-image: url('/assets/images/wave.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
    z-index: -1;
}

img.profile {
    max-width: 400px;
    float: right;
}

/*----- ABOUT  -----*/

/*----- SERVICES  -----*/

#services {
    background-color: #6F1931;
}

img.service-icon {
    max-width: 200px;
}

/*----- WINSTON  -----*/

img.sausage {
    width: 400px;
    height: auto;
    position: relative;
    z-index: 1;
    left: 100px;
    margin-bottom: -200px;
    padding-top: 0px;
}

#winston {
    padding: 0px;
}

#winston .container {
    max-width: 100%;
}

img.winston {
    transform: translate3d(0px, 25px, 0px) scale(1.1);
    will-change: transform;
}

/*----- PROJECTS  -----*/

#projects {
    background: rgb(237,174,192);
    background: -moz-linear-gradient(90deg, rgba(237,174,192,1) 0%, rgba(220,99,134,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(237,174,192,1) 0%, rgba(220,99,134,1) 100%);
    background: linear-gradient(90deg, rgba(237,174,192,1) 0%, rgba(220,99,134,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#edaec0",endColorstr="#dc6386",GradientType=1);
}

/*----- GET IN TOUCH  -----*/

#getintouch {
    background-color: #6F1931;
}

#footer p {
    display: flex;
    align-items: center;
}

#getintouch i.fas.fa-envelope, #getintouch i.fas.fa-phone {
    color: #fffefe;
    margin-right: 10px;
}

/*#getintouch a {
    color: #fffefe;
}

#getintouch a:hover {
    color: #EDAEC0;
    transition: all 0.5s;
}*/

a.button-white {
    background-color: #fffefe;
    border: 3px solid #fffefe;
    border-radius: 10px;
    color: #DC6386;
    font-family: 'Outfit', 'Helvetica', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    text-transform: none;
    padding: 15px 60px;
    cursor: pointer;
    justify-content: center;
    text-align: center;
}

a:hover.button-white {
    background-color: #DC6386;
    border: 3px solid #DC6386;
    color: #fffefe;
    transition: all ease-in 0.5s;
}

/*----- BV  -----*/

#bv {
    background-color: #EDAEC0;
    background-image: url('/assets/images/wave.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 470px;
    z-index: -1;
}

/*#catalog {
    background-color: #ffffff;
}*/

#network {
	background-color: #EDAEC0;
}

#kb {
	background-color: #fffefe;
}

/*#shopify {
    background-color: #BA2953;
}*/

#more {
    background-color: #EDAEC0;
    background-image: url('/assets/images/top-wave.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 470px;
    z-index: -1;
}

#catalog h3, #network h3, #kb h3, #shopify h3 {
    color: #0f0307;
    font-family: 'Outfit', 'Helvetica', sans-serif;
    font-size: 36px;
    font-weight: 300;
    font-style: normal;
    line-height: 40px;
    margin-bottom: 25px;
}

/*---------- MEDIA QUERIES ----------*/

@media (min-width: 320px) and (max-width: 480px) {
    #top {
        height: auto;
    }

    img.service-icon {
        max-width: 150px;
    }

    h4 {
        font-size: 24px;
        line-height: 28px;
    }

    img.sausage {
        width: 200px;
        height: auto;
        position: relative;
        z-index: 1;
        left: 10px;
        margin-bottom: -75px;
        padding-top: 0px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {

}

@media (min-width: 769px) and (max-width: 1024px) {

}

@media (min-width: 1025px) and (max-width: 1215px) {
    
}

@media (min-width: 1201px) and (max-width: 1480px) {
}


