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

/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
background: #00000048;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #330000;
}



.hovered a{
    color: #330000;
}

.body{
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 99;
  }
  
 .loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;  /* Half the width */
    margin-top: -50px;   /* Half the height */
    border: 15px solid #fff;
    border-radius: 50%;
    border-top: 15px solid #330000;
    animation: spin 2s linear infinite;
 }
  
  @keyframes spin{
    100%{
      transform: rotate(360deg);
    }
  }

body {
  font-family: 'Rubik', sans-serif;
  font-family: 'Teko', sans-serif;
  z-index: -1;
  background-color: #00000020;
  color: #505489;
  font-size: 20px; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: #1f2471;
  line-height: .9; }

h1 {
  font-size: 120px; }

h2 {
  font-size: 70px;
  font-weight: 500; }

h3 {
  font-size: 45px;
  font-weight: 400; }

h4 {
  font-size: 30px;
  font-weight: 400; }

h5 {
  font-size: 25px;
  font-weight: 600; }

i {
  font-size: 16px;
  color: #595959;
  transition: .4s; }

.font-btn {
  transition: .4s; }
  .font-btn span {
    font-weight: 500;
    color: white;
    font-size: 20px;
    position: relative;
    top: -16px; }
  .font-btn .fal {
    background: #330000;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    color: #fff;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    padding-top: 16px;
    font-size: 16px;
    margin-right: 5px; }
  .font-btn .fal:before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    position: absolute;
    left: -100%;
    transition: .4s; }
  .font-btn .fal:after {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    position: absolute;
    left: 43%;
    transition: .4s; }

.font-btn:hover .fal:before {
  left: 43%; }

.font-btn:hover .fal:after {
  left: 157%; }

.layer-btn {
  position: relative;
  overflow: hidden;
  background: #330000;
  color: white;
  font-size: 18px;
  letter-spacing: 1px;
  border-radius: 8px;
  padding: 20px 45px 15px 45px;
  transition: .4s;
  z-index: 1; }

.layer-btn:hover {
  color: white; }

.layer-btn::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 99.9%;
  background: #330000;
  z-index: -2; }

.layer-btn::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0px;
  background: black;
  opacity: .5;
  border: 1px solid black;
  width: 105%;
  height: 185%;
  transform: translateX(90%) rotate(25deg);
  transition: .4s; }

.layer-btn:hover:before {
  transform: translateX(0%);
  z-index: -1;
  opacity: 1; }

::-webkit-input-placeholder {
  font-size: 15px !important;
  color: #666 !important; }

.btn:focus {
  box-shadow: 0 0 0 0rem rgba(0, 123, 255, 0.25); }

.form-control {
  font-size: 13px;
  border: 1px solid #e3e3e3; }

.custom-select:focus,
.form-control:focus {
  box-shadow: none;
  border: 1px solid #330000; }


.fixed-top {
  z-index: 5;
  transition: .4s; }

#homeSection {
  position: relative;
  margin-bottom: 100px; }
  #homeSection .slider-box {
    background: url(../img/home-bg.jpg);
    background-size: cover;
    background-position: center top;
    height: 100vh; }
    #homeSection .slider-box .overlay {
      background: rgba(34, 34, 34, 0.7);
      height: 100%; }
    #homeSection .slider-box .txt-box {
      height: 100vh;
      position: relative; }
      #homeSection .slider-box .txt-box .txt-area {
        position: absolute;
        top: 50%;
        transform: translateY(-50%); }
        #homeSection .slider-box .txt-box .txt-area p {
          color: #fff;
          font-size: 24px; }
        #homeSection .slider-box .txt-box .txt-area h1 {
          color: #fff;
          font-weight: 600;
          letter-spacing: 5px;
          line-height: .9;
          margin-bottom: 50px; }
  #homeSection .slider-box:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    background: url(../img/layer.png);
    background-repeat: no-repeat;
    background-position: right top; }
  #homeSection .slider-box2 {
    background: url(../img/home-bg01.jpg);
    background-size: cover;
    background-position: center center; }
  #homeSection .owl-carousel {
    position: relative;
    z-index: 0; }
  #homeSection .owl-dots {
    display: none; }
  #homeSection .owl-nav {
    display: block;
    position: absolute;
    top: 90%;
    right: 10%;
    transform: translate(-10%, -90%);
    transition: .4s; }
    #homeSection .owl-nav button {
      width: 50px;
      height: 50px;
      display: block;
      background: none;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 100px;
      transition: .4s; }
    #homeSection .owl-nav button:hover {
      background: #330000;
      color: #fff; }
    #homeSection .owl-nav .owl-prev {
      margin-bottom: 15px; }
      #homeSection .owl-nav .owl-prev span {
        opacity: 0; }
    #homeSection .owl-nav .owl-next {
      float: right; }
      #homeSection .owl-nav .owl-next span {
        opacity: 0; }
    #homeSection .owl-nav .owl-prev::before,
    #homeSection .owl-nav .owl-next::before {
      font-size: 16px;
      text-align: center;
      color: rgba(255, 255, 255, 0.5);
      content: '\f053';
      font-family: 'Font Awesome 5 pro';
      transition: .4s; }
    #homeSection .owl-nav .owl-next::before {
      content: '\f054';
      padding: 22px; }
    #homeSection .owl-nav .owl-prev:focus {
      outline: 0px dotted; }
    #homeSection .owl-nav .owl-next:focus {
      outline: 0px dotted; }
    #homeSection .owl-nav .owl-prev:hover:before,
    #homeSection .owl-nav .owl-next:hover:before {
      color: #fff; }

