@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
body {
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

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

:before, :after {
  box-sizing: border-box;
}

.v-center {
  align-items: center;
}

.icondown {
  margin-left: 7px;
  font-size: 13px;
}

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

a {
  text-decoration: none;
}

.dropdown-menu {
  border: none !important;
  border-radius: 0px !important;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 0px !important;
}

/* header */
.header {
  display: block;
  width: 100%;
  padding: 15px !important;
  background-color: #fff;
  box-shadow: -2px 2px 10px -5px rgba(0, 0, 0, 0.3) !important;
}

.header .item-left {
  flex: 0 29%;
}

.header .logo a {
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}

.header .logo > a > img {
  height: 35px;
}

.header .item-center {
  flex: 0 0 71%;
}

.menu-main .menu-item a::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 0%;
  background-color: #F7B90F;
  bottom: 0px;
  transition: all 0.3s linear;
}

.menu-main .menu-item a:hover:before {
  width: 100%;
}

.menu-main .menu-item-has-children a:last-child:before {
  position: absolute;
  content: "";
  height: 1px;
  width: 0%;
  background-color: #F7B90F;
  transition: all 0.3s linear;
  bottom: 0px;
}

.menu-main .menu-item-has-children a:hover::before {
  width: 100%;
}

.menu-main .menu-item-has-children .sub-menu .menu-item-child::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 0%;
  background-color: #F7B90F;
  transition: all 0.3s linear;
  bottom: 0px;
}

.menu-main .menu-item-has-children .sub-menu .menu-item-child:hover::before {
  width: 75%;
}

.header .item-right a {
  text-decoration: none;
  font-size: 16px;
  color: #555555;
  display: inline-block;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.header .menu > ul > li {
  display: inline-block;
  line-height: 50px;
  margin-left: 60px;
}

.header .menu > ul > li > a {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.header .menu > ul > li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #fff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 992px) {
  .header .menu > ul > li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}
.header .menu > ul > li .sub-menu > ul > li {
  line-height: 1;
}

.header .menu > ul > li .sub-menu > ul > li > a {
  display: inline-block;
  padding: 10px 0;
  font-size: 14px;
  color: black;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.header .menu > ul > li .single-column-menu {
  min-width: 180px;
  max-width: 350px;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
  line-height: 1;
  display: block;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}

.header .menu > ul > li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
  text-align: center;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a {
  color: #F7B90F;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/*responsive*/
@media (max-width: 991px) {
  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }
  .header .item-left {
    position: absolute;
    padding-top: 0px;
    align-items: center;
  }
  .header .item-left,
.header .item-right {
    flex: 0 0 auto;
  }
  .header .item-right {
    margin-top: 0px;
  }
  .v-center {
    justify-content: space-between;
  }
  .header .header-item .search .dropdown-menu {
    top: 26% !important;
  }
  .header .header-item .language .dropdown-menu {
    top: 28% !important;
  }
  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    float: right;
    position: relative;
    align-items: center;
    justify-content: center;
  }
  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }
  .header .mobile-menu-trigger span:before,
.header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }
  .header .mobile-menu-trigger span:before {
    top: -6px;
  }
  .header .mobile-menu-trigger span:after {
    top: 6px;
  }
  .header .item-right {
    align-items: center;
  }
  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }
  .header .menu.active {
    transform: translate(0%);
  }
  .header .menu > ul > li {
    line-height: 1;
    margin: 0;
    display: block;
  }
  .header .menu > ul > li > a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .menu > ul > li > a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }
  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: -webkit-sticky;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }
  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }
  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }
  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }
  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }
  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header .menu > ul > li .sub-menu.mega-menu,
.header .menu > ul > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }
  .header .menu > ul > li .sub-menu.active {
    display: block;
  }
  @-webkit-keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @-webkit-keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }
    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }
  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }
    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    margin-top: 0;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title {
    margin-bottom: 20px;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 100%;
    padding: 0px;
  }
  .header .menu > ul > li .sub-menu > ul > li > a,
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}
.main-footer {
  padding-top: 50px;
  padding-bottom: 20px;
  background: #292929 !important;
}
.main-footer .container .footer-inner {
  overflow: hidden;
  padding-bottom: 20px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}
