@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
html {
  scroll-behavior: smooth; }

body {
  background: #fff;
  color: #000;
  margin: 0;
  font-family: "Cabin", sans-serif; }

a:hover {
  text-decoration: none; }

.overlay {
  position: fixed;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: saturate(180%) blur(20px);
  z-index: 9999;
  transition: 1.5s ease-in-out;
  transform: translate3d(0px, 0%, 0px) rotate(0deg);
  will-change: transform;
  opacity: 1; }

.overlay.hidden {
  transform: translate3d(0, -200%, 0) rotate(-15deg); }

.menu-icon {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 60px;
  right: 25px;
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  display: none; }
  .menu-icon .line-1, .menu-icon .line-2 {
    content: '';
    height: 2px;
    width: 40px;
    background: #fff;
    margin-bottom: 10px;
    display: block;
    transform: rotate(0deg);
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }
  .menu-icon .line-1 {
    position: relative;
    top: 0px; }
  .menu-icon .line-2 {
    position: relative;
    bottom: 0px; }

header {
  top: 0px;
  left: 0px;
  padding: 50px 75px 0px 75px;
  width: 100%;
  position: fixed;
  z-index: 999;
  background: transparent;
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out; }
  header img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }
  header .main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right; }
    header .main-menu ul li {
      display: inline-block;
      margin-left: 40px; }
      header .main-menu ul li a {
        color: #888;
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 1px;
        position: relative;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out; }
      header .main-menu ul li a:after {
        content: '';
        height: 2px;
        background: #fff;
        width: 0%;
        position: absolute;
        bottom: -2px;
        left: auto;
        right: 0px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out; }
      header .main-menu ul li a:hover {
        color: #fff;
        font-weight: 400;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out; }
      header .main-menu ul li a:hover:after {
        width: 100%;
        right: auto;
        left: 0px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out; }
      header .main-menu ul li.dropdown {
        position: relative; }
        header .main-menu ul li.dropdown a:after {
          display: none; }
        header .main-menu ul li.dropdown .dropdown-content {
          position: absolute;
          background: #000;
          width: 150px;
          text-align: left;
          padding: 10px 10px 0px 10px;
          z-index: -100;
          visibility: hidden;
          opacity: 0;
          transition: all .3s ease-in-out; }
          header .main-menu ul li.dropdown .dropdown-content a {
            display: block;
            font-weight: 300;
            color: #fff;
            font-size: 16px;
            margin-bottom: 10px; }
        header .main-menu ul li.dropdown .drop-wrapper {
          padding-top: 10px; }
        header .main-menu ul li.dropdown .dropdown-content-visible {
          z-index: 1;
          visibility: visible;
          opacity: 1;
          transition: all .3s ease-in-out; }
    header .main-menu ul li.active a {
      color: #fff;
      font-weight: 500; }
    header .main-menu ul li.active a:after {
      content: '';
      height: 2px;
      background: #fff;
      width: 100%;
      position: absolute;
      bottom: -2px;
      left: auto;
      right: 0px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }

header .main-menu ul li a span {
  font-size: 12px !important;
  position: relative;
  bottom: 2px; }

.headerScroll {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: saturate(180%) blur(20px);
  padding: 15px 75px 5px 75px;
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out; }
  .headerScroll img {
    max-width: 75%;
    max-height: 75%;
    height: auto;
    width: auto;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }
  .headerScroll .main-menu ul li a {
    font-size: 20px;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }
  .headerScroll .menu-icon {
    top: 22px;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }

#introSection {
  background: url("../img/hero.jpg");
  background-size: cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center; }
  #introSection .dark-bg {
    z-index: 100;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8); }
  #introSection .container {
    z-index: 200; }
  #introSection h1 {
    font-size: 80px;
    letter-spacing: 1px;
    max-width: 900px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 75px; }
  #introSection a {
    padding: 20px 30px 20px 50px;
    background: #b42222;
    color: #fff;
    letter-spacing: 1px;
    font-size: 20px;
    border-radius: 75px;
    cursor: pointer;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }
    #introSection a .line-h {
      display: inline-block;
      width: 25px;
      height: 2px;
      background: #fff;
      position: relative;
      margin-left: 20px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out;
      top: -6px; }
    #introSection a .line-1 {
      display: inline-block;
      width: 10px;
      height: 2px;
      background: #fff;
      position: relative;
      margin-left: 0px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out;
      top: -9px;
      left: -7px;
      transform: rotate(45deg); }
    #introSection a .line-2 {
      display: inline-block;
      width: 10px;
      height: 2px;
      background: #fff;
      position: relative;
      margin-left: 0px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out;
      top: -3px;
      left: -17px;
      transform: rotate(-45deg); }
  #introSection a:hover {
    background: #870000;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }
    #introSection a:hover .line-h {
      width: 40px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }

#aboutSection {
  padding: 200px 0px 200px 0px;
  background: url("../img/about-bg.png");
  background-position: 0% 45%;
  background-repeat: no-repeat; }
  #aboutSection .about-left {
    height: 600px;
    position: relative; }
    #aboutSection .about-left img {
      position: absolute; }
    #aboutSection .about-left img.about-img-1 {
      max-width: 250px;
      left: 0;
      top: 0; }
    #aboutSection .about-left img.about-img-2 {
      max-width: 500px;
      bottom: 0;
      left: 5%; }
    #aboutSection .about-left img.about-img-3 {
      max-width: 250px;
      right: 0;
      top: 20%; }
  #aboutSection .about-right {
    padding-left: 75px; }
    #aboutSection .about-right h2 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 30px; }
    #aboutSection .about-right p.bigger-p {
      font-size: 22px;
      line-height: 36px;
      font-weight: 500; }
    #aboutSection .about-right p {
      font-size: 18px;
      line-height: 30px;
      margin-bottom: 30px; }
    #aboutSection .about-right a {
      font-size: 20px;
      color: #b42222;
      font-weight: 700;
      letter-spacing: .5px;
      position: relative;
      top: 10px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
      #aboutSection .about-right a .line-h {
        display: inline-block;
        width: 25px;
        height: 2px;
        background: #b42222;
        position: relative;
        margin-left: 10px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
        top: -6px; }
      #aboutSection .about-right a .line-1 {
        display: inline-block;
        width: 10px;
        height: 2px;
        background: #b42222;
        position: relative;
        margin-left: 0px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
        top: -9px;
        left: -7px;
        transform: rotate(45deg); }
      #aboutSection .about-right a .line-2 {
        display: inline-block;
        width: 10px;
        height: 2px;
        background: #b42222;
        position: relative;
        margin-left: 0px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
        top: -3px;
        left: -17px;
        transform: rotate(-45deg); }
    #aboutSection .about-right a:hover {
      color: #870000; }
      #aboutSection .about-right a:hover .line-h {
        width: 35px;
        background: #870000;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out; }
      #aboutSection .about-right a:hover .line-1, #aboutSection .about-right a:hover .line-2 {
        background: #870000;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out; }