#featureSection {
  margin-bottom: 100px; }
  #featureSection .sec-header h2 {
    color: black;
    margin-bottom: 30px; }
    #featureSection .sec-header h2 span {
      color: #330000; }
  #featureSection .sec-header h4 {
    color: #330000;
    margin-bottom: 30px; }
  #featureSection .sec-header p {
    color: #666;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    margin-bottom: 0; }
  #featureSection .img-box {
    position: relative; }
    #featureSection .img-box img {
      border-radius: 10px;
      transition: .4s; }
    #featureSection .img-box .img01 {
      display: block;
      margin-left: auto;
      margin-right: 50px;
      max-width: 470px; }
    #featureSection .img-box .img02 {
      position: absolute;
      bottom: -150px;
      left: 0px;
      max-width: 420px; }
  #featureSection .img-box:hover img {
    filter: grayscale(0%); }
  #featureSection .img-box:before {
    content: "";
    position: absolute;
    background: #330000;
    top: 0;
    left: 0;
    height: 250px;
    width: 15px;
    border-radius: 10px; }
  #featureSection .part2 {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    #featureSection .part2 ul {
      margin-top: 50px;
      margin-bottom: 45px; }
      #featureSection .part2 ul li {
        list-style: none;
        margin-bottom: 10px;
        color: #666;
        font-family: 'Rubik', sans-serif;
        font-size: 16px; }
        #featureSection .part2 ul li .fal {
          margin-right: 10px;
          font-weight: 500;
          color: #330000; }
    #featureSection .part2 .since {
      background:   black;
      position: relative;
      text-align: center;
      width: 80px;
      height: 80px;
      padding-top: 13px;
      border-radius: 100px; }
      #featureSection .part2 .since span {
        color: #fff; }
    #featureSection .part2 .since:before {
      content: "";
      position: absolute;
      top: -10px;
      left: -10px;
      background: #00000077;
      width: 100%;
      height: 100%;
      border-radius: 100px;
      z-index: -1; }

