/* Navbar */
.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.7) !important;
    color: rgba(255, 255, 255, 1) !important;
}
  
.navbar-light .navbar-nav .nav-link{
    color: white;
    font-size: 22px;
}
  
.navbar-light .navbar-brand{
    color: white;
    font-size: 30px;
}
  
.navbar-brand:hover{
    -webkit-text-stroke: .7px rgb(79, 195, 247) !important;
    -webkit-text-fill-color: rgb(79, 195, 247) !important;
}
  
.navbar-nav > li > a:hover, 
  
.navbar-nav > li > a:focus {
    -webkit-text-stroke: .7px rgb(79, 195, 247) !important;
    -webkit-text-fill-color: rgb(79, 195, 247) !important;
  
}
  
.navbar-container #company-logo {
    width: 60px;
    filter: invert(54%) sepia(83%) saturate(1494%) hue-rotate(154deg) brightness(104%) contrast(106%);
  
}
  
.navbar{
    transition-property: background-color;
    transition-duration: 1s;
    z-index: 99999;
}

/* Body */
body {
    background-color: black;
    color: white;
}

body, html {
    height: 100%;
}

h1 {
    padding: 30px;
    font-size: 100px;
}

h2 {
    font-size: 40px;
    text-align: center;
}

p {
    font-size: 20px;
    padding-top: 10px;
}

/* Hero */
.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../media/pictures/city.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

/* Button */
.button a{
    text-decoration: none;
    display: inline-block;
    background-color: rgba(20,20,20, 0.5);
    color: #fff;
    font-size: 15px;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
    transition-property: transform, box-shadow, -webkit-text-stroke, background-color;
    transition-duration: 0.5s;
}

  .button a:hover{
    -webkit-text-stroke: 1px white;
    transform: scale(1.1);
    background-color: rgba(79, 195, 247, 0.7);
    box-shadow: 
    0 3px 5px 0 
    rgba(79, 195, 247, 2), 
    0 3px 30px 0 
    rgba(79, 195, 247, 2);
}

/* Content */
.text-left {
    width: 50%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-bubble {
    border: solid 5px;
    border-color: white;
    background-color: rgba(0, 191, 255, 0.4);
    border-radius: 15px;
    padding: 30px;
    width: 500px;   
}

.img-right {
    width: 50%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
}

.text-right {
    width: 50%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
}

.img-left {
    width: 50%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Footer */
.contact-title {
    margin: 0;
    padding-top: 5vw;
    padding-bottom: 5vw;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center
}
  
.contact-us {
    margin-bottom: 0;
    padding-bottom: 5vw;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.contact-us ul {
    padding-left: 5vw;
    padding-right: 5vw; 
}
  
.contact-us a {
    color: white;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #fff;
    padding: 14px 20px;
    border-radius: 50px;
    margin-top: 20px;
    transition-property: transform, box-shadow, -webkit-text-stroke, background-color;
    transition-duration: 0.5s;
}
  
.contact-us a:hover {
    -webkit-text-stroke: 1px white;
    transform: scale(1.1);
    background-color: rgba(79, 195, 247, 0.7);
    box-shadow: 
    0 3px 5px 0 
    rgba(79, 195, 247, 2), 
    0 3px 30px 0 
    rgba(79, 195, 247, 2);
  
}

.copyright {
    background-color: black;
    color: white;
    padding-left: 10vw;
    padding-right: 10vw;
}
  
.copyright-content li {
    padding-right: 10pt;
    display:inline-block;
}

.copyright-content a {
    color: white;
    text-decoration: none;
}

ul {
    list-style: none;
}

.contact-us a > button{
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

/* Mobile */
@media only screen and (max-width: 1080px) {
    .img-right, .img-left, .text-right, .text-left {
        display: block;
        float: none;
        width: 100%;
    }
}



