* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #5f6366;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: var(--primary) !important;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
  border-radius: 10px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form input,
form select {
  height: 55px !important;
}

form .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--primary);
  background-color: var(--primary);
}

form .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, var(--secondary), var(--primary));
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 22px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.w-auto {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}

@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar {
  background-color: var(--secondary);
}

.navbar .logo {
  width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .nav-link {
  color: #eee;
  position: relative;
  margin: 0 10px;
  text-transform: capitalize;
}

.navbar .nav-link::after {
  content: '';
  width: 0%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  top: 34px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: var(--primary);
}

.navbar .nav-link.active, .navbar .nav-link:hover {
  color: var(--primary);
}

.navbar .nav-link.active::after, .navbar .nav-link:hover::after {
  width: 100%;
}

.navbar .nav-link.active {
  font-weight: bold;
}

.navbar .link-icon {
  margin: 0 10px;
}

.navbar .link-icon .icon {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.navbar .link-icon:hover .icon {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.footer {
  position: relative;
  padding: 70px 0 0 0;
  background-color: var(--secondary);
}

.footer .content {
  margin-bottom: 35px;
  -webkit-padding-end: 20px;
          padding-inline-end: 20px;
}

.footer .content .logo {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}

.footer .content .title {
  font-weight: bold;
  color: #fff;
}

.footer .content .det {
  color: #ddd;
  font-size: 12px;
  line-height: 1.5rem;
}

.footer .content .form-control {
  border-radius: 25px;
  background-color: #2f3033;
  color: #fff;
  border: 1px solid transparent;
}

.footer .content .submit-butn {
  color: var(--primary);
  background-color: transparent;
  position: absolute;
  right: 10px;
  top: 14px;
}

.footer .content .submit-butn:hover {
  color: #fff;
}

.footer .content .links a {
  color: #ccc;
  margin: 10px 0;
  display: block;
}

.footer .content .social-links a {
  color: #ccc;
  margin: 0 10px;
}

.footer .copytight_p {
  border-top: 1px solid #666;
  margin-bottom: 0;
  padding: 25px 0;
  text-align: center;
  font-weight: bold;
  color: #ccc;
}

/**********************************************
    Start Public Classes
**********************************************/
.swiper-container .swiper-pagination-bullet-active {
  background: var(--primary);
}

.sec-heading .title {
  font-weight: 800;
  text-transform: capitalize;
}

.sec-heading .title::after {
  content: '';
  width: 50px;
  height: 3px;
  border-radius: 10px;
  display: block;
  margin: 10px auto;
  background-color: var(--primary);
}

.section {
  position: relative;
  padding: 70px 0;
}

.butn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: .7rem 2.5rem;
  border-radius: 25px;
  display: block;
  color: #Fff;
  font-weight: bold;
  background-color: var(--primary);
  text-transform: capitalize;
  -webkit-box-shadow: 0 8px 25px 0 #ccc;
          box-shadow: 0 8px 25px 0 #ccc;
}

.butn:hover {
  background-color: var(--secondary);
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header .item {
  position: relative;
  padding: 250px 0;
}

.header .item .text-box .title {
  font-weight: 800;
  color: #fff;
  font-size: calc(35px + 1vw);
}

.header .item .text-box .subtitle {
  color: #eee;
}

.header .item .bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header .bottom-link {
  width: 28px;
  height: 45px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 25px;
  display: block;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header .bottom-link::after, .header .bottom-link::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  margin: 3px auto;
  background-color: #fff;
  animation: zoomIn 1s infinite alternate-reverse;
}

.header .bottom-link::before {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.header .header-swiper,
.header .item {
  height: 80vh;
}

.header .swiper-slide-active .subtitle {
  -webkit-animation: fadeInDown 1s both;
          animation: fadeInDown 1s both;
}

.header .swiper-slide-active .title {
  -webkit-animation: fadeInUp 1s both;
          animation: fadeInUp 1s both;
}

.features-sec {
  position: relative;
}

.features-sec .feature_card {
  margin-bottom: 20px;
}

.features-sec .feature_card .icon-wrapper {
  width: 100px;
  height: 100px;
  line-height: 100px;
  display: block;
  margin: auto;
  border-radius: 50%;
  border: 2px solid var(--primary);
  text-align: center;
  overflow: hidden;
}

.features-sec .feature_card .icon-wrapper .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}

.features-sec .feature_card .card-body .title {
  color: #2c3035;
  font-weight: bold;
}

.features-sec .feature_card:hover .icon {
  -webkit-animation: wobble-hor-bottom 0.8s both;
          animation: wobble-hor-bottom 0.8s both;
}

.features-sec .feature_card:hover .title {
  color: var(--primary);
}

.work-sec .nav .nav-link {
  font-weight: bold;
  color: #2c3035;
  border: 1px solid transparent;
  border-radius: 25px;
  font-size: 14px;
  padding: 0.7rem 2rem;
}

.work-sec .nav .nav-link.active {
  color: var(--primary);
  border: 1px solid var(--primary);
  background-color: transparent;
}

.work-sec .proj_card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 25px;
}

.work-sec .proj_card::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
}

.work-sec .proj_card .hvr-content {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.work-sec .proj_card .hvr-content i {
  color: #fff;
  font-size: 30px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.work-sec .proj_card .hvr-content .title {
  font-weight: bold;
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.work-sec .proj_card:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: .6;
}

.work-sec .proj_card:hover .hvr-content .title, .work-sec .proj_card:hover .hvr-content i {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.work-sec .tab-pane.active .proj_card {
  -webkit-animation: fadeInUp .5s both;
          animation: fadeInUp .5s both;
}

.statics-sec {
  background-color: var(--secondary);
}

.statics-sec .static_card {
  position: relative;
  text-align: center;
}

.statics-sec .static_card .title {
  font-weight: 900;
  color: #fff;
  font-size: calc(35px + 1vw);
}

.statics-sec .static_card .title::after {
  content: '';
  width: 50px;
  height: 3px;
  border-radius: 10px;
  display: block;
  margin: 10px auto;
  background-color: var(--primary);
}

.statics-sec .static_card .subtitle {
  text-transform: uppercase;
  color: #ccc;
  line-height: 1.5rem;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 1rem;
}

.team-sec .team_card {
  position: relative;
  border-radius: 10px;
  margin-bottom: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.team-sec .team_card .img-box {
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.team-sec .team_card .card-body {
  text-align: center;
}

.team-sec .team_card .card-body .name {
  font-weight: bold;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.team-sec .team_card .card-body .subtitle {
  font-size: .9rem;
  color: #777;
  text-transform: capitalize;
}

.team-sec .team_card .card-body .social-links a {
  color: #555;
  margin: 0 5px;
}

.team-sec .team_card .card-body .det {
  font-size: 12px;
  line-height: 1.3rem;
  margin-bottom: 0;
  color: #888;
}

.team-sec .team_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 10px 25px 0 #ddd;
          box-shadow: 0 10px 25px 0 #ddd;
}

.team-sec .team_card:hover .card-body .name {
  color: var(--primary) !important;
}

.blog-sec .blog_card {
  position: relative;
  margin-bottom: 35px;
}

.blog-sec .blog_card .img-box {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
}

.blog-sec .blog_card .img-box .date {
  background-color: var(--primary);
  padding: .5rem 2rem;
  display: block;
  font-weight: bold;
  position: absolute;
  right: 0;
  bottom: 45px;
  text-align: center;
  color: #fff;
  -webkit-box-shadow: 0 0 25px 0 #555;
          box-shadow: 0 0 25px 0 #555;
  text-transform: uppercase;
}

.blog-sec .blog_card .img-box .sec-img {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.blog-sec .blog_card .card-body .title {
  font-weight: bold;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.blog-sec .blog_card .card-body .icons a {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.blog-sec .blog_card .card-body .icons a i {
  color: #666;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.blog-sec .blog_card .card-body .tags {
  color: var(--primary);
}

.blog-sec .blog_card:hover .title {
  color: var(--primary);
}

.blog-sec .blog_card:hover .sec-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.contact-sec .contact-data .title {
  font-weight: bold;
  color: #4f5362;
}
/*# sourceMappingURL=style.css.map */