#serviceSection {
  background: rgba(0, 0, 0, 0.941);
  padding: 80px 0;
  overflow-x: hidden;
  margin-bottom: 100px; }
  #serviceSection .sec-header h2 {
    color: #fff;
    margin-bottom: 30px; }  
    #serviceSection .sec-header h2 span {
      color: #330000; }
  #serviceSection .sec-header p {
    color: #9ca3a9;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    margin-bottom: 0; }
  #serviceSection .service-box {
    display: flex;
    background: rgba(255, 255, 255, 0.356);
    align-items: top;
    border-radius: 10px;
    justify-content: space-between;
    padding: 50px 40px;
    margin: 15px 0;
    cursor: pointer;
    transition: .4s; }
    #serviceSection .service-box .txt-area h3 {
      color: #330000;
      margin-bottom: 50px;
      transition: .4s; }
    #serviceSection .service-box .txt-area h4 {
      color: black;
      margin-bottom: 0;
      font-size: 20px;
      transition: .4s; }
    #serviceSection .service-box .img-box {
      position: relative; }
      #serviceSection .service-box .img-box img {
        width: 70px;
        transition: .4s; }
      #serviceSection .service-box .img-box .img01 {
        position: absolute;
        top: 0;
        left: 0; }
      #serviceSection .service-box .img-box .img02 {
        opacity: 0; }
  #serviceSection .service-box:hover {
    background: #330000; }
    #serviceSection .service-box:hover .txt-area h3 {
      color: #fff; }
    #serviceSection .service-box:hover .txt-area h4 {
      color: #595959; }
    #serviceSection .service-box:hover .img-box .img01 {
      opacity: 10; }
    #serviceSection .service-box:hover .img-box .img02 {
      opacity: 1; }

#portfolioSection {
  margin-bottom: 100px; }
  #portfolioSection .sec-header h2 {
    color: black;
    margin-bottom: 30px; }
    #portfolioSection .sec-header h2 span {
      color: #330000; }
  #portfolioSection .indicator span {
    color: #666;
    font-size: 22px;
    transition: .4s;
    display: inline-block;
    cursor: pointer;
    margin-right: 30px; }
  #portfolioSection .indicator span:last-child {
    margin-right: 0; }
  #portfolioSection .indicator span:hover {
    color: #330000; }
  #portfolioSection .indicator span.active {
    color: #330000; }
  #portfolioSection .indicator span::after {
    content: "";
    background: #330000;
    display: block;
    width: 0;
    height: 2px;
    opacity: 0;
    top: 30px;
    transition: .4s; }
  #portfolioSection .indicator span.active::after,
  #portfolioSection .indicator span:hover::after {
    width: 100%;
    opacity: 1; }
  #portfolioSection #portfolio {
    margin-top: 35px; }
  #portfolioSection .portfolio-box {
    position: relative;
    margin: 15px 0;
    overflow: hidden; }
    #portfolioSection .portfolio-box .img-box {
      height: 400px;
      overflow: hidden;
      border-radius: 10px; }
      #portfolioSection .portfolio-box .img-box img { 
        transition: .4s; }
      #portfolioSection .portfolio-box .img-box .img-fluid {
        width: -webkit-fill-available !important;
        height: -webkit-fill-available !important; }
    #portfolioSection .portfolio-box .hover-txt {
      background: #595959;
      padding: 30px;
      width: 90%;
      position: absolute;
      left: 5%;
      display: block;
      margin: auto;
      border-radius: 10px;
      transition: .4s; }
      #portfolioSection .portfolio-box .hover-txt .category {
        color: #fff;
        font-size: 18px;
        position: relative; }
      #portfolioSection .portfolio-box .hover-txt .category:before {
        content: "";
        height: 2px;
        width: 50px;
        background: #330000;
        position: absolute;
        border-radius: 3px;
        bottom: 9px;
        right: -70px; }
      #portfolioSection .portfolio-box .hover-txt p {
        color: #fff;
        margin-bottom: 0;
        font-size: 22px; }
  #portfolioSection .portfolio-box:hover .img-box img {
    filter: grayscale(0%); }
  #portfolioSection .portfolio-box:hover .hover-txt {
    transform: translateY(-115%); }

