@charset "UTF-8";
/* ===================================
	Table of Content
====================================== */
/*- Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Side-Menu
  - Banner-Section
  - About-Section
  - Team-Section
  - Counter-Section
  - Testimonial-section
  - pricing-Section
  - Blog-Section
  - Contact-Section
  - Form-Section
  - Footer
  - StandAlone Page
  - Media Queries

*/
/* ===================================
	Fonts
====================================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
/* ===================================
	Scrollbar
====================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  width: 12px;
  border-left: 0 solid white;
  border-right: 0 solid white;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(30deg, #e5a81c 50%, #417bbe 100%);
  width: 0;
  height: 25%;
  transition: 0.5s ease;
  cursor: pointer;
}

/* ===================================
  General
====================================== */
body {
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

/*Headings and Text*/
.heading {
  font-size: 48px;
  color: #000000;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.subheading {
  font-size: 18px;
  color: #2f2f2f;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.text {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
}

/*Colors*/
.pink-color {
  color: #417bbe;
}

.purple-color {
  color: #e5a81c;
}

/*Button*/
.btn {
  z-index: 2;
  letter-spacing: 0.5px;
  border-radius: 0;
  font-weight: 500;
  overflow: hidden;
  position: absolute;
  line-height: inherit;
  display: inline-block;
  color: #ffffff;
  border: 2px solid transparent;
  text-transform: capitalize;
  transition: all 0.5s ease !important;
}

.btn.button {
  font-size: 15px !important;
  font-weight: 500;
  color: #ffffff;
  padding: 9px 40px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn.trans-btn {
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
}

/*Button hover*/
.btn.btn-hvr-pink:hover {
  background-color: #417bbe;
  border: 1px solid #417bbe;
  color: #ffffff;
}

.btn.btn-hvr-black:hover {
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.btn.btn-hvr-white:hover {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #000000;
}

/*Gradient Button*/
.gradient-btn {
  border: solid 1px transparent;
  color: #ffffff !important;
  font-weight: 700;
  padding: 10px 35px;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  transition: 0.8s ease;
  text-decoration: none;
  background-image: linear-gradient(to right, #417bbe 0%, #e5a81c 50%, #417bbe 100%);
  background-size: 200% auto;
}

.gradient-btn:hover {
  background-position: right center;
}

/* Nifty Shifter Items */
.nifty {
  color: #417bbe;
}

.shifter {
  color: #e5a81c;
}

.contact-heading {
  font-size: 36px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

/*Social icons*/
.social-icons ul {
  margin-bottom: 0px;
}

.social-icons li {
  display: inline-block;
}

.social-icons ul li a {
  border-radius: 50%;
  color: #000000;
  height: 30px;
  line-height: 32px;
  width: 30px;
  font-size: 14px;
  border: 1px solid transparent;
  display: block;
  /*overflow: hidden;*/
  text-align: center;
}

/*Social icons Hover*/
/*Hover Style 1*/
.hover:hover {
  color: #ffffff !important;
  transition: 0.5s ease;
  background: linear-gradient(to bottom, #417bbe 0%, #e5a81c 93%);
}

/*Social icons background hover*/
.facebook-hover:hover {
  color: #ffffff;
  transition: 0.5s ease;
  background-color: #4267B2;
}

.twitter-hover:hover {
  color: #ffffff;
  transition: 0.5s ease;
  background-color: #1DA1F2;
}

.google-plus-hover:hover {
  color: #ffffff;
  transition: 0.5s ease;
  background-color: #db4a39;
}

.linked-in-hover:hover {
  color: #ffffff;
  transition: 0.5s ease;
  background-color: #2867B2;
}

.instagram-hover:hover {
  color: #ffffff;
  transition: 0.5s ease;
  background-color: #C13584;
}

.gmail-hover:hover {
  color: #ffffff;
  transition: 0.5s ease;
  background-color: #D44638;
}

.instagram-hover:hover {
  color: #ffffff;
  transition: all 0.5s ease;
  background: linear-gradient(to bottom, #aa2fb5 0%, #f1762c 93%) !important;
}

/* ===================================
	Loader
====================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 9999;
}

#loader {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url("../img/loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

/* ===================================
	Navbar
====================================== */
/*Main Navbar*/
header {
  position: relative;
  top: 0px;
  left: 0px;
  right: 0px;
}

header .navbar {
  padding: 0;
}

header .nav-logo {
  text-align: center;
}

header .navbar .navbar-nav .nav-link {
  font-size: 14px;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  /*margin-left: 20px;*/
  margin-right: 10px;
  transition: 0.5s ease;
  transition: all 0.6s ease;
  border: 2px solid transparent;
  display: block;
  font-family: "Montserrat", sans-serif;
}

header .navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

header .navbar .navbar-nav .nav-link.active {
  color: #333;
  transition: all 0.6s ease;
}

header .navbar .navbar-nav .nav-link:hover {
  transition: all 0.6s ease;
  color: #333;
}

/*Navlink Hover*/
header .navbar .navbar-nav .nav-link.active:after {
  width: 100%;
  background: linear-gradient(to right, #417bbe 0%, #417bbe 45%);
}

header .navbar .navbar-nav .nav-link:hover {
  color: #000000;
  transition: all 0.6s ease;
}

header .navbar .navbar-nav .nav-link:last-child {
  margin-right: 0;
}

header .navbar .navbar-nav .nav-link:after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 0;
  background: transparent;
  transition: width 0.5s ease, background-color 0.5s ease;
}

header .navbar .navbar-nav .nav-link:hover:after {
  width: 100%;
  background: linear-gradient(to right, #417bbe 0%, #e5a81c 45%);
}

/*side menu button*/
.sidemenu_btn {
  width: 36px;
  padding: 6px;
  z-index: 999;
  left: 0;
  top: -42px;
  margin-left: 30px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: none;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #000000;
  display: block;
  margin: auto;
  transition: 0.5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

.logo-scrolled {
  display: none;
}

/*Header-appear*/
.header-appear {
  height: 50px;
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 1024;
  background: transparent;
  animation-name: animationFade;
  animation-duration: 1s;
  animation-fill-mode: both;
  /*box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);*/
}

@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}
.header-appear .navbar-top-default {
  position: fixed;
  top: 0;
  z-index: 1024;
  height: 90px;
  width: 100%;
}

.header-appear .full-nav {
  height: 85px;
  margin-top: 40px;
}

.header-appear .full-nav, .header-appear .full-nav {
  margin-top: 0;
  padding: 0;
}

.header-appear .logo .logo-scrolled {
  display: none;
}

/*Header-appear Navbar*/
.header-appear .navbar-nav {
  display: none;
}

/*Header-appear Side-menu-btn*/
.header-appear .sidemenu_btn {
  left: 0;
  margin-left: 5px;
  left: 15px;
  top: 50%;
  background-color: #ffffff;
  transform: translateY(-50%);
}

/* ===================================
	Side Menu
====================================== */
.side-menu {
  width: 30%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 2032;
  height: 100%;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.5s ease;
  overflow: hidden;
}

.side-menu .side-nav {
  margin-top: 5px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 19px 0;
  padding: 0 !important;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: 0.1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: 0.2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: 0.3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: 0.4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: 0.5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: 0.6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: 0.7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: 0.8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: 0.9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #000000;
  padding: 2px 0 3px 0 !important;
  font-size: 30px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  /*background: $white;*/
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  background: linear-gradient(to right, #417bbe 40%, #e5a81c 60%);
}

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

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}

.side-menu-opacity {
  opacity: 0;
}

.side-menu.left {
  left: 0;
  right: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}

.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
  display: none;
  z-index: 1031;
  opacity: 0.4;
}

.side-menu .image {
  position: absolute;
  top: 15px;
  right: 50px;
}

/*side close btn*/
.side-menu .btn-close {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 15px;
  left: 34px;
  cursor: pointer;
  /*border: solid 1px $white;*/
}

.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  position: absolute;
  left: 19px;
  content: " ";
  height: 28px;
  width: 2px;
  /*background: $white;*/
  background: linear-gradient(to right, #417bbe, #e5a81c);
  top: 6px;
}

.side-menu .btn-close:before {
  transform: rotate(35deg);
}

.side-menu .btn-close:after {
  transform: rotate(-35deg);
}

.side-menu .inner-wrapper {
  padding: 3.5rem 3rem;
  height: 100%;
  position: relative;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}

.side-menu .navbar-nav {
  display: block;
}

/*side menu footer */
.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #000000;
  font-size: 15px;
}

.side-menu-footer .social-icons ul li a {
  color: #000000;
  height: 40px;
  line-height: 42px;
  width: 40px;
}

@-webkit-keyframes animationFade {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* ===================================
	Banner
====================================== */
.banner-section .img-section {
  background-size: cover;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.banner-section .img-section img {
  width: 100%;
}

.banner-section .img-section .text-section {
  position: absolute;
  bottom: 18%;
  left: 40%;
}

.banner-section .img-section .text-section .heading {
  margin-bottom: 30px;
  font-weight: 700;
}

.banner-section .img-section .text-section .heading span {
  background: linear-gradient(to right, #333 0%, #666 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-section .img-section .text-section .text {
  color: #333;
  font-size: 18px;
  margin-bottom: 45px;
}

.banner-section .img-section .text-section .btn-2 {
  margin-left: 25px;
}

/* ===================================
	About-section
====================================== */
.about-section {
  padding-top: 20px;
  padding-bottom: 120px;
}

.about-section .text-section .subheading {
  margin-bottom: 30px;
}

.about-section .text-section .heading {
  margin-bottom: 30px;
}

.about-section .text-section .text {
  margin-bottom: 30px;
  padding-right: 70px;
}

.about-section .text-section .heading span {
  color: #e5a81c;
}

.about-section .text-section .about-check-list ul {
  padding-left: 0;
  margin-bottom: 20px;
}

.about-section .text-section .about-check-list ul li {
  list-style: none;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.about-section .text-section .about-check-list ul li i {
  background: linear-gradient(to right, #417bbe 0%, #e5a81c 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 15px;
}

.about-section .img-section {
  padding-left: 30px;
}

.about-section .services-section {
  padding-top: 120px;
}

.about-section .services-section .row-2 {
  padding-bottom: 120px;
}

.about-section .services-section .card {
  padding: 40px;
  text-align: center;
  border-radius: 0;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  display: inline-block;
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(to right, #ffffff 30%, #ffffff 70%);
  -webkit-backface-visibility: hidden;
  z-index: 1;
}

.about-section .services-section .card:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #417bbe 10%, #e5a81c 90%);
  transition: opacity 0.5s ease-in-out;
  z-index: 2;
  opacity: 0;
}

.about-section .services-section .card:hover:after {
  opacity: 1;
}

.about-section .services-section .card .card-body {
  position: relative;
  z-index: 3;
}

.about-section .services-section .card .card-body {
  padding: 0;
}

.about-section .services-section .card i {
  padding-bottom: 30px;
  font-size: 40px;
  z-index: 3;
  position: relative;
  background: linear-gradient(to right, #417bbe 30%, #417bbe 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-section .services-section .card .card-body .subheading {
  color: #000000;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-section .services-section .card .card-body .text {
  font-weight: 300;
}

.about-section .services-section .card:hover i {
  background: linear-gradient(to right, #ffffff 30%, #ffffff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-section .services-section .card:hover .subheading {
  color: #ffffff;
}

.about-section .services-section .card:hover .text {
  color: #ffffff;
}

/* ===================================
	Team-section
====================================== */
.team-section {
  background-color: #f9f9f9;
  padding-top: 120px;
  padding-bottom: 120px;
}

/*Row-1*/
.team-section .row-1 {
  margin-bottom: 115px;
}

.team-section .row-1 .subheading {
  margin-bottom: 25px;
}

.team-section .row-1 .heading {
  text-align: center;
}

.team-section .row-1 .subheading {
  text-align: center;
}

.team-section .row-1 .heading span {
  color: #417bbe;
}

/*Row-2*/
.team-section .row-2 .team-col {
  max-width: 300px;
}

.team-section .row-2 .image img {
  width: 100%;
}

.team-section .row-2 .team-col .text-column {
  background-color: #ffffff;
  padding: 35px 20px;
}

.team-section .row-2 .team-col .text-column .heading {
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
}

.team-section .row-2 .team-col .text-column .subheading {
  background: linear-gradient(to right, #417bbe 30%, #e5a81c 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  text-align: center;
}

.team-section .row-2 .team-col .text-column .text {
  text-align: center;
}

.team-section .social-icons {
  text-align: center;
}

.team-section .row-2 .team-col .image {
  overflow: hidden;
}

.team-section .row-2 .team-col .image img {
  transition: all 0.5s ease;
}

.team-section .row-2 .team-col:hover {
  cursor: pointer;
}

.team-section .row-2 .team-col:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}

/* ===================================
	Work-section
====================================== */
.work-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.work-section .row-1 {
  margin-bottom: 70px;
}

.work-section .row-1 .subheading {
  text-align: center;
}

.work-section .row-1 .heading {
  text-align: center;
}

.work-section .row-1 .heading span {
  color: #e5a81c;
}

/*Portfolio Start*/
.work-section .cbp-l-caption-body .title {
  color: #ffffff;
  font-size: 20px;
}

.work-section .cbp-l-grid-mosaic-flat .cbp-caption-activeWrap {
  background: #032a58;
}

.work-section .cbp-l-grid-mosaic-flat .cbp-caption-activeWrap:hover {
  background-color: #e5a81c;
  opacity: 0.8;
}

.cbp-item:hover .cbp-caption-defaultWrap {
  transform: scale(1.25);
  transition: 0.6s ease-in-out;
}

.cbp-l-caption-body .cbp-l-caption-title {
  font-size: 20px;
}

.cbp-l-caption-body .cbp-l-caption-desc {
  color: #ffffff;
  font-size: 12px;
}

.work-section .plus {
  margin: 0 auto;
  height: 70px;
  width: 70px;
  margin-bottom: 16px;
  display: block;
  position: relative;
  overflow: hidden;
}

.work-section .plus::before {
  width: 2px;
  left: 50%;
  top: 5px;
  bottom: 5px;
  margin-left: -1px;
}

.work-section .plus::after {
  height: 2px;
  top: 50%;
  left: 5px;
  right: 5px;
  margin-top: -1px;
}

.work-section .plus::before,
.plus::after {
  content: " ";
  position: absolute;
  background: #ffffff;
}

/* ===================================
	Counter-section
====================================== */
.counter-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f9f9f9;
}

.counter-section .counter-text .heading {
  font-size: 30px;
  margin-bottom: 25px;
  padding-right: 79px;
}

.counter-section .counter-text .underline {
  border-bottom: 10px solid;
  border-image-slice: 1;
  border-width: 4px;
  width: 50px;
}

.counter-section .counter-text .gradient-border {
  border-image-source: linear-gradient(to right, #417bbe, #e5a81c);
}

.counter-section .counter-text .text {
  margin-top: 25px;
  padding-right: 60px;
}

/*Counters*/
.counter-section .num_counter {
  padding-left: 10px;
}

.counter-section .num_counter .counter i {
  font-size: 36px;
  margin-bottom: 35px;
  background: linear-gradient(to right, #417bbe 40%, #e5a81c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-section .num_counter .subheading {
  font-size: 30px;
  font-weight: 500;
}

.counter-section .counter .text {
  margin-bottom: 0px;
  padding-top: 10px;
}

.counter-section .num_counter .counter:hover {
  cursor: pointer;
}

.counter-section .num_counter .counter:hover .subheading {
  background: linear-gradient(to right, #000000 20%, #417bbe 40%, #e5a81c 70%, #000000 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textShine 5s ease-in-out infinite alternate;
}

@keyframes textShine {
  to {
    background-position: 200%;
  }
}
/* ===================================
	Testimonial-section
====================================== */
.testimonial-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.testimonial-section .testimonial-carousel .owl-item .text {
  padding-left: 40px;
  padding-right: 40px;
}

.testimonial-section .testimonial-carousel .owl-item .heading {
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(to right, #417bbe 40%, #e5a81c 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-section .testimonial-carousel .owl-item .subheading {
  font-size: 14px;
  font-family: "Source Sans Pro", sans-serif;
}

.testimonial-section .owl-carousel .owl-item .img {
  margin-bottom: 30px;
}

.testimonial-section .owl-carousel .owl-item img {
  width: 11%;
  margin: auto;
  display: flex;
  justify-content: center;
}

/* ===================================
	Pricing-section
====================================== */
.pricing-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f9f9f9;
}

.pricing-section .row-1 {
  margin-bottom: 80px;
}

/*Row-2 Pricing Tables*/
.single-price {
  text-align: center;
  padding: 40px 25px;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(to right, #ffffff 30%, #ffffff 70%);
  -webkit-backface-visibility: hidden;
  z-index: 1;
}

.pricing-section .single-price .price-title .subheading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pricing-section .single-price .price-para .text {
  font-weight: 300;
}

.pricing-section .single-price .price-tag {
  margin: 10px 0;
  color: #000000;
  padding: 10px 0;
}

.pricing-section .single-price .price-tag .heading .gradient {
  background: linear-gradient(to right, #417bbe 20%, #e5a81c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 62px;
  font-weight: 700;
}

.pricing-section .single-price .price-tag .heading span {
  font-weight: 400;
  font-size: 15px;
  font-family: "Source Sans Pro", sans-serif;
}

.pricing-section .single-price .price-tag .heading .dollar {
  position: relative;
  font-size: 20px;
  bottom: 22px;
  left: -5px;
  font-weight: 500;
}

.pricing-section .price-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-section .price-item ul li {
  font-size: 14px;
  padding: 5px 0;
  margin: 5px 0;
  font-family: "Source Sans Pro", sans-serif;
}

.pricing-section .single-price a {
  margin-top: 15px;
}

/*Active Class*/
.pricing-section .single-price.active {
  background-image: linear-gradient(to right, #417bbe 20%, #e5a81c 100%);
}

.pricing-section .single-price.active span {
  color: #ffffff;
}

.pricing-section .single-price.active .price-tag .heading .gradient {
  background: linear-gradient(to right, #ffffff 20%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-section .single-price.active .subheading {
  color: #ffffff;
}

.pricing-section .single-price.active .text {
  color: #ffffff;
}

.single-price.active ul li {
  color: #ffffff;
}

.single-price.active .trans-btn {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.single-price.active .btn.btn-hvr-white.active {
  color: #000000;
}

/* ===================================
	Blog-section
====================================== */
.blog-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.blog-section .text-column .heading {
  margin-bottom: 40px;
}

.blog-section .text-column .text {
  margin-bottom: 40px;
}

.blog-section .row-1 {
  margin-bottom: 70px;
}

.blog-section .text-column {
  padding-top: 70px;
}

.blog-section .row-2 .img-column {
  padding-right: 30px;
}

.blog-section .row-1 .img-column {
  padding-left: 30px;
}

/* ===================================
	Contact-section
====================================== */
.contact-section {
  background: url(../img/contact.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 96vh;
}

.contact-section .text-column {
  padding-top: 120px;
  padding-bottom: 120px;
}

/*.contact-section .text-column{
  margin-top: 5rem;
}*/
.contact-section .text-section .subheading {
  margin-bottom: 25px;
}

.contact-section .text-section .heading {
  background: linear-gradient(to right, #417bbe 0%, #e5a81c 45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.contact-section .text-section .contact-list li {
  list-style: none;
}

/* ===================================
	form-section
====================================== */
.form-section {
  padding-top: 120px;
}

.form-section .heading {
  color: #212121;
  margin-bottom: 90px;
}

.form-section .contact-form .form-control {
  border: none;
  padding: 0px;
  border-bottom: 1px solid #9b9b9b;
  background: transparent;
  font-weight: normal;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 50px;
  color: #212121;
  font-size: 14px;
  transition: border 0.9s ease;
}

.contact-form .form-control::placeholder {
  color: #9b9b9b;
}

.form-control:focus {
  color: #212121;
  border-color: #ced4da;
  box-shadow: 0 0 0 0rem transparent;
}

.contact-section .button {
  margin-top: 15px;
}

.form-section .button-center {
  text-align: center;
  width: 100%;
}

.form-section .button-center .button {
  padding: 9px 90px !important;
}

/* ===================================
	Footer
====================================== */
footer {
  padding-top: 120px;
  padding-bottom: 120px;
}

footer .social-icons ul li {
  display: inline-block;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}

footer .social-icons ul li a {
  color: #2a2a2a;
  height: 40px;
  line-height: 42px;
  width: 40px;
  font-size: 18px;
  overflow: hidden;
}

footer .text {
  font-size: 14px;
  color: #888888;
}

/* ===================================
	StandAlone page
====================================== */
/*Banner*/
.banner {
  background: url("../img/standalone-banner.jpg");
  height: 70vh;
  background-size: cover;
  display: flex;
  align-items: center;
}

.banner .header-text {
  position: absolute;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
}

.banner .heading {
  padding-bottom: 16px;
}

.page-breadcrumb li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #202020;
}

.page-breadcrumb li a {
  color: #000000;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.page-breadcrumb li i {
  color: #417bbe;
}

/*MAIN PAGE START*/
.main-page {
  float: left;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}

.main-page .standalone-heading {
  padding-bottom: 100px;
}

.main-page .standalone-heading .heading {
  font-size: 50px;
}

.main-page .standalone-area .heading {
  font-size: 40px;
  margin-bottom: 20px;
}

.main-page .row-image {
  position: relative;
}

.main-page .row-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.standalone-area .standalone-row {
  margin-bottom: 40px;
}

.standalone-area .standalone-row:last-child {
  margin-bottom: 0;
}

.main-page .standalone-row .row-text {
  padding-left: 30px;
  text-align: center;
}

.standalone-row:nth-child(2) .row-text {
  padding-left: 0;
  padding-right: 30px;
}

/* IMAGE HOVER*/
.standaloneoverlay {
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  /*background-color:  #b82619;*/
  background-image: linear-gradient(to right, #417bbe 30%, #e5a81c 100%);
}

.hover-effect:hover .standaloneoverlay {
  opacity: 0.4;
}

.overlayBottom {
  width: 100%;
  height: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  /*background-color: #b82619;*/
  background-image: linear-gradient(to right, #417bbe 30%, #e5a81c 100%);
}

.hover-effect:hover .overlayBottom {
  height: 100%;
}

footer .footer-text {
  text-align: right;
  padding-left: 0;
}

/* ===================================
	Media Queries
====================================== */
@media (width: 1920px) {
  /*Banner Section*/
  .banner-section .img-section .text-section {
    bottom: 27%;
    left: 43%;
  }
  .contact-section {
    height: 77vh;
  }
  .contact-section .text-column {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .contact-section .text-column .text-section {
    margin-top: 7rem;
  }
}
@media (max-width: 1200px) {
  .heading {
    font-size: 40px;
  }
  /*Side Menu*/
  .side-menu {
    width: 50%;
  }
  /*Banner-Section */
  .banner-section .img-section {
    padding-left: 0;
    padding-right: 0;
  }
  .banner-section .img-section .text-section {
    bottom: 8%;
  }
  .banner-section .img-section .text-section .heading {
    font-size: 48px;
  }
  .banner-section .img-section .text-section .text br {
    display: none;
  }
  /*About Section*/
  .about-section .img-section img {
    height: 100%;
  }
  /*Team Section*/
  .team-section .row-2 .team-col .text-column {
    padding: 15px 20px;
  }
  /*Counter Section*/
  .counter-section .num_counter {
    padding-left: 0;
  }
  /*Team Section*/
  .team-section .row-2 .team-col .text-column .heading {
    font-size: 25px;
  }
  /*Blog Section*/
  .blog-section .text-column {
    padding-top: 28px;
  }
  /*Contact Section*/
  .contact-section {
    height: 100%;
  }
}
@media (max-width: 992px) {
  /*WoW Animation*/
  .wow {
    visibility: visible !important;
    animation: none !important;
  }
  .heading {
    font-size: 38px;
    text-align: center;
  }
  /*header*/
  header .pt-5 {
    padding-top: 0 !important;
  }
  header .social-icons {
    display: none;
  }
  header .nav-logo .logo {
    float: left;
    padding-left: 20px;
  }
  .sidemenu_btn {
    left: 89%;
    top: -50px;
  }
  .header-appear {
    background-color: #ffffff;
    height: 70px;
    padding: 0;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
  }
  .header-appear .sidemenu_btn {
    left: 92%;
    top: 50%;
  }
  .header-appear .logo .logo-scrolled {
    display: block;
    padding-left: 0;
  }
  /*Side-Menu*/
  .side-menu {
    width: 100%;
  }
  .side-nav .navbar-nav .nav-link {
    font-size: 40px;
  }
  /*Banner Section*/
  .banner-section .img-section .text-section {
    position: relative;
    bottom: 0;
    left: 0;
  }
  .banner-section .img-section .text-section {
    padding: 50px 5px 0 5px;
    text-align: center;
  }
  .banner-section .img-section .text-section .heading {
    font-size: 45px;
  }
  /*About Section*/
  .about-section .text-section .subheading {
    text-align: center;
  }
  .about-section .text-section .text {
    padding-right: 0;
    text-align: center;
  }
  .about-section .img-section {
    padding-left: 0;
  }
  .about-section .img-section img {
    width: 100%;
  }
  .about-section .services-section .row-2 .heading br {
    display: none;
  }
  .about-section .services-section .card.card-3 {
    margin-top: 50px;
    width: 100%;
  }
  /*Team Section*/
  .team-section .row-1 .heading {
    line-height: 40px;
  }
  .team-section .row-2 .team-col {
    max-width: 100%;
  }
  .team-section .row-2 .image {
    width: 100%;
  }
  .team-section .row-2 .team-col .text-column {
    width: 100%;
    padding: 81px 20px;
  }
  .team-section .row-2 .team-col .text-column .heading {
    font-size: 30px;
  }
  /*Work Section*/
  .cbp-popup-ready.cbp-popup-lightbox .cbp-popup-next,
  .cbp-popup-ready.cbp-popup-lightbox .cbp-popup-prev,
  .cbp-popup-ready.cbp-popup-lightbox .cbp-popup-close {
    display: none;
  }
  /*Counter Section*/
  .counter-section .counter-text .heading {
    padding-right: 0;
    font-size: 38px;
  }
  .counter-section .counter-text .gradient-border {
    display: none;
  }
  .counter-section .counter-text .text {
    padding-right: 0;
    text-align: center;
  }
  .counter-section .counter {
    margin-top: 50px;
  }
  /*Testimonial Section*/
  .testimonial-section .testimonial-carousel .owl-item .text {
    padding-left: 0;
    padding-right: 0;
  }
  /*Pricing Section*/
  .pricing-section .row-1 {
    margin-bottom: 30px;
  }
  .pricing-section .single-price {
    margin-top: 50px;
  }
  .pricing-section .single-price {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  /*Blog Section*/
  .blog-section .text-column {
    padding-top: 0;
    margin-bottom: 30px;
  }
  .blog-section .img-column img {
    width: 100%;
  }
  .blog-section .text-column .text {
    text-align: center;
  }
  .blog-section .text-column .button-center {
    text-align: center;
  }
  .blog-section .row-1 .img-column {
    padding-left: 0;
  }
  .blog-section .row-2 .img-column {
    padding-right: 0;
  }
  /*Contact Section*/
  .contact-section .text-section .subheading {
    font-size: 16px;
    text-align: center;
  }
  .contact-section .text-section .contact-list li {
    text-align: center;
  }
  /*Footer*/
  footer .social-icons ul li {
    margin-left: 5px;
    margin-right: 5px;
  }
  /*StandAlone Page*/
  .standalone-area .standalone-row {
    margin-bottom: 60px;
  }
  .main-page .standalone-row .row-text {
    padding-left: 0;
    padding-bottom: 40px;
  }
  .standalone-row:nth-child(2) .row-text {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  /*Banner Section*/
  .banner-section .img-section .text-section .heading {
    font-size: 40px;
  }
  .banner-section .img-section .text-section .heading {
    color: #e5a81c;
  }
  /*header*/
  .sidemenu_btn {
    left: 80%;
  }
  .header-appear .sidemenu_btn {
    left: 88%;
  }
  .header-appear .logo .logo-scrolled {
    padding-left: 12px;
  }
  /*Side Menu*/
  .side-nav .navbar-nav .nav-link {
    font-size: 30px;
  }
  /*Banner Section*/
  .banner-section .img-section .text-section .btn-2 {
    margin-left: 0;
  }
  /*About Section*/
  .about-section .text-section .subheading {
    font-size: 15px;
  }
  .about-section .services-section .card {
    margin-top: 50px;
    width: 100%;
  }
  .about-section .services-section .card.card-1 {
    margin-top: 0;
  }
  /*Pricing Section*/
  .pricing-section .single-price {
    width: 100%;
  }
  /*Form Section*/
  .form-section .heading {
    font-size: 35px;
  }
  /*Footer*/
  footer .text {
    font-size: 13px;
  }
  /*StandAlone Page*/
  .main-page .standalone-heading .heading {
    font-size: 36px;
  }
  .main-page .standalone-area .heading {
    font-size: 30px;
  }
}
@media (max-width: 1024px) {
  .banner-section .img-section .text-section .heading span {
    background: linear-gradient(to right, #417bbe 0%, #417bbe 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .banner-section .img-section .text-section .heading {
    color: #e5a81c;
  }
  .contact-heading {
    text-align: center;
  }
}
/* ===================================
     UI-Block-10
==================================== */
.ui-block-10.about-sec {
  background-color: #e8d716;
  position: relative;
  overflow: visible;
  margin-top: 120px;
  padding-top: 120px;
  padding-bottom: 200px;
}

.ui-block-10.about-sec #about-header-svg {
  position: absolute;
  left: 0;
  right: 0;
  top: -200px;
  transform: rotateY(-180deg);
  z-index: 11;
  height: 200px;
}

.ui-block-10.about-sec .service-details {
  transform: translateY(-120px);
}

.ui-block-10.about-sec .service-details h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: #ffffff;
}

.ui-block-10.about-sec .service-details h1 span {
  color: #202020;
}

.ui-block-10.about-sec .service-details p {
  width: 70%;
  color: #ffffff;
  margin-top: 50px;
  margin-bottom: 0;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

.ui-block-10.about-sec .service-details a {
  margin-top: 60px !important;
}

.ui-block-10.about-sec .services-area .services {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.ui-block-10.about-sec .services-area .services .service-card {
  margin-bottom: 80px;
}

.ui-block-10.about-sec .services-area .services:last-child .service-card, .about-sec .services-area .services:nth-child(3) .service-card {
  margin-bottom: 0;
}

.ui-block-10.about-sec .services-area .services .service-card .icon-holder {
  margin-bottom: 12px;
  transition: 0.5s ease;
}

.ui-block-10.about-sec .services-area .services .service-card .icon-holder i {
  color: #FFFFFF;
  font-size: 120px;
}

.ui-block-10.about-sec .services-area .services:hover .service-card .icon-holder {
  animation: 0.8s pulse infinite;
}

.ui-block-10.about-sec .services-area .services .service-card .card-heading {
  color: #32301f;
  font-size: 28px;
  font-family: Oswald, sans-serif;
  transition: 0.5s ease;
  font-weight: 300;
  text-transform: initial !important;
}

.ui-block-10.about-sec img {
  position: absolute;
  z-index: 1111;
  left: 300px;
  transform: rotate(-6deg);
  bottom: -100px;
}

.ui-block-10.about-sec #banner_svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotateY(-180deg);
  z-index: 1;
  height: 200px;
}

.ui-block-10.about-sec h1 {
  font-size: 3rem;
}

.ui-block-10.about-sec a {
  color: inherit;
  text-decoration: none;
}

.ui-block-10.about-sec .btn.btn-rounded {
  border-radius: 50px;
}

.ui-block-10.about-sec .btn.btn-medium {
  font-size: 12px;
  padding: 6px 1.8em;
}

.ui-block-10.about-sec .btn.btn-large {
  font-size: 14px;
  padding: 11px 41px;
  line-height: 1.8em;
}

.ui-block-10.about-sec .btn.btn-black-white-background {
  background: #202020;
  border-color: #202020;
  color: #ffffff;
}

.ui-block-10.about-sec .btn.btn-black-white-background:hover, .btn.btn-transparent-black:focus {
  background: #ffffff !important;
  color: #202020 !important;
  border-color: transparent !important;
}

.ui-block-10.about-sec .btn {
  -webkit-appearance: initial;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  z-index: 2;
  display: inline-block;
  font-size: 17px;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  line-height: inherit;
  border-radius: 0;
  text-transform: capitalize;
  width: auto;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease !important;
  transition: all 0.5s ease !important;
}

@media screen and (min-width: 1900px) {
  .ui-block-10.about-sec img {
    left: 410px;
  }
}
@media (min-width: 1600px) {
  .ui-block-10.about-sec .services-area-width-manage {
    width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .ui-block-10.about-sec #about-header-svg {
    height: 100px;
    top: -100px;
  }
  .ui-block-10.about-sec .services-area .services .service-card .icon-holder i {
    font-size: 110px;
  }
  .ui-block-10.about-sec .services-area .services .service-card .card-heading {
    font-size: 25px;
  }
  .ui-block-10.about-sec .services-area .services .service-card {
    margin-bottom: 60px;
  }
  .ui-block-10.about-sec .services-area-width-manage {
    width: 80%;
  }
  .ui-block-10.about-sec #banner_svg {
    height: 100px;
  }
}
@media screen and (max-width: 991px) {
  .ui-block-10.about-sec {
    text-align: center;
  }
  .ui-block-10.about-sec #about-header-svg {
    height: 100px;
    top: -100px;
  }
  .ui-block-10.about-sec {
    padding-top: 50px;
  }
  .ui-block-10.about-sec .services-area .services:nth-child(3), .ui-block-10.about-sec .services-area .services:nth-child(4) {
    transform: translateX(0px);
  }
  .ui-block-10.about-sec .services-area .services:last-child .service-card, .ui-block-10.about-sec .services-area .services:nth-child(3) .service-card {
    margin-bottom: 80px;
  }
  .ui-block-10.about-sec .service-details {
    transform: translateY(0px);
    margin-bottom: 80px;
  }
  .ui-block-10.about-sec .service-details h1 {
    font-size: 60px;
  }
  .ui-block-10.about-sec .service-details p {
    width: 100%;
  }
  .ui-block-10.about-sec #banner_svg {
    bottom: -1px;
    height: 100px;
  }
  .ui-block-10.about-sec img {
    left: 150px;
    bottom: -179px;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .ui-block-10 {
    overflow-x: hidden;
    text-align: center;
  }
  .ui-block-10.about-sec #about-header-svg {
    height: 100px;
    top: -99px;
  }
  .ui-block-10.about-sec {
    padding-top: 50px;
  }
  .ui-block-10.about-sec .services-area .services:nth-child(3), .ui-block-10.about-sec .services-area .services:nth-child(4) {
    transform: translateX(0px);
  }
  .ui-block-10.about-sec .services-area .services:nth-child(3) .service-card {
    margin-bottom: 80px;
  }
  .ui-block-10.about-sec .service-details {
    transform: translateY(0px);
    margin-bottom: 80px;
  }
  .ui-block-10.about-sec .service-details h1 {
    font-size: 45px;
  }
  .ui-block-10.about-sec .service-details p {
    width: 100%;
  }
  .ui-block-10.about-sec #banner_svg {
    bottom: -1px;
    height: 100px;
  }
  .ui-block-10.about-sec img {
    left: 100px;
    bottom: -91px;
    width: 60%;
  }
}
/* ===================================
     UI-Block-10 END
==================================== */
/* =====================================================================================================================
                                            TESTIMONIALS UI-BLOCKS START
======================================================================================================================== */
/* ===================================
     UI-Block-01
==================================== */
.ui-block-01.testimonial {
  background-image: url("../vendor/img/elements-img/testimonial-img/ui-block-01-bg-testimonial.jpg");
  min-height: 200px;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}

.ui-block-01.testimonial .bg-overlay {
  background-color: rgba(32, 32, 32, 0.9);
}

.ui-block-01.testimonial .feedback-slides {
  position: relative;
}

.ui-block-01.testimonial .feedback-slides .client-feedback {
  position: relative;
}

.ui-block-01.testimonial .feedback-slides .client-feedback .single-feedback {
  text-align: center;
  position: relative;
  padding-top: 20px;
}

.ui-block-01.testimonial .feedback-slides .client-feedback .single-feedback p {
  position: relative;
  max-width: 650px;
  line-height: 1.5;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  font-weight: normal;
}

.ui-block-01.testimonial .feedback-slides .client-thumbnails {
  position: relative;
  max-width: 450px;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

.ui-block-01.testimonial .feedback-slides .client-thumbnails .item .img-fill {
  cursor: pointer;
  position: relative;
  text-align: center;
}

.ui-block-01.testimonial .feedback-slides .client-thumbnails .item .img-fill img {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}

.ui-block-01.testimonial .feedback-slides .client-thumbnails .item .title {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin: 20px -100px 0;
  text-align: center;
}

.ui-block-01.testimonial .feedback-slides .client-thumbnails .item .title .user-name {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
  background: linear-gradient(to right, #417bbe 30%, #e5a81c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ui-block-01.testimonial .feedback-slides .client-thumbnails .item .title .user-designation {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
  margin-top: 5px;
}

.ui-block-01.testimonial .feedback-slides .client-thumbnails .slick-slide.slick-center .title {
  opacity: 1;
  visibility: visible;
}

.ui-block-01.testimonial .feedback-slides .client-thumbnails .slick-slide.slick-center .img-fill img {
  border-color: #002e5b;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.ui-block-01.testimonial .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: solid 2px #fff;
  outline: none;
}

.ui-block-01.testimonial .slick-dots li.slick-active button {
  background: #fff;
}

.ui-block-01.testimonial .slick-dots li {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
}

.ui-block-01.testimonial .slick-dots {
  position: absolute;
  bottom: -40px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.ui-block-01.testimonial .feedback-slides:hover .next-arrow, .feedback-slides:hover .prev-arrow {
  opacity: 1;
  visibility: visible;
}

.ui-block-01.testimonial .feedback-slides .slick-list {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.ui-block-01.testimonial .single-feedback-item {
  position: relative;
  margin-left: 25px;
  margin-top: 25px;
  margin-bottom: 8px;
}

.ui-block-01.testimonial .client-feedback {
  text-align: center;
}

.ui-block-01.testimonial .slick-dots li.slick-active button:before {
  opacity: 0;
  color: black;
}

.ui-block-01.testimonial .slick-dots li button::before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "Ã¢â‚¬Â¢";
  text-align: center;
  opacity: 0;
  color: black;
  -webkit-font-smoothing: antialiased;
}

.ui-block-01.testimonial .slick-dots li button:hover:before, .testimonial .slick-dots li button:focus:before {
  opacity: 0;
}

.ui-block-01.testimonial .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-block-01.testimonial .opacity-3 {
  opacity: 0.3;
}

.ui-block-01.testimonial .opacity-4 {
  opacity: 0.4;
}

.ui-block-01.testimonial .opacity-5 {
  opacity: 0.5;
}

.ui-block-01.testimonial .opacity-6 {
  opacity: 0.6;
}

.ui-block-01.testimonial .opacity-7 {
  opacity: 0.7;
}

.ui-block-01.testimonial .opacity-8 {
  opacity: 0.8;
}

.ui-block-01.testimonial .opacity-9 {
  opacity: 0.9;
}

.ui-block-01.testimonial .text {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  opacity: 0.7;
}