#portfolioSection {
  padding: 150px 50px 200px 50px;
  background: url("../img/work-bg.png");
  background-position-y: 50%;
  background-size: cover; }
  #portfolioSection h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 100px; }
  #portfolioSection .slider .slick-prev {
    left: -40px; }
  #portfolioSection .slider .slick-prev:before, #portfolioSection .slider .slick-next:before {
    font-size: 40px;
    color: #d20001; }
  #portfolioSection .slick-slide {
    margin: 0px 20px; }
  #portfolioSection .slick-slide img {
    width: 100%; }
  #portfolioSection .slick-prev:before,
  #portfolioSection .slick-next:before {
    color: black; }
  #portfolioSection .slick-current {
    opacity: 1; }
  #portfolioSection .slick-dots li button:before {
    font-size: 30px !important;
    color: #b42222; }
  #portfolioSection .slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #b42222; }
  #portfolioSection .slider-box {
    position: relative; }
    #portfolioSection .slider-box img {
      width: 100%;
      height: 100%; }
    #portfolioSection .slider-box h2 {
      position: absolute;
      bottom: 20px;
      left: 30px;
      color: #fff;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
    #portfolioSection .slider-box h6 {
      position: absolute;
      bottom: 10px;
      left: 30px;
      font-weight: 400;
      font-size: 20px;
      color: #888;
      opacity: 0;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
    #portfolioSection .slider-box span {
      position: absolute;
      left: 30px;
      top: 40px;
      color: #fff;
      padding: 5px 20px;
      background: #b42222;
      border-radius: 75px;
      font-size: 16px;
      letter-spacing: .5px;
      opacity: 0;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
    #portfolioSection .slider-box .hover-bg {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      opacity: 0;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
    #portfolioSection .slider-box .white-bg-hover {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      opacity: 1;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
  #portfolioSection .slider-box:hover {
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }
    #portfolioSection .slider-box:hover h2 {
      bottom: 50px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
    #portfolioSection .slider-box:hover h6 {
      bottom: 20px;
      opacity: 1;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
    #portfolioSection .slider-box:hover span {
      top: 30px;
      opacity: 1;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
    #portfolioSection .slider-box:hover .hover-bg {
      opacity: 1;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }

#teamSection {
  padding: 200px 0px 200px 0px;
  background: url("../img/team.png");
  background-size: cover;
  text-align: center;
  position: relative; }
  #teamSection .dark-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); }
  #teamSection h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    position: relative; }
  #teamSection p {
    color: #fff;
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    position: relative; }
  #teamSection p.smaller-p {
    padding: 0px 100px;
    margin-bottom: 0px; }
  #teamSection .slider-img {
    margin: 100px 20px 0 20px !important; }
    #teamSection .slider-img img {
      width: 100%;
      height: 100%; }

#servicesSection {
  padding: 150px 0px 150px 0px;
  background: url("../img/services-bg-2.png");
  background-size: cover;
  background-position: 0% 75%; }
  #servicesSection .organigrama {
    text-align: center;
    margin-bottom: 125px; }
    #servicesSection .organigrama img {
      max-width: 100% !important;
      max-height: 100% !important;
      height: auto;
      width: 100% !important;
      margin: 0 auto !important; }
      @media (max-width: 500px) {
        #servicesSection .organigrama img {
          width: 100% !important;
          margin-left: -25px !important; } }
  #servicesSection h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    position: relative; }
  #servicesSection img {
    max-width: 50%;
    max-height: 50%; }
  #servicesSection span {
    font-size: 32px;
    font-weight: 600; }
  #servicesSection span.service-title {
    margin-left: 30px; }
  #servicesSection ul {
    list-style: none;
    margin: 40px 0 0 0;
    padding: 0; }
  #servicesSection li {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 30px; }
  #servicesSection .service-left {
    padding-right: 100px !important; }
  #servicesSection .service-right {
    padding-left: 50px !important; }