.portfolio-preview {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  max-width: 768px;
  margin: 15px auto;
  position: relative; }
  .portfolio-preview .img-box {
    height: 400px; }
    .portfolio-preview .img-box img {
      height: 100%;
      width: 100%; }
  .portfolio-preview .description h4 {
    font-size: 45px;
    margin-bottom: 15px;
    color: black; }
  .portfolio-preview .description p {
    color: #666;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    margin-bottom: 30px; }
  .portfolio-preview .description ul {
    margin-bottom: 0; }
    .portfolio-preview .description ul li {
      list-style: none;
      margin-bottom: 10px;
      color: black; }
      .portfolio-preview .description ul li i {
        color: #330000;
        width: 24px; }
      .portfolio-preview .description ul li span {
        color: #666;
        margin-left: 15px; }
      .portfolio-preview .description ul li a {
        margin-left: 15px;
        color: #330000; }

#pricingSection {
  background: #1a1a1a;
  padding: 80px 0;
  overflow-x: hidden;
  margin-bottom: 100px; }
  #pricingSection .sec-header {
    margin-bottom: 50px; }
    #pricingSection .sec-header h2 {
      color: #fff;
      margin-bottom: 30px; }
      #pricingSection .sec-header h2 span {
        color: #330000; }
    #pricingSection .sec-header p {
      color: #666;
      font-family: 'Rubik', sans-serif;
      font-size: 16px;
      margin-bottom: 0; }
  #pricingSection .pricing-box {
    background: #595959;
    padding: 40px 40px 30px 40px;
    margin: 15px 0;
    border-radius: 10px;
    text-align: center;
    transition: .4s; }
    #pricingSection .pricing-box h4 {
      font-size: 22px;
      color: #9ca3a9;
      margin-bottom: 20px;
      transition: .4s; }
    #pricingSection .pricing-box h3 {
      color: #330000;
      font-weight: 500;
      margin-bottom: 30px;
      transition: .4s; }
    #pricingSection .pricing-box ul li {
      list-style: none;
      margin-bottom: 10px;
      color: #9ca3a9;
      font-family: 'Rubik', sans-serif;
      font-size: 15px;
      margin-bottom: 10px;
      transition: .4s; }
    #pricingSection .pricing-box .btn {
      margin-top: 10px;
      padding: 0;
      transition: .4s; }
      #pricingSection .pricing-box .btn .fal {
        transition: 0s; }
  #pricingSection .pricing-box:hover {
    background: #330000; }
    #pricingSection .pricing-box:hover h4 {
      color: black; }
    #pricingSection .pricing-box:hover h3 {
      color: black; }
    #pricingSection .pricing-box:hover ul li {
      color: #333; }
    #pricingSection .pricing-box:hover .font-btn .fal {
      background: #595959;
      color: #330000; }
    #pricingSection .pricing-box:hover .font-btn span {
      color: black; }

#specialFeature {
  overflow: hidden;
  margin-bottom: 80px; }
  #specialFeature .sec-header {
    margin-bottom: 50px; }
    #specialFeature .sec-header h2 {
      color: black;
      margin-bottom: 30px; }
      #specialFeature .sec-header h2 span {
        color: #330000; }
    #specialFeature .sec-header p {
      color: #666;
      font-family: 'Rubik', sans-serif;
      font-size: 16px;
      margin-bottom: 0; }
  #specialFeature .service-box {
    position: relative;
    transition: .4s; }
    #specialFeature .service-box .img-box {
      overflow: hidden;
      border-radius: 10px; }
      #specialFeature .service-box .img-box img {
        width: 100%;
        border-radius: 10px;
        filter: grayscale(0%);
        transition: .4s; }
    #specialFeature .service-box .txt-box {
      background: #1a1a1a;
      position: relative;
      transform: translateY(-30px);
      border-radius: 10px;
      padding: 20px;
      padding-right: 65px;
      width: 85%;
      margin: auto; }
      #specialFeature .service-box .txt-box h4 {
        color: #fff; }
      #specialFeature .service-box .txt-box p {
        color: #9ca3a9;
        margin-bottom: 0; }
    #specialFeature .service-box .font-btn {
      margin-top: -15px; }
  #specialFeature .service-box:hover img {
    filter: grayscale(0%); }
  #specialFeature .font-btn {
    position: absolute;
    right: 0;
    bottom: 0; }
  #specialFeature .owl-stage-outer {
    overflow: visible; }
  #specialFeature .owl-nav {
    display: block;
    position: absolute;
    top: -21%;
    right: 0;
    transition: .4s; }
    #specialFeature .owl-nav button {
      width: 50px;
      height: 50px;
      background: none;
      background: #330000;
      border-radius: 100px;
      transition: .4s; }
    #specialFeature .owl-nav button:hover {
      background: #1a1a1a;
      color: #fff; }
    #specialFeature .owl-nav .owl-prev {
      margin-right: 15px; }
      #specialFeature .owl-nav .owl-prev span {
        opacity: 0; }
    #specialFeature .owl-nav .owl-next {
      float: right; }
      #specialFeature .owl-nav .owl-next span {
        opacity: 0; }
    #specialFeature .owl-nav .owl-prev::before,
    #specialFeature .owl-nav .owl-next::before {
      font-size: 16px;
      text-align: center;
      color: #fff;
      content: '\f053';
      font-family: 'Font Awesome 5 pro';
      transition: .4s; }
    #specialFeature .owl-nav .owl-next::before {
      content: '\f054';
      padding: 22px; }
    #specialFeature .owl-nav .owl-prev:focus {
      outline: 0px dotted; }
    #specialFeature .owl-nav .owl-next:focus {
      outline: 0px dotted; }
    #specialFeature .owl-nav .owl-prev:hover:before,
    #specialFeature .owl-nav .owl-next:hover:before {
      color: #fff; }

