*,
ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

body {
  font-family: "Open Sans", serif;
  font-weight: normal;
  font-size: 14px;
}

.top-header {
  background-color: #141d38;
  padding: 5px 0;
  margin: 0;
  position: relative;
}
.top-header .social-handler ul li {
  display: inline-block;
  margin-right: 5px;
}
.top-header .social-handler ul li a {
  color: #fff;
  display: block;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 24px;
}
.top-header .social-handler ul li a i {
  color: #fff;
}
.top-header .contact-details {
  text-align: right;
}
.top-header .contact-details ul li {
  display: inline-block;
  margin-left: 20px;
}
.top-header .contact-details ul li span,
.top-header .contact-details ul li a {
  color: #fff;
  vertical-align: middle;
}

header {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
}
header .branding a {
  display: block;
}
header .branding a img {
  width: 130px;
  margin-top: 5px;
}
header nav.main-nav ul li {
  display: inline-block;
}
header nav.main-nav ul li a {
  display: block;
  padding: 30px 20px;
  color: #333;
  font-weight: 600;
  border-bottom: solid 2px transparent;
  transition: all ease 0.3s;
}
header nav.main-nav ul li a.active, header nav.main-nav ul li a:hover {
  border-bottom-color: #333;
}

.banner {
  width: 100%;
  height: 500px;
  background-image: url(./../images/banner-home.jpg);
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 20px;
}
.banner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.16);
  z-index: 0;
  left: 0;
  top: 0;
}
.banner .branding-header {
  z-index: 1;
  position: relative;
  text-align: center;
  width: 700px;
  color: #fff;
  margin: auto;
  margin-top: 10%;
  max-width: 100%;
}
.banner .branding-header h1 {
  text-shadow: 0px 2px 5px #333;
  font-size: 24px;
}
.banner .branding-header p {
  margin: 20px 0;
  font-size: 16px;
  text-shadow: 0px 2px 5px #333;
}

.services {
  padding: 50px 20px;
  position: relative;
  background-color: rgba(176, 213, 221, 0.29);
}
.services h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 50px;
}
.services .block {
  position: relative;
  border: solid 1px #ddd;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 15px;
  display: flex;
  align-items: center;
  background-color: #fff;
  height: 130px;
  margin-bottom: 30px;
  cursor: pointer;
}
.services .block img {
  width: 100px;
}
.services .block .desc h3 {
  font-size: 16px;
  font-weight: 600;
}
.about-org {
  padding: 50px 20px;
  background-color: rgba(242, 242, 242, 0.22);
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-org .highlight {
  margin-top: 80px;
  width: 450px;
  max-width: 100%;
}
.about-org .highlight h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
.about-org .block {
  text-align: center;
}

.contact-us {
  padding: 50px 20px;
}
.contact-us .block {
  width: 400px;
  max-width: 100%;
}
.contact-us .block h3 {
  font-size: 20px;
  font-weight: 600;
}
.contact-us .block ul li {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  box-shadow: 4px 4px 5px 0px rgba(51, 51, 51, 0.0509803922);
  padding: 10px;
}
.contact-us .block ul li i {
  font-size: 20px;
  width: 50px;
  text-align: center;
}
.contact-us .block ul li .wrp h4 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
}
.contact-us .block ul li .wrp h4 p {
  margin: 0;
}
.contact-us .contact-form {
  padding: 40px 20px;
  background-image: linear-gradient(90deg, #00deff 0%, #7141b1 100%);
  width: 100%;
  color: #fff;
}
.contact-us .contact-form h3 {
  font-size: 20px;
}
.contact-us .contact-form p {
  margin-bottom: 10px;
}
.contact-us .contact-form p input,
.contact-us .contact-form p textarea {
  width: 100%;
  padding: 15px 10px;
  border: solid 1px transparent;
  background-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}
.contact-us .contact-form p input:focus, .contact-us .contact-form p input:active,
.contact-us .contact-form p textarea:focus,
.contact-us .contact-form p textarea:active {
  border-color: transparent;
}
.contact-us .contact-form p .act-cust-btn {
  background: #fff;
  color: #1b1d21;
  border: solid 0px transparent;
  padding: 10px 20px;
  font-weight: 600;
  transition: all ease 0.3s;
}
.contact-us .contact-form p .act-cust-btn:hover {
  background-color: #7141b1;
  color: #fff;
}
.contact-us .contact-form p ::-moz-placeholder {
  color: #fff;
}
.contact-us .contact-form p ::placeholder {
  color: #fff;
}

footer {
  padding: 50px 20px;
  background-color: #211e3b;
  color: #fff;
}
footer .branding img {
  width: 100px;
  margin-bottom: 20px;
}
footer .offerings h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
footer .offerings ul li {
  list-style: none;
  margin-bottom: 15px;
}

.footer-end {
  background-color: #211e3b;
  padding: 10px;
  border-top: solid 1px #5d5b70;
  color: #fff;
}
.footer-end p {
  margin: 0;
}

.to-top {
  position: fixed;
  bottom: 10%;
  right: 5%;
  color: #fff;
  z-index: 1;
  background-color: rgb(61, 57, 95);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 5px;
  transition: all ease 0.3s;
  opacity: 0.3;
}
.to-top:hover {
  transform: translateY(-5px);
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .top-header {
    text-align: center;
  }
  .top-header .social-handler {
    margin-bottom: 15px;
  }
  .top-header .contact-details {
    text-align: center;
    margin-bottom: 15px;
  }
  header {
    text-align: center;
  }
  .banner {
    height: 350px;
  }
  .contact-us .block {
    margin: auto;
  }
  footer {
    text-align: center;
  }
  footer .branding {
    margin-bottom: 40px;
  }
  .footer-end {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .services .block .desc h3 {
    font-size: 14px;
  }
  .services .block .desc p {
    font-size: 12px;
  }
  .about-org .highlight {
    margin-top: 0;
  }
}/*# sourceMappingURL=style-scss.css.map */