@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');
@import url('https://fonts.googleapis.com/css?family=Anton:400,500,700');

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Anton', 'Roboto', sans-serif;
  color: red;
  background-color:black;
}
.logo{
  float: left;
  height: 120px;
  width: 150px;
  border-width: 4px;
  border-style: solid;
  border-radius: 100%;
  border-color: #4794c4;
}
.navbar {
  padding: .8rem;
}
.navbar-nav li {
  padding-right: 20px;
}
.nav-link {
  font-size: 1.1em !important;
  font-family: 'Roboto';
}
.padding {
  padding-bottom: 2rem;
}
.main-container {
  background-image: linear-gradient(to right, black, grey);
  border-radius: 1%;
  border-color:#4794c4;
  border-width: 2px;
  border-style: solid;
  padding-top: 50px;
  text-align: center;
}
.main-p{
  font-size: 40px;
  font-family: 'Roboto';
}

h1 {
  line-height: 1.2;
  font-family: 'Anton';
  color: #5271ff;
}

h2 {
  line-height: 1.2;
  font-family: 'Anton';
  color: #4ab5e4;
}
h3{
  font-size: 40px;
  line-height: 1.2;
  font-family: 'Anton';
  color: #508dab;
}

p {
  font-size: 25px;
  position: center;
  font-family: sans-serif;
  color:#2253ea;
}

.hr3{
  background-color: white;
  height: 1px;
  width: 15%;
  margin-right: auto;
  margin-left: auto;
}

.Team{
  width:70%;
  height:25%;
  border-radius:10%;
  border-color:#4794c4;
  border-style: dashed;
  border-width: 2px;
  margin-bottom: 50px;
}
.Profile-Pics{
  width: 400px;
  height: 500px;
  border-radius: 5%;
  border-color: #4794c4;
  border-style:dotted;
  border-width: 1.5px;
}

.flex-container {
  display: flex;
}

.flex-child {
  flex:1;
  border-width: 1px;
  border-style: solid;
  border-color: white;
}

.flex-child:first-child{
  margin-right: 20px;
}

.footer-container {
  background-color:#212329;
  padding: 4rem 0 4rem 0;
}

#ContactUs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

.footer{
  background-color:#212329;
  color:whitesmoke;
  padding-top: 2rem;
  width: 90%;
}

.footer-heading {
  display: flex;
  flex-direction: column;
  margin: 2rem;
}

.footer-heading h2{
  margin-bottom: 2rem;
  font-size: 25px;
  font-family: 'Anton';
  color: #004aad;
}

.footer-heading h3{
  font-size: 18px;
  font-family: sans-serif;
  color: #38b6ff;
}

.footer-heading img{
  width:10%;
  height:15%;
}

.footer-heading a{
  font-family: sans-serif;
  color:whitesmoke;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-heading a:hover {
  color: red;
  transition: 0.3s ease-out;
}

.copyright {
  font-size: 12px;
  font-family:'Roboto';
  text-align: center; 
  padding-top: 8px; 
  color: whitesmoke; 
  line-height: 1.25;
}








/*---Media Queries --*/
@media (max-width: 992px) {

  }
@media (max-width: 768px) {
  
}
@media (max-width: 576px) {
  
}


/*---Firefox Bug Fix --*/
.carousel-item {
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
/*--- Fixed Background Image --*/
figure {
  position: relative;
  width: 100%;
  height: 60%;
  margin: 0!important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#fixed {
  background-image: url('img/mac.png');
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}





/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/