.specialFeature2 {
  margin-bottom: 0 !important; }
  .specialFeature2 .container {
    max-width: 100%; }
  .specialFeature2 .sec-header {
    margin-bottom: 50px; }
    .specialFeature2 .sec-header h2 {
      color: black;
      margin-bottom: 30px; }
      .specialFeature2 .sec-header h2 span {
        color: #330000; }

#featureDetails {
  border-left: 1px solid #cbcbcc;
  padding-left: 30px; }
  #featureDetails .img-box {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 10px; }
    #featureDetails .img-box img {
      width: 100%;
      border-radius: 10px;
      filter: grayscale(0%);
      transition: .4s; }
  #featureDetails .img-box:hover img {
    filter: grayscale(0%); }
  #featureDetails .txt-box h3 {
    color: black;
    margin-bottom: 15px; }
    #featureDetails .txt-box h3 span {
      color: #330000; }
  #featureDetails .txt-box p {
    color: #666;
    font-family: 'Rubik', sans-serif;
    font-size: 16px; }
  #featureDetails .txt-box ul li {
    list-style: none;
    margin-bottom: 10px;
    color: #666;
    font-family: 'Rubik', sans-serif;
    font-size: 16px; }
    #featureDetails .txt-box ul li .fal {
      margin-right: 10px;
      font-weight: 500;
      color: #330000; }

#testimonialSection {
  position: relative;
  padding-top: 80px;
  padding-bottom: 10px;
  overflow: hidden; }
  #testimonialSection .sec-header {
    margin-bottom: 50px; }
    #testimonialSection .sec-header h2 {
      color: black;
      margin-bottom: 30px; }
      #testimonialSection .sec-header h2 span {
        color: #330000; }
  #testimonialSection .testimonial-box {
    border-radius: 10px;
    box-shadow: 0px 1px 10px 0px #0000001a;
    padding: 40px 50px;
    transition: .4s; }
    #testimonialSection .testimonial-box .top-part {
      display: flex;
      align-items: center; }
      #testimonialSection .testimonial-box .top-part .client {
        margin-right: 15px; }
        #testimonialSection .testimonial-box .top-part .client img {
          width: 80px;
          height: 80px;
          border-radius: 100px; }
      #testimonialSection .testimonial-box .top-part .txt p {
        margin-bottom: 0;
        letter-spacing: 1px;
        color: #000;
        font-size: 22px; }
      #testimonialSection .testimonial-box .top-part .txt span {
        font-size: 18px;
        color: #330000;
        transition: .4s; }
      #testimonialSection .testimonial-box .top-part .quote {
        margin-left: auto;
        position: relative;
        align-self: start; }
        #testimonialSection .testimonial-box .top-part .quote img {
          width: 40px; }
        #testimonialSection .testimonial-box .top-part .quote .img02 {
          position: absolute;
          top: 0;
          right: 0;
          opacity: 0; }
    #testimonialSection .testimonial-box .feedback {
      color: #666;
      margin-top: 30px;
      font-family: 'Rubik', sans-serif;
      font-size: 16px;
      line-height: 2;
      margin-bottom: 0;
      transition: .4s; }
  #testimonialSection .testimonial-box:hover {
    background: #330000; }
    #testimonialSection .testimonial-box:hover .txt span {
      color: #333; }
    #testimonialSection .testimonial-box:hover .quote .img02 {
      opacity: 1; }
    #testimonialSection .testimonial-box:hover .feedback {
      color: #333; }
  #testimonialSection .owl-stage-outer {
    overflow: visible; }
  #testimonialSection .owl-dots {
    position: absolute;
    display: inline-block;
    top: -90px;
    right: 0; }
    #testimonialSection .owl-dots .owl-dot {
      width: 10px !important;
      height: 10px !important;
      background: none;
      border: 1px solid #330000;
      border-radius: 20px;
      transition: .4s;
      margin: 0px 5px; }
    #testimonialSection .owl-dots .owl-dot:focus {
      outline: 0px dotted !important;
      outline: 0px auto -webkit-focus-ring-color !important; }
    #testimonialSection .owl-dots .owl-dot.active {
      background: #330000; }

