* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "nunito", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  font-size: 10px;
  font-family: "Cabin", sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
  border-left: 1px solid black;
}

::-webkit-scrollbar-thumb {
  background-color: #1f3041;
}

footer .footer {
  background-image: url(/static/footer-bg.jpg);
  color: #747e80;
}
footer .footer .container {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer .container .links {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footer .container .links h5 {
  font-size: 3rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
footer .footer .container .links a:link,
footer .footer .container .links a:visited,
footer .footer .container .links a:active {
  color: #747e80;
  font-size: 1.7rem;
  margin: 0.5rem 0;
}
footer .footer .container .brief-footer {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 2rem;
}
footer .footer .container .brief-footer h5 {
  font-size: 3rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
footer .footer .container .brief-footer p {
  font-size: 1.7rem;
  padding: 0 1rem;
  text-align: center;
}
footer .footer .container .contact {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .footer .container .contact h5 {
  font-size: 3rem;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
footer .footer .container .contact form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
footer .footer .container .contact input {
  width: 80%;
  margin: 0.5rem 0;
  padding: 1rem 0;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
}
footer .footer .container .contact input:last-child {
  margin-bottom: 2rem;
}
footer .footer .container .contact button {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 1rem 5rem;
  font-size: 1.5rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: auto;
}
footer .footer .container .contact button:hover {
  background-color: white;
  color: black;
  font-weight: 700;
}

footer .copyright {
  height: 10vh;
  background-color: black;
  color: #747e80;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 100;
}

.foot-mid {
  margin-bottom: 2.5rem !important;
}

@media screen and (max-width: 1024px) and (min-width: 501px) {
  footer .footer .container {
    height: 40vh;
  }
  footer .footer .container .contact h5 {
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  footer .footer .container {
    height: unset;
    flex-direction: column;
    padding: 5rem 0;
  }
  footer .footer .container .links,
  footer .footer .container .brief-footer {
    width: 90%;
    margin-bottom: 4rem;
  }
  footer .footer .container .contact {
    width: 90%;
  }
}

.top-menu {
  height: 5vh;
  background-color: #1f3041;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 0 10rem;
  align-items: center;
}
.top-menu .top-menu-left i {
  padding: 1rem;
  font-size: 1.5rem;
}
.top-menu .top-menu-left a,
.top-menu .top-menu-left a:visited {
  color: white;
  font-size: 1.5rem;
}
.top-menu .top-menu-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-menu .top-menu-right i,
.top-menu .top-menu-right p {
  padding: 1rem;
  font-size: 1.5rem;
}
.top-menu .top-menu-right a,
.top-menu .top-menu-right a:visited {
  color: white;
  font-size: 1.5rem;
}
.top-menu .top-menu-right i {
  cursor: pointer;
}

.logo {
  cursor: pointer;
}
.logo img {
  width: 60%;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  background-color: white;
  -webkit-box-shadow: 0px 10px 35px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 35px -16px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 35px -16px rgba(0, 0, 0, 0.75);
}

.nav-links {
  margin: auto 0;
  display: flex;
  justify-content: space-around;
  width: 45%;
  animation: transform 5s ease-in;
}
.nav-links a {
  color: #1f3041;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.5s ease;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #1f3041;
  transition: all 0.5s ease;
}
.nav-links a::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background-color: #1f3041;
  transition: all 0.5s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover::before {
  width: 100%;
}
.nav-links li {
  list-style: none;
}

.burger {
  display: none;
  cursor: pointer;
  background-color: white;
  padding: 3px;
  border-radius: 5px;
  transform: translateX(50px);
}
.burger div {
  width: 25px;
  height: 3px;
  background-color: #1f3041;
  margin: 5px;
  transition: all 0.3s ease;
  border-radius: 100px;
}

.toogle .line1 {
  transform: rotate(45deg) translate(5px, 6px);
}

.toogle .line2 {
  opacity: 0;
}

.toogle .line3 {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media screen and (max-width: 1024px) {
  .top-menu {
    display: none;
  }
  .nav-links {
    width: 70%;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .nav-links {
    position: absolute;
    right: 0px;
    top: 9vh;
    height: 91vh;
    background-color: #1f3041;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 60%;
    transform: translateX(100%);
    transition: all 0.4s ease-in;
  }
  .nav-links a {
    color: white;
  }
  .nav-links li {
    opacity: 0;
  }
  .nav-links .li1 {
    animation: navLinkFade 0.5s ease forwards 0.4s !important;
  }
  .nav-links .li2 {
    animation: navLinkFade 0.5s ease forwards 0.6s !important;
  }
  .nav-links .li3 {
    animation: navLinkFade 0.5s ease forwards 0.8s !important;
  }
  .nav-links .li4 {
    animation: navLinkFade 0.5s ease forwards 1s !important;
  }
  .nav-links .li5 {
    animation: navLinkFade 0.5s ease forwards 1.2s !important;
  }
  .burger {
    display: block;
    transform: translateX(0px);
  }
  .nav-active {
    transform: translateX(0%);
  }
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  background: black;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px black, 0 0 5px black;
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}
#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: black;
  border-left-color: black;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}

/* Fancy blur effect */
/* Remove these to get rid of the spinner */
.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero {
  height: 92vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(/static/hero.jpg);
  background-size: cover;
  color: white;
}
.hero .hero-btn {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.hero div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
}
.hero div h4 {
  font-weight: 300;
  font-size: 30px;
  line-height: 80px;
  letter-spacing: 3px;
}
.hero div h3 {
  font-size: 63px;
  line-height: 63px;
  font-weight: 700;
  line-height: 80px;
  margin-bottom: 2rem;
}
.hero div a:link,
.hero div a:visited,
.hero div a:active {
  text-decoration: none;
  font-size: 1.6rem;
  color: #1f3041;
  font-weight: 700;
  margin-top: 1.5rem;
  letter-spacing: 1px;
  background-color: white;
  padding: 1.7rem 6rem;
  border-radius: 4px;
  transition: all 0.8s ease;
}
.hero div a:link:hover,
.hero div a:visited:hover,
.hero div a:active:hover {
  background-color: #1f3041;
  color: white;
}
.hero div .hero-btn-2 {
  text-decoration: none;
  font-size: 1.6rem;
  color: white !important;
  font-weight: 700;
  margin-top: 1.5rem;
  letter-spacing: 1px;
  background-color: transparent !important;
  border: 1px solid white !important;
  padding: 1.7rem 6rem;
  border-radius: 4px;
  margin-left: 2rem;
}
.hero div .hero-btn-2:hover {
  background-color: #1f3041 !important;
  color: white !important;
  border: 1px solid #1f3041 !important;
}

.brief {
  background-color: #1f3041;
  color: white;
}
.brief .brief-sections {
  width: 82vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem 0;
}

.brief-section {
  text-align: center;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brief-section p:first-child {
  font-size: 3rem;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.brief-section p:nth-child(2) {
  font-size: 2rem;
  letter-spacing: 1px;
  font-weight: 400;
}
.brief-section p:last-child {
  font-size: 2rem;
  letter-spacing: 1px;
  font-weight: 400;
}

.intro-section {
  display: flex;
  height: 100vh;
  width: 80vw;
  margin: 0 auto;
}
.intro-section div {
  flex: 1;
  margin: 0 0rem;
}
.intro-section div img {
  height: 100%;
}

.intro-section-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-section-info h5 {
  text-align: left;
  font-size: 4.3rem;
  font-weight: 100;
  line-height: 4.8rem;
  color: #e67324;
}
.intro-section-info h5 span {
  display: block;
  font-weight: 400;
  color: #1f3041;
  letter-spacing: 1px;
}
.intro-section-info p {
  margin-top: 3rem;
  font-size: 1.8rem;
  color: #747e80;
  letter-spacing: 1px;
}

.services {
  display: flex;
  background-color: #edf5f8;
  justify-content: center;
  align-items: center;
  padding: 3rem 7rem;
}
.services .services-left {
  flex: 1;
  margin: 0 2rem;
}
.services .services-left .service h5 {
  font-size: 2.3rem;
  margin-bottom: 2rem;
}
.services .services-left .service p {
  margin-top: 1rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}
.services .services-left .service a:link,
.services .services-left .service a:visited,
.services .services-left .service a:active {
  text-decoration: none;
  font-size: 1.6rem;
  background-color: #1f3041;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 1.7rem 6rem;
  border-radius: 4px;
  transition: all 0.8s ease;
}
.services .services-left .service a:link:hover,
.services .services-left .service a:visited:hover,
.services .services-left .service a:active:hover {
  background-color: white;
  color: #1f3041;
}
.services .services-right {
  flex: 3;
  display: flex;
}
.services .services-right .service {
  flex: 1;
  margin: 1rem 1.7rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.services .services-right .service i {
  font-size: 6rem;
  padding: 1.5rem 0;
}
.services .services-right .service h5 {
  font-size: 2rem;
  padding: 2rem 0;
}
.services .services-right .service p {
  text-align: center;
  font-size: 1.5rem;
}

.service-section {
  background: url(/static/texture2.jpg);
  background-size: cover;
}
.service-section .container {
  display: flex;
  padding: 10rem 0;
}
.service-section .container .service {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 400px;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  margin: 0 2rem;
  border-color: transparent;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  background-color: #f5f5f5;
}
.service-section .container .service i {
  font-size: 5rem;
  background-color: #1f3041;
  color: white;
  border-radius: 100%;
}
.service-section .container .service:first-child i {
  padding: 2.1rem 2rem !important;
}
.service-section .container .service:nth-child(2) i {
  padding: 2rem 2.5rem !important;
}
.service-section .container .service:nth-child(3) i {
  padding: 2.5rem 2rem !important;
}
.service-section .container .service:last-child i {
  padding: 2.5rem 2rem !important;
}
.service-section .container .service a:link,
.service-section .container .service a:visited,
.service-section .container .service a:active {
  font-size: 1.7rem;
  padding: 2rem 0;
  color: #e67324;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.service-section .container .service a:link:hover,
.service-section .container .service a:visited:hover,
.service-section .container .service a:active:hover {
  color: #1f3041;
}
.service-section .container .service p {
  text-align: center;
  font-size: 1.5rem;
  color: #747e80;
}

.mid {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
.mid .mid-left {
  margin: 0 20rem 0 0;
  width: 500px;
}
.mid .mid-left p:first-child {
  color: #747e80;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.mid .mid-left h5 {
  font-size: 2.5rem;
  margin: 1rem 0;
}
.mid .mid-left .mid-p {
  color: #747e80;
  font-size: 1.6rem;
  line-height: 3rem;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}
.mid .mid-left a:link,
.mid .mid-left a:visited,
.mid .mid-left a:active {
  margin-top: 2rem;
  background-color: #1f3041;
  color: white;
  font-size: 1.5rem;
  padding: 1.5rem 3rem;
  border-radius: 4px;
}
.mid .mid-right {
  margin-left: 2rem;
  border: 5px solid #1f3041;
  width: 60%;
}
.mid .mid-right img {
  margin-left: -20rem;
  width: 100%;
  box-shadow: 0px 0px 24px 10px #a3a3a3;
  margin: 10rem;
  margin-left: -10rem;
}

@media screen and (max-width: 1024px) and (min-width: 501px) {
  .hero {
    width: 100%;
    height: 50vh;
  }
  .hero div {
    width: 100%;
  }
  .hero div h4 {
    font-size: 1.5rem;
    line-height: 4.9rem;
  }
  .hero div h3 {
    font-size: 3.3rem;
    line-height: 3.4rem;
    text-align: center;
  }
  .brief-section p:first-child {
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: 700;
  }
  .brief-section p:last-child {
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 400;
  }
  .intro-section {
    height: 70vh;
    width: 99vw;
    margin: 0 auto;
  }
  .intro-section div {
    flex: unset;
    width: 50%;
  }
  .intro-section div img {
    height: 90%;
  }
  .intro-section-info h5 {
    font-size: 2.8rem;
    line-height: unset;
  }
  .services {
    flex-direction: column;
    padding: 3rem 4rem;
  }
  .services .services-left {
    padding: 3rem 4rem;
    margin-bottom: 3rem;
  }
  .service-section .container {
    flex-direction: column;
  }
  .service-section .container .service {
    margin: 5rem 0;
  }
  .mid {
    height: unset;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  .mid .mid-left {
    margin: 5rem 0 0 0;
    width: unset;
    text-align: center;
  }
  .mid .mid-right {
    margin-left: 0rem;
    border: none;
    width: 100%;
    margin-top: 2rem;
  }
  .mid .mid-right img {
    width: 100%;
    box-shadow: none;
    padding: 2rem;
    margin: 0rem;
  }
}

@media only screen and (max-width: 500px) {
  .hero {
    width: 100%;
    background-position: center center;
  }
  .hero .hero-btn {
    flex-direction: column;
  }
  .hero div {
    width: 100%;
  }
  .hero div h4 {
    font-size: 1.5rem;
    line-height: 4.9rem;
  }
  .hero div h3 {
    font-size: 3.3rem;
    line-height: 3.4rem;
    text-align: center;
  }
  .hero div .hero-btn-2 {
    margin-left: 0rem;
  }
  .brief-sections {
    flex-direction: column;
  }
  .brief-section {
    border-bottom: 1px solid white;
    height: 130px;
  }
  .intro-section {
    width: 90vw;
    margin-top: 6rem;
    flex-direction: column;
    height: unset;
  }
  .intro-section div img {
    display: none;
  }
  .services {
    flex-direction: column;
    padding: 3rem 1rem;
  }
  .services .services-left {
    margin-bottom: 3rem;
  }
  .services .services-right {
    flex-direction: column;
  }
  .service-section .container {
    flex-direction: column;
    padding: 5rem 0;
  }
  .service-section .container .service {
    margin: 4rem 1rem;
  }
  .mid {
    height: unset;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  .mid .mid-left {
    margin: 5rem 0 0 0;
    width: unset;
    text-align: center;
  }
  .mid .mid-right {
    margin-left: 0rem;
    border: none;
    width: 100%;
    margin-top: 2rem;
  }
  .mid .mid-right img {
    width: 100%;
    box-shadow: none;
    padding: 2rem;
    margin: 0rem;
  }
}

.about-hero {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/static/about-hero.jpg);
  background-size: cover;
  flex-direction: column;
  color: white;
  letter-spacing: 1px;
}
.about-hero h5 {
  font-size: 5rem;
  line-height: 6rem;
  margin-bottom: 1rem;
}
.about-hero p {
  text-align: center;
  font-size: 2rem;
  padding: 0 40rem;
}

.about-count {
  display: flex;
  padding: 4rem 18rem;
  letter-spacing: 1px;
}
.about-count div {
  flex: 1;
  margin: 2rem;
  padding: 2.5rem;
  background-color: #f7f9fb;
  border-radius: 5px;
  border: 1px solid rgba(201, 201, 201, 0.5);
}
.about-count div h5 {
  font-size: 3.5rem;
  padding-bottom: 1rem;
  color: #1f3041;
}
.about-count div h4 {
  font-size: 2.2rem;
  padding-bottom: 1rem;
  color: #e67324;
}
.about-count div p {
  font-size: 1.6rem;
  padding-bottom: 1rem;
  color: #747e80;
}

.about-history {
  background-color: #1f3041;
  color: white;
  font-size: 2rem;
  text-align: center;
  padding: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.misvis {
  background-color: #1f3041;
  color: white;
}
.misvis .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.misvis .container .mis,
.misvis .container .vis {
  flex: 1;
  margin: 3rem;
  padding: 5rem 3rem;
  letter-spacing: 1px;
}
.misvis .container .mis h5,
.misvis .container .vis h5 {
  font-size: 3rem;
  position: relative;
  margin-bottom: 2rem;
}
.misvis .container .mis h5:hover::after,
.misvis .container .vis h5:hover::after {
  width: 100px;
}
.misvis .container .mis h5::after,
.misvis .container .vis h5::after {
  content: "";
  position: absolute;
  background-color: white;
  height: 3px;
  width: 50px;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.misvis .container .mis p,
.misvis .container .vis p {
  font-size: 1.5rem;
}

.about-brief {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  width: 80vw;
  margin: auto;
}
.about-brief .left {
  flex: 1;
  margin: 1rem;
}
.about-brief .left h5 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
}
.about-brief .left h5::after {
  position: absolute;
  content: "";
  background-color: #1f3041;
  width: 100px;
  height: 2px;
  bottom: 0;
  left: 0;
}
.about-brief .left p {
  padding-right: 6rem;
  font-size: 1.6rem;
  color: #e67324;
  font-weight: 300;
  line-height: 2.5rem;
  letter-spacing: 1px;
}
.about-brief .right {
  flex: 1;
}
.about-brief .right img {
  width: 100%;
}

.value {
  background-color: #1f3041;
  color: white;
}
.value .v-header {
  text-align: center;
  padding: 3rem 0;
}
.value .v-header h5 {
  font-size: 3rem;
  position: relative;
}
.value .v-header h5::after {
  position: absolute;
  content: "";
  background-color: white;
  width: 100px;
  height: 3px;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}
.value .val {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.value .val .v-card {
  padding: 2rem 3rem;
  text-align: center;
}
.value .val .v-card i {
  font-size: 5rem;
}
.value .val .v-card h5 {
  padding: 1rem;
  font-size: 2rem;
  letter-spacing: 1px;
}
.value .val .v-card p {
  font-size: 1.3rem;
}

.adv-section {
  padding: 5rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.adv-section .adv-row {
  display: flex;
}
.adv-section .adv-row .adv {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(201, 201, 201, 0.5);
  padding: 6rem 0;
  transition: all 0.5s ease;
}
.adv-section .adv-row .adv h4,
.adv-section .adv-row .adv h5 {
  color: #e67324;
  font-size: 3rem;
  line-height: 3rem;
}
.adv-section .adv-row .adv h4 {
  font-weight: 500;
}
.adv-section .adv-row .adv p {
  text-align: center;
  margin-top: 2rem;
  padding: 0 6rem;
  font-size: 1.7rem;
  color: #e67324;
}
.adv-section .adv-row .adv:hover {
  color: white !important;
  background-color: #1f3041;
}
.adv-section .adv-row .adv:hover h4,
.adv-section .adv-row .adv:hover h5,
.adv-section .adv-row .adv:hover p {
  color: white;
}

.r11,
.r12,
.r13 {
  border-top: unset !important;
}

.r11 {
  border-left: unset !important;
}

.r13 {
  border-right: unset !important;
}

.r21,
.r22,
.r23 {
  border-bottom: unset !important;
}

.r21 {
  border-left: unset !important;
}

.r23 {
  border-right: unset !important;
}

@media screen and (max-width: 1024px) and (min-width: 501px) {
  .about-hero {
    height: 50vh;
  }
  .about-hero h5 {
    font-size: 4rem;
  }
  .about-hero p {
    padding: 0 20rem;
    font-size: 1.5rem;
    line-height: 3rem;
  }
  .about-count {
    padding: 2rem 2rem;
  }
  .misvis .container .mis,
  .misvis .container .vis {
    margin: 1rem;
    padding: 1rem 1rem;
  }
  .about-brief {
    height: 100vh;
    flex-direction: column-reverse;
  }
  .value .val {
    flex-direction: column;
  }
  .adv-section .adv-row {
    flex-direction: column;
  }
  .r11,
  .r12,
  .r13 {
    border: 1px solid rgba(201, 201, 201, 0.5) !important;
  }
  .r21,
  .r22,
  .r23 {
    border: 1px solid rgba(201, 201, 201, 0.5) !important;
  }
}

@media screen and (max-width: 500px) {
  .about-hero h5 {
    font-size: 4rem;
  }
  .about-hero p {
    padding: 0 1rem;
    font-size: 1.5rem;
  }
  .about-count {
    flex-direction: column;
    padding: 3rem;
  }
  .about-history {
    font-size: 2.5rem;
    padding: 2rem 0;
  }
  .misvis .container {
    flex-direction: column;
    position: relative;
  }
  .misvis .container .mis,
  .misvis .container .vis {
    margin: 1rem;
    padding: 1rem 1rem;
  }
  .misvis .container .mis {
    border-bottom: 2px solid white;
  }
  .about-brief {
    height: unset;
    flex-direction: column-reverse;
    width: 90vw;
  }
  .about-brief .left h5 {
    font-size: 4rem;
  }
  .about-brief .left p {
    padding: 0;
  }
  .value .val {
    flex-direction: column;
  }
  .adv-section .adv-row {
    flex-direction: column;
  }
  .r11,
  .r12,
  .r13 {
    border: 1px solid rgba(201, 201, 201, 0.5) !important;
  }
  .r21,
  .r22,
  .r23 {
    border: 1px solid rgba(201, 201, 201, 0.5) !important;
  }
}

.contact-hero {
  height: 50vh;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/static/contact-hero.jpg);
  background-size: cover;
  background-position: center center;
  color: white;
  font-size: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
}

.contact-details {
  display: flex;
  justify-content: center;
  padding: 10rem 0rem;
}
.contact-details div {
  margin: 2rem;
  padding: 2rem 0;
  background-color: #f7f9fb;
  border-radius: 5px;
  border: 1px solid rgba(201, 201, 201, 0.5);
  text-align: center;
  flex: 1;
  display: flex;
  height: 230px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.contact-details div i {
  font-size: 5rem;
  color: #1f3041;
}
.contact-details div h5 {
  font-size: 2rem;
  text-align: center;
  color: #e67324;
}
.contact-details div a {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1f3041;
  letter-spacing: 1px;
  position: relative;
  transition: all 1s ease;
}
.contact-details div a::after {
  content: " ";
  height: 2.5px;
  width: 90%;
  background-color: #747e80;
  position: absolute;
  top: 130%;
  left: 5px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateX(-50%);
}
.contact-details div a:hover::after {
  background-color: #1f3041;
  opacity: 1;
  transform: translateX(0);
}

.contact-form {
  margin: 5rem 10rem;
  background-color: white;
  padding: 5rem 1rem;
  box-shadow: 0px 0px 6px -1px #999999;
}
.contact-form .contact-form-header {
  text-align: center;
  letter-spacing: 1px;
}
.contact-form .contact-form-header h5 {
  font-size: 3rem;
  color: #e67324;
  margin-bottom: 2rem;
}
.contact-form .contact-form-header p {
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #747e80;
  padding: 0rem 15rem;
  margin-bottom: 4rem;
  line-height: 2.8rem;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 50vh;
}
.form .form-group {
  width: 85%;
}
.form .form-group input:first-child {
  margin-right: 2%;
}
.form .form-group input,
.form .form-group textarea {
  height: 5rem;
  background-color: #f7f9fb;
  border-radius: 5px;
  border: 1px solid rgba(201, 201, 201, 0.5);
  color: #e67324;
  padding-left: 1rem;
  font-size: 1.5rem;
}
.form .form-group input {
  width: 49%;
}
.form .form-group input:focus {
  border: 1px solid #1f3041;
  border-radius: 2px;
}
.form .form-group textarea {
  width: 100%;
  height: 50%;
  padding-top: 1rem;
}
.form .form-group button {
  background-color: #1f3041;
  color: white;
  border: none;
  width: 100%;
  height: 20%;
  margin-top: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  letter-spacing: 1px;
  border-radius: 5px;
}

@media screen and (max-width: 1024px) and (min-width: 501px) {
  .contact-form {
    margin: 0rem 2rem;
  }
  .contact-form .contact-form-header p {
    padding: 0rem 5rem;
    padding-bottom: 4rem;
  }
  .form {
    height: 35vh;
  }
  .form .form-group {
    width: 85%;
  }
  .form .form-group input:first-child {
    margin-right: 0;
  }
  .form .form-group input {
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 500px) {
  .contact-hero {
    height: 30vh;
    font-size: 4rem;
  }
  .contact-details {
    flex-direction: column;
    padding: 5rem 0rem;
  }
  .contact-details div i {
    margin-bottom: 2rem;
  }
  .contact-details div h5 {
    margin-bottom: 1.5rem;
  }
  .contact-form {
    margin: 0rem;
    margin-bottom: 3rem;
  }
  .contact-form .contact-form-header p {
    padding: 0rem 1rem;
  }
  .form {
    height: unset;
  }
  .form .form-group {
    width: 85%;
  }
  .form .form-group input:first-child {
    margin-right: 0;
  }
  .form .form-group input {
    width: 100%;
    margin-bottom: 1rem;
  }
  .form .form-group button {
    height: 4rem;
  }
}

.s-intro {
  height: 40vh;
  letter-spacing: 2px;
  text-align: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/static/services.jpg);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}
.s-intro p {
  font-size: 2.7rem;
  color: white;
  line-height: 3.6rem;
  font-weight: 600;
}

.nonit {
  text-align: center;
}

.ser-health {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ser-health .srh-intro h5 {
  font-size: 3.5rem;
  line-height: 4.6rem;
  font-weight: 600;
  text-align: center;
}
.ser-health .srh-intro p {
  font-size: 2.1rem;
  line-height: 3.6rem;
  font-weight: 400;
  text-align: center;
}
.ser-health .srh {
  margin-top: 3rem;
  padding: 5rem 10rem;
  display: flex;
  background-color: #1f3041;
  color: white;
}
.ser-health .srh .sh-left {
  margin: 1rem;
  flex: 1;
}
.ser-health .srh .sh-left div {
  padding: 1rem;
  font-size: 1.7rem;
  margin: 2rem 1rem;
  border-bottom: 2px solid white;
}
.ser-health .srh .sh-right {
  flex: 2;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ser-health .srh .sh-right h5 {
  font-size: 2.5rem;
  line-height: 3.6rem;
  font-weight: 400;
  text-align: center;
}
.ser-health .srh .sh-right .sh-right-inn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ser-health .srh .sh-right .sh-right-inn div {
  margin: 2rem;
}
.ser-health .srh .sh-right .sh-right-inn div:first-child {
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
}
.ser-health .srh .sh-right .sh-right-inn .srh-p1 {
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
}
.ser-health .srh .sh-right .sh-right-inn .srh-p2 {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
}

.acc-sr {
  margin-top: 2rem;
}

.acc-sub {
  display: flex;
  flex-direction: column;
}
.acc-sub .acc-sub-inn {
  display: flex;
  text-align: center;
}
.acc-sub .acc-sub-inn div {
  flex: 1;
  padding: 5rem;
  background-color: #1f3041;
  color: white;
  font-size: 3rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.5s ease;
}
.acc-sub .acc-sub-inn div:hover {
  transform: scale(1.1);
  background-color: white;
  color: #1f3041;
}

.it-teach {
  display: flex;
  padding: 7rem;
}
.it-teach .it,
.it-teach .teach {
  flex: 1;
  display: flex;
  justify-content: first baseline;
  align-items: center;
  flex-direction: column;
  padding: 0 5rem;
}
.it-teach .it h5,
.it-teach .teach h5 {
  font-size: 3rem;
  text-align: center;
}
.it-teach .it p:nth-child(2),
.it-teach .teach p:nth-child(2) {
  font-size: 2rem;
  text-align: center;
}
.it-teach .it p,
.it-teach .teach p {
  padding: 0.5rem;
  text-align: center;
  font-size: 1.3rem;
}

@media screen and (max-width: 1024px) and (min-width: 501px) {
  .it-teach {
    display: flex;
    padding: 7rem 0rem;
  }
  .it-teach .it,
  .it-teach .teach {
    padding: 0 2rem;
  }
}

@media screen and (max-width: 500px) {
  .s-intro {
    margin-bottom: 2rem;
  }
  .ser-health .srh {
    padding: 0;
    flex-direction: column;
  }
  .acc-sub {
    flex-direction: column;
  }
  .acc-sub .acc-sub-inn {
    display: flex;
    flex-direction: column;
  }
  .acc-sub .acc-sub-inn div {
    border-bottom: 1px solid white;
  }
  .it-teach {
    padding: 7rem 0rem;
    flex-direction: column;
  }
  .it-teach .it,
  .it-teach .teach {
    padding: 0 2rem;
  }
  .it-teach .teach {
    margin-top: 5rem;
  }
}

.faq-title {
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 1px;
}
.faq-title h5 {
  font-size: 1.7rem;
  line-height: 2.6rem;
  margin-bottom: 0.5rem;
  color: #1f3041;
}
.faq-title h4 {
  font-size: 3.5rem;
  line-height: 4.5rem;
  color: #e67324;
}

.acc {
  padding: 1.3rem;
  color: white;
  background-color: #747e80;
  font-size: 1.7rem;
  width: 100%;
  margin-bottom: 1px;
  border-radius: 2px;
}
.acc:hover {
  cursor: pointer;
}
.acc p {
  display: inline;
  letter-spacing: 1px;
}
.acc i {
  font-size: 1.5rem;
  padding: 0.5rem 0.6rem;
  display: inline;
  float: right;
}

.acc-content {
  max-height: 0;
  background-color: aliceblue;
  overflow: hidden;
}
.acc-content p {
  padding: 1rem;
  font-size: 1.5rem;
  color: #e67324;
  font-weight: 700;
  letter-spacing: 1px;
}

.acc-open {
  background-color: #1f3041;
}

.acc-c-open {
  max-height: 5000px;
}

.faq {
  margin: 5rem 20rem;
}

@media screen and (max-width: 1024px) and (min-width: 501px) {
  .faq {
    margin: 5rem 10rem;
  }
}

@media screen and (max-width: 500px) {
  .acc i {
    display: none;
  }
  .faq {
    margin: 5rem 1rem;
  }
  .faq-title h4 {
    font-size: 2.5rem;
  }
}

.first-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #1f3041;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.second-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: #e67324;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.text-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #747e80;
  padding: 0rem 37rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1024px) and (min-width: 501px) {
  .text-title {
    padding: 0rem 10rem;
  }
}

@media only screen and (max-width: 500px) {
  .first-title {
    font-size: 18px;
  }
  .second-title {
    font-size: 19px;
  }
  .text-title {
    padding: 0rem 3rem;
  }
}

.container {
  width: 80vw;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) and (min-width: 501px) {
  .container {
    width: 95vw;
  }
}

@media screen and (max-width: 500px) {
  .container {
    width: 95vw;
  }
}