.main-footer .container .footer-inner .row .col-md-4 .footer-info {
  float: left;
  width: 100%;
  padding-bottom: 25px;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-info h4 {
  float: left;
  width: 100%;
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  color: #fff;
  font-weight: 600;
  margin-bottom: 45px;
  padding-bottom: 10px;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-info h4::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 30px;
  height: 4px;
  background: #F7B90F;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-info h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.main-footer .container .footer-inner .row .col-md-4 .footer-info p {
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  line-height: 24px;
  padding-bottom: 10px;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-info .footer-link {
  float: left;
  margin-top: 10px;
  font-weight: 600;
  border-bottom: 1px dotted #F7B90F;
  padding-bottom: 4px;
  color: #F7B90F;
  font-size: 16px;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-info .footer-link i {
  color: #fff;
  margin-left: 12px;
  font-size: 10px;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-info {
  padding-bottom: 0px;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-contacts ul li {
  float: left;
  width: 100%;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 400;
  transition: all 0.3s linear;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-contacts ul li:hover a {
  color: #F7B90F;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-contacts ul li:hover span {
  color: #fff;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-contacts ul li i {
  float: left;
  padding-right: 12px;
  position: relative;
  top: 2px;
  color: #F7B90F;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-contacts ul li span {
  float: left;
  text-align: left;
  color: #999;
  width: 80px;
  transition: all 0.2s linear;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-contacts ul li a {
  float: left;
  text-align: left;
  color: #fff;
  transition: all 0.2s linear;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-contacts .footer-sosial {
  float: left;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-contacts .footer-sosial ul {
  float: left;
  display: flex;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-contacts .footer-sosial ul li {
  list-style: none;
  margin-right: 10px;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-contacts .footer-sosial ul li a {
  align-items: center;
  text-align: center;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  padding: 7px;
  padding-left: 10px;
  float: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #333;
  transition: all 200ms linear;
  color: #F7B90F;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-contacts .footer-sosial ul li a:hover {
  background-color: #eee;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-services {
  float: left;
  width: 100%;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-services ul li {
  float: left;
  width: 50%;
  padding: 0 0 15px 20px;
  position: relative;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-services ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
  width: 7px;
  height: 2px;
  background: #F7B90F;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-services ul li a {
  text-align: left;
  float: left;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s linear;
}
.main-footer .container .footer-inner .row .col-md-4 .footer-services ul li a:hover {
  color: #F7B90F;
}
.main-footer .container .copyright {
  padding-top: 10px;
}
.main-footer .container .copyright p {
  text-align: left;
  color: #F7B90F;
  font-size: 12px;
}

#ScrollUp {
  width: 40px;
  height: 40px;
  background-color: #F7B90F;
  position: fixed;
  z-index: 111;
  color: #ffffff;
  right: 20px;
  bottom: 50px;
  border-radius: 4px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s linear;
}
#ScrollUp i {
  margin-top: 12px;
  font-size: 14px;
}
#ScrollUp:hover {
  transform: translateY(-5px);
}

@media only screen and (max-width: 767px) {
  .main-footer {
    padding-top: 20px !important;
  }
  .main-footer .container .footer-inner .footer-info {
    padding-top: 15px !important;
  }
  .main-footer .container .footer-inner .footer-info .footer-link {
    float: right !important;
  }
}
.content-inner > * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.main-slider {
  overflow: hidden;
  display: block;
  box-sizing: border-box;
  padding-bottom: 50px;
}
.main-slider .owl-carousel .item {
  height: 720px !important;
}
.main-slider .owl-carousel .item img {
  width: 100% !important;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.main-slider .owl-carousel .item .container .hero-wrap-title {
  position: absolute;
  top: 50%;
  left: 8%;
  z-index: 5;
  width: 60%;
}
.main-slider .owl-carousel .item .container .hero-wrap-title h3 {
  font-size: 35px !important;
  color: white;
}
.main-slider .owl-carousel .item .container .hero-wrap-title h3 span {
  color: #F7B90F;
}
.main-slider .owl-carousel .item .container .hero-wrap-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: -30px;
  width: 40px;
  height: 2px;
  z-index: 2;
  background: #F7B90F;
}
.main-slider .owl-carousel .item .container .hero-wrap-title h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 40px;
  height: 2px;
  z-index: 2;
  background: #F7B90F;
}
.main-slider .owl-carousel .item .container .slider-overlay {
  position: absolute;
  left: 55px;
  width: 1000px;
  top: 35%;
  bottom: 107px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.main-slider .owl-carousel .item .container .slider-overlay::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 80px;
  height: 80px;
  border-right: 1.5px solid #F7B90F;
  border-bottom: 1.5px solid #F7B90F;
}
.main-slider .owl-carousel .item .container .slider-overlay::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 80px;
  height: 80px;
  border-left: 1px solid #F7B90F;
  border-top: 1px solid #F7B90F;
}
.main-slider .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 80%;
  width: 50px;
  height: 50px;
  line-height: 40px;
  margin-top: -20px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 50;
  color: #F7B90F;
  font-size: 35px;
  right: 115px;
  cursor: pointer;
}
.main-slider .owl-carousel .owl-nav .owl-prev:hover {
  background: #F7B90F none repeat scroll 0 0;
  border-color: #ffffff;
  color: black;
  transition: all 0.3s ease-in-out 0s;
}
.main-slider .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 80%;
  width: 50px;
  height: 50px;
  line-height: 40px;
  margin-top: -20px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 50;
  color: #F7B90F;
  font-size: 35px;
  right: 63px;
  cursor: pointer;
}
.main-slider .owl-carousel .owl-nav .owl-next:hover {
  background: #F7B90F none repeat scroll 0 0;
  border-color: #ffffff;
  color: black;
  transition: all 0.3s ease-in-out 0s;
}
.main-slider .owl-carousel .owl-dots {
  position: absolute;
  bottom: 14%;
  right: 15%;
  border: 0 none;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  text-align: center;
}

.our-services {
  padding-top: 50px;
  padding-bottom: 50px;
}
.our-services .container .row .services-head {
  text-align: left;
}
.our-services .container .row .services-head h2 {
  font-weight: 600;
  color: #F7B90F;
  font-size: 32px;
  margin-bottom: 5px;
}
.our-services .container .row .services-head h2 span {
  color: black;
  font-size: 32px;
}
.our-services .container .row .services-head h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 84px;
  background: #FFB81C;
  margin-top: 10px;
  margin-bottom: 20px;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner {
  width: 100%;
  padding-top: 20px;
  color: #000;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front {
  display: block;
  top: 0px;
  position: relative;
  transition: all 0.3s linear;
  transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: -2px 2px 10px -5px rgba(0, 0, 0, 0.3) !important;
  border: 1px solid #eee;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front .cf-inner {
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  padding-bottom: 50px !important;
  padding: 100px 25px;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front .cf-inner .inner {
  align-items: stretch;
  transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(95px) scale(0.81);
  text-align: center;
  position: relative;
  z-index: 2;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front .cf-inner .inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 3px;
  z-index: 1;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front .cf-inner .inner .dec-icon {
  position: absolute;
  top: -80px;
  left: 0;
  font-size: 30px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  color: #F7B90F;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front .cf-inner .inner h2 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 6px;
  text-align: left;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front .cf-inner .inner h2::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #F7B90F;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front .cf-inner .inner p {
  text-align: left;
  font-size: 12px;
  line-height: 24px;
  padding-bottom: 10px;
  font-weight: 500;
  color: #5e646a;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front .cf-inner .inner p::after {
  content: "";
  position: absolute;
  right: 0;
  width: 60px;
  bottom: -20px;
  height: 1px;
  z-index: 2;
  background: #F7B90F;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front .cf-inner .serv-num {
  position: absolute;
  top: 30px;
  right: 25px;
  color: #292929;
  z-index: 3;
  font-size: 10px;
  font-weight: 600;
  background: #f9f9f9;
  border: 1px solid #eee;
  width: 56px;
  height: 56px;
  line-height: 56px;
  color: #F7B90F;
  text-align: center;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front .go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transition: all 0.3s linear;
  width: 55px;
  height: 55px;
  overflow: hidden;
  opacity: 0;
  top: 0;
  right: 0;
  background-color: #F7B90F;
  border-radius: 0 0px 0 60px;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front .go-corner .go-arrow {
  margin-top: -16px;
  margin-right: -12px;
  color: white;
  font-size: 24px;
  font-family: courier, sans;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front:hover {
  border: 1px solid #F7B90F;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front:hover .go-corner {
  opacity: 1;
}
.our-services .container .row .cards-wrap .col-md-4 .content-inner .content-front:hover .go-arrow {
  opacity: 1;
}

.products {
  padding-top: 50px;
  padding-bottom: 50px;
  background: rgba(189, 188, 188, 0.266) !important;
}
.products .container .row .product-head {
  text-align: left;
}
.products .container .row .product-head h2 {
  font-weight: 600;
  color: #F7B90F;
  font-size: 32px;
  margin-bottom: 5px;
}
.products .container .row .product-head h2 span {
  color: black;
  font-size: 32px;
}
.products .container .row .product-head h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 84px;
  background: #FFB81C;
  margin-top: 10px;
  margin-bottom: 20px;
}
.products .container .row .product-post .row .col-md-4 {
  margin-top: 20px;
}
.products .container .row .product-post .row .col-md-4 .post {
  background: #fff !important;
  position: relative;
  height: 100%;
  justify-content: center;
  align-items: center;
  transition: all 0.2s linear;
  border: 1px solid #eee;
  padding: 20px;
  cursor: pointer;
}
.products .container .row .product-post .row .col-md-4 .post::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 80px;
  height: 80px;
  border-left: 1px solid #F7B90F;
  border-top: 1px solid #F7B90F;
}
.products .container .row .product-post .row .col-md-4 .post:hover {
  box-shadow: 0px 19px 20px rgba(146, 144, 144, 0.2);
}
.products .container .row .product-post .row .col-md-4 .post:hover img {
  transform: scale(1.25);
}
.products .container .row .product-post .row .col-md-4 .post::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 80px;
  height: 80px;
  border-right: 1px solid #F7B90F;
  border-bottom: 1px solid #F7B90F;
}
.products .container .row .product-post .row .col-md-4 .post .post-img {
  overflow: hidden;
  position: relative;
}
.products .container .row .product-post .row .col-md-4 .post .post-img img {
  width: 100%;
  height: 200px;
  transition: all 0.3s linear;
}
.products .container .row .product-post .row .col-md-4 .post .post-info h5 {
  text-align: center;
  padding: 10px 0px;
}
.products .container .row .product-post .row .col-md-4 .post .post-info p {
  text-align: center;
  font-size: 13px;
  margin-bottom: 7px;
}
.products .container .row .product-post .row .col-md-4 .post .post-btn {
  text-align: center;
}
.products .container .row .product-post .row .col-md-4 .post .post-btn a {
  padding: 11px 35px;
  color: #292929;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  background: #F7B90F;
  transition: all 0.3s linear;
}
.products .container .row .product-post .row .col-md-4 .post .post-btn a:hover {
  background: #000;
  color: #F7B90F;
}

.partners {
  padding-top: 50px;
  padding-bottom: 50px;
}
.partners .container .row .partners-head {
  text-align: left;
}
.partners .container .row .partners-head h2 {
  font-weight: 600;
  color: #F7B90F;
  font-size: 32px;
  margin-bottom: 5px;
}
.partners .container .row .partners-head h2 span {
  color: black;
  font-size: 32px;
}
.partners .container .row .partners-head h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 84px;
  background: #FFB81C;
  margin-top: 10px;
  margin-bottom: 20px;
}
.partners .container .row .partners-slider .part-slide .part-slide__item {
  padding: 20px !important;
  width: 100%;
  cursor: pointer;
}
.partners .container .row .partners-slider .part-slide .part-slide__item .partner-item {
  box-shadow: -2px 2px 17px -8px #8f8f8f !important;
  border: 1px solid #eee;
}
.partners .container .row .partners-slider .part-slide .part-slide__item .partner-item img {
  width: 100%;
  height: 100%;
}
.partners .container .row .partners-slider .part-slide .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  line-height: 40px;
  margin-top: -20px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 50;
  color: #F7B90F;
  font-size: 35px;
  left: -10px;
  cursor: pointer;
}
.partners .container .row .partners-slider .part-slide .owl-nav .owl-prev:hover {
  background: #F7B90F none repeat scroll 0 0;
  border-color: #ffffff;
  color: black;
  transition: all 0.3s ease-in-out 0s;
}
.partners .container .row .partners-slider .part-slide .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  line-height: 40px;
  margin-top: -20px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 50;
  color: #F7B90F;
  font-size: 35px;
  right: -10px;
  cursor: pointer;
}
.partners .container .row .partners-slider .part-slide .owl-nav .owl-next:hover {
  background: #F7B90F none repeat scroll 0 0;
  border-color: #ffffff;
  color: black;
  transition: all 0.3s ease-in-out 0s;
}

@media only screen and (max-width: 393px) {
  .header .container .row .header-item .logo img {
    height: 27px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main-slider {
    padding-bottom: 0px !important;
  }
  .main-slider .home-slider .item {
    height: 360px !important;
  }
  .main-slider .home-slider .item img {
    height: 360px !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .main-slider .home-slider .item .container .hero-wrap-title {
    top: 43% !important;
  }
  .main-slider .home-slider .item .container .hero-wrap-title h3 {
    font-size: 15px !important;
  }
  .main-slider .home-slider .item .container .slider-overlay {
    width: 390px;
    height: 360px;
    left: 0;
    top: 0;
    bottom: 0;
  }
  .main-slider .home-slider .owl-nav .owl-next {
    top: 86% !important;
    right: 15px !important;
    width: 40px;
    height: 40px;
  }
  .main-slider .home-slider .owl-nav .owl-prev {
    top: 86% !important;
    right: 60px !important;
    width: 40px;
    height: 40px;
  }
  .main-slider .home-slider .owl-dots {
    display: none !important;
  }
  .our-services {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .our-services .content-inner .content-front .cf-inner {
    padding-top: 90px !important;
  }
  .our-services .content-inner .content-front .cf-inner .inner .dec-icon {
    font-size: 25px !important;
  }
  .our-services .content-inner .content-front .cf-inner .inner h2 {
    font-size: 16px !important;
  }
  .our-services .content-inner .content-front .cf-inner .inner h2::after {
    content: "";
    position: absolute;
    top: -30px !important;
    left: -5px !important;
    width: 30px !important;
    height: 2px !important;
    background: #F7B90F;
  }
  .our-services .content-inner .content-front .cf-inner .serv-num {
    top: 20px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
    line-height: 48px !important;
  }
  .our-services .services-head h2 {
    font-size: 22px !important;
  }
  .our-services .services-head h2::after {
    height: 1.5px !important;
    width: 60px !important;
  }
  .our-services .services-head h2 span {
    font-size: 22px !important;
  }
  .our-services .services-head .outlinespan {
    font-size: 17px !important;
  }
  .products {
    padding: 20px 0px !important;
  }
  .products .product-head::after {
    height: 1.5px !important;
    width: 60px !important;
  }
  .products .product-head h2 {
    font-size: 22px !important;
  }
  .products .product-head h2 span {
    font-size: 22px !important;
  }
  .products .product-head .outlinespan {
    font-size: 17px !important;
  }
  .partners {
    padding: 20px 0px !important;
  }
  .partners .partners-head h2 {
    font-size: 22px !important;
  }
  .partners .partners-head h2::after {
    height: 1.5px !important;
    width: 60px !important;
  }
  .partners .partners-head h2 span {
    font-size: 22px !important;
  }
  .partners .partners-head .outlinespan {
    font-size: 17px !important;
  }
  .partners .container .partners-slider .part-slide .part-slide__item .partner-item {
    width: 170px !important;
  }
  .partners .container .partners-slider .part-slide .part-slide__item .partner-item img {
    width: 150%;
    height: 100%;
  }
  .partners .container .row .partners-slider .part-slide .owl-nav .owl-prev {
    position: absolute;
    top: 38% !important;
    width: 45px !important;
    height: 45px !important;
    margin-top: 0px !important;
  }
  .partners .container .row .partners-slider .part-slide .owl-nav .owl-next {
    position: absolute;
    top: 38% !important;
    width: 45px !important;
    height: 45px !important;
    margin-top: 0px !important;
  }
  .partners .container .row .partners-slider .part-slide .part-slide__item {
    padding: 0px !important;
  }
}
@media only screen and (max-width: 767px) {
  .header .container .row .header-item .logo img {
    height: 27px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main-slider {
    padding-bottom: 0px !important;
  }
  .main-slider .home-slider .item {
    height: 360px !important;
  }
  .main-slider .home-slider .item img {
    height: 360px !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .main-slider .home-slider .item .container .hero-wrap-title {
    top: 43% !important;
  }
  .main-slider .home-slider .item .container .hero-wrap-title h3 {
    font-size: 15px !important;
  }
  .main-slider .home-slider .item .container .slider-overlay {
    width: 415px;
    height: 360px;
    left: 0;
    top: 0;
    bottom: 0;
  }
  .main-slider .home-slider .owl-nav .owl-next {
    top: 86% !important;
    right: 15px !important;
    width: 40px;
    height: 40px;
  }
  .main-slider .home-slider .owl-nav .owl-prev {
    top: 86% !important;
    right: 60px !important;
    width: 40px;
    height: 40px;
  }
  .main-slider .home-slider .owl-dots {
    display: none !important;
  }
  .our-services {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .our-services .content-inner .content-front .cf-inner {
    padding-top: 90px !important;
  }
  .our-services .content-inner .content-front .cf-inner .inner .dec-icon {
    font-size: 25px !important;
  }
  .our-services .content-inner .content-front .cf-inner .inner h2 {
    font-size: 16px !important;
  }
  .our-services .content-inner .content-front .cf-inner .inner h2::after {
    content: "";
    position: absolute;
    top: -30px !important;
    left: -5px !important;
    width: 30px !important;
    height: 2px !important;
    background: #F7B90F;
  }
  .our-services .content-inner .content-front .cf-inner .serv-num {
    top: 20px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
    line-height: 48px !important;
  }
  .our-services .services-head h2 {
    font-size: 22px !important;
  }
  .our-services .services-head h2::after {
    height: 1.5px !important;
    width: 60px !important;
  }
  .our-services .services-head h2 span {
    font-size: 22px !important;
  }
  .our-services .services-head .outlinespan {
    font-size: 17px !important;
  }
  .products {
    padding: 20px 0px !important;
  }
  .products .product-head::after {
    height: 1.5px !important;
    width: 60px !important;
  }
  .products .product-head h2 {
    font-size: 22px !important;
  }
  .products .product-head h2 span {
    font-size: 22px !important;
  }
  .products .product-head .outlinespan {
    font-size: 17px !important;
  }
  .partners {
    padding: 20px 0px !important;
  }
  .partners .partners-head h2 {
    font-size: 22px !important;
  }
  .partners .partners-head h2::after {
    height: 1.5px !important;
    width: 60px !important;
  }
  .partners .partners-head h2 span {
    font-size: 22px !important;
  }
  .partners .partners-head .outlinespan {
    font-size: 17px !important;
  }
  .partners .container .partners-slider .part-slide .part-slide__item .partner-item {
    width: 170px !important;
  }
  .partners .container .partners-slider .part-slide .part-slide__item .partner-item img {
    width: 150%;
    height: 100%;
  }
  .partners .container .row .partners-slider .part-slide .owl-nav .owl-prev {
    position: absolute;
    top: 38% !important;
    width: 45px !important;
    height: 45px !important;
    margin-top: 0px !important;
  }
  .partners .container .row .partners-slider .part-slide .owl-nav .owl-next {
    position: absolute;
    top: 38% !important;
    width: 45px !important;
    height: 45px !important;
    margin-top: 0px !important;
  }
  .partners .container .row .partners-slider .part-slide .part-slide__item {
    padding: 0px !important;
  }
}
.about_page {
  background-color: #F5F5F5;
}
.about_page .cover {
  background-image: url(../img/customer-experience-blog-1.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 300px;
  width: 100% !important;
  position: relative;
  overflow: hidden;
}
.about_page .cover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%);
}
.about_page .cover .parallax-wrap .container .page-title {
  position: absolute;
  top: 50%;
  z-index: 55;
}
.about_page .cover .parallax-wrap .container .page-title h3 {
  float: left;
  width: 100%;
  font-weight: 800;
  color: #fff;
  text-align: left;
  font-size: 34px;
  padding-bottom: 10px;
  position: relative;
}
.about_page .cover .parallax-wrap .container .page-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  width: 40px;
  top: -20px;
  z-index: 2;
  background: #F7B90F;
}
.about_page .cover .parallax-wrap .container .page-title h3::after {
  content: "";
  position: absolute;
  left: 40px;
  height: 1px;
  width: 80px;
  top: -17px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
}
.about_page .cover .parallax-wrap .container .page-title p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 450px;
  font-size: 11px;
}

.our-missing {
  padding: 70px 0px;
}
.our-missing .container .about-ms .row .col-md-5 .about-title h2 {
  float: left;
  width: 100%;
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  color: #292929;
  padding-bottom: 20px;
  position: relative;
}
.our-missing .container .about-ms .row .col-md-5 .about-title h2::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 70px;
  height: 3px;
  background: #F7B90F;
}
.our-missing .container .about-ms .row .col-md-5 .about-wrap p {
  text-align: left;
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 10px;
  font-weight: 500;
  color: #5e646a;
}
.our-missing .container .about-ms .row .col-md-5 .about-btn a {
  float: left;
  margin-top: 10px;
  font-size: 12px;
  color: #fff;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  outline: none;
  padding: 0 46px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  background: #292929;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
}
.our-missing .container .about-ms .row .col-md-5 .about-btn a:hover {
  background: #F7B90F;
  color: black;
}
.our-missing .container .about-ms .row .col-md-6 .about-img {
  margin-top: 25px;
  float: left;
  width: 100%;
  position: relative;
  z-index: 22;
}
.our-missing .container .about-ms .row .col-md-6 .about-img::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 50%;
  bottom: 50px;
  background: #F7B90F;
}
.our-missing .container .about-ms .row .col-md-6 .about-img img {
  width: 100%;
  height: auto;
  position: relative;
}
.our-missing .container .about-ms .row .col-md-6 .about-img .about-img-card {
  position: absolute;
  right: -60px;
  bottom: 20px;
  width: 260px;
  padding: 25px 30px;
  z-index: 11;
  border-radius: 4px;
  color: #000;
  text-align: left;
  box-shadow: 0px 19px 20px rgba(98, 97, 97, 0.2);
  background: #F7B90F;
}
.our-missing .container .about-ms .row .col-md-6 .about-img .about-img-card::before {
  font-family: Font Awesome\ 5 Pro;
  content: "\f10e";
  bottom: 15px;
  right: 20px;
  position: absolute;
  color: #fff;
  font-size: 19px;
  font-weight: bold;
}
.our-missing .container .about-ms .row .col-md-6 .about-img .about-img-card p {
  color: #292929;
  font-size: 12px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
}
.our-missing .container .about-ms .row .col-md-6 .about-img .about-img-card h4 {
  font-size: 15px;
}

@media only screen and (max-width: 767px) {
  .about_page .cover {
    min-height: 160px !important;
  }
  .about_page .cover .parallax-wrap .container .page-title {
    position: absolute !important;
    top: 67% !important;
  }
  .about_page .cover .parallax-wrap .container .page-title h3 {
    font-size: 22px !important;
    padding-bottom: 15px !important;
  }
  .about-card {
    padding: 10px 0px !important;
  }
  .our-missing {
    padding: 10px 0px !important;
  }
  .our-missing .about-ms .col-md-5 .about-wrap p {
    font-size: 12px !important;
    line-height: 21px !important;
  }
  .our-missing .about-ms .col-md-6 .about-img {
    margin-top: 35px !important;
  }
  .our-missing .about-ms .col-md-6 .about-img::before {
    top: -10px !important;
    left: -10px !important;
  }
  .our-missing .about-ms .col-md-6 .about-img .about-img-card {
    display: none;
  }
  .our-missing .about-ms:last-child {
    padding-top: 10px !important;
  }
  .our-missing .about-ms:last-child .about-title h2 {
    padding-top: 15px;
  }
}
.contact_page {
  background-color: #F5F5F5;
}
.contact_page .cover {
  background-image: url(../img/business-solutions.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
  width: 100% !important;
  position: relative;
  overflow: hidden;
}
.contact_page .cover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%);
}
.contact_page .cover .parallax-wrap .container .page-title {
  position: absolute;
  top: 60%;
  z-index: 55;
}
.contact_page .cover .parallax-wrap .container .page-title h3 {
  float: left;
  width: 100%;
  font-weight: 800;
  color: #fff;
  text-align: left;
  font-size: 34px;
  padding-bottom: 10px;
  position: relative;
}
.contact_page .cover .parallax-wrap .container .page-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  width: 40px;
  top: -20px;
  z-index: 2;
  background: #F7B90F;
}
.contact_page .cover .parallax-wrap .container .page-title h3::after {
  content: "";
  position: absolute;
  left: 40px;
  height: 1px;
  width: 80px;
  top: -17px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
}
.contact_page .cover .parallax-wrap .container .page-title p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 450px;
  font-size: 11px;
}

.contact-card {
  padding: 60px 0;
}
.contact-card .container .row .col-md-4 .card-item {
  position: relative;
  background: #fff;
  padding: 25px 30px 25px 90px;
  border: 1px solid #eee;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.contact-card .container .row .col-md-4 .card-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 45px;
  height: 40px;
  width: 1px;
  background: #F7B90F;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.contact-card .container .row .col-md-4 .card-item:hover {
  box-shadow: 0px 5px 10px rgba(98, 97, 97, 0.2);
}
.contact-card .container .row .col-md-4 .card-item:hover i {
  background-color: black;
  color: #F7B90F;
}
.contact-card .container .row .col-md-4 .card-item i {
  position: absolute;
  left: 20px;
  top: 25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  background-color: #F7B90F;
}
.contact-card .container .row .col-md-4 .card-item .card-num {
  position: absolute;
  text-align: center;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 10px;
  font-weight: 600;
  background: #f9f9f9;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.contact-card .container .row .col-md-4 .card-item h4 {
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}
.contact-card .container .row .col-md-4 .card-item a {
  float: left;
  font-weight: 600;
  font-size: 12px;
  margin-right: 6px;
  color: black;
  transition: all 0.2s linear;
}
.contact-card .container .row .col-md-4 .card-item a:hover {
  color: #F7B90F;
}

.contact-bottom {
  padding-bottom: 50px;
}
.contact-bottom .container .row .col-md-6 h4 {
  float: left;
  width: 100%;
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  color: #292929;
  padding-bottom: 20px;
  position: relative;
}
.contact-bottom .container .row .col-md-6 h4::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 30px;
  height: 3px;
  background: #F7B90F;
}
.contact-bottom .container .row .col-md-6 p {
  text-align: left;
  padding-bottom: 17px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #5e646a;
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-6 .custom-form-group {
  margin-bottom: 20px;
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-6 .custom-form-group .custom-input {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  width: 100%;
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-6 .custom-form-group .custom-input .custom-input-field {
  width: 90%;
  background: transparent;
  height: 50px;
  position: relative;
  display: block;
  float: right;
  padding: 0.8em;
  padding-left: 40px !important;
  border-radius: 2px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  transition: all 0.2s linear;
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-6 .custom-form-group .custom-input .custom-input-field:hover {
  box-shadow: 0px 3px 7px rgba(98, 97, 97, 0.2);
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-6 .custom-form-group .custom-input .input-label {
  position: absolute;
  padding: 14px;
  width: 52px;
  height: 50px;
  display: inline-block;
  float: right;
  border-radius: 2px;
  box-shadow: 0px 5px 8px rgba(55, 54, 54, 0.3);
  background-color: #F7B90F;
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-6 .custom-form-group .custom-input .input-label i {
  color: #fff;
  transform: scale3d(1, 1, 1);
  transform-origin: 0% 50%;
  transition: transform 0.3s;
  display: block;
  text-align: center;
  font-size: 20px;
  margin: 0;
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-12 .custom-form-group textarea {
  width: 100%;
  background: transparent;
  position: relative;
  display: block;
  float: right;
  padding: 0.8em;
  padding-left: 70px !important;
  border-radius: 2px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  transition: all 0.2s linear;
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-12 .custom-form-group textarea:hover {
  box-shadow: 0px 3px 7px rgba(98, 97, 97, 0.2);
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-12 .custom-form-group .input-label {
  position: absolute;
  padding: 14px;
  width: 52px;
  height: 50px;
  display: inline-block;
  float: right;
  border-radius: 2px;
  box-shadow: 0px 5px 8px rgba(55, 54, 54, 0.3);
  background-color: #F7B90F;
  color: #fff;
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-6 .custom-form-group .submit-form .custom-btn {
  float: left;
  font-size: 12px;
  color: #fff;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  outline: none;
  padding: 0 55px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  background: #292929;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-6 .custom-form-group .submit-form .custom-btn:hover {
  background-color: #F7B90F;
}
.contact-bottom .container .row .form-group .contact-form .row .col-md-6 .custom-form-group .submit-form .custom-btn:hover span {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .contact_page .cover {
    min-height: 160px !important;
    background-position-y: center;
  }
  .contact_page .cover .parallax-wrap .container .page-title {
    top: 67% !important;
  }
  .contact_page .cover .parallax-wrap .container .page-title h3 {
    font-size: 22px !important;
    padding-bottom: 15px !important;
  }
  .contact-card {
    padding: 25px 0px 0px 0px !important;
  }
  .contact-bottom {
    padding-bottom: 20px !important;
  }
  .contact-bottom .container .row .col-md-6 p {
    font-size: 14px !important;
  }
  .contact-bottom .contact-form .col-md-6 .custom-btn {
    margin-bottom: 20px !important;
  }
}
.partner_page {
  background-color: #F5F5F5;
}
.partner_page .cover {
  background-image: url(../img/customer-experience-blog-1.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
  width: 100% !important;
  position: relative;
  overflow: hidden;
}
.partner_page .cover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%);
}
.partner_page .cover .parallax-wrap .container .page-title {
  position: absolute;
  top: 60%;
  z-index: 55;
}
.partner_page .cover .parallax-wrap .container .page-title h3 {
  float: left;
  width: 100%;
  font-weight: 800;
  color: #fff;
  text-align: left;
  font-size: 34px;
  padding-bottom: 10px;
  position: relative;
}
.partner_page .cover .parallax-wrap .container .page-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  width: 40px;
  top: -20px;
  z-index: 2;
  background: #F7B90F;
}
.partner_page .cover .parallax-wrap .container .page-title h3::after {
  content: "";
  position: absolute;
  left: 40px;
  height: 1px;
  width: 80px;
  top: -17px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
}
.partner_page .cover .parallax-wrap .container .page-title p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 450px;
  font-size: 11px;
}

.partner-content {
  padding: 50px 0px;
}
.partner-content .container .partner-main .row .col-md-3 .partner-item {
  position: relative;
}
.partner-content .container .partner-main .row .col-md-3 .partner-item::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 80px;
  height: 80px;
  border-left: 3px solid #F7B90F;
  border-top: 3px solid #F7B90F;
}
.partner-content .container .partner-main .row .col-md-3 .partner-item::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 80px;
  height: 80px;
  border-right: 3px solid #F7B90F;
  border-bottom: 3px solid #F7B90F;
}
.partner-content .container .partner-main .row .col-md-3 .partner-item .partner-br {
  margin-top: 25px;
  position: relative;
  padding: 20px;
  cursor: pointer;
  box-shadow: -2px 2px 17px -8px #8f8f8f !important;
  border: 1px solid #eee;
  transition: all 0.2s linear;
  overflow: hidden;
}
.partner-content .container .partner-main .row .col-md-3 .partner-item .partner-br:hover .text-content {
  left: 0;
}
.partner-content .container .partner-main .row .col-md-3 .partner-item .partner-br:hover img {
  transform: scale(1.15);
  filter: contrast(120%);
}
.partner-content .container .partner-main .row .col-md-3 .partner-item .partner-br img {
  width: 100%;
  height: 200px;
  transition: all 0.2s linear;
  -o-object-fit: cover;
     object-fit: cover;
}
.partner-content .container .partner-main .row .col-md-3 .partner-item .partner-br .text-content {
  width: 50%;
  position: absolute;
  top: 60%;
  left: -55%;
  padding: 10px 0;
  transition: all 0.2s linear;
}
.partner-content .container .partner-main .row .col-md-3 .partner-item .partner-br .text-content h5 {
  background-color: #F7B90F;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 20px;
}

@media only screen and (max-width: 767px) {
  .partner_page .cover {
    min-height: 160px !important;
  }
  .partner_page .cover .parallax-wrap .container .page-title {
    top: 67% !important;
  }
  .partner_page .cover .parallax-wrap .container .page-title h3 {
    font-size: 22px !important;
    padding-bottom: 15px !important;
  }
  .partner-content {
    padding: 10px 0px 30px 0px !important;
  }
  .partner-content .container .partner-main .row .col-md-3 .partner-item img {
    height: 110px !important;
  }
  .partner-content .container .partner-main .row .col-md-3 .partner-item::after {
    border-left: 2px solid #F7B90F;
    border-top: 2px solid #F7B90F;
  }
  .partner-content .container .partner-main .row .col-md-3 .partner-item::before {
    border-right: 2px solid #F7B90F;
    border-bottom: 2px solid #F7B90F;
  }
  .partner-content .container .partner-main .row .col-md-3 .partner-item .partner-br .text-content {
    display: none;
  }
}
.services_page .cover {
  background-image: url(../img/customer-experience-blog-1.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
  width: 100% !important;
  position: relative;
  overflow: hidden;
}
.services_page .cover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%);
}
.services_page .cover .parallax-wrap .container .page-title {
  position: absolute;
  top: 60%;
  z-index: 55;
}
.services_page .cover .parallax-wrap .container .page-title h3 {
  float: left;
  width: 100%;
  font-weight: 800;
  color: #fff;
  text-align: left;
  font-size: 34px;
  padding-bottom: 10px;
  position: relative;
}
.services_page .cover .parallax-wrap .container .page-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  width: 40px;
  top: -20px;
  z-index: 2;
  background: #F7B90F;
}
.services_page .cover .parallax-wrap .container .page-title h3::after {
  content: "";
  position: absolute;
  left: 40px;
  height: 1px;
  width: 80px;
  top: -17px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
}
.services_page .cover .parallax-wrap .container .page-title p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 450px;
  font-size: 11px;
}

.services-single {
  padding: 50px 0px;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content {
  padding-right: 100px;
  position: relative;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .services-img {
  position: relative;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .services-img img {
  max-width: 100%;
  height: 450px;
  width: 100%;
  vertical-align: middle;
  background-position: center;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .services-img .service-lower .section-title {
  background: #ffffff;
  max-width: 460px;
  padding: 20px 20px 20px 20px;
  position: absolute;
  top: 75%;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .services-img .service-lower .section-title::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -10px;
  right: 100%;
  bottom: 0px;
  background: #F7B90F;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .services-img .service-lower .section-title::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -10px;
  left: 100%;
  bottom: 0px;
  background: #F7B90F;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .services-img .service-lower .section-title h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #F7B90F;
  z-index: 99;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .services-img .service-lower .section-title h2 {
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  color: #0a0c1c;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-description .text {
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  padding-top: 20px;
  font-weight: 500;
  color: #5e646a;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-inner-text {
  margin-top: 20px;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-inner-text .inner-text {
  font-size: 24px;
  line-height: 20px;
  font-weight: 600;
  color: #F7B90F;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-inner-text p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 20px;
  font-weight: 500;
  color: #5e646a;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-inner-text .service-list-wrap {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-inner-text .service-list-wrap .row .col-md-4 .service-wrap-img {
  position: relative;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-inner-text .service-list-wrap .row .col-md-4 .service-wrap-img img {
  width: 100%;
  height: auto;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-inner-text .service-list-wrap .row .col-md-8 .service-list {
  flex: 1;
  margin-left: 30px;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-inner-text .service-list-wrap .row .col-md-8 .service-list ul li {
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  color: #0a0c1c;
}
.services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-inner-text .service-list-wrap .row .col-md-8 .service-list ul li .service-icon i {
  font-size: 16px;
  color: #ffa800;
  margin-right: 15px;
}
.services-single .container .services-single-wrap .row .col-md-4 .service-sidebar .service-widget {
  box-shadow: -2px 2px 10px -5px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s linear;
}
.services-single .container .services-single-wrap .row .col-md-4 .service-sidebar .service-widget .service-category-list .list-group .active {
  background: #292929;
  border: none;
}
.services-single .container .services-single-wrap .row .col-md-4 .service-sidebar .service-widget .service-category-list .list-group .active .lst-activ {
  color: #F7B90F;
}
.services-single .container .services-single-wrap .row .col-md-4 .service-sidebar .service-widget .service-category-list .list-group .list-group-item {
  border-top: 1px solid #e5e5e5;
  padding: 12px 30px;
  position: relative;
  transition: all 0.3s linear;
}
.services-single .container .services-single-wrap .row .col-md-4 .service-sidebar .service-widget .service-category-list .list-group .list-group-item:hover {
  background: #292929;
}
.services-single .container .services-single-wrap .row .col-md-4 .service-sidebar .service-widget .service-category-list .list-group .list-group-item:hover ::before {
  opacity: 1;
  visibility: visible;
}
.services-single .container .services-single-wrap .row .col-md-4 .service-sidebar .service-widget .service-category-list .list-group .list-group-item:hover a {
  color: #F7B90F;
}
.services-single .container .services-single-wrap .row .col-md-4 .service-sidebar .service-widget .service-category-list .list-group .list-group-item a {
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  color: #0a0c1c;
  transition: all 0.3s linear;
}
.services-single .container .services-single-wrap .row .col-md-4 .service-sidebar .service-widget .service-category-list .list-group .list-group-item ::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: #ffa800;
  width: 3px;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}
.services-single .container .services-single-wrap .row .col-md-4 .services-btn .servicesbtn {
  margin-top: 30px;
  font-size: 12px;
  color: #fff;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  outline: none;
  padding: 0 46px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  background: #292929;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
}
.services-single .container .services-single-wrap .row .col-md-4 .services-btn .servicesbtn:hover {
  background: #F7B90F;
  color: #0a0c1c;
}

@media only screen and (max-width: 767px) {
  .services_page .cover {
    min-height: 190px !important;
  }
  .services_page .cover .parallax-wrap .container .page-title {
    top: 67% !important;
  }
  .services_page .cover .parallax-wrap .container .page-title h3 {
    font-size: 22px !important;
    padding-bottom: 15px !important;
  }
  .services-single {
    padding: 25px 0px !important;
  }
  .services-single .container .services-single-wrap .row .col-md-8 .service-single-content {
    padding: 0px !important;
  }
  .services-single .container .services-single-wrap .row .col-md-8 .service-single-content .services-img img {
    height: 230px !important;
    -o-object-fit: cover;
    object-fit: contain !important;
  }
  .services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-lower .section-title {
    top: 60% !important;
    padding: 10px 10px 10px 10px !important;
    position: static !important;
  }
  .services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-lower .section-title h3 {
    font-size: 19px !important;
    line-height: 25px !important;
  }
  .services-single .container .services-single-wrap .row .col-md-8 .service-single-content .service-description .text {
    font-size: 12px !important;
    line-height: 21px !important;
  }
  .services-single .container .services-single-wrap .row .col-md-4 .service-sidebar .service-widget {
    margin-top: 25px;
  }
}
.product_page {
  background-color: #F5F5F5;
}
.product_page .cover {
  background-image: url(../img/customer-experience-blog-1.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
  width: 100% !important;
  position: relative;
  overflow: hidden;
}
.product_page .cover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%);
}
.product_page .cover .parallax-wrap .container .page-title {
  position: absolute;
  top: 60%;
  z-index: 55;
}
.product_page .cover .parallax-wrap .container .page-title h3 {
  float: left;
  width: 100%;
  font-weight: 800;
  color: #fff;
  text-align: left;
  font-size: 34px;
  padding-bottom: 10px;
  position: relative;
}
.product_page .cover .parallax-wrap .container .page-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  width: 40px;
  top: -20px;
  z-index: 2;
  background: #F7B90F;
}
.product_page .cover .parallax-wrap .container .page-title h3::after {
  content: "";
  position: absolute;
  left: 40px;
  height: 1px;
  width: 80px;
  top: -17px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
}
.product_page .cover .parallax-wrap .container .page-title p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 450px;
  font-size: 11px;
}

.blog-standart-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap {
  margin-top: -50px;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog {
  margin-top: 50px;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog:hover .blog-img img {
  transform: scale(1.1);
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog .blog-img {
  overflow: hidden;
  position: relative;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog .blog-img img {
  width: 100%;
  height: 400px;
  transition: all 0.3s linear;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog .blog-content {
  margin-top: -25px;
  padding: 0 30px 50px;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog .blog-content .blog-meta {
  margin-top: 60px;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog .blog-content .blog-meta .date {
  padding: 10px;
  text-align: center;
  background: #ffa800;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog .blog-content .blog-meta p {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  margin-left: 15px;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog .blog-content .title-name h4 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 800;
  margin-top: 20px px;
  margin-bottom: 25px;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog .blog-content .title-name h4::after {
  content: "";
  display: block;
  height: 2px;
  width: 88px;
  background: #FFB81C;
  margin-top: 10px;
  margin-bottom: 20px;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog .blog-content .blog-description {
  position: relative;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog .blog-content .blog-description .blog-des-content {
  margin-bottom: 0;
  position: relative;
}
.blog-standart-section .container .row .col-md-8 .blog-post-wrap .single-blog .blog-content .blog-description .blog-des-content p {
  display: inline;
  font-size: 16px;
  color: #5e646a;
  line-height: 26px;
  font-weight: 500;
  margin-top: 0;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget {
  border: 1px solid #ebebeb;
  box-shadow: -2px 2px 10px -5px rgba(0, 0, 0, 0.3) !important;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget .widget-title {
  background: #f4f5f8;
  padding: 15px 40px 20px;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget .widget-title .single-title {
  font-size: 20px;
  font-weight: 600;
  color: #0a0c1c;
  display: inline-block;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget .widget-content {
  padding: 25px;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget .widget-content ul li {
  margin-top: 15px;
  border-bottom: 1px solid #ebebeb;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget .widget-content ul li:first-child {
  margin-top: 0px;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget .widget-content ul li .blog-link {
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget .widget-content ul li .blog-link .blog-img {
  margin-right: 20px;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget .widget-content ul li .blog-link .blog-img img {
  min-width: 60px;
  height: 60px;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget .widget-content ul li .blog-link .blog-text {
  padding: 15px;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget .widget-content ul li .blog-link .blog-text h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #0a0c1c;
  transition: all 0.3s linear;
}
.blog-standart-section .container .row .col-md-3 .blog-sidebar .blog-sidebar-widget .widget-content ul li .blog-link .blog-text h4:hover {
  color: #F7B90F;
}
.blog-standart-section .container .row .col-md-3 .services-btn .servicesbtn {
  margin-top: 30px;
  font-size: 12px;
  color: #fff;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  outline: none;
  padding: 0 46px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  background: #292929;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s linear;
}
.blog-standart-section .container .row .col-md-3 .services-btn .servicesbtn:hover {
  background: #F7B90F;
  color: #0a0c1c;
}

@media only screen and (max-width: 767px) {
  .product_page .cover {
    min-height: 160px !important;
  }
  .product_page .cover .parallax-wrap .container .page-title {
    top: 67% !important;
  }
  .product_page .cover .parallax-wrap .container .page-title h3 {
    font-size: 22px !important;
    padding-bottom: 15px !important;
  }
  .blog-standart-section {
    padding: 20px 0px !important;
  }
  .blog-standart-section .container .row .blog-post-wrap .single-blog .blog-content .blog-meta {
    margin-top: 40px !important;
  }
  .blog-standart-section .container .row .blog-post-wrap .single-blog .blog-content .title-name h4 {
    font-size: 22px !important;
    line-height: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
  }
  .blog-standart-section .container .row .blog-post-wrap .single-blog .blog-content .title-name h4::after {
    height: 1.5px !important;
  }
  .blog-standart-section .container .row .blog-post-wrap .blog-img img {
    height: 230px !important;
    -o-object-fit: cover;
    object-fit: contain !important;
  }
  .blog-standart-section .container .row .blog-post-wrap .blog-content {
    padding: 0px !important;
  }
  .blog-standart-section .container .row .blog-post-wrap .blog-content .blog-description {
    padding-right: 20px !important;
  }
  .blog-standart-section .container .row .blog-post-wrap .blog-content .blog-description .blog-des-content {
    padding-left: 0px !important;
  }
  .blog-standart-section .container .row .blog-post-wrap .blog-content .blog-description .blog-des-content p {
    font-size: 12px !important;
    line-height: 21px !important;
    color: #5e646a !important;
  }
  .blog-standart-section .container .row .col-md-3 .blog-sidebar {
    margin-top: 25px !important;
  }
}
* {
  outline: none;
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

ul li {
  list-style: none;
}

button {
  border: none;
}

a {
  display: inline-block;
  color: rgba(0, 0, 0, 0);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}/*# sourceMappingURL=style.css.map */