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

*::-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: #555;
  line-height: 2rem;
}

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

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

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

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-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

.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: 25px;
  -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;
}

/**********************************************
   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.nav_abs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
}

.navbar .nav-link {
  margin: 0 10px;
  font-weight: bold;
  color: #ddd;
  font-size: 18px;
}

.navbar .nav-link.active {
  color: #fff;
}

.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: #000;
  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: #000;
  -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: #FAFBFF;
}

.footer .content {
  margin-bottom: 45px;
}

.footer .content .logo {
  width: 115px;
  margin-bottom: 15px;
}

.footer .content .det {
  margin-bottom: 0;
  padding: 0 20px 0 0;
}

.footer .content .title {
  font-weight: bold;
  color: #2E2F38;
  margin-bottom: 1.5rem;
}

.footer .content .links a {
  display: block;
  margin: 15px 0;
  font-weight: 500;
  font-size: 13px;
  color: #666;
}

.footer .content .links a:hover {
  color: var(--secondary);
}

.footer .copyright {
  padding: 15px 0;
  border-top: 1px solid #ddd;
  text-align: center;
  font-weight: 600;
}

.footer .copyright a {
  color: var(--primary);
}

.footer .copyright a:hover {
  color: var(--secondary);
}

/**********************************************
    Start Public Classes
**********************************************/
.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.butn {
  padding: .7rem 2rem;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 25px;
  overflow: hidden;
  font-weight: bold;
  font-size: 15px;
  -webkit-box-shadow: 0 5px 15px 0 #ddd;
          box-shadow: 0 5px 15px 0 #ddd;
  text-transform: uppercase;
}

.butn span {
  position: relative;
  z-index: 1;
}

.border-butn {
  color: #42464F;
  border: 1px solid #ccc;
  z-index: 9;
}

.border-butn::after {
  content: '';
  z-index: -1;
  position: absolute;
  width: 195%;
  height: 200%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/pattern-header-1.png");
  background-position: center;
  background-size: cover !important;
  background-repeat: repeat;
  -webkit-transition: all 2s linear;
  transition: all 2s linear;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  opacity: 0;
}

.border-butn:hover::after {
  opacity: .5;
  background-position-x: -150px;
}

.bg-butn {
  color: #fff;
}

.bg-butn::after {
  content: '';
  z-index: -1;
  position: absolute;
  width: 195%;
  height: 200%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/pattern-header-1.png");
  background-position: center;
  background-size: cover !important;
  background-repeat: repeat;
  -webkit-transition: all 2s linear;
  transition: all 2s linear;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.bg-butn:hover {
  color: #fff;
}

.bg-butn:hover::after {
  background-position-x: -150px;
}

.sec-title {
  color: #2E2F38;
  font-weight: 300;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  padding: 0 0 70px 0;
  background-color: #FAFBFF;
  position: relative;
}

.header .text-box {
  padding: 4vw 9vw;
  position: relative;
}

.header .text-box .title {
  font-size: calc(35px + 1vw);
  font-weight: 500;
  color: #2E2F38;
}

.header .text-box .det {
  font-size: 22px;
  color: #999;
}

.header .header-img {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}

.strategy-sec {
  position: relative;
  padding: 70px 0;
  background-color: #FAFBFF;
}

.strategy-sec .main-img {
  width: 100%;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.strategy-sec .text-box {
  padding: 0 4vw;
}

.strategy-sec .text-box .title {
  color: #2E2F38;
  line-height: 3.3rem;
  font-weight: 500;
}

.strategy-sec .text-box .det {
  color: #8B8A8A;
  font-size: 17px;
}

.processes-sec {
  padding: 70px 0;
  position: relative;
  background-color: #FAFBFF;
}

.processes-sec .process_card {
  position: relative;
  padding: 0 4vw;
  margin-bottom: 35px;
}

.processes-sec .process_card .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin-bottom: 15px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#fff));
  background-image: linear-gradient(to bottom, #f0f0f0, #fff);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.processes-sec .process_card .icon .img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.processes-sec .process_card .content .title {
  color: #2E2F38;
  font-weight: 400;
}

.processes-sec .process_card .content .det {
  color: #8B8A8A;
  font-weight: 200;
}

.processes-sec .process_card .content .more-butn {
  color: var(--primary);
}

.processes-sec .process_card .content .more-butn i {
  margin: 0 5px;
}

.processes-sec .process_card .content .more-butn:hover {
  color: var(--secondary);
}

.processes-sec .process_card:hover .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.processes-sec .process_card:hover .icon .img {
  -webkit-animation: tada 1.5s both;
          animation: tada 1.5s both;
}

.services-sec {
  padding: 70px 0;
  position: relative;
  background-color: #FAFBFF;
}

.services-sec .serv_card {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  padding: 2.5vw 5vw;
  margin-bottom: 15px;
}

.services-sec .serv_card .icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 25px;
}

.services-sec .serv_card .content .title {
  color: #2E2F38;
  font-weight: 400;
}

.services-sec .serv_card .content .det {
  margin-bottom: 0;
  font-size: 17px;
  color: #999;
  font-weight: 200;
}

.services-sec .serv_card:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 0 25px #eee;
          box-shadow: 0 0 25px #eee;
}

