/* Core Stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
     font-size: 20px;
    line-height: 1.7;
    color: #FFFFFF;
    background: #000000;
    text-align: center;
}

@media screen and (min-width: 600px) {
  body {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  body {
    font-size: 15px;
  }
}

#body {
    padding-top: 80px;
    margin-left: 1.5vw;
    margin-right: 1.5vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #FFFFFF;
}

a {
    color: #FFFFFF;
    text-decoration: none;
}

a:hover {
    color: #ce001f;
}

pre {
    background: #000000;
    margin: 1rem 0;
    border-radius: 2px;
}

blockquote {
    border-left: 10px solid #eee;
    margin: 0;
    padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
    margin: 0 3rem;
}

.padding {
    padding: 3rem 1rem;
}

.left {
    float: left;
}

.right {
    float: right
}

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

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

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

/* Content Styling */
.header .padding {
    padding: 1rem 0;
}

.header {
    position: fixed;
    width: 100%;
    background-color: #000000;
    color: #eee;
}

.header a {
    color: #fff;
}

.header .logo {
    font-size: 20px;
    text-transform: uppercase;
}

.footer {
    background-color: #000000;
}

/* Menu Settings */
@font-face {
  font-family: 'VoxIraFont';
  src: url(../fonts/Capture-it.ttf) format('truetype');}

.main-nav ul {
    font-family: 'VoxIraFont', sans-serif;
    text-align: center;
    letter-spacing: -1em;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    display: inline-block;
    letter-spacing: normal;
}

.main-nav ul li a {
    position: relative;
    display: block;
    line-height: 45px;
    color: #ffffff;
    padding: 0 20px;
    white-space: nowrap;
}

.main-nav > ul > li > a {
    border-radius: 2px;
}

/*Active dropdown nav item */
.main-nav ul li:hover > a {
    background-color: #ce001f;
}

/* Selected Dropdown nav item */
.main-nav ul li.selected > a {
    background-color: #880217;
    color: #ffffff;
}

/* Dropdown CSS */
.main-nav ul li {position: relative;}

.main-nav ul li ul {
    position: absolute;
    background-color: #1F8DD6;
    min-width: 100%;
    text-align: left;
    z-index: 999;

    display: none;
}
.main-nav ul li ul li {
    display: block;
}

/* Dropdown CSS */
.main-nav ul li ul ul {
    left: 100%;
    top: 0;
}

/* Active on Hover */
.main-nav li:hover > ul {
    display: block;
}

/* Child Indicator */
.main-nav .has-children > a {
    padding-right: 30px;
}
.main-nav .has-children > a:after {
    font-family: FontAwesome;
    content: '\f107';
    position: absolute;
    display: inline-block;
    right: 8px;
    top: 0;
}

.main-nav .has-children .has-children > a:after {
    content: '\f105';
}

.sociallogo {
    font-size: 25px;
    height: 25x;
    width: 30px;
}

.button {
    background: #880217;
    border-color: #227ded;
    color: #fff;
    font-family: 'VoxIraFont';
}

.link {
    color: #227ded;
}

.contact-form button, input, textarea, select, optgroup {
    color: #000000;
}


.topnav .icon {
  display: none;
  font-size: 40px !important;
}

@media screen and (max-width: 600px) {
  .topnav ul{display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {   

  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
    .topnav.responsive #voxiralogo{
        display: none;
    }
  .topnav.responsive {
        background-color: #000000;
    }
    
  .topnav.responsive li,   
   .topnav.responsive ul {
        float: none;
        display: block;
        text-align: center;
    }
}

.landingFoto{
  max-width: 50%;
}


.profileFoto{
  aspect-ratio: 1 / 1;
  max-width: 150px;
  border-radius: 50%;
  object-fit: cover;
}