* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Libre Franklin', 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;
}

button {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

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 shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

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

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

.navbar .link-butn {
  background-color: var(--primary);
  border-radius: 8px;
  padding: .6rem 2rem;
  color: #fff;
  display: block;
  font-weight: bold;
}

.navbar .link-butn:hover {
  background-color: var(--third);
}

.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: #fff;
  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: #fff;
  -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 {
  background-color: #101010;
  padding: 70px 0 0 0;
}

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

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

footer .content .p {
  color: #ccc;
}

footer .content .social-links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  margin: 0 5px;
  border: 1px solid #ccc;
  color: #ccc;
  border-radius: 10px;
  font-size: 14px;
}

footer .content .social-links a:hover {
  background-color: var(--third);
  border: 1px solid var(--third);
  color: #fff;
}

footer .content .title {
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary);
}

footer .content .links a {
  color: #ddd;
  margin: 13px 0;
  font-size: 14px;
  display: block;
}

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

footer .content .form-group {
  position: relative;
}

footer .content .form-group .form-control {
  height: 55px;
  border-radius: 5px;
  background-color: rgba(51, 51, 51, 0.8);
  color: #ccc;
  border: 1px solid #555;
}

footer .content .form-group .submit-butn {
  background-color: #555;
  border: 1px solid #555;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  height: 55px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  font-size: 12px;
  border-radius: 0 5px 5px 0;
}

footer .content .form-group .submit-butn:hover {
  background-color: var(--third);
  border: 1px solid var(--third);
}

footer .copyright {
  border-top: 1px solid #999;
  color: #ddd;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
  padding: 20px 0;
}

/**********************************************
    Start Public Classes
**********************************************/
.sec-heading .subtitle {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.sec-heading .title {
  color: #000;
  font-weight: 700;
}

.bg_gray {
  background-color: #f5f5f5;
}

.filter_White {
  -webkit-filter: invert(92%) sepia(92%) saturate(4%) hue-rotate(330deg) brightness(107%) contrast(100%);
          filter: invert(92%) sepia(92%) saturate(4%) hue-rotate(330deg) brightness(107%) contrast(100%);
}

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

/**********************************************
    Start Edit Home Page 
**********************************************/
header {
  padding: 200px 0 150px 0;
  background: url(../images/header-1.png);
  background-attachment: fixed;
  position: relative;
  background-size: cover;
}

header::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--third);
  opacity: .7;
}

header .inner {
  position: relative;
  z-index: 5;
}

header .inner .text-box .title {
  font-size: calc(1.5vw + 32px);
  font-weight: bold;
  color: #fff;
}

header .inner .text-box .p {
  color: #ddd;
}

header .inner .search-wrapper {
  background-color: #fff;
  -webkit-box-shadow: 0 0 25px 0 #172fcc;
          box-shadow: 0 0 25px 0 #172fcc;
  padding: 25px;
  border-radius: 20px;
}

header .inner .search-wrapper .form-group {
  margin-bottom: 0;
}

header .inner .search-wrapper .form-group .label {
  font-weight: bold;
  color: #777;
  font-size: 12px;
}

header .inner .search-wrapper .form-group .form-control {
  border: transparent;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  font-size: 13px;
  font-weight: bold;
  padding: .5rem 0;
}

header .inner .search-wrapper .form-group .form-control:focus {
  border: transparent !important;
  border-bottom: 1px solid var(--primary) !important;
}

header .inner .search-wrapper .submit-butn {
  background-color: var(--primary);
  border: none;
  width: 100%;
  text-align: center;
  display: block;
  border-radius: 8px;
  height: 55px;
  line-height: 55px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}

header .inner .search-wrapper .submit-butn:hover {
  background-color: var(--third);
}

.content-sec {
  padding: 70px 0;
}

.content-sec .content-img {
  width: 100%;
  height: 580px;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-sec .text-box {
  padding: 0 2vw;
}

.content-sec .text-box .link-butn {
  width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  border-radius: 10px;
  font-weight: bold;
  background-color: var(--third);
  color: #fff;
}

.content-sec .text-box .link-butn:hover {
  background-color: var(--primary);
}

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

.features-sec .feature_card {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features-sec .feature_card .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
}

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

.features-sec .feature_card .text-box {
  margin: 0 20px;
  width: calc(100% - 100px);
}

.features-sec .feature_card .text-box .title {
  font-weight: bold;
  color: #666;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.features-sec .feature_card .text-box .det {
  margin-bottom: 0;
}

.features-sec .feature_card:hover {
  -webkit-box-shadow: 0 0 25px 0 #ccc;
          box-shadow: 0 0 25px 0 #ccc;
}

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

.features-sec .feature_card:hover .img {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.portfolio-sec {
  padding: 70px 0;
  overflow: hidden;
}

.portfolio-sec .portolio_card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
}

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

.portfolio-sec .portolio_card .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 3s linear;
  transition: all 3s linear;
}

.portfolio-sec .portolio_card .text-box {
  position: absolute;
  z-index: 1;
  padding: 25px;
  bottom: 0;
  left: 0;
}

.portfolio-sec .portolio_card .text-box .title {
  color: #fff;
  font-weight: bold;
}

.portfolio-sec .portolio_card .text-box .det {
  color: #ddd;
  line-height: 1.6rem;
}

.portfolio-sec .portolio_card .text-box .link-butn {
  width: 160px;
  height: 0;
  line-height: 38px;
  background-color: var(--third);
  color: #fff;
  font-weight: 500;
  border-radius: 10px;
  font-size: 13px;
  display: block;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.portfolio-sec .portolio_card .text-box .link-butn:hover {
  background-color: var(--primary);
}

.portfolio-sec .portolio_card:hover::after {
  background-color: rgba(0, 0, 0, 0.8);
}

.portfolio-sec .portolio_card:hover .main-img {
  -webkit-transform: scale(1.2) rotate(15deg);
          transform: scale(1.2) rotate(15deg);
}

.portfolio-sec .portolio_card:hover .title {
  color: var(--primary);
}

.portfolio-sec .portolio_card:hover .link-butn {
  opacity: 1;
  height: 38px;
  visibility: visible;
}

.portfolio-sec .swiper-container {
  overflow: inherit;
}

.portfolio-sec .swiper-pagination {
  bottom: 0;
}

.portfolio-sec .swiper-pagination .swiper-pagination-bullet {
  width: 35px;
  height: 5px;
  border-radius: 5px;
}

.portfolio-sec .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
}

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

.teamwork-sec .team_card .img-box {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.teamwork-sec .team_card .img-box::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

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

.teamwork-sec .team_card .card-body .name {
  margin-bottom: .1rem;
}

.teamwork-sec .team_card .card-body .job-title {
  color: var(--third);
  margin-bottom: 0;
}

.teamwork-sec .team_card:hover .img-box::before {
  -webkit-animation: shine .75s;
          animation: shine .75s;
}

.teamwork-sec .team_card:hover .name {
  color: var(--primary);
}
/*# sourceMappingURL=style.css.map */