#workSection {
  background: url(../img/work-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  filter: grayscale(0%); }
  #workSection .overlay {
    background: rgba(34, 34, 34, 0.7);
    padding: 80px 0; }
  #workSection .work-box {
    margin: 30px 0;
    border-right: 1px solid #ffffff40; }
    #workSection .work-box h2 {
      color: #fff; }
    #workSection .work-box p {
      font-size: 22px;
      color: #fff;
      margin-bottom: 0; }
  #workSection .box-4 {
    border-right: none; }

#contactSection {
  margin-bottom: 20px; }
  #contactSection .sec-header {
    margin-bottom: 50px; }
    #contactSection .sec-header h2 {
      color: black;
      margin-bottom: 30px; }
      #contactSection .sec-header h2 span {
        color: #330000; }
    #contactSection .sec-header p {
      color: #666;
      font-family: 'Rubik', sans-serif;
      font-size: 16px;
      margin-bottom: 0; }
  #contactSection .icon-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px; }
    #contactSection .icon-box .icon {
      background: #330000;
      height: 60px;
      width: 60px;
      border-radius: 100px;
      text-align: center;
      margin-right: 15px; }
      #contactSection .icon-box .icon .fal {
        font-size: 20px;
        padding-top: 20px;
        color: white; }
    #contactSection .icon-box .txt p {
      margin-bottom: 0;
      color: black; }
    #contactSection .icon-box .txt span {
      color: #666;
      font-family: 'Rubik', sans-serif;
      font-size: 16px; }
  #contactSection form .form-group .form-control {
    font-family: 'Rubik', sans-serif;
    background: #f4f5f9;
    border: 1px solid #f4f5f9;
    font-size: 15px;
    padding: 20px;
    border-radius: 8px; }
  #contactSection form .form-group .form-control:focus {
    box-shadow: none;
    border: 1px solid #330000; }
  #contactSection form .form-group input {
    height: 62px; }

#contactArea .contact-box {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 80px;
  position: relative;
  transform: translateY(80px);
  z-index: 1; }

#contactArea .row {
  align-items: center; }

#contactArea .sec-header h2 {
  color: white;
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1.1; }
  #contactArea .sec-header h2 span {
    color: #330000; }



