@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a:hover,
a:focus {
  outline: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font-family: "Poppins", sans-serif;
  color: #414042;
}

body .button {
  background: #271575;
  text-decoration: none !important;
  border: 2px solid #271575;
  outline: none !important;
  color: #fff;
  font-size: 21px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 30px;
  border-radius: 50px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  width: 350px;
  text-align: center;
}

body .button:hover {
  background: transparent;
  color: #271575;
}

body .container {
  max-width: 1300px;
}

body img {
  width: 100%;
}

body header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  background: #fff;
  margin-bottom: 0;
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}

body header.not__hide {
  -webkit-transform: none !important;
          transform: none !important;
  -webkit-transition: -webkit-transform 0s ease-in-out;
  transition: -webkit-transform 0s ease-in-out;
  transition: transform 0s ease-in-out;
  transition: transform 0s ease-in-out, -webkit-transform 0s ease-in-out;
}

body header .navbar-brand img {
  width: 260px;
}

body header .nav__tggl span {
  width: 35px;
  height: 2px;
  background-color: #414042;
  margin: 8px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

body header .nav-link {
  color: #414042 !important;
  font-size: 17px;
  position: relative;
}

body header .nav-link::after {
  content: ' ';
  width: 0;
  height: 2px;
  background: #414042;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width .3s ease;
  transition: width .3s ease;
}

body header .nav-link:hover::after {
  width: 25%;
}

body header li.active a::after {
  width: 25%;
}

body #hero {
  position: relative;
  overflow: hidden;
}

body #hero .rght {
  position: unset !important;
}

body #hero .lft h2 {
  color: #271575;
  font-size: 40px;
}

body #hero .lft p {
  color: #271575;
  font-size: 30px;
  margin-top: 10px;
  font-weight: 300;
}

body #hero .rght img {
  position: absolute;
  width: calc(38vw + 200px);
  right: -10%;
  display: inline-block;
  margin: 20px 0;
  top: 0;
}

body .des {
  font-size: 18px;
}

body .sectitel {
  text-align: center;
  color: #271575;
  font-size: 40px;
  font-weight: 400;
}

body #specialties .crd img {
  width: 55px;
  display: block;
  margin: 0 auto;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}

body #specialties .crd h4 {
  font-size: 25px;
  text-align: center;
  margin-top: 30px;
  color: #1E154A;
  line-height: 40px;
}

body #specialties .crd p {
  text-align: center;
  font-size: 20px;
  margin-top: 10px;
}

body #experience {
  background: #271575;
}

body #experience .crd h4 {
  font-size: 45px;
  font-weight: 300;
  color: #fff;
  text-align: center;
}

body #experience .crd p {
  color: #fff;
  text-align: center;
  font-size: 17px;
}

body #experience .mtxt {
  color: #fff;
  font-size: 21px;
  margin-top: 40px;
}

body .cf {
  max-width: 800px;
  margin: 0 auto;
}

body .cf label {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

body .cf input,
body .cf textarea {
  width: 100%;
  padding: 14px;
  font-family: inherit;
  border: 1px solid #414042;
  font-size: 18px;
}

body .cf textarea {
  height: 200px;
}

body #social .social img {
  width: 50px;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

body #social .social img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

body .logo {
  width: 250px;
  display: block;
  margin: 0 auto;
  margin-top: 50px;
}

body .footer__links {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body .footer__links a {
  display: block;
  color: #414042;
  text-decoration: none !important;
  font-size: 18px;
}

@media screen and (max-width: 992px) {
  .backdrop {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(8, 5, 5, 0.472);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
  }
  .button {
    width: 300px !important;
  }
  .nav__open .nav__items {
    right: 0;
  }
  .nav__open .backdrop {
    visibility: visible;
    opacity: 1;
  }
  .nav__open .nav__tggl {
    z-index: 999;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
  }
  .nav__open .nav__tggl span {
    width: 35px;
    height: 2px;
    background-color: #414042;
    margin: 8px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: block;
  }
  .nav__open .nav__tggl span:nth-last-of-type(3) {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
  }
  .nav__open .nav__tggl span:nth-last-of-type(2) {
    opacity: 0;
  }
  .nav__open .nav__tggl span:nth-last-of-type(1) {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -6px);
  }
  .nav__items {
    width: 80%;
    background: #fff;
    margin-left: auto;
    position: fixed;
    right: -100%;
    top: 0;
    z-index: 99;
    height: 100%;
    padding: 30px;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
  }
  .nav__items ul {
    margin-top: 70px;
  }
  .nav__items ul li a {
    font-size: 30px;
  }
  .nav__items ul li a::after {
    display: none !important;
  }
  .nav__items .social img {
    width: 40px;
  }
}

@media screen and (max-width: 991px) {
  body #hero .rght img {
    position: unset;
    width: 100% !important;
  }
}

@media screen and (max-width: 576px) {
  body #hero .rght img {
    position: unset;
    width: 100%;
  }
  body #hero .lft h2 {
    font-size: 25px;
  }
  body #hero .lft p {
    font-size: 22px;
  }
  body .button {
    font-size: 16px;
    letter-spacing: 2px;
  }
  body header .navbar-brand img {
    width: 185px;
  }
  body .sectitel {
    font-size: 33px;
  }
  body .des {
    font-size: 15px;
  }
  body #social .social img {
    width: 33px;
  }
  .nav__items ul li a {
    font-size: 25px;
  }
  .nav__items {
    padding: 20px;
  }
  .nav__items .social img {
    width: 30px;
  }
}
/*# sourceMappingURL=style.css.map */