#contactSection {
  padding: 250px 0px 150px 0px;
  background: url("../img/contact-bg.png");
  background-size: cover;
  position: relative; }
  #contactSection .dark-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); }
  #contactSection .contact-top, #contactSection .contact-mid, #contactSection .contact-bottom {
    display: flex;
    justify-content: space-between;
    align-items: top;
    position: relative; }
  #contactSection .contact-top {
    padding-bottom: 75px;
    border-bottom: 2px solid #444; }
    #contactSection .contact-top h1 {
      font-size: 42px;
      font-weight: 700;
      color: #fff; }
    #contactSection .contact-top a {
      margin-top: 15px;
      padding: 19px 20px 15px 40px;
      max-height: 70px;
      background: #b42222;
      color: #fff;
      letter-spacing: 1px;
      font-size: 22px;
      border-radius: 75px;
      cursor: pointer;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
      #contactSection .contact-top a .line-h {
        display: inline-block;
        width: 25px;
        height: 2px;
        background: #fff;
        position: relative;
        margin-left: 15px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
        top: -6px; }
      #contactSection .contact-top a .line-1 {
        display: inline-block;
        width: 10px;
        height: 2px;
        background: #fff;
        position: relative;
        margin-left: 0px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
        top: -9px;
        left: -7px;
        transform: rotate(45deg); }
      #contactSection .contact-top a .line-2 {
        display: inline-block;
        width: 10px;
        height: 2px;
        background: #fff;
        position: relative;
        margin-left: 0px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
        top: -3px;
        left: -17px;
        transform: rotate(-45deg); }
    #contactSection .contact-top a:hover {
      background: #870000;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
      #contactSection .contact-top a:hover .line-h {
        width: 40px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out; }
  #contactSection .contact-mid {
    padding: 75px 0px;
    border-bottom: 2px solid #444;
    display: flex;
    justify-content: space-between; }
    #contactSection .contact-mid .info-box h6 {
      color: #aaa;
      font-size: 18px;
      font-weight: 400; }
    #contactSection .contact-mid .info-box h3 {
      color: #fff;
      font-size: 24px;
      font-weight: 400;
      line-height: 36px; }
  #contactSection .contact-bottom {
    padding: 50px 0px; }
    #contactSection .contact-bottom p {
      margin-bottom: 0px;
      color: #777;
      font-size: 16px; }
      #contactSection .contact-bottom p a {
        color: #777; }

@media screen and (max-width: 1300px) {
  header {
    padding: 50px 25px 0px 25px; }

  .headerScroll {
    padding-left: 25px;
    padding-right: 25px; } }
