        .touch .title {
            font-size: 18px;
            padding: 26px;
            margin: 15px 9px 3px 0;
        }
        
        .pt-80 {
            padding-top: 80px;
        }
        
        .pt-40 {
            padding-top: 40px;
        }
        
        .touch .icon {
            width: 40px;
            height: 40px;
            padding-top: 5px;
            text-align: center;
            position: absolute;
            background-color: #073c5d;
            border-radius: 50%;
            color: #fff;
            font-size: 14px;
            border: 6px solid #fff;
            left: calc( 50% - 32px);
            bottom: -20px;
            transition: 0.3s;
        }
        
        .touch .img {
            position: relative;
            margin: 0 auto;
            border-bottom: 1px solid #ddd;
        }
        
        #error {
            color: #dc3545;
        }
        
        .touch-card {
            background: #fff;
            border-radius: 0 0 4px 4px;
            box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            cursor: pointer;
        }
        
        .card {
            background: #fff;
            border-radius: 0 0 4px 4px;
            box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            cursor: pointer;
        }
        
        .touch-border {
            border: 3px solid #0177c1;
        }
        
        .section-header h3 {
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-header h3::after {
            content: '';
            position: absolute;
            display: block;
            width: 40px;
            height: 3px;
            background: #37a7d9;
            bottom: 0;
            left: calc(50% - 20px);
        }
        
        .br {
            border-right: 1px solid #ddd;
        }
        
        .heading {
            font-weight: 500;
            padding: 5px;
        }
        
        .p-70 {
            padding: 70px;
            ;
        }
        
        .touch form {
            padding-top: 50px;
        }
        
        .touch .star {
            color: red;
        }
        
        .touch .small-text {
            padding-left: 45px;
        }
        /* .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }


  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }

  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  input:checked .checkmark:after {
    display: block;
  }

  input:checked ~ .checkmark {
    background-color: #7ebaff;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
        
        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }
        /*        */
        
        */ .list {
            list-style: lower-alpha;
            padding-left: 50px;
        }
        
        .list li {
            padding: 5px;
        }
        
        .small-heading {
            font-family: revert;
            font-size: 1em;
            width: 100%;
        }
        
        .privacy h6 {
            width: 100%;
        }
        
        .timeline {
            margin: 0;
            padding: 0;
            list-style: none;
            max-width: 500px;
            margin: 100px auto;
            counter-reset: step;
        }
        
        .timeline li {
            float: left;
            text-align: center;
            width: 150px;
            position: relative;
        }
        
        .timeline li:before {
            content: counter(step);
            counter-increment: step;
            line-height: 35px;
            width: 35px;
            height: 35px;
            display: block;
            border-radius: 100%;
            border: 1px solid #CCC;
            margin: 0 auto 15px auto;
            background: #fff;
        }
        
        .timeline li:after {
            content: '';
            width: 100%;
            height: 1px;
            background: #DDD;
            display: block;
            position: absolute;
            top: 17.5px;
            left: 50%;
            z-index: -1;
        }
        
        .timeline li:last-child:after {
            content: none;
        }
        
        .timeline li.active {
            color: #8cc413;
        }
        
        .timeline li:first-child:before {
            border-color: #8cc413;
        }
        
        .timeline li:first-child:after {
            background: #8cc413;
        }
        
        * {
            font-family: 'Roboto', sans-serif;
        }
        
        @keyframes click-wave {
            0% {
                height: 40px;
                width: 40px;
                opacity: 0.35;
                position: relative;
            }
            100% {
                height: 200px;
                width: 200px;
                margin-left: -80px;
                margin-top: -80px;
                opacity: 0;
            }
        }
        
        .option-input {
            -webkit-appearance: none;
            -moz-appearance: none;
            -ms-appearance: none;
            -o-appearance: none;
            appearance: none;
            position: relative;
            top: 13.33333px;
            right: 0;
            bottom: 0;
            left: 0;
            height: 30px;
            width: 30px;
            transition: all 0.15s ease-out 0s;
            background: #fff;
            border: none;
            color: #fff;
            cursor: pointer;
            display: inline-block;
            margin-right: 0.5rem;
            outline: none;
            position: relative;
            z-index: 1000;
            border: 2px solid #cbd1d8;
        }
        
        .option-input:hover {
            background: #9faab7;
        }
        
        .option-input:checked {
            background: #28a745;
        }
        
        .option-input:checked::before {
            height: 40px;
            width: 30px;
            position: absolute;
            content: '✔';
            display: inline-block;
            font-size: 17px;
            padding-top: 2px;
            text-align: center;
            line-height: 25px;
        }
        
        .option-input:checked::after {
            -webkit-animation: click-wave 0.65s;
            -moz-animation: click-wave 0.65s;
            animation: click-wave 0.65s;
            background: #0077c1;
            content: '';
            display: block;
            position: relative;
            z-index: 100;
        }
        
        .option-input.radio {
            border-radius: 50%;
        }
        
        .option-input.radio::after {
            border-radius: 50%;
        }
        
        label.error {
            color: var(--red);
        }
        
        label.error {
            display: none;
        }
        
        .touch p {
            text-align: justify;
        }
        /*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
        
        .portfolio #portfolio-flters {
            padding: 0;
            margin: 0 auto 35px auto;
            list-style: none;
            text-align: center;
            border-radius: 50px;
            padding: 2px 15px;
        }
        
        .portfolio #portfolio-flters li {
            cursor: pointer;
            display: inline-block;
            padding: 10px 20px 12px 20px;
            font-size: 14px;
            font-weight: 600;
            line-height: 1;
            text-transform: uppercase;
            color: #313030;
            margin-bottom: 5px;
            transition: all 0.3s ease-in-out;
            border-radius: 50px;
        }
        
        .portfolio #portfolio-flters li:hover,
        .portfolio #portfolio-flters li.filter-active {
            color: #ff5821;
            background: #fff1ed;
        }
        
        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }
        
        .portfolio .portfolio-item {
            margin-bottom: 30px;
        }
        
        .portfolio .portfolio-item .portfolio-info {
            opacity: 0;
            position: absolute;
            left: 30px;
            right: 30px;
            bottom: 0;
            z-index: 3;
            transition: all ease-in-out 0.3s;
            background: rgba(255, 255, 255, 0.9);
            padding: 15px;
        }
        
        .portfolio .portfolio-item .portfolio-info h4 {
            font-size: 18px;
            color: #fff;
            font-weight: 600;
            color: #473d3a;
        }
        
        .portfolio .portfolio-item .portfolio-info p {
            color: #7f6d68;
            font-size: 14px;
            margin-bottom: 0;
        }
        
        .portfolio .portfolio-item .portfolio-info .preview-link,
        .portfolio .portfolio-item .portfolio-info .details-link {
            position: absolute;
            right: 40px;
            font-size: 24px;
            top: calc(50% - 18px);
            color: #635551;
        }
        
        .portfolio .portfolio-item .portfolio-info .preview-link:hover,
        .portfolio .portfolio-item .portfolio-info .details-link:hover {
            color: #ff5821;
        }
        
        .portfolio .portfolio-item .portfolio-info .details-link {
            right: 10px;
        }
        
        .portfolio .portfolio-item .portfolio-links {
            opacity: 0;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 3;
            position: absolute;
            transition: all ease-in-out 0.3s;
        }
        
        .portfolio .portfolio-item .portfolio-links a {
            color: #fff;
            margin: 0 2px;
            font-size: 28px;
            display: inline-block;
            transition: 0.3s;
        }
        
        .portfolio .portfolio-item .portfolio-links a:hover {
            color: #ffa587;
        }
        
        .portfolio .portfolio-item:hover .portfolio-info {
            opacity: 1;
            bottom: 20px;
        }
        /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
        
        .portfolio-details {
            padding-top: 0;
        }
        
        .portfolio-details .portfolio-details-container {
            position: relative;
        }
        
        .portfolio-details .portfolio-details-carousel {
            position: relative;
            z-index: 1;
        }
        
        .portfolio-details .portfolio-details-carousel .owl-nav,
        .portfolio-details .portfolio-details-carousel .owl-dots {
            margin-top: 5px;
            text-align: left;
        }
        
        .portfolio-details .portfolio-details-carousel .owl-dot {
            display: inline-block;
            margin: 0 10px 0 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd !important;
        }
        
        .portfolio-details .portfolio-details-carousel .owl-dot.active {
            background-color: #ff5821 !important;
        }
        
        .portfolio-details .portfolio-info {
            padding: 30px;
            position: absolute;
            right: 0;
            bottom: -70px;
            background: #fff;
            box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }
        
        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }
        
        .portfolio-details .portfolio-info ul li+li {
            margin-top: 10px;
        }
        
        .portfolio-details .portfolio-description {
            padding-top: 50px;
        }
        
        .portfolio-details .portfolio-description h2 {
            width: 50%;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .portfolio-details .portfolio-description p {
            padding: 0 0 0 0;
        }
        
        @media (max-width: 768px) {
            .portfolio-details .portfolio-description h2 {
                width: 100%;
            }
            .portfolio-details .portfolio-info {
                position: static;
                margin-top: 30px;
            }
        }
        /*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
        
        .blog {
            padding: 0 0 40px 0;
        }
        
        .blog .entry {
            padding: 20px;
            margin-bottom: 60px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }
        
        .blog .entry .entry-img {
            max-height: 400px;
            margin: -20px -20px 20px -20px;
            overflow: hidden;
        }
        
        .blog .entry .entry-title {
            font-size: 20px;
            line-height: 26px;
            font-weight: bold;
            padding: 0;
            margin: 0 0 20px 0;
        }
        
        .blog .entry .entry-title a {
            color: #473d3a;
            transition: 0.3s;
        }
        
        .blog .entry .entry-title a:hover {
            color: #275E76;
        }
        
        .blog .entry .entry-meta {
            margin-bottom: 15px;
            color: #afa29e;
        }
        
        .blog .entry .entry-meta ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .blog .entry .entry-meta ul li+li {
            padding-left: 20px;
        }
        
        .blog .entry .entry-meta i {
            font-size: 14px;
            padding-right: 4px;
        }
        
        .blog .entry .entry-meta a {
            color: #988782;
            font-size: 14px;
            display: inline-block;
            line-height: 1;
        }
        
        .blog .entry .entry-content p {
            line-height: 24px;
            font-size: 15px;
        }
        
        .blog .entry .entry-content .read-more {
            -moz-text-align-last: right;
            text-align-last: right;
        }
        
        .blog .entry .entry-content .read-more a {
            display: inline-block;
            background: #275E76;
            color: #fff;
            padding: 6px 20px;
            transition: 0.3s;
            font-size: 14px;
        }
        
        .blog .entry .entry-content .read-more a:hover {
            background: #52BCEC;
        }
        
        .blog .entry .entry-content h3 {
            font-size: 22px;
            margin-top: 30px;
            font-weight: bold;
        }
        
        .blog .entry .entry-content blockquote {
            overflow: hidden;
            background-color: #fafafa;
            padding: 60px;
            position: relative;
            text-align: center;
            margin: 20px 0;
        }
        
        .blog .entry .entry-content blockquote p {
            color: #313030;
            line-height: 1.6;
            margin-bottom: 0;
            font-style: italic;
            font-weight: 500;
            font-size: 22px;
        }
        
        .blog .entry .entry-content blockquote .quote-left {
            position: absolute;
            left: 20px;
            top: 20px;
            font-size: 36px;
            color: #e7e7e7;
        }
        
        .blog .entry .entry-content blockquote .quote-right {
            position: absolute;
            right: 20px;
            bottom: 20px;
            font-size: 36px;
            color: #e7e7e7;
        }
        
        .blog .entry .entry-content blockquote::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: #473d3a;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        
        .blog .entry .entry-footer {
            padding-top: 10px;
            border-top: 1px solid #e6e6e6;
        }
        
        .blog .entry .entry-footer i {
            color: #988782;
            display: inline;
        }
        
        .blog .entry .entry-footer a {
            color: #c2b7b4;
            transition: 0.3s;
        }
        
        .blog .entry .entry-footer a:hover {
            color: #ff5821;
        }
        
        .blog .entry .entry-footer .cats {
            list-style: none;
            display: inline;
            padding: 0 20px 0 0;
            font-size: 14px;
        }
        
        .blog .entry .entry-footer .cats li {
            display: inline-block;
        }
        
        .blog .entry .entry-footer .tags {
            list-style: none;
            display: inline;
            padding: 0;
            font-size: 14px;
        }
        
        .blog .entry .entry-footer .tags li {
            display: inline-block;
        }
        
        .blog .entry .entry-footer .tags li+li::before {
            padding-right: 6px;
            color: #6c757d;
            content: ",";
        }
        
        .blog .entry .entry-footer .share {
            font-size: 16px;
        }
        
        .blog .entry .entry-footer .share i {
            padding-left: 5px;
        }
        
        .blog .entry-single {
            margin-bottom: 30px;
        }
        
        .blog .entry-single .entry-title {
            font-size: 32px;
            line-height: 38px;
        }
        
        .blog .blog-author {
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }
        
        .blog .blog-author img {
            width: 120px;
        }
        
        .blog .blog-author h4 {
            margin-left: 140px;
            font-weight: 600;
            font-size: 22px;
            margin-bottom: 0px;
            padding: 0;
        }
        
        .blog .blog-author .social-links {
            margin: 0 0 5px 140px;
        }
        
        .blog .blog-author .social-links a {
            color: #afa29e;
        }
        
        .blog .blog-author p {
            margin-left: 140px;
            font-style: italic;
            color: #a4a2a2;
        }
        
        .blog .blog-comments {
            margin-bottom: 30px;
        }
        
        .blog .blog-comments .comments-count {
            font-weight: bold;
        }
        
        .blog .blog-comments .comment {
            margin-top: 30px;
            position: relative;
        }
        
        .blog .blog-comments .comment .comment-img {
            width: 50px;
        }
        
        .blog .blog-comments .comment h5 {
            margin-left: 65px;
            font-size: 16px;
            margin-bottom: 2px;
        }
        
        .blog .blog-comments .comment h5 a {
            font-weight: bold;
            color: #313030;
            transition: 0.3s;
        }
        
        .blog .blog-comments .comment h5 a:hover {
            color: #ff5821;
        }
        
        .blog .blog-comments .comment h5 .reply {
            padding-left: 10px;
            color: #473d3a;
        }
        
        .blog .blog-comments .comment time {
            margin-left: 65px;
            display: block;
            font-size: 14px;
            color: #afa29e;
            margin-bottom: 5px;
        }
        
        .blog .blog-comments .comment p {
            margin-left: 65px;
        }
        
        .blog .blog-comments .comment.comment-reply {
            padding-left: 40px;
        }
        
        .blog .blog-comments .reply-form {
            margin-top: 30px;
            padding: 30px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }
        
        .blog .blog-comments .reply-form h4 {
            font-weight: bold;
            font-size: 22px;
        }
        
        .blog .blog-comments .reply-form p {
            font-size: 14px;
        }
        
        .blog .blog-comments .reply-form input {
            border-radius: 0;
            padding: 20px 10px;
            font-size: 14px;
        }
        
        .blog .blog-comments .reply-form input:focus {
            box-shadow: none;
            border-color: #ffa587;
        }
        
        .blog .blog-comments .reply-form textarea {
            border-radius: 0;
            padding: 10px 10px;
            font-size: 14px;
        }
        
        .blog .blog-comments .reply-form textarea:focus {
            box-shadow: none;
            border-color: #ffa587;
        }
        
        .blog .blog-comments .reply-form .form-group {
            margin-bottom: 25px;
        }
        
        .blog .blog-comments .reply-form .btn-primary {
            border-radius: 0;
            padding: 10px 20px;
            border: 0;
            background-color: #473d3a;
        }
        
        .blog .blog-comments .reply-form .btn-primary:hover {
            background-color: #ff5821;
        }
        
        .blog .blog-pagination {
            color: #7f6d68;
        }
        
        .blog .blog-pagination ul {
            display: flex;
            padding-left: 0;
            list-style: none;
        }
        
        .blog .blog-pagination li {
            border: 1px solid #f2f2f2;
            margin: 0 5px;
            transition: 0.3s;
        }
        
        .blog .blog-pagination li.active {
            background: white;
        }
        
        .blog .blog-pagination li a {
            color: #989595;
            padding: 7px 16px;
            display: inline-block;
        }
        
        .blog .blog-pagination li.active,
        .blog .blog-pagination li:hover {
            background: #ff5821;
            border: 1px solid #ff5821;
        }
        
        .blog .blog-pagination li.active a,
        .blog .blog-pagination li:hover a {
            color: #fff;
        }
        
        .blog .blog-pagination li.disabled {
            background: #fff;
            border: 1px solid #fdfcfc;
        }
        
        .blog .blog-pagination li.disabled i {
            color: #dedede;
            padding: 10px 16px;
            display: inline-block;
        }
        
        .blog .sidebar {
            padding: 30px;
            margin: 0 0 60px 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }
        
        .blog .sidebar .sidebar-title {
            font-size: 20px;
            font-weight: 700;
            padding: 0 0 0 0;
            margin: 0 0 15px 0;
            color: #473d3a;
            position: relative;
        }
        
        .blog .sidebar .sidebar-item {
            margin-bottom: 30px;
        }
        
        .blog .sidebar .search-form form {
            background: #fff;
            border: 1px solid #ddd;
            padding: 3px 10px;
            position: relative;
        }
        
        .blog .sidebar .search-form form input[type="text"] {
            border: 0;
            padding: 4px;
            width: calc(100% - 40px);
        }
        
        .blog .sidebar .search-form form button {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            border: 0;
            background: none;
            font-size: 16px;
            padding: 0 15px;
            margin: -1px;
            background: #473d3a;
            color: #fff;
            transition: 0.3s;
        }
        
        .blog .sidebar .search-form form button:hover {
            background: #635551;
        }
        
        .blog .sidebar .categories ul {
            list-style: none;
            padding: 0;
        }
        
        .blog .sidebar .categories ul li+li {
            padding-top: 10px;
        }
        
        .blog .sidebar .categories ul a {
            color: #8d7973;
        }
        
        .blog .sidebar .categories ul a:hover {
            color: #ff5821;
        }
        
        .blog .sidebar .categories ul a span {
            padding-left: 5px;
            color: #afa29e;
            font-size: 14px;
        }
        
        .blog .sidebar .recent-posts .post-item+.post-item {
            margin-top: 15px;
        }
        
        .blog .sidebar .recent-posts img {
            width: 80px;
            float: left;
            padding-right: 5px;
        }
        
        .blog .sidebar .recent-posts h4 {
            font-size: 15px;
            font-weight: bold;
        }
        
        .blog .sidebar .recent-posts h4 a {
            color: #0f0d0c;
            transition: 0.3s;
        }
        
        .blog .sidebar .recent-posts h4 a:hover {
            color: #275E76;
        }
        
        .blog .sidebar .recent-posts time {
            display: block;
            margin-left: 95px;
            font-style: italic;
            font-size: 14px;
            color: #afa29e;
        }
        
        .blog .sidebar .tags {
            margin-bottom: -10px;
        }
        
        .blog .sidebar .tags ul {
            list-style: none;
            padding: 0;
        }
        
        .blog .sidebar .tags ul li {
            display: inline-block;
        }
        
        .blog .sidebar .tags ul a {
            color: #8d7973;
            font-size: 14px;
            padding: 6px 14px;
            margin: 0 6px 8px 0;
            border: 1px solid #f4f2f2;
            display: inline-block;
            transition: 0.3s;
        }
        
        .blog .sidebar .tags ul a:hover {
            color: #fff;
            border: 1px solid #ff5821;
            background: #ff5821;
        }
        
        .blog .sidebar .tags ul a span {
            padding-left: 5px;
            color: #ddd7d6;
            font-size: 14px;
        }
        /*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
        
        .breadcrumbs {
            padding: 15px 0;
            background: #073c5d;
            margin-bottom: 40px;
            color: #fff;
        }
        
        .breadcrumbs h2 {
            font-size: 28px;
            font-weight: 500;
        }
        
        .breadcrumbs ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0 0 10px 0;
            margin: 0;
            font-size: 14px;
        }
        
        .breadcrumbs ol li+li {
            padding-left: 10px;
        }
        
        .breadcrumbs ol li a {
            color: #fff;
        }
        
        .breadcrumbs ol li+li::before {
            display: inline-block;
            padding-right: 10px;
            color: #635551;
            content: "/";
        }
        
        .app-bg {
            position: fixed;
            z-index: -1;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .app-bg>div {
            width: 1000px;
            position: absolute;
            top: 0;
            right: 0;
            margin-right: -400px;
            margin-top: -400px;
        }
        
        .pt-20 {
            padding-top: 20px;
        }
        
        .career .list {
            margin-bottom: 10px;
            padding: 15px;
        }
        
        .job h2,
        h4,
        h1,
        h5,
        h6,
        p {
            width: 100% !important;
        }
        
        .error {
            color: #8f2705;
            font-size: 12px;
            ;
        }
        
        .p-20 {
            padding: 20px;
        }
        
        .card .carousel-item img {
            width: 100%;
            height: 300px;
            border: 0px solid #000;
            border-radius: 10px;
        }
        
        .card .carousel-caption {
            padding: 0;
            right: 0;
            left: 0;
            color: #3d3d3d;
        }
        
        .card .carousel-caption h3 {
            color: #3d3d3d;
        }
        
        .card .carousel-caption p {
            line-height: 30px;
        }
        
        .card .carousel-caption .col-sm-3 {
            display: flex;
            align-items: center;
        }
        
        .card .carousel-caption .col-sm-9 {
            text-align: left;
        }
        
        .navi a {
            text-decoration: none;
        }
        
        a>.ico {
            background-color: grey;
            padding: 10px;
        }
        
        a:hover>.ico {
            background-color: #666;
        }
        /* Testimonial end here */
        
        #testimonial-slider {
            padding: 50px 20px 35px 20px;
            background: #fff;
            text-align: center;
            box-shadow: 0 0 115px 19px rgba(236, 236, 236, 1);
        }
        
        .testimonial .description {
            font-size: 14px;
            color: #777;
            line-height: 26px;
            text-indent: 30px;
            position: relative;
        }
        
        .testimonial .title {
            font-size: 24px;
            font-weight: bold;
            color: #363636;
            text-transform: capitalize;
            margin: 0;
        }
        
        .testimonial .post {
            display: block;
            font-size: 15px;
            color: #363636;
        }
        
        .owl-buttons {
            width: 100%;
            height: 40px;
            position: absolute;
            bottom: 40%;
            left: 0;
        }
        
        .owl-prev,
        .owl-next {
            position: absolute;
            left: 0;
            transition: all 0.4s ease-in-out 0s;
        }
        
        .owl-next {
            left: auto;
            right: 0;
        }
        
        .owl-buttons .owl-prev:before,
        .owl-buttons .owl-next:before {
            content: "\f104";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 60px;
            font-weight: 900;
            color: #cacaca;
            line-height: 20px;
            opacity: 0.8;
        }
        
        .owl-buttons .owl-next:before {
            content: "\f105";
        }
        
        .owl-buttons .owl-prev:hover:before,
        .owl-buttons .owl-next:hover:before {
            opacity: 1;
        }
        
        .owl-theme .owl-controls .owl-buttons div {
            background: transparent;
        }
        
        .owl-theme .owl-controls {
            margin-top: 40px;
        }
        
        .owl-theme .owl-controls .owl-page img {
            border-radius: 50%;
            border: 4px solid #ccc;
            background-size: cover;
            transition: all 0.3s ease-in-out 0s;
        }
        
        .owl-theme .owl-controls.clickable .owl-page:hover span {
            opacity: 0.5;
        }
        
        .owl-theme .owl-controls .owl-page.active span,
        .owl-theme .owl-controls .owl-page.active:hover span {
            border-color: #d133ff;
            opacity: 1;
        }
        
        .testimonial img {
            height: 180px;
            border-radius: 50%;
        }
        
        @media only screen and (max-width: 479px) {
            .owl-buttons {
                bottom: 30%;
            }
        }