:root {
  --cnvs-themecolor: #13467a;
  --cnvs-themecolor-rgb: 254, 150, 3;
  --cnvs-body-font: "Poppins", sans-serif;
  --cnvs-header-boxshadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
  --cnvs-header-height: 70px;
}
#header {
  --cnvs-header-floating-top-offset: 20px;
  --cnvs-primary-menu-font-size: 15px;
}
.is-expanded-menu #header.floating-header + .include-header {
  margin-top: -161px;
}
.is-expanded-menu #header.floating-header + .include-header .page-title-row {
  margin-top: 10px;
    margin-bottom: -84px;
}
.button {
  text-shadow: none;
  font-weight: 600;
}
.button:not(.w-100):hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
div.menu-link {
  cursor: default;
}
.top-links-item {
  border-left: 0;
}

.about-pg-ul li{
  text-align: left;
}


/**********************************test start**********************************************/

.title-testimonial{
  color: #ffff;
}

.testimonial-section2{
  /*height: 600px;*/
  position: relative;
  padding: 50px 0;
/*  background-color: #e91c5e;*/
  background-color: #113f56;
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #eee;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;    
    -ms-transition: all .3s ease-in-out;    
    -moz-transition: all .3s ease-in-out;    
    -o-transition: all .3s ease-in-out;    
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow:hover {
    color: #2b288d;
}
    

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;    
    -ms-transition: all .5s ease-in-out;    
    -moz-transition: all .5s ease-in-out;    
    -o-transition: all .5s ease-in-out;    
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ff9800;
    border-color: #ff9800;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
}
    
.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 1;
}
    

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div .h4 {
    color:#ff9800;
    font-size: 1.2em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #eee;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active .h4 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive .h4 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }
  
  .testim .cont div p {
    line-height: 25px;
  }

}


/**********************************test end**********************************************/