@media screen and (max-width: 1200px) {
  .col-md-6 {
    max-width: 100%;
    flex: 0 0 100%; }

  .menu-icon {
    display: block; }

  header {
    top: 0px;
    left: 0px;
    padding: 50px 25px 0px 25px;
    max-width: 100%;
    position: fixed;
    z-index: 999;
    background: transparent;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }
    header img {
      max-width: 100%;
      max-height: 100%;
      min-width: 184px;
      min-height: 27px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
    header .main-menu ul {
      list-style: none;
      margin: 0 0 0 0;
      padding: 0;
      position: absolute;
      top: 45px;
      right: -100px;
      height: 0;
      text-align: right;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: saturate(180%) blur(20px);
      opacity: 0;
      z-index: -100;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }
      header .main-menu ul li {
        display: block;
        padding: 10px 20px 10px 50px;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: saturate(180%) blur(20px);
        max-width: 300px; }
        header .main-menu ul li a {
          color: #888;
          font-size: 20px;
          font-weight: 400;
          letter-spacing: 1px;
          position: relative;
          -webkit-transition: .4s ease-in-out;
          -o-transition: .4s ease-in-out;
          transition: .4s ease-in-out; }
        header .main-menu ul li a:after {
          content: '';
          height: 2px;
          background: #fff;
          width: 0%;
          position: absolute;
          bottom: -2px;
          left: auto;
          right: 0px;
          -webkit-transition: .4s ease-in-out;
          -o-transition: .4s ease-in-out;
          transition: .4s ease-in-out; }
        header .main-menu ul li a:hover {
          color: #fff;
          font-weight: 400;
          -webkit-transition: .4s ease-in-out;
          -o-transition: .4s ease-in-out;
          transition: .4s ease-in-out; }
        header .main-menu ul li a:hover:after {
          width: 100%;
          right: auto;
          left: 0px;
          -webkit-transition: .4s ease-in-out;
          -o-transition: .4s ease-in-out;
          transition: .4s ease-in-out; }
      header .main-menu ul li.active a {
        color: #fff;
        font-weight: 500; }
      header .main-menu ul li.active a:after {
        content: '';
        height: 2px;
        background: #fff;
        width: 100%;
        position: absolute;
        bottom: -2px;
        left: auto;
        right: 0px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out; }

  header .main-menu ul li.dropdown {
    position: relative;
    margin-bottom: 105px;
    background: #000; }

  header .main-menu ul li.dropdown .dropdown-content {
    position: absolute;
    margin-top: 0px;
    left: 0;
    background: #000;
    width: 100%;
    text-align: right;
    padding: 10px 20px 5px 10px;
    z-index: 1;
    visibility: visible;
    opacity: 1; }

  header .main-menu ul li.dropdown .dropdown-content a {
    display: block;
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px; }

  .headerScroll {
    padding: 15px 25px 5px 25px;
    min-height: 60px; }
    .headerScroll img {
      max-width: 75%;
      max-height: 75%;
      min-width: 184px;
      min-height: 27px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out; }

  .main-menu-clicked ul {
    right: 0px !important;
    z-index: 200 !important;
    opacity: 1 !important;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }

  .menu-icon-clicked .line-1 {
    transform: rotate(45deg);
    top: 6px;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }
  .menu-icon-clicked .line-2 {
    transform: rotate(-45deg);
    position: relative;
    bottom: 6px;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out; }

  #introSection h1 {
    font-size: 60px; }
  #introSection a {
    font-size: 18px;
    padding: 15px 15px 15px 35px; }
    #introSection a .line-h {
      display: inline-block;
      width: 20px;
      height: 2px;
      background: #fff;
      position: relative;
      margin-left: 12px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out;
      top: -6px; }
    #introSection a .line-1 {
      display: inline-block;
      width: 10px;
      height: 2px;
      background: #fff;
      position: relative;
      margin-left: 0px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out;
      top: -9px;
      left: -8px;
      transform: rotate(45deg); }
    #introSection a .line-2 {
      display: inline-block;
      width: 8px;
      height: 2px;
      background: #fff;
      position: relative;
      margin-left: 0px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out;
      top: -3px;
      left: -17px;
      transform: rotate(-45deg); }

  #aboutSection .about-left img.about-img-2 {
    max-width: 500px;
    bottom: 15%;
    left: 25%; }

  #servicesSection .service-left {
    margin-bottom: 100px; }
  #servicesSection .service-right {
    padding-left: 15px !important; }

  #contactSection .contact-top a {
    font-size: 18px;
    padding: 15px 15px 15px 35px; }
    #contactSection .contact-top a .line-h {
      display: inline-block;
      width: 20px;
      height: 2px;
      background: #fff;
      position: relative;
      margin-left: 12px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out;
      top: -6px; }
    #contactSection .contact-top a .line-1 {
      display: inline-block;
      width: 10px;
      height: 2px;
      background: #fff;
      position: relative;
      margin-left: 0px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out;
      top: -9px;
      left: -8px;
      transform: rotate(45deg); }
    #contactSection .contact-top a .line-2 {
      display: inline-block;
      width: 8px;
      height: 2px;
      background: #fff;
      position: relative;
      margin-left: 0px;
      -webkit-transition: .4s ease-in-out;
      -o-transition: .4s ease-in-out;
      transition: .4s ease-in-out;
      top: -3px;
      left: -17px;
      transform: rotate(-45deg); } }
@media screen and (max-width: 990px) {
  .contact-top, .contact-mid, .contact-bottom {
    display: block !important;
    position: relative; }

  .contact-top h1 {
    margin-bottom: 50px; }

  .contact-mid .info-box {
    margin: 35px 0px; }

  .contact-bottom .copy-box {
    margin-top: 10px; } }