#footerSection {
  background: #1a1a1a;
  position: relative;
  padding-top: 160px; }
  #footerSection .footer-box .logo {
    font-size: 38px;
    font-weight: bold;
    color: #fff;
    text-decoration: none; }
  #footerSection .footer-box .about {
    color: #9ca3a9;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 30px; }
  #footerSection .footer-box .social-links a {
    background: #000;
    display: inline-block;
    height: 40px;
    width: 40px;
    border-radius: 100px;
    text-align: center;
    margin-right: 10px;
    transition: .4s; }
    #footerSection .footer-box .social-links a .fab {
      color: #9ca3a9;
      padding-top: 12px; }
  #footerSection .footer-box .social-links a:hover {
    background: #330000; }
    #footerSection .footer-box .social-links a:hover .fab {
      color: white; }
  #footerSection .footer-box .title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px; }
  #footerSection .box2 ul li {
    list-style: none;
    margin-bottom: 10px; }
    #footerSection .box2 ul li a {
      color: #9ca3a9;
      font-family: 'Rubik', sans-serif;
      font-size: 16px;
      transition: .4s; }
    #footerSection .box2 ul li a:hover {
      color: #fff; }
  #footerSection .box3 .icon-box {
    display: flex;
    align-items: top;
    margin-bottom: 20px; }
    #footerSection .box3 .icon-box .icon {
      width: 30px; }
      #footerSection .box3 .icon-box .icon .fal {
        color: #330000; }
    #footerSection .box3 .icon-box .txt p {
      margin-bottom: 0;
      color: #fff; }
    #footerSection .box3 .icon-box .txt span {
      color: #9ca3a9;
      font-family: 'Rubik', sans-serif;
      font-size: 16px; }
  #footerSection .box4 span {
    color: #9ca3a9;
    font-family: 'Rubik', sans-serif;
    font-size: 16px; }
  #footerSection .box4 form {
    position: relative;
    max-width: 250px; }
    #footerSection .box4 form .form-group .form-control {
      font-family: 'Rubik', sans-serif;
      background: #000;
      border: 1px solid #000;
      font-size: 15px;
      padding: 20px;
      border-radius: 8px; }
    #footerSection .box4 form .form-group .form-control:focus {
      box-shadow: none;
      border: 1px solid #330000; }
    #footerSection .box4 form .form-group input {
      height: 62px; }
    #footerSection .box4 form .btn {
      background: #330000;
      position: absolute;
      top: 8px;
      right: 8px;
      height: 45px;
      width: 45px;
      border-radius: 100px;
      transition: .4s; }
      #footerSection .box4 form .btn .fal {
        padding-top: 7px;
        color: #000; }
    #footerSection .box4 form .btn:hover {
      background: #fff; }
      #footerSection .box4 form .btn:hover .fal {
        color: #330000; }
  #footerSection .copy-right {
    margin-top: 80px;
    border-top: 1px solid #ffffff1a;
    padding: 30px 0;
    text-align: center; }
    #footerSection .copy-right span {
      color: #9ca3a9;
      font-family: 'Rubik', sans-serif;
      font-size: 16px; }

#footerSection:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  background: url(../img/footer.png);
  background-repeat: no-repeat;
  background-position: center; }

#pageHeader {
  background: url(../img/home-bg.jpg);
  background-size: cover;
  background-position: center top;
  margin-bottom: 100px; }
  #pageHeader .overlay {
    background: rgba(34, 34, 34, 0.8);
    padding: 180px 0 80px 0; }
  #pageHeader .sec-header {
    margin-bottom: 50px; }
    #pageHeader .sec-header h2 {
      color: #fff;
      margin-bottom: 15px; }
      #pageHeader .sec-header h2 span {
        color: #330000; }
    #pageHeader .sec-header p {
      color: #330000; }
      #pageHeader .sec-header p a {
        color: #fff;
        text-decoration: none;
        transition: .4s; }
      #pageHeader .sec-header p a:hover {
        color: #330000; }
      #pageHeader .sec-header p span {
        color: #fff;
        margin: 0 5px; }

#googleMap iframe {
  border-radius: 10px;
  position: relative;
  transform: translateY(80px);
  z-index: 1; }

.scroll-up {
  position: fixed;
  height: 50px;
  width: 50px;
  right: 40px;
  bottom: 40px;
  transition: .4s;
  text-align: center;
  z-index: 1; }
  .scroll-up .fal {
    background: #330000;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    color: #fff;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    padding-right: 13px;
    font-size: 16px; }
  .scroll-up .fal:before {
    content: "\f077";
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    position: absolute;
    top: 100%;
    transition: .4s; }
  .scroll-up .fal:after {
    content: "\f077";
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    position: absolute;
    top: 36%;
    transition: .4s; }

.scroll-up:hover .fal:before {
  top: 36%; }

.scroll-up:hover .fal:after {
  top: -157%; }

@media (max-width: 991px) {

  #featureSection .col-lg-7 {
    margin-bottom: 200px; }
  #portfolioSection .sec-header,
  #portfolioSection .indicator {
    text-align: center; }
  #workSection .box-2 {
    border-right: none !important; }
  #contactArea .contact-box {
    text-align: center;
    padding: 50px; } 
  .nav-color {
    background: #00000089 !important; }
  }