.top-links-item a img {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  top: -2px;
  margin-right: 8px;
  border: 1px solid var(--cnvs-contrast-0);
  background-color: var(--cnvs-contrast-700);
}
.border-bottom {
  border-color: var(--cnvs-contrast-100) !important;
}
.heading-block > p {
  color: var(--cnvs-contrast-600);
}
.slider-title p,
.feature-box.fbox-center p {
  line-height: 1.7;
  color: var(--cnvs-contrast-600);
  letter-spacing: 0;
}
.play-icon i {
  width: 70px;
  height: 70px;
  line-height: 71px;
  font-size: 24px;
  background: linear-gradient(60deg, #fe9603, #ff8e01, #ed9931, #f37055);
  color: var(--cnvs-contrast-0);
  text-align: center;
  border-radius: 50%;
  padding-left: 4px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  animation: animdgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}
@keyframes animdgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.play-icon:hover i {
  transform: scale(1.1);
}
#oc-clients .oc-item img {
  height: 32px;
}
input.switch-toggle-round + label::before,
input.switch-toggle-round + label {
  border-radius: 4px;
  background-color: var(--cnvs-themecolor);
}
.price-discount {
  position: relative;
  top: -12px;
  margin-left: 10px;
  background: url(images/icons/discount.svg) no-repeat 0 0;
  width: 60px;
  height: 39px;
}
input.switch-toggle-round + label::after {
  border-radius: 4px;
}
.pricing-box {
  border-color: rgba(17, 18, 18, 0.1);
  text-align: left;
  padding: 20px;
  background-color: var(--cnvs-contrast-0);
  box-shadow: none;
  margin-right: -1px;
}
.pricing-title {
  padding: 0;
  background-color: transparent;
  border-bottom: 0;
}
.pricing-title h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: 0;
  color: var(--cnvs-contrast-700);
  text-transform: none;
}
.pricing-title span {
  font-size: 14px;
  text-transform: capitalize;
}
.pricing-price {
  position: relative;
  font-weight: 500;
}
.pricing-price::after {
  content: none;
}
.pricing-price span.price-tenure {
  display: block;
  font-weight: 400;
  color: var(--cnvs-contrast-500);
  text-transform: lowercase;
}
.pricing-features {
  padding: 0 0 1.25rem;
}
.pricing-features li {
  padding: 7px 0;
  font-size: 14px;
}
.pricing-features li i {
  position: relative;
  top: 2px;
}
.pricing-action {
  padding: 0;
  text-align: center;
}
.badge {
  padding: 8px;
  font-size: 12px;
  margin-bottom: 15px;
  border-radius: 2px;
  font-weight: 500;
  line-height: 0.8;
}
.badge.badge-default {
  border: 1px solid var(--cnvs-themecolor);
  color: var(--cnvs-themecolor);
}
.testimonials-carousel .owl-stage {
  padding: 2rem 0 1.5rem;
}
.testimonials-carousel .owl-item {
  opacity: 0.6;
  transition: transform 0.3s ease;
  transform: scale(0.8);
}
.testimonials-carousel .owl-item.active.center {
  opacity: 1;
  transform: scale(1);
}
.testimonial {
  border: 0;
  box-shadow: 0 0 35px rgba(140, 152, 164, 0.2);
  border-radius: 0.25rem;
  padding: 25px;
}
.testimonial-image {
  width: 5rem !important;
  height: auto !important;
  margin: -2.5rem auto 0;
}
.entry-title h3 {
  font-size: 17px;
  margin-bottom: 13px;
}
.entry .entry-title h3 a {
  color: var(--cnvs-contrast-900) !important;
}
.entry-meta li::before {
  content: "\00b7";
}
.footer-big-contacts {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-big-contacts span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cnvs-contrast-600);
  letter-spacing: 2px;
}
.dark .footer-big-contacts {
  color: rgba(255, 255, 255, 0.8);
}
.subscribe-widget .button {
  transform: none;
  box-shadow: none;
}
.promo-section::before {
  content: "";
  position: absolute;
  top: -17%;
  left: 45%;
  width: 80%;
  height: 451px;
  background-size: 1280px 451px;
  background-repeat: no-repeat;
  background-image: url(images/hero/hero-3.svg);
}
.page-title.parallax::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to top,
    rgba(254, 150, 3, 0.5),
    var(--cnvs-contrast-800)
  );
}
@media (min-width: 992px) {
  #header.transparent-header.floating-header {
    margin-top: 15px;
  }
  #header:not(.sticky-header) #header-wrap .container {
    box-shadow: var(--cnvs-header-boxshadow);
  }
  .menu-link {
    text-transform: none;
    letter-spacing: 0;
    font-size: var(--cnvs-primary-menu-font-size);
    font-weight: 600;
  }
  .sub-menu-container .menu-item > .menu-link {
    font-size: calc(var(--cnvs-primary-menu-font-size) - 1px);
  }
  #top-bar.transparent-topbar {
    border-bottom: 0;
    z-index: 399;
    margin-top: 15px;
    background: 0 0;
  }
  #top-bar.transparent-topbar #top-social li {
    border: 0;
  }
  .slider-title h2 {
    font-size: 35px;
    line-height: 1.3;
    letter-spacing: -1px;
    font-weight: 700;
    margin-bottom: 26px;
    color: #113f56;
  }
}
.slider-title h3 {
  display: inline-block;
  font-size: 18px;
  color: var(--cnvs-contrast-500);
}
@media (min-width: 992px) {
  .card-seo-about {
    transform: translateY(-20%);
  }
}
.story-timeline {
  position: relative;
  padding-top: 60px;
}
.story-timeline > .story-timeline-line {
  position: absolute;
  display: block;
  top: 0;
  left: 10px;
  bottom: 0;
  width: 5px;
  border-radius: 0 0 6px 6px;
  background-image: linear-gradient(to bottom, #ffe640 0%, #fe9603 100%);
}
.story-timeline .story-timeline-dots {
  position: absolute;
  display: block;
  top: 0;
  left: 26px;
  z-index: 1;
  width: 26px;
  height: 36px;
  margin-left: -13px;
  background-image: linear-gradient(#ffe640 0%, #fe9603 100%);
  border: 6px solid var(--cnvs-contrast-0);
  border-radius: 50%;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: border-color 0.3s ease;
}
.story-timeline > .row {
  position: relative;
  padding-left: 40px;
}
.story-timeline > .row:hover .story-timeline-dots {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background: var(--cnvs-contrast-700);
}
@media (min-width: 768px) {
  .story-timeline > .story-timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
  .story-timeline .story-timeline-dots {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
  }
  .story-timeline > .row {
    margin-right: -50px;
    margin-left: -50px;
    padding-left: 0;
  }
  .story-timeline > .row > .col,
  .story-timeline > .row > [class*="col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}
[id^="particles-"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.breadcrumb-item.active {
    color: #113f56;
}