@media screen and (max-width: 768px) {
  #introSection h1 {
    font-size: 50px;
    padding-left: 25px; }
  #introSection a {
    margin-left: 25px; }

  #aboutSection {
    background-position: 0% 0%; }
    #aboutSection .about-left img.about-img-2 {
      max-width: 400px;
      bottom: 15%;
      left: 10%; }
    #aboutSection .about-left img.about-img-1 {
      max-width: 200px;
      left: 5%; }
    #aboutSection .about-right h2 {
      font-size: 32px; }
    #aboutSection .about-right p.bigger-p {
      font-size: 18px; }
    #aboutSection .about-right p {
      font-size: 16px;
      padding-right: 30px; }

  #portfolioSection h1 {
    font-size: 32px; }
  #portfolioSection .slider-box h2 {
    font-size: 24px; }
  #portfolioSection .slider-box h6 {
    font-size: 16px; }
  #portfolioSection .slider-box span {
    font-size: 14px; }

  #teamSection h1 {
    font-size: 32px; }
  #teamSection p {
    font-size: 20px; }
  #teamSection p.smaller-p {
    padding: 0px 50px; }

  #servicesSection h1 {
    font-size: 32px; }
  #servicesSection span {
    font-size: 22px; }
  #servicesSection span.service-title {
    margin-left: 20px; }
  #servicesSection img {
    max-width: 35px;
    max-height: 35px; }
  #servicesSection li {
    font-size: 18px; }

  #contactSection h1 {
    font-size: 32px !important; }
  #contactSection .contact-mid .info-box h3 {
    font-size: 20px !important; }
  #contactSection .contact-mid .info-box h6 {
    font-size: 16px !important; } }
@media screen and (max-width: 600px) {
  body {
    overflow-x: hidden !important; }

  .container {
    overflow-x: hidden !important; }

  #introSection {
    height: 90vh; }
    #introSection h1 {
      font-size: 40px;
      padding-left: 25px;
      margin-bottom: 60px; }
    #introSection a {
      font-size: 14px;
      margin-left: 25px;
      position: relative;
      bottom: 20px; }
      #introSection a .line-h {
        width: 18px;
        height: 1px; }
      #introSection a .line-1 {
        width: 8px;
        height: 1px;
        top: -9px;
        left: -7px; }
      #introSection a .line-2 {
        width: 8px;
        height: 1px;
        top: -3px;
        left: -15px; }

  #aboutSection {
    padding-bottom: 50px; }
    #aboutSection .about-left img.about-img-1 {
      max-width: 150px;
      left: 5%; }
    #aboutSection .about-left img.about-img-2 {
      max-width: 250px;
      bottom: 45%;
      left: 15%; }
    #aboutSection .about-left img.about-img-3 {
      max-width: 150px;
      right: 5%;
      top: 15%; }
    #aboutSection .about-right {
      padding-left: 40px;
      position: relative;
      top: -100px; }
      #aboutSection .about-right a {
        position: relative;
        top: -5px; }

  #portfolioSection .slider-box h2 {
    font-size: 16px;
    bottom: 10px;
    left: 20px; }
  #portfolioSection .slider-box h6 {
    bottom: 0px;
    font-size: 12px;
    left: 20px; }
  #portfolioSection .slider-box span {
    left: 20px;
    font-size: 10px; }
  #portfolioSection .slider-box:hover h2 {
    bottom: 40px !important; }
  #portfolioSection .slider .slick-dots li {
    margin: 0px !important; }

  #servicesSection {
    padding-left: 25px; }
    #servicesSection .service-left {
      padding-right: 25px !important; }

  #contactSection {
    padding-left: 25px;
    padding-right: 25px; }
    #contactSection .contact-top a {
      font-size: 14px; }
      #contactSection .contact-top a .line-h {
        width: 18px;
        height: 1px; }
      #contactSection .contact-top a .line-1 {
        width: 8px;
        height: 1px;
        top: -9px;
        left: -7px; }
      #contactSection .contact-top a .line-2 {
        width: 8px;
        height: 1px;
        top: -3px;
        left: -15px; } }

/*# sourceMappingURL=style.css.map */