@media (max-width: 768px) {
  #homeSection .txt-area h1 {
    font-size: 70px; }
  #workSection .work-box {
    border-right: none !important; } }

@media (max-width: 552px) {
  h2 {
    font-size: 50px !important; }
  #homeSection .txt-area h1 {
    font-size: 60px; }
  #featureSection .col-lg-7 {
    margin-bottom: 200px; }
    #featureSection .col-lg-7 .img-box .img01 {
      width: 90%;
      margin-right: 0px; }
    #featureSection .col-lg-7 .img-box .img02 {
      width: 90%; } 
}
    .banner {
      height:100vh;
      position:relative;
      width:100%;
      overflow: hidden;
    }
    .banner video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
  }
    .banner-innner {
        padding: 140px 100px;
    }
    
    header{
      position:absolute;
      width:100%;
      top:0;
      z-index:11;
    }
    .banner-left {
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .overlay {
        background: #00000060;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    
    .banner-left h1 {
        color: #fff;
        font-size: 80px;
        font-weight: 500;
        line-height: 90px;
        text-shadow: 1px 2px #000;
      margin-bottom:25px;
    }
    
    .banner-left p {
        color: #fff;
        font-size: 25px;
        letter-spacing: 2px;
        line-height: 35px;
      margin-bottom:30px;
    }
    
    .custom-btn {
        width: 100%;
        background: #330000;
        color: #fff;
        letter-spacing: 2.5px;
      transition:0.8 ease;
    }
    
    .banner-left a {
        background: none;
        border: 2px solid #666666;
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 8px 20px;
        border-radius: 20px;
      transition:0.8 ease;
    }
    
    .banner-left a:hover{
      transition:0.8 step-start;
      border: 2px solid #fff;
        color: #fff;
    }
    
    .custom-btn:hover{
      letter-spacing:3px;
      transition:0.8 ease;
    }

    
    .navbar{
      background:transparent;
      padding:auto 70px;
      transition:0.8s ease;
    }



    .navbar-light .navbar-brand {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 700;
        font-size: 30px;
        text-transform: uppercase;
        text-shadow: 1px 2px #000;
    }

    .navbar-brand img:hover{
      transform: rotate(360deg);
    }
    
    .navbar-light .navbar-nav .nav-link {
        color: #fff;
        font-weight: 500;
        font-size: 18px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
        color: #fff;
    }
    .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link:hover {
        color: #330000;
    }
    .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
        color: #fff;
    }
    .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dropdown-menu {
        padding: 0px;
    }
    span.navbar-toggler-icon {
        background-image: url(https://i.ibb.co/1v9M0dZ/menu.png) !important;
        width: 25px;
        height: 25px;
      cursor:pointer;
    }
    button.navbar-toggler:focus {
        outline: none;
    }
    
    a.dropdown-item {
        padding: 10px;
        background: #515156;
        color: #fff;
    }
    
    
    
    @media only screen and (max-width: 800px ){
      .banner-left h1 {
        color: #fff;
        font-size: 30px;
        font-weight: 800;
        line-height: 30px;
        text-shadow: 1px 2px #000;
    }
    .banner{
      padding:10px 0;
      height: auto;
    }
    
    .navbar-light .navbar-nav .nav-link{
      padding-left:0;
    }
    .banner-innner {
        padding: 120px 0;
    }
    
  }

  .parentContainer {
    position: relative;
    text-align: center;
    color: white;
}

.parentContainer img {
    height: 80vh;
    width: 100%;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.centered h2{
  color: white  ;
}

.centered p{
  color: #330000;
  font-size: 22px;
}

.centered p a{
  color: white  ;
}

.centered p a:hover{
  text-decoration: none;
  color: #330000;
}

.parentContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)); /* Use rgba for transparency */
}

@media (max-width: 767px)
{
  #specialFeature .container .row .col .sec-header{
    display: none;
  }
}

.avatar-sm {
  width: 70px;
  height: 70px;
  margin-right: 10px;
}

.ms-2 > .clr{
  color: #330000;
}
