@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Oxygen:wght@300;400;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  max-width: 70%;
  margin: 0 auto;
}

p {
  font-size: 1.2em;
  line-height: 1.8em;
}

header {
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url("images/background.png");
}

header .logo {
  position: relative;
}

header ul {
  position: relative;
  display: flex;
}

header ul li {
  list-style: none;
}

header ul li a {
  display: inline-block;
  color: #2a2a2a;
  font-weight: 400;
  margin-left: 40px;
  text-decoration: none;
}

.introBox {
  display: flex;
  margin-top: 50px;
}

.introBox>* {
  flex-direction: column;
}

.introBox {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.introBox .introText {
  position: relative;
  max-width: 650px;
}

.introBox .introText h2 {
  color: rgb(75, 183, 255);
  font-size: 2.2em;
  line-height: 1.5em;
  font-weight: 900;
  text-transform: uppercase;
}

.introBox .introText h2 span {
  color: rgb(66, 107, 145);
  font-size: 1.8em;
}

.introBox .introText a {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: rgb(7, 151, 235);
  color: rgb(255, 255, 255);
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  border-color: rgb(7, 151, 235);
  border-width: 1px;
  border-style: solid;
}

.introBox .introText a:hover {
  background: #fff;
  color: rgb(7, 151, 235);
  border-color: rgb(7, 151, 235);
  border-width: 1px;
  border-style: solid;
}

.introBox .introText .yt {
  background-color: rgb(66, 107, 145);
}

.introBox .introText .yt:hover {
  color: rgb(66, 107, 145);
  border-color: rgb(66, 107, 145);
  ;
}

.introBox .introImage {
  display: flex;
  margin-top: 50px;
  justify-content: flex-end;
}

.introBox .introImage img {
  max-width: 500px;
}

#work {
  text-align: center;
  padding-top: 100px;
  margin: 0 auto;
  padding-bottom: 70px;
}

#work .row {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

#work .col-md-12 {
  position: relative;
  transition: all 0.4s ease-in-out;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 800px;
}

#work h1 {
  font-size: 2em;
  font-weight: 700;
  color: rgb(66, 107, 145);
}

#work .fa {
  padding-bottom: 20px;
  font-size: 3.5em;
  color: rgb(75, 183, 255);
}

#work .fa-mobile {
  font-size: 5em;
}

#work hr {
  color: rgb(75, 183, 255);
  ;
  border: 2px solid;
}

@media (max-width: 991px) {
  header .logo {
    position: relative;
  }
  header ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    visibility: hidden;
    opacity: 0;
  }
  header ul.active {
    visibility: visible;
    opacity: 1;
  }
  header ul li a {
    display: inline-block;
    color: #111;
    font-weight: 400;
    margin-left: 0;
    text-decoration: none;
    font-size: 2em;
    margin: 10px 0;
  }
  header ul li a:hover {
    color: rgb(75, 183, 255);
  }
  .toggleMenu {
    position: relative;
    width: 40px;
    height: 40px;
    background: url(menu2.png);
    background-position: center;
    background-size: 30px;
    background-repeat: no-repeat;
    z-index: 2;
    cursor: pointer;
  }
  .toggleMenu.active {
    background: url(close2.png);
    background-position: center;
    background-size: 25px;
    background-repeat: no-repeat;
    filter: invert(1);
  }
  .introBox {
    flex-direction: column;
    margin-top: 80px;
  }
  .introBox .introText {
    position: relative;
    max-width: 100%;
    padding-right: 20px;
  }
  .introBox .introText h2 {
    font-size: 3em;
  }
  .introBox .introText a {
    font-size: 14px;
    padding: 8px 15px;
  }
  .introBox .introImage {
    display: flex;
    padding-right: 0;
    margin-top: 50px;
    justify-content: center;
  }
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 431px) {
  .introBox .introText h2 {
    font-size: 1.6em;
  }
  p {
    font-size: 1.1em;
  }
  .introBox .introImage img {
    max-width: 300px;
  }
  #work {
    text-align: center;
    padding-top: 20px;
    margin: 0 auto;
  }
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  #work h1 {
    font-size: 1.5em;
  }
  #work .col-md-12 {
    padding-bottom: 10px;
  }
  #work .col-md-12 {
    padding-bottom: 10px;
    min-width: 280px;
    font-size: 0.9em;
  }
}

a .fa-file-text-o{
  font-size: 4em;
  color:rgb(66, 107, 145);
}

.alert-info{
  background-color: #f9feff;
  border-color:rgb(159, 211, 245);
}

.alert-info:hover{
  background-color: #ecf9fc;
  border-color:rgb(66, 107, 145);
}

/*-------------------------------*/
/* Contact Section
--------------------------------*/

#contact #map {
  height: 290px;
  margin-bottom: 20px;
}

@media (max-width: 599px) {
  #contact #map {
    margin-top: 20px;
  }
}

#contact .form #sendmessage {
  color: #00afef;
  border: 1px solid #00afef;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input, #contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: #00afef;
  border: 0;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #008CC0;
}

#contact h1 {
  font-size: 2em;
  font-weight: 700;
  color: rgb(66, 107, 145);
}

#contact h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: rgb(66, 107, 145);
}

#contact .row {
  padding-top: 3em;
  padding-bottom: 3em;
}

#contact a {
  color: #000;
  text-decoration: none;
}

#contact .row h2 {
  font-size: 2em;
  font-weight: 700;
  color: rgb(66, 107, 145);
}

@media(max-width: 431px) {
  section #contact {
    padding: 0;
  }
  #contact h1 {
    font-size: 1.5em;
    font-weight: 700;
    color: rgb(66, 107, 145);
    text-align: center;
  }
  #contact p {
    text-align: center;
    font-size: 1em;
  }
  #contact .row {
    padding-top: 3em;
    padding-bottom: 3em;
    text-align: center;
  }
  #contact .row .col-md-4 {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
}

.footer-copyright {
  font-size: 0.9em;
  margin-top: 100px;
  color: grey;
}

.footer-copyright a {
  color: grey;
  text-decoration: none;
}

.footer-copyright a:hover {
  color: rgb(7, 151, 235);
  text-decoration: none;
}