.services-sec .serv_card:hover .icon {
  -webkit-animation: wobble-hor-bottom 1s both;
          animation: wobble-hor-bottom 1s both;
}

.portfolio-sec {
  position: relative;
  padding: 70px 0;
  background-color: #FAFBFF;
}

.portfolio-sec .port_card {
  position: relative;
  height: 350px;
  overflow: hidden;
  margin-bottom: 35px;
}

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

.portfolio-sec .port_card::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  display: block;
}

.portfolio-sec .port_card .text-t {
  padding: 45px 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.portfolio-sec .port_card .text-t .subtitle {
  color: #eee;
}

.portfolio-sec .port_card .text-t .title {
  color: #fff;
}

.portfolio-sec .port_card .link-butn {
  position: absolute;
  display: block;
  bottom: 30px;
  left: 50px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.portfolio-sec .port_card .link-butn i {
  margin: 0 5px;
}

.portfolio-sec .port_card .link-butn:hover {
  color: var(--primary);
}

.portfolio-sec .port_card:hover .text-t {
  opacity: 1;
  visibility: visible;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.portfolio-sec .port_card:hover .link-butn {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.portfolio-sec .port_card:hover::after {
  background-color: var(--secondary);
  opacity: .6;
}

.feedback-sec {
  position: relative;
  padding: 70px 0;
  background-color: #FAFBFF;
}

.feedback-sec .feed_card {
  position: relative;
  border: 1px solid #eee;
  padding: 2rem 1.2rem 1rem 1.2rem;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  border-radius: 5px;
}

.feedback-sec .feed_card .card_t {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.feedback-sec .feed_card .card_t .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feedback-sec .feed_card .card_t .prof-info {
  margin: 0 10px;
}

.feedback-sec .feed_card .card_t .prof-info .title {
  color: #666;
  font-weight: 200;
  font-size: 14px;
}

.feedback-sec .feed_card .det {
  margin-bottom: 0;
}

.feedback-sec .feed_card:hover {
  border-color: var(--primary);
}

.feedback-sec .feed_card:hover .card_t {
  border-bottom: 1px solid var(--secondary);
}

.feedback-sec .swiper-button-next,
.feedback-sec .swiper-button-prev {
  width: 45px;
  height: 45px;
  background-image: none !important;
  border-radius: 50%;
  border: 1px solid #ddd;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  top: unset;
  bottom: 0;
  border-radius: 50%;
}

.feedback-sec .swiper-button-next::before,
.feedback-sec .swiper-button-prev::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 45px;
  color: #ccc;
  font-size: 20px;
}

.feedback-sec .swiper-button-next:hover,
.feedback-sec .swiper-button-prev:hover {
  background-color: var(--primary);
}

.feedback-sec .swiper-button-next:hover::before,
.feedback-sec .swiper-button-prev:hover::before {
  color: #fff;
}

.feedback-sec .swiper-button-next {
  right: 45%;
}

.feedback-sec .swiper-button-next::before {
  content: '\f105';
}

.feedback-sec .swiper-button-prev {
  left: 45%;
}

.feedback-sec .swiper-button-prev::before {
  content: '\f104';
}

.blog-sec {
  position: relative;
  padding: 70px 0;
  background-color: #FAFBFF;
}

.blog-sec .blog_card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin-bottom: 25px;
}

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

.blog-sec .blog_card .card-body .title {
  line-height: 2.5rem;
  color: #2E2F38;
  font-weight: 400;
}

.blog-sec .blog_card .card-body .det {
  font-weight: 200;
}

.blog-sec .blog_card .card-body .link-butn {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

.blog-sec .blog_card .card-body .link-butn i {
  margin: 0 5px;
}

.blog-sec .blog_card .card-body .link-butn:hover {
  color: var(--secondary);
}

.blog-sec .blog_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 10px 25px 0 #eee;
          box-shadow: 0 10px 25px 0 #eee;
}

.newsletter-sec {
  position: relative;
  padding: 100px 0 70px 0;
}

.newsletter-sec::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../images/newsletter-bg.png);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.newsletter-sec .text-box {
  position: relative;
  z-index: 1;
}

.newsletter-sec .text-box .title {
  color: #fff;
}

.newsletter-sec .text-box .border-butn {
  background: #fff;
}
/*# sourceMappingURL=style.css.map */