/* corporate identity colors of oxovision*/
:root {
    --purple: #ED0CE0;
    --blue: #31AEEE;
    --green: #06EE00;
    --pink: #FB2E8F;
    --yellow: #F3DB0E;
    --turquoise: #11D7BD;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* fonts*/
h1 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 3vw;
    font-weight: 600;
}

@media only screen and (min-width: 1000px) {
    h1 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 599px) {
    h1 {
        font-size: 25px;
    }
}


h3 {
    font-weight: 400;
}

h4 {
}

h5 {
    text-align: center;
}

h6 {
}

p {
    font-weight: 200
}

.center {
    text-align: center;
}

/* buttons*/
.button {
    background: var(--green);
    color: white;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    font-size: 2vw;
    border-radius: 1px;
    width: 22vw;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5%;
}

@media only screen and (min-width: 1000px) {
    .button {
        width: 230px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 599px) {
    .button {
        width: 80vw;
        padding: 20px;
        font-size: 5vw;
    }
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

/* header*/
.header {
    background: black;
    color: white;
    margin: 0px;
    padding: 25px;
    position: fixed;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    z-index: 10;
}

.titleHeading {
    color: white;
    background: black;
    position: absolute;
    font-size: 4vw;
    text-align: left;
    left: 5%;
    padding: 1px;
}

@media only screen and (min-width: 1000px) {
    .titleHeading {
        font-size: 40px;
    }
}

@media only screen and (max-width: 599px) {
    .titleHeading {
        font-size: 5vw;
        top: 5%;
    }
}

.titlePos1 {
    top: 17%;
}

@media only screen and (max-width: 599px) {
    .titlePos1 {
        top: 10%;
    }
}

.titlePos2 {
    top: 25%;
}

@media only screen and (max-width: 599px) {
    .titlePos2 {
        top: 15%;
    }
}

.titlePos3 {
    top: 33%;
}

@media only screen and (max-width: 599px) {
    .titlePos3 {
        top: 20%;
    }
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky + .content {
    padding-top: 102px;
}

.navLink {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
    display: block;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    float: right;
    display: inline;
}

li a:hover {
    color: var(--yellow);
}

/* hamburger navigation */
.topnav {
    padding: 0px;
    overflow: hidden;
    background-color: black;
    position: fixed;
    width: 100%;
    max-width: 1000px;
    z-index: 10;
}

.topnav #myLinks {
    display: none;
}

.topnav a {
    color: white;
    padding: 20px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.topnav a.icon {
    background: transparent;
    display: block;
    position: absolute;
    right: 0;
    top: -6px;
}

/* section */
section {
    padding: 5% 10%;
}

@media only screen and (max-width: 690px) {
    section {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.blackSection {
    background: black;
    color: white;
}


.whiteSection {
    background: #f5f5f5;
    color: black;
}
@media only screen and (max-width: 599px) {
    .whiteSection {
        background: white;
    }
}

/* circles */
.circle {
    border-radius: 50%;
    line-height: 1.4em;
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
    padding: 1em;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.blueCircle {
    width: 30vw;
    height: 30vw;
    max-width: 300px;
    max-height: 300px;
    font-size: 3vw;
    background: var(--blue);
    position: absolute;
    top: 25%;
    right: 15%;
}

@media only screen and (min-width: 1000px) {
    .blueCircle {
        font-size: 30px;
    }
}

@media only screen and (max-width: 599px) {
    .blueCircle {
        top: 65%;
        right: 15%;
    }
}

.greenCircle1 {
    width: 20vw;
    height: 20vw;
    max-width: 200px;
    max-height: 200px;
    font-size: 2vw;
    background: var(--green);
    position: absolute;
    bottom: 10%;
    right: 0;
}

@media only screen and (min-width: 1000px) {
    .greenCircle1 {
        font-size: 20px;
    }
}

.greenCircle2 {
    width: 20vw;
    height: 20vw;
    max-width: 200px;
    max-height: 200px;
    font-size: 2vw;
    background: var(--green);
    position: absolute;
    bottom: 0;
    left: 15%;
}

@media only screen and (min-width: 1000px) {
    .greenCircle2 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 599px) {
    .greenCircle2 {
        font-size: 3.7vw;
        width: 35vw;
        height: 35vw;
        bottom: 57%;
        left: 50%;
    }
}

.pinkCircle {
    width: 30vw;
    height: 30vw;
    max-width: 250px;
    max-height: 250px;
    font-size: 2.5vw;
    background: var(--pink);
    position: absolute;
    bottom: 10%;
    left: 10%;
}

@media only screen and (min-width: 1000px) {
    .pinkCircle {
        font-size: 25px;
    }
}

.purpleCircle {
    width: 17vw;
    height: 17vw;
    max-width: 150px;
    max-height: 150px;
    font-size: 1.7vw;
    background: var(--purple);
    position: absolute;
    bottom: 0;
    left: 0;
}

@media only screen and (min-width: 1000px) {
    .purpleCircle {
        font-size: 15px;
    }
}


/*footer*/
footer {
    background: black;
    color: white;
    padding: 50px;
}

/* grid */
* {
    box-sizing: border-box;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.wrapper > div {
    padding: 1em;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    /* grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); */
    grid-auto-rows: minmax(100px, auto);
}

.one {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 4;
}

.two {
    grid-column-start: 5;
    grid-column-end: 10;
    grid-row-start: 1;
    grid-row-end: 3;
}

.three {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 4;
    grid-row-end: 5;
}

.four {
    grid-column-start: 7;
    grid-column-end: 9;
    grid-row-start: 4;
    grid-row-end: 5;
}

.five {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 4;
}

.six {
    grid-column-start: 4;
    grid-column-end: 9;
    grid-row-start: 2;
    grid-row-end: 4;
}

.seven {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
}

.eigth {
    grid-column-start: 3;
    grid-column-end: 9;
    grid-row-start: 2;
    grid-row-end: 3;
}

.nine {
    grid-column-start: 1;
    grid-column-end: 4;
}

.ten {
    grid-column-start: 4;
    grid-column-end: 7;
}

.eleven {
    grid-column-start: 7;
    grid-column-end: 10;
}

.twelve {
    grid-column-start: 1;
    grid-column-end: 4;
}

.thirteen {
    grid-column-start: 4;
    grid-column-end: 7;
}

.fourteen {
    grid-column-start: 7;
    grid-column-end: 10;
}


/*container to display text on imgages*/
.container {
    position: relative;
    text-align: center;
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.center-left {
    position: absolute;
    top: 50%;
    left: 16px;
}

.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

.center-right {
    position: absolute;
    top: 50%;
    right: 16px;
}

.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contactFontStyle {
    color: white;
}

@media screen and (min-width: 600px) {
    .headerMobileImage {
        display: none;
    }
}

@media screen and (max-width: 599px) {
    .headerDesktopImage {
        display: none;
    }
}


@media screen and (min-width: 600px) {
    .displayMobileImage {
        display: none;
    }
}

@media screen and (max-width: 599px) {
    .displayDesktopImage {
        display: none;
    }
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container2 {
    display: flex;
    align-items: flex-start;
}

.dropdown {
    background: white;
    color: black;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 600px) {
    .paddingHeader {
        padding-top: 50px;
    }
}

@media screen and (max-width: 599px) {
    .paddingHeader {
        padding-top: 40px;
    }
}
