body {
    font-family: Segoe UI,SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 15px;
}

p {
    font-size: 18px;
}

h1 {
    color: #153D61;
}

#mainBody {
    transition: margin-left .5s;
}

/* BOOTSTRAP FIX */
.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.mainBody {
    max-width: 1500px;
    margin: auto;
    box-shadow: 0 0px 3px 0 rgba(0,0,0,0.1);
}

.navbar {
    height: 200px;
}

.flex-container {
    display: flex;
}

.navbar-column1 {
    /*border-radius: 0 30px; */
    float:left;
    width: 15%;
    height:100px;
    margin-top: 45px; 
    background-color: #153D61;
    /* Invert Border */   
}


.navbar-column1-invertedBorder {
    background: #ffffff none repeat scroll 0 0;
    border-radius: 100px 0 0 100px;
    content: " ";
    display: block;
    height: 110px;
    width: 50px;
    float: right;
    margin-top: -5px;
}

.navbar-column2 {
    float:left;
    text-align: center;
    margin-top: 40px;
}

.navbar-column3 {
    /*border-radius: 30px 0;*/
    float:left;
    width: 75%;
    height:100px; 
    margin-top: 45px; 
    background-color: #153D61;
}


.navbar-column3-invertedBorder {
    background: #ffffff none repeat scroll 0 0;
    border-radius: 0 100px 100px 0;
    content: " ";
    display: block;
    height: 110px;
    width: 50px;
    float: left;
    margin-top: -5px;
}

.navbar-column3-vertical-items {
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    float: right;
    margin-top: 45px;
}

.navbar-column3-vertical-items > a {
    font-size: 20px;
    padding-left: 5%;
    color: white;
    /* color: #153D61; */
    -webkit-transition-duration: 0.4s; /* Safari */
	transition-duration: 0.4s;
}

.navbar-column3-vertical-items > a:hover {
    color: #D9BC65;
    text-decoration: none;
}

.index-topImage {
    border: 1px solid #ccc!important;
    border-radius: 10px 10px 0 0px;
    height: 50%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    text-align: center;
    background-image: url("../images/index_macbook.jpg");
}

.main-container-big {
    background-color: #F9F9FA;
    border-radius: 10px;
    border: 1px solid #ccc !important;
    margin: 0 15px;
    /* box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12); LESS INTENSE SHADOW */
    box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19); /* MORE INTENSIVE SHADOW */
}

.main-container-small {
    background-color: #F9F9FA;
    border-radius: 10px;
    border: 1px solid #ccc !important;
    padding: 5px;
    /* box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12); LESS INTENSE SHADOW */
    box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19); /* MORE INTENSIVE SHADOW */
}

footer {
    background-color: #D9BC65;
    color: #153D61;
    font-size: 20px;
}

/* ========================== SOCIAL MEDIA ========================== */

.fa {
    padding: 20px;
    font-size: 30px;
    width: 80px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 10px;
}
  
.fa:hover {
      opacity: 0.7;
}

.fa-facebook {
    background: #3B5998;
    color: white;
  }
  
.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-instagram {
    background: #125688;
    color: white;
  }
  

/* =================================================================== */
/* ========================== MENU ICON ========================== */
.Menu-Bar {
    display: inline-block;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}
  
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}
  
.change .bar2 {opacity: 0;}
  
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}
/* =================================================================== */


/* =========================== SIDE BAR ============================== */

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
  
.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
  
.sidebar a:hover {
    color: #f1f1f1;
}
  
.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
  
.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
}
  
.openbtn:hover {
    background-color: #444;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidebar {padding-top: 15px;}
    .sidebar a {font-size: 18px;}
}
  /* ============================== CONTACT HTML ============================ */
/* ============================== CONTACT FORM ============================ */
/* Style inputs */
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

    input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
}

    input[type=submit]:hover {
    background-color: #45a049;
}

div > #containerParent {
    display: table;
    width: 100%;
    text-align: center;
    margin: 5px 0 5px 0;
}

div > #containerTitle {
    height: 120px;
    color: #153D61;
    display: table-cell;
    vertical-align: middle;
}

.container-small-p {
    font-size: 16px;
}

@media (min-width: 768px) {
    .col-sm-3 {
        width: 25%;
        margin-left: 6.33%;
    }
}

.col-container {
    display: flex;
    width: 100%;
  }
  .col {
    display: table-cell;
    padding: 16px;
  }

@media only screen and (max-width: 768px) {
    .col-container { 
        display: table;
        width: 100%;
      }
    .col { 
      display: block;
      width: 100%;
    }
}

.slideanim {visibility:hidden;}
.slide {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(70%);
  } 
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  } 
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}
