/* -------------------------------------------------------------------
   Base
   ------------------------ /
 * 01.Base
 * 02.Typography
 * 03.Helper Class
   ------------------------ /
   Components
   ------------------------ /
 * 04.Buttons
 * 05.Animations
 * 06.Form(Input, Comment)
 * 07.Pagination
 * 08.Preloader
   ------------------------ /
   Layout
   ------------------------ /
 * 09.Header
 * 10.Hero
 * 11.About
 * 12.Resume
 * 13.Services
 * 14.Counters
 * 15.How I Work
 * 16.My Skills
 * 17.Portfolio
 * 18.My Team
 * 19.Testimonial
 * 20.Blog
 * 21.Contact
 * 22.Footer
 * 23.Breadcrumb
 * 24.Rtl Mode
 * 25.Home Intro
------------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
/* 01.Base
/* ---------------------------------------------------------------- */
body,
html {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: var(--text-font);
    font-weight: 400;
    color: #6d7077;
}

body {
    position: relative;
}

::-moz-selection {
    color: #fff;
    background: var(--secondary-color);
}

::selection {
    color: #fff;
    background: var(--secondary-color);
}

a:link,
a:hover,
a:active,
a:visited {
    text-decoration: none;
}

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

textarea,
textarea:focus,
input,
input:focus,
button,
button:focus {
    outline: none;
    resize: inherit;
}

.owl-carousel .owl-item img {
    display: block;
    width: auto;
}

.container {
    max-width: 1200px;
}

/* ---------------------------------------------------------------- */
/* 02.Typography
/* ---------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
    font-weight: 700;
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.42;
}

h1,
.h1 {
    font-size: 90px;
}

h2,
.h2 {
    font-size: 36px;
}

h3,
.h3 {
    font-size: 2.9rem;
}

h4,
.h4 {
    font-size: 2.5rem;
}

h5,
.h5 {
    font-size: 1.467rem;
}

h6,
.h6 {
    font-size: 16px;
}

p {
    line-height: 1.9;
    margin: 0;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra Small devices (portrait phones, less than 575px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
    h3,
    .h3 {
        font-size: 2.1rem;
    }
    h4,
    .h4 {
        font-size: 1.8rem;
    }
}
/* ---------------------------------------------------------------- */
/* 03.Helper Class
/* ---------------------------------------------------------------- */
.page-wrapper {
    position: relative;
    overflow: hidden;
}

.section {
    padding: 100px 0;
}
.section .section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.section .section-heading h2 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-align: center;
    display: block;
    position: relative;
}
.section .section-heading h2:after {
    content: "";
    bottom: 0;
    left: 50%;
    height: 4px;
    width: 50px;
    position: absolute;
    background: var(--main-color);
    transform: translateX(-50%);
}
.section .section-heading span {
    font-size: 14px;
    border-radius: 50px;
    color: #fff;
    padding: 8px 18px;
    margin-bottom: 10px;
    display: inline-block;
    background: var(--main-color);
}
.section .section-heading.light h2 {
    color: #fff;
}
.section .section-heading.light h2:after {
    background: #fff;
}
.section .section-heading-left {
    text-align: left;
    margin-bottom: 50px;
}
.section .section-heading-left h2 {
    display: block;
    text-align: left;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.section .section-heading-left h2:before,
.section .section-heading-left h2:after {
    bottom: 0;
    height: 4px;
    content: "";
    position: absolute;
    background: var(--main-color);
}
.section .section-heading-left h2:before {
    left: 0;
    width: 20px;
}
.section .section-heading-left h2:after {
    left: 30px;
    width: 40px;
}
.section .section-heading-left span {
    font-size: 14px;
    border-radius: 50px;
    color: #fff;
    padding: 8px 18px;
    margin-bottom: 10px;
    display: inline-block;
    background: var(--main-color);
}

.no-padding {
    padding: 0;
    margin: 0;
}

.bg-dark-blue {
    background: var(--secondary-color);
}
.bg-dark-blue .section-heading {
    margin-bottom: 100px;
}
.bg-dark-blue .section-heading h2 {
    color: #fff;
}
.bg-dark-blue .section-heading h2:after {
    background: var(--main-color);
}

.bg-primary-light {
    background: rgba(106, 176,76,0.1);
}

.bg-grey {
    background: #fafafa;
}

.bg-light-grey {
    background-color: #f9f9f9;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-3 {
    margin-left: 10px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-minus-70 {
    padding-bottom: 70px;
}

.pb-minus-76 {
    padding-bottom: 76px;
}

.bg-overlay {
    z-index: 1;
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}
.bg-overlay:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    position: absolute;
    opacity: 0.75;
    background: var(--main-color);
}

.inner-header-title {
    margin-bottom: 20px !important;
    position: relative;
    padding-bottom: 22px;
    display: block;
}
.inner-header-title:after,
.inner-header-title:before {
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    position: absolute;
    border-radius: 5px;
}
.inner-header-title:after {
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
}
.inner-header-title:before {
    width: 60px;
    z-index: 36;
    background: var(--main-color);
}

#portfolioCarousel.owl-carousel .owl-item img {
    width: 100%;
    display: inline-block;
}
#portfolioCarousel.owl-carousel .owl-nav {
    margin-top: 0;
}
#portfolioCarousel.owl-carousel .owl-nav button {
    margin: 0;
    top: 50%;
    padding: 5px !important;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    background: transparent;
    display: inline-block;
    transition: all 0.5s ease;
    transform: translateY(-50%);
    border: 2px solid #fff;
}
#portfolioCarousel.owl-carousel .owl-nav button span {
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    color: var(--main-color);
    transition: all 0.5s ease;
    background: #fff;
}
#portfolioCarousel.owl-carousel .owl-nav button:hover {
    border-color: var(--main-color);
}
#portfolioCarousel.owl-carousel .owl-nav button:hover span {
    color: #fff;
    background: var(--main-color);
}
#portfolioCarousel.owl-carousel .owl-nav button.owl-prev {
    left: 20px;
}
#portfolioCarousel.owl-carousel .owl-nav button.owl-next {
    right: 20px;
}

#testimonialCarousel.owl-carousel .owl-item img,
#blogCarousel.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}
#testimonialCarousel.owl-carousel .owl-nav,
#blogCarousel.owl-carousel .owl-nav {
    /* margin-top: 0;
    position: absolute;
    top: -130px;
    right: 0;
    display: inline-block; */

}
#testimonialCarousel.owl-carousel .owl-nav button,
#blogCarousel.owl-carousel .owl-nav button {
    /* margin: 0;
    padding: 5px !important;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    background: transparent;
    display: inline-block;
    transition: all 0.5s ease;
    border: 2px solid var(--main-color); */
}
#testimonialCarousel.owl-carousel .owl-nav button span,
/* #blogCarousel.owl-carousel .owl-nav button span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5s ease;
    background: var(--main-color);
} */
#testimonialCarousel.owl-carousel .owl-nav button:hover,
#blogCarousel.owl-carousel .owl-nav button:hover {
    border-color: var(--secondary-color);
}
#testimonialCarousel.owl-carousel .owl-nav button:hover span,
#blogCarousel.owl-carousel .owl-nav button:hover span {
    background: var(--secondary-color);
}
#testimonialCarousel.owl-carousel .owl-nav button.owl-prev,
#blogCarousel.owl-carousel .owl-nav button.owl-prev {
    margin-right: 10px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra small devices (portrait phones, less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
    .section .section-heading h2 {
        font-size: 2rem;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
    #testimonialCarousel.owl-carousel .owl-nav,
    #blogCarousel.owl-carousel .owl-nav {
        /* position: absolute; */
        /* top: 100%; */
        /* right: 40%; */
        /* position: static; */
        /* margin-bottom: 24px; */
    }
}
#colorOptionsSidebar {
    top: 50%;
    left: 0;
    z-index: 1111;
    line-height: 1;
    position: fixed;
    text-align: left;
    display: inline-block;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}
#colorOptionsSidebar #colorOptionsSidebarToggle {
    top: 0;
    right: -52px;
    position: absolute;
    padding: 16px;
    font-size: 20px;
    color: #fff;
    border: none;
    background: var(--main-color);
    transition: all 0.4s ease;
}
#colorOptionsSidebar .color-options-wrap {
    padding: 15px 6px 10px 15px;
    max-width: 219px;
    background: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 23px 49px 0 rgba(255, 69, 0, 0.1);
    transition: all 0.4s ease;
    transform: translateX(-100%);
}
#colorOptionsSidebar .color-options-wrap.active {
    transform: translateX(0);
}
#colorOptionsSidebar span {
    width: 38px;
    height: 38px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    margin: 3px;
    display: inline-block;
}
#colorOptionsSidebar span.default {
    background: var(--main-color);
}
#colorOptionsSidebar span.blue {
    background: #0652dd;
}
#colorOptionsSidebar span.red {
    background: #ff3f34;
}
#colorOptionsSidebar span.yellow {
    background: #f79f1f;
}
#colorOptionsSidebar span.green {
    background: #6ab04c;
}
#colorOptionsSidebar span.pink {
    background: #fc427b;
}
#colorOptionsSidebar span.turquose {
    background: #01a3a4;
}
#colorOptionsSidebar span.purple {
    background: #b33771;
}
#colorOptionsSidebar span.blue2 {
    background: #2e86de;
}
#colorOptionsSidebar span.orange {
    background: #ff7500;
}
#colorOptionsSidebar span.magenta {
    background: #6f1e51;
}
#colorOptionsSidebar span.orange2 {
    background: #ff793f;
}
#colorOptionsSidebar span.active:after {
    content: "\f00c";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: absolute;
    align-items: center;
    justify-content: center;
    background: rgba(23, 23, 24, 0.2);
    font-family: "Font Awesome 5 Free";
}

#rtlSidebar {
    top: 50%;
    left: 0;
    margin-top: -115px;
    z-index: 7777;
    line-height: 1;
    position: fixed;
    text-align: left;
    display: inline-block;
    transition: all 0.4s ease;
    transform: translateY(-50%);
}
#rtlSidebar #rtlToggle {
    padding: 16px 12.5px;
    font-size: 16px;
    color: #fff;
    border: none;
}

/* ---------------------------------------------------------------- */
/* 04.Buttons
/* ---------------------------------------------------------------- */
.white-btn {
    z-index: 1;
    padding: 0;
    border: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    letter-spacing: 1px;
    align-items: center;
    display: inline-flex;
    transition: all 0.5s ease;
    background: var(--main-color);
}
.white-btn .text {
    padding: 0 20px 0 30px;
    text-transform: uppercase;
    color: #fff !important;
}
.white-btn .icon {
    padding: 5px;
    border-radius: 50%;
    transition: all 0.5s ease;
    border: 2px solid #fff;
}
.white-btn .icon i {
    width: 46px;
    height: 46px;
    font-size: 16px;
    border-radius: 50%;
    line-height: 46px;
    text-align: center;
    color: var(--main-color);
    display: inline-block;
    background: #fff;
    transition: all 0.5s ease;
}
.white-btn:hover {
    background: #fff;
}
.white-btn:hover .text {
    color: var(--main-color) !important;
}
.white-btn:hover .icon {
    border-color: var(--main-color);
}
.white-btn:hover .icon i {
    background: var(--main-color);
    color: #fff;
}

.primary-btn {
    z-index: 1;
    padding: 0;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    letter-spacing: 1px;
    align-items: center;
    display: inline-flex;
    justify-content: space-between;
    transition: all 0.5s ease;
    background: var(--main-color);
}
.primary-btn .text {
    padding: 0 20px 0 30px;
    text-transform: uppercase;
    color: #fff !important;
}
.primary-btn .icon {
    padding: 5px;
    border-radius: 50%;
    transition: all 0.5s ease;
    border: 2px solid #fff;
}
.primary-btn .icon i {
    width: 46px;
    height: 46px;
    font-size: 16px;
    border-radius: 50%;
    line-height: 46px;
    text-align: center;
    display: inline-block;
    background: #fff;
    color: var(--main-color);
}
.primary-btn:hover {
    background: var(--secondary-color);
}
.primary-btn:hover .text {
    color: #fff !important;
}
.primary-btn:hover .icon {
    border-color: var(--main-color);
}
.primary-btn:hover .icon i {
    background: var(--main-color);
    color: #fff;
}

.scroll-top-btn {
    bottom: 0;
    opacity: 0;
    right: 10px;
    padding: 5px;
    z-index: 144;
    position: fixed;
    text-align: center;
    border-radius: 50%;
    visibility: hidden;
    transition: all 0.5s ease;
    border: 2px solid var(--main-color);
}
.scroll-top-btn i {
    width: 46px;
    height: 46px;
    font-size: 16px;
    color: #fff;
    line-height: 46px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.5s ease;
    background: var(--main-color);
}
.scroll-top-btn:hover {
    border-color: var(--secondary-color);
}
.scroll-top-btn:hover i {
    background: var(--secondary-color);
}
.scroll-top-btn.active {
    opacity: 1;
    bottom: 10px;
    visibility: visible;
}

/* ---------------------------------------------------------------- */
/* 05.Animations
/* ---------------------------------------------------------------- */
@keyframes ldsRoller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes iconPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
@keyframes dash {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes dashCheck {
    0% {
        stroke-dashoffset: -100;
    }
    100% {
        stroke-dashoffset: 900;
    }
}
/* ---------------------------------------------------------------- */
/* 06.Form(Input, Comment)
/* ---------------------------------------------------------------- */
.custom-modal .modal-header {
    text-align: center;
    padding: 10px 20px;
}
.custom-modal .modal-header button {
    background: transparent;
    border: none;
}
.custom-modal .modal-header button span {
    font-size: 35px;
}
.custom-modal .modal-header h5,
.custom-modal .modal-header button {
    color: #fff;
}
.custom-modal .modal-header.danger {
    background: #f27474;
    color: #fff;
}
.custom-modal .modal-header.success {
    background: #0fb6a6;
    color: #fff;
}
.custom-modal .modal-body {
    padding: 20px;
}
.custom-modal .modal-body .form-popup-inner {
    text-align: center;
}
.custom-modal .modal-body .form-popup-inner .form-icon {
    margin-bottom: 30px;
}
.custom-modal .modal-body .form-popup-inner .form-icon svg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.custom-modal .modal-body .form-popup-inner .form-icon.danger svg {
    fill: #f27474;
    stroke: #f27474;
    background: rgba(242, 116, 116, 0.1);
}
.custom-modal .modal-body .form-popup-inner .form-icon.success svg {
    fill: #0fb6a6;
    stroke: #0fb6a6;
    background: rgba(15, 182, 166, 0.1);
}
.custom-modal .modal-footer {
    padding: 20px;
    justify-content: center;
}
.custom-modal .popup-btn {
    font-weight: 500;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.5s ease;
    text-transform: capitalize;
    color: #fff !important;
}
.custom-modal .popup-btn:hover {
    color: #fff !important;
    box-shadow: none;
}
.custom-modal .popup-btn.danger {
    background: #f27474;
    box-shadow: 0 10px 15px 0 rgba(242, 116, 116, 0.1);
}
.custom-modal .popup-btn.danger:hover {
    background: #ee4545;
}
.custom-modal .popup-btn.success {
    background: #0fb6a6;
    box-shadow: 0 10px 15px 0 rgba(15, 182, 166, 0.1);
}
.custom-modal .popup-btn.success:hover {
    background: #0b877b;
}

.path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
}

.path.circle {
    animation: dash 0.9s ease-in-out;
}

.path.line {
    stroke-dashoffset: 1000;
    animation: dash 0.9s 0.35s ease-in-out forwards;
}

.path.check {
    stroke-dashoffset: -100;
    animation: dashCheck 0.9s 0.35s ease-in-out forwards;
}

body[style],
header[style] {
    padding-right: 0 !important;
}

.modal-open {
    overflow: auto;
    padding-right: 0 !important;
}

.comment-item {
    margin-bottom: 30px;
    transition: all 0.5s ease;
    display: flex;
    align-items: flex-start;
}
.comment-item p {
    margin-bottom: 15px !important;
}
.comment-item .comment-item-title {
    margin-bottom: 8px;
}
.comment-item .img {
    padding: 10px;
    flex: 0 0 120px;
    border-radius: 50%;
    margin-right: 20px;
    display: inline-block;
    border: 2px solid var(--main-color);
}
.comment-item .img img {
    border-radius: 50%;
}
.comment-item .comment-meta {
    margin-bottom: 9px;
}
.comment-item .comment-meta span {
    display: inline-block;
    margin-right: 10px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
}
.comment-item .comment-meta span i {
    margin-right: 10px;
    color: var(--main-color);
}
.comment-item .comment-item-body {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.comment-item .reply-btn {
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 50px;
    display: inline-block;
    color: #06133d;
    transition: all 0.5s ease;
    border: 1px solid #e0e0e0;
}
.comment-item .reply-btn:hover {
    background: var(--main-color);
    border-color: transparent;
    color: #fff !important;
}
.comment-item .reply-btn:hover i {
    color: #fff !important;
}
.comment-item .reply-btn i {
    vertical-align: -1px;
    margin-right: 7px;
    display: inline-block;
    color: var(--main-color);
    transition: all 0.5s ease;
}
.comment-item.sub-comment-item {
    margin-left: 120px;
}

.leave-comment-wrapper .comment-form-group {
    margin-bottom: 20px;
    position: relative;
}
.leave-comment-wrapper .comment-form-group .form-control {
    height: 60px;
    color: #000;
    outline: none;
    border: none;
    padding: 0 30px 0 30px;
    border-radius: 30px;
    transition: all 0.25s ease;
    box-shadow: 0 10px 15px 0 rgba(255, 69, 0, 0.1);
}
.leave-comment-wrapper .comment-form-group .form-control:focus {
    outline: none;
    color: #000;
}
.leave-comment-wrapper .comment-form-group textarea.form-control {
    height: auto;
    padding-top: 20px;
}
.leave-comment-wrapper button {
    border: none;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (575px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
    .comment-item {
        display: block;
    }
    .comment-item .img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
/* ---------------------------------------------------------------- */
/* 07.Pagination
/* ---------------------------------------------------------------- */
.pagination-wrap {
    margin-top: 20px;
}
.pagination-wrap .pagination-link {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    line-height: 50px;
    margin: 0 5px 0 0;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    background: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px 0 rgba(255, 69, 0, 0.15);
}
.pagination-wrap .pagination-link:hover,
.pagination-wrap .pagination-link.active {
    background: var(--main-color);
    color: #fff !important;
}
.pagination-wrap .pagination-link:last-child {
    margin-right: 0;
}

/* ---------------------------------------------------------------- */
/* 08.Preloader
/* ---------------------------------------------------------------- */
#preloader-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5555;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
}
#preloader-wrap .lds-roller {
    width: 80px;
    height: 80px;
    position: relative;
    display: inline-block;
}
#preloader-wrap .lds-roller div {
    transform-origin: 40px 40px;
    animation: ldsRoller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
#preloader-wrap .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
}
#preloader-wrap .lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}
#preloader-wrap .lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}
#preloader-wrap .lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}
#preloader-wrap .lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}
#preloader-wrap .lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}
#preloader-wrap .lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}
#preloader-wrap .lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}
#preloader-wrap .lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}
#preloader-wrap .lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}
#preloader-wrap .lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}
#preloader-wrap .lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}
#preloader-wrap .lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}
#preloader-wrap .lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}
#preloader-wrap .lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}
#preloader-wrap .lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}
#preloader-wrap .lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

/* ---------------------------------------------------------------- */
/* 09.Header
/* ---------------------------------------------------------------- */
.header {
    padding: 10px 0;
    transition: all 400ms cubic-bezier(0.65, 0, 0.35, 1);
}
.header .navbar-brand {
    padding: 0;
    color: #fff;
    margin-right: 0;
    text-transform: capitalize;
}
.header .navbar-brand img {
    display: none;
}
.header .navbar-brand img.logo-transparent {
    display: block;
}
.header .navbar-btn-resp .primary-btn:hover {
    background: #fff;
}
.header .navbar-btn-resp .primary-btn:hover .text {
    color: var(--main-color) !important;
}
.header .navbar-btn-resp .primary-btn:hover .icon {
    border-color: var(--main-color);
}
.header .navbar-btn-resp .primary-btn:hover .icon i {
    background: var(--main-color);
    color: #fff;
}
.header .nav-item .nav-link {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 28px 20px;
    text-transform: uppercase;
    display: block;
    position: relative;
    line-height: 28px;
    opacity: 0.8;
}
.header .nav-item .nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: #fff;
}
.header .nav-item .nav-link.active {
    opacity: 1;
}
.header .nav-item .nav-link:not(.active):after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    z-index: 7;
    content: "";
    position: absolute;
    transform: scaleX(0);
    transform-origin: 100% 0;
    background: #fff;
    transition: transform 0.4s ease;
}
.header .nav-item .nav-link:not(.active):hover:after {
    transform: scaleX(1);
    transform-origin: 0 0;
}
.header .nav-item:hover > a {
    color: #fff;
    opacity: 1;
}
.header .nav-item.dropdown:hover .nav-link:after {
    transform: scaleX(1);
    transform-origin: 0 0;
}
.header .nav-item.dropdown .dropdown-menu {
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 3px 10px 0 rgba(255, 69, 0, 0.1);
}
.header .nav-item.dropdown .dropdown-menu .dropdown-item {
    width: 100%;
    color: #000;
    font-size: 0.875rem;
    display: block;
    font-weight: 400;
    padding: 12px 20px;
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}
.header .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    color: #fff;
    background: var(--main-color);
    border-bottom-color: var(--main-color);
}
.header .nav-item.dropdown .dropdown-menu .dropdown-item:last-child {
    border-bottom: 0;
}
.header .nav-item.dropdown .dropdown-toggle {
    padding-right: 25px !important;
}
.header .nav-item.dropdown .dropdown-toggle:after {
    display: inline-block;
    margin-left: 0;
    vertical-align: initial;
    content: "";
    border: none;
}
.header .nav-item.dropdown .dropdown-toggle:before {
    content: "\f078";
    top: 50%;
    right: 0;
    position: absolute;
    font-weight: 700;
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    transition: all 0.25s ease;
    transform: translateY(-50%);
}
.header .nav-item.dropdown .dropdown-toggle[aria-expanded="true"]:before {
    top: 28px;
    transform: rotate(180deg);
}
.header .navbar-toggler {
    outline: none;
    border: none;
    border-radius: 0;
    padding: 0 10px 0 0;
    box-shadow: none;
}
.header .navbar-toggler .togler-icon-inner span {
    height: 3px;
    margin: 5px;
    width: 30px;
    display: block;
    background: #fff;
    transition: all 0.3s ease;
}
.header .navbar-toggler .togler-icon-inner span:nth-child(2) {
    width: 20px !important;
    margin-left: auto;
}
.header .navbar-toggler .togler-icon-inner span:last-child {
    margin-bottom: 0;
}
.header
    .navbar-toggler[aria-expanded="true"]
    .togler-icon-inner
    span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.header
    .navbar-toggler[aria-expanded="true"]
    .togler-icon-inner
    span:nth-child(2) {
    opacity: 0;
}
.header
    .navbar-toggler[aria-expanded="true"]
    .togler-icon-inner
    span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.header-shrink {
    border-bottom: none;
    padding: 0;
    background: #fff;
    box-shadow: 0 3px 10px 0 rgba(255, 69, 0, 0.1);
}
.header-shrink .navbar-btn-resp .primary-btn:hover {
    background: var(--secondary-color);
}
.header-shrink .navbar-btn-resp .primary-btn:hover .text {
    color: #fff !important;
}
.header-shrink .navbar-btn-resp .primary-btn:hover .icon {
    border-color: var(--main-color);
}
.header-shrink .navbar-btn-resp .primary-btn:hover .icon i {
    background: var(--main-color);
    color: #fff;
}
.header-shrink .nav-item:hover .nav-link {
    color: var(--main-color);
}
.header-shrink .nav-item .nav-link {
    color: #000;
    opacity: 1;
}
.header-shrink .nav-item .nav-link.active,
.header-shrink .nav-item .nav-link:hover {
    color: var(--main-color);
}
.header-shrink .nav-item .nav-link:after {
    background: var(--main-color);
}
.header-shrink .nav-item .nav-link:not(.active):after {
    background: var(--main-color);
}
.header-shrink .navbar-toggler .togler-icon-inner span {
    background-color: var(--secondary-color);
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
    .header .container {
        max-width: 100%;
        padding: 0;
    }
    .header .navbar-brand {
        padding: 10px 0 10px 15px;
    }
    .header .main-menu {
        background: #fff;
    }
    .header .main-menu .navbar-nav {
        max-height: 243px;
        overflow: hidden;
        overflow-y: auto;
    }
    .header .main-menu .navbar-nav .nav-item:nth-child(6) .nav-link {
        border-bottom: 0;
    }
    .header .main-menu .navbar-nav .nav-link {
        color: #000;
        padding: 7px 15px !important;
        transition: all 0.25s linear;
        opacity: 1;
        border-bottom: 1px solid #e0e0e0;
    }
    .header .main-menu .navbar-nav .nav-link:after {
        display: none;
    }
    .header .main-menu .navbar-nav .nav-link.active {
        background: var(--main-color);
        color: #fff !important;
        border-color: var(--main-color);
    }
    .header .main-menu .navbar-nav .nav-link:not(.active):hover {
        background: var(--main-color);
        color: #fff !important;
        border-color: var(--main-color);
    }
    .header .main-menu .nav-item .dropdown-menu {
        background: rgba(255, 69, 0, 0.06);
    }
    .header .main-menu .nav-item .dropdown-menu .dropdown-item:hover {
        background: var(--main-color);
    }
    .header .dropdown-toggle:before {
        top: 23px !important;
        right: 20px !important;
    }
    .header .dropdown-toggle[aria-expanded="true"]:before {
        top: 7px !important;
        transform: rotate(180deg) !important;
    }
    .navbar-btn-resp {
        display: none !important;
    }
    /* Header Shrink */
    .header-shrink .nav-item:hover .nav-link {
        color: var(--main-color);
    }
    .header-shrink .nav-item .nav-link {
        color: #000;
    }
    .header-shrink .nav-item .nav-link.active,
    .header-shrink .nav-item .nav-link:hover {
        color: var(--main-color);
    }
    .header-shrink .nav-item .nav-link:after {
        background: var(--main-color);
    }
    .header-shrink .nav-item .nav-link:not(.active):after {
        background: var(--main-color);
    }
    .header-shrink .togler-icon-inner span {
        background-color: #000;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Large devices (desktop, less than min-width: 992px)
/* ---------------------------------------------------------------- */
@media screen and (min-width: 991.98px) {
    .dropdown-menu {
        border: 0;
        top: 100%;
        left: 0;
        transform-origin: top;
        transform: rotateX(90deg);
        color: #000;
        z-index: 15;
        opacity: 0;
        visibility: hidden;
        display: initial;
        min-width: 230px;
        border-radius: 0;
        position: absolute;
    }
    .dropdown-menu.show {
        opacity: 1;
        top: 100%;
        visibility: visible;
        transition: all 0.25s linear;
        transform: rotateY(0deg);
    }
}
/* ---------------------------------------------------------------- */
/* 10.Hero
/* ---------------------------------------------------------------- */
.hero-banner {
    display: flex;
    min-height: 100vh;
    position: relative;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.3);
    background-position: center center;
}
.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  #header-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the entire header */
  }
  
  .header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
  }
.hero-banner .hero-inner h1 {
    margin-bottom: 30px;
    color: #fff;
}
.hero-banner .hero-inner h2 {
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
    color: #fff;
    margin-bottom: 40px;
    padding-right: 60px;
    font-family: var(--text-font);
}

.hero-img {
    text-align: right;
    border-radius: 50%;
}
.hero-img .border-line-outer,
.hero-img .border-line-inner {
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    border: 2px solid #fff;
}
.hero-img img {
    border-radius: 50%;
    display: inline-block;
    border: 20px solid var(--main-color);
}

.hero-social-list {
    top: 50%;
    right: 30px;
    z-index: 1115;
    position: absolute;
    transform: translateY(-50%);
}
.hero-social-list li {
    margin-bottom: 20px;
    position: relative;
}
.hero-social-list li:last-child {
    margin-bottom: 0;
}
.hero-social-list li a i {
    font-size: 20px;
    color: #fff;
    transition: all 0.5s ease;
}
.hero-social-list li a:hover i {
    color: var(--main-color);
}

.scroll-down-btn,
.hero-email-link {
    bottom: 30px;
    font-size: 0.7rem;
    position: absolute;
    color: #fff;
    letter-spacing: 3px;
    writing-mode: vertical-lr;
    text-transform: uppercase;
    transition: all 0.5s ease;
}
.scroll-down-btn:after,
.hero-email-link:after {
    width: 2px;
    height: 20px;
    content: "";
    margin-top: 15px;
    display: inline-block;
    vertical-align: baseline;
    background: #fff;
}
.scroll-down-btn:hover,
.hero-email-link:hover {
    color: var(--main-color);
}

.scroll-down-btn {
    left: 30px;
}

.hero-email-link {
    right: 30px;
}

#hero-particles-effect {
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#hero-particles-effect .hero-img {
    position: relative;
    z-index: 1;
}

#heroparticles {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

#heroSliderContainer {
    z-index: 32;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background: initial;
}
#heroSliderContainer .vegas-overlay {
    background: var(--secondary-color);
    opacity: 0.5;
}

#hero_video {
    z-index: 35;
    width: 100%;
    overflow: hidden;
    background: none;
    position: relative;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}
#hero_video .hero-overlay {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    position: absolute;
    background: var(--secondary-color);
}
#hero_video .container {
    z-index: 27;
    position: relative;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
    .hero-banner {
        text-align: center;
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 110px;
    }
    .hero-banner .row {
        justify-content: center;
    }
    .hero-banner .hero-inner h2 {
        padding-right: 0;
    }
    .hero-banner .hero-img-resp {
        text-align: center;
    }
    .hero-banner .hero-img-resp .hero-img {
        margin-top: 30px;
        max-width: 250px;
        display: inline-block;
    }
    .hero-banner .hero-img-resp .hero-img img {
        border: 10px solid var(--main-color);
    }
    .hero-social-list,
    .hero-email-link,
    .scroll-down-btn {
        display: none;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
    .hero-banner .hero-inner h1 {
        font-size: 1.467rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    .hero-banner .hero-inner h2 {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}
/* ---------------------------------------------------------------- */
/* 11.About
/* ---------------------------------------------------------------- */
.about-inner > h6 {
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    color: #fff;
    padding: 8px 18px;
    margin-bottom: 10px;
    display: inline-block;
    background: var(--main-color);
}
.about-inner h2 {
    margin-bottom: 20px;
}
.about-inner > p {
    margin-bottom: 30px;
}
.about-inner ul {
    margin-bottom: 38px;
}
.about-inner ul li {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
}
.about-inner ul li:last-child {
    margin-bottom: 0;
}
.about-inner ul li .text h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.about-img {
    z-index: 1;
    position: relative;
    display: inline-block;
}
.about-img img {
    border-radius: 50px;
    transition: all 0.5s ease;
    border: 20px solid var(--main-color);
}
.about-img:hover img {
    border-color: var(--secondary-color);
}
.about-img:hover .about-video-btn {
    background: var(--secondary-color);
}
.about-img:hover .about-video-btn ~ .video-border-line:after,
.about-img:hover .about-video-btn ~ .video-border-line:before {
    border-color: var(--secondary-color);
}
.about-img .about-video-btn {
    top: 50%;
    right: 40%;
    width: 100px;
    height: 100px;
    font-size: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    position: absolute;
    color: #fff;
    transition: all 0.5s ease;
    background: var(--main-color);
    transform: translateY(-50%);
}
.about-img .about-video-btn:hover {
    background: var(--secondary-color);
}
.about-img .about-video-btn:hover ~ .video-border-line:after,
.about-img .about-video-btn:hover ~ .video-border-line:before {
    border-color: var(--secondary-color);
}
.about-img .video-border-line {
    top: 50%;
    z-index: -5;
    right: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    position: absolute;
    transform: translateY(-50%);
}
.about-img .video-border-line:after,
.about-img .video-border-line:before {
    top: 50%;
    content: "";
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translateY(-50%);
    border: 2px solid var(--main-color);
}
.about-img .video-border-line:after {
    right: -10px;
    width: 120px;
    height: 120px;
    line-height: 120px;
}
.about-img .video-border-line:before {
    right: -20px;
    width: 140px;
    height: 140px;
    line-height: 140px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
    .about-img {
        margin-bottom: 30px;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 576px) {
    .about-inner h2 {
        font-size: 1.467rem;
        line-height: 1.4;
    }
    .about-inner .mb-resp-15 {
        margin-bottom: 15px;
    }
    .about-img .video-border-line {
        z-index: initial;
        pointer-events: none;
    }
    .about-img .about-video-btn {
        z-index: 1;
    }
    .about-img .about-video-btn,
    .about-img .video-border-line {
        right: initial;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
.partners-section {
    background: #f2f2f2;
}

.partners-section .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

/* .history-wrapper .history-item:nth-child(odd) .history-date {
    margin-top: 40px;
    margin-bottom: 40px;
}
.history-wrapper .history-item:nth-child(even) .history-date {
    margin: 40px auto;
}
.history-wrapper .history-item:nth-child(even) .history-date-wrap {
    text-align: center;
} */
.history-wrapper .history-item .history-date {
    margin: 40px auto;
}
.history-wrapper .history-item .history-date-wrap {
    text-align: center;
}
.history-wrapper .history-item:last-child .history-date {
    margin-bottom: 0;
}
.history-wrapper .history-item:last-child .history-date:before {
    display: none;
}
.history-wrapper .history-date {
    width: 120px;
    height: 120px;
    font-size: 30px;
    font-family: var(--title-font);
    border-radius: 50%;
    text-align: center;
    line-height: 120px;
    font-weight: 700;
    color: #fff;
    background: #000;
    display: inline-block;
    position: relative;
}
.history-wrapper .history-date:after {
    content: "";
    width: 10px;
    height: 45px;
    display: block;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
}
.history-wrapper .history-date:before {
    content: "";
    width: 10px;
    height: 40px;
    display: block;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
}
.history-wrapper .history-item-inner {
    display: flex;
    padding: 30px;
    align-items: center;
    box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
}
.history-wrapper .history-item-inner .history-img {
    flex: 0 0 40%;
    margin-right: 30px;
    position: relative;
}
.history-wrapper .history-item-inner .history-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
    .history-wrapper .history-item-inner {
        display: block;
    }
    .history-wrapper .history-item-inner .history-img {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .history-wrapper .history-item-inner .history-text h2 {
        font-size: 1.467rem;
        line-height: 1.4;
    }
    .history-wrapper .history-item .history-date-wrap {
        text-align: left !important;
    }
}
/* ---------------------------------------------------------------- */
/* 12.Resume
/* ---------------------------------------------------------------- */
.resume-item {
    padding: 30px;
    display: flex;
    margin-bottom: 24px;
    /* align-items: center; */
    height: 230px;
    border-radius: 50px;
    background: #fff;
    transition: all 0.5s ease;
    justify-content: space-between;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15);
}
.resume-item .body {
    display: flex;
}
.resume-item .body .text h6 {
    font-family: var(--text-font);
    margin-bottom: 10px;
    color: var(--main-color);
    text-transform: uppercase;
}
.resume-item .body .text h5 {
    margin-bottom: 10px;
}
.resume-item .body .text span {
    font-weight: 400; /* change 600 */
    color: var(--secondary-color);
    /* text-transform: uppercase; */
}
.resume-item .body .icon-outer-line {
    padding: 10px;
    height: 110px;
    width: 110px;
    margin-right: 20px;
    border-radius: 50%;
    transition: all 0.5s ease;
    border: 2px solid var(--main-color);
}
.resume-item .body .icon-outer-line .icon-inner-line {
    padding: 10px;
    border-radius: 50%;
    transition: all 0.5s ease;
    border: 2px solid var(--main-color);
}
.resume-item .body .icon-outer-line .icon-inner-line span {
    width: 60px;
    height: 60px;
    font-size: 25px;
    color: #fff;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    transition: all 0.5s ease;
    background: var(--main-color);
}
.resume-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
}
.resume-item:hover .icon-outer-line {
    border: 2px solid var(--secondary-color);
}
.resume-item:hover .icon-outer-line .icon-inner-line {
    border: 2px solid var(--secondary-color);
}
.resume-item:hover .icon-outer-line .icon-inner-line span {
    background: var(--secondary-color);
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
    .resume-item .body {
        display: block;
    }
    .resume-item .body .text {
        margin-top: 15px;
    }
    .resume-item .body .icon-outer-line {
        margin: 0;
    }
}
/* ---------------------------------------------------------------- */
/* 13.Services
/* ---------------------------------------------------------------- */
.services-item {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
    border-radius: 50px;
    background: #fff;
    transition: all 0.5s ease;
    padding: 30px 30px 50px 30px;
    box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
}
.services-item .services-bg-img {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    visibility: hidden;
    position: absolute;
    border-radius: 50px;
    transition: all 0.5s ease;
    transform: scale(0.7);
}
.services-item .body {
    z-index: 1;
    position: relative;
}
.services-item .body h4 {
    font-size: 50px;
    margin-bottom: 10px;
    color: var(--main-color);
}
.services-item .body h5 {
    margin-bottom: 15px;
}
.services-item .body p {
    margin-bottom: 30px;
}
.services-item .body a,
.services-item .body i {
    transition: all 0.5s ease;
}
.services-item .body a {
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
}
.services-item .body a i {
    margin-left: 5px;
    color: var(--main-color);
}
.services-item .body a:hover {
    color: var(--main-color);
    text-decoration: underline;
}
.services-item .body a:hover i {
    margin-left: 10px;
}
.services-item .icon {
    left: 50%;
    bottom: -30px;
    position: absolute;
    transform: translateX(-50%);
}
.services-item .icon span {
    width: 60px;
    height: 60px;
    font-size: 20px;
    position: relative;
    line-height: 60px;
    border-radius: 50%;
    color: #fff;
    background: var(--main-color);
    transition: all 0.5s ease;
}
.services-item .icon-border {
    left: 50%;
    bottom: 0;
    z-index: -3;
    position: absolute;
    margin-left: 30px;
    transform: translateX(-50%);
}
.services-item .icon-border:after,
.services-item .icon-border:before {
    top: 0;
    content: "";
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translateY(-50%);
    border: 2px solid var(--main-color);
}
.services-item .icon-border:after {
    right: -10px;
    width: 80px;
    height: 80px;
    line-height: 80px;
}
.services-item .icon-border:before {
    right: -20px;
    width: 100px;
    height: 100px;
    line-height: 100px;
}
.services-item:hover {
    background: var(--secondary-color);
}
.services-item:hover .services-bg-img {
    opacity: 0.15;
    visibility: visible;
    transform: scale(1);
}
.services-item:hover .icon-border:after,
.services-item:hover .icon-border:before {
    border: 2px solid var(--secondary-color);
}
.services-item:hover .icon span {
    background: var(--secondary-color);
}
.services-item:hover .body h4,
.services-item:hover .body h5,
.services-item:hover .body p,
.services-item:hover .body a {
    color: #fff;
}
.services-item:hover .body p {
    opacity: 0.75;
}
.services-item:hover .body a i {
    margin-left: 5px;
    color: var(--main-color);
}
.services-item:hover .body a:hover {
    color: var(--main-color);
    text-decoration: underline;
}
.services-item:hover .body a:hover i {
    margin-left: 10px;
}

.services-detail-top {
    position: relative;
}
.services-detail-top img {
    border-radius: 30px;
}
.services-detail-top span {
    bottom: -60px;
    left: 0;
    width: 120px;
    height: 120px;
    color: #fff;
    line-height: 100px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    background: var(--main-color);
    border: 10px solid #fff;
    position: absolute;
}

.services-detail-inner {
    margin-top: 70px;
}
.services-detail-inner h2 {
    margin-bottom: 15px;
}
.services-detail-inner p {
    margin-bottom: 15px;
}
.services-detail-inner p:last-of-type {
    margin-bottom: 30px;
}

.web-design-process {
    border-radius: 30px;
    background: var(--secondary-color);
}
.web-design-process .design-process-video {
    position: relative;
    overflow: hidden;
}
.web-design-process .design-process-video img {
    border-radius: 30px 0 0 30px;
}
.web-design-process .design-process-video .design-process-video-btn {
    top: 50%;
    left: 50%;
    padding: 10px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    color: #fff;
    display: inline-block;
    transition: all 0.5s ease;
    border: 2px solid #fff;
    transform: translate(-50%, -50%);
}
.web-design-process .design-process-video .design-process-video-btn i {
    width: 80px;
    height: 80px;
    font-size: 16px;
    color: var(--main-color);
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.5s ease;
    background: #fff;
}
.web-design-process .design-process-video .design-process-video-btn:hover {
    border-color: var(--main-color);
}
.web-design-process .design-process-video .design-process-video-btn:hover i {
    color: #fff !important;
    background: var(--main-color);
}
.web-design-process .design-process-inner {
    padding: 30px 30px 30px 6px;
}
.web-design-process .design-process-inner h5 {
    color: #fff;
    margin-bottom: 20px;
}
.web-design-process .design-process-inner ul li {
    margin-bottom: 10px;
    color: #fff;
}
.web-design-process .design-process-inner ul li:last-child {
    margin-bottom: 0;
}
.web-design-process .design-process-inner ul li i {
    margin-right: 15px;
    color: var(--main-color);
    vertical-align: middle;
    display: inline-block;
}

.subscribe-newsletter .icon {
    margin-bottom: 20px;
}
.subscribe-newsletter .icon span {
    color: var(--main-color);
    font-size: 50px;
}
.subscribe-newsletter .subscribe-newsletter-text {
    padding: 30px;
    background: var(--secondary-color);
    border-radius: 20px;
}
.subscribe-newsletter .subscribe-newsletter-text h5 {
    margin-bottom: 15px;
}
.subscribe-newsletter .subscribe-newsletter-text p {
    opacity: 0.8;
    margin-bottom: 20px;
}
.subscribe-newsletter .subscribe-newsletter-text p,
.subscribe-newsletter .subscribe-newsletter-text h5 {
    color: #fff;
}
.subscribe-newsletter .form-newsletter {
    position: relative;
}
.subscribe-newsletter .form-newsletter input {
    outline: none;
    border: none;
    width: 100%;
    height: 60px;
    color: #fff;
    padding: 0 50px 0 30px;
    border-radius: 30px;
    background: transparent;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.subscribe-newsletter .form-newsletter input:focus {
    outline: none;
    color: #fff;
}
.subscribe-newsletter .form-newsletter button {
    top: 0;
    right: 0;
    z-index: 4;
    border: none;
    outline: none;
    height: 100%;
    width: 60px;
    border-radius: 50px;
    overflow: hidden;
    color: #fff;
    position: absolute;
    background: transparent;
    transition: all 0.5s ease;
}
.subscribe-newsletter .form-newsletter button:hover {
    color: var(--main-color) !important;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
    .web-design-process .design-process-video img {
        border-radius: 30px !important;
    }
    .web-design-process .design-process-inner {
        padding: 30px !important;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 576px) {
    .services-detail-inner > h2 {
        font-size: 1.467rem;
        line-height: 1.4;
    }
}
/* ---------------------------------------------------------------- */
/* 14.Counters
/* ---------------------------------------------------------------- */
#counters {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--main-color);
    background-image: url(../img/bg/counter-bg.png);
}

.counter-item {
    margin-bottom: 30px;
    text-align: center;
}
.counter-item h3 {
    font-size: 50px;
    color: #fff;
    margin-bottom: 15px;
}
.counter-item p {
    font-weight: 500;
    color: #fff;
    font-size: 18px;
}

/* ---------------------------------------------------------------- */
/* 15.How I Work
/* ---------------------------------------------------------------- */
.how-i-work-item {
    z-index: 1;
    text-align: center;
    position: relative;
    margin-bottom: 70px;
}
.how-i-work-item .arrow-dashed-img {
    top: -50px;
    right: -87px;
    position: absolute;
}
.how-i-work-item .number {
    left: 50%;
    top: -30px;
    text-align: center;
    position: absolute;
    transform: translateX(-50%);
}
.how-i-work-item .number span {
    width: 80px;
    height: 80px;
    font-size: 32px;
    font-weight: 700;
    position: relative;
    line-height: 80px;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-family: var(--title-font);
    background: #1b1b1b;
    transition: all 0.5s ease;
}
.how-i-work-item .number-border {
    left: 50%;
    top: 10px;
    z-index: -3;
    position: absolute;
    margin-left: 30px;
    transform: translateX(-50%);
}
.how-i-work-item .number-border:after,
.how-i-work-item .number-border:before {
    top: 0;
    content: "";
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translateY(-50%);
    border: 2px solid #1b1b1b;
}
.how-i-work-item .number-border:after {
    right: -20px;
    width: 100px;
    height: 100px;
    line-height: 100px;
}
.how-i-work-item .number-border:before {
    right: -30px;
    width: 120px;
    height: 120px;
    line-height: 120px;
}
.how-i-work-item .img {
    margin-bottom: 50px;
    border-radius: 50%;
}
.how-i-work-item .img img {
    border-radius: 50%;
    transition: all 0.5s ease;
    border: 20px solid #1b1b1b;
}
.how-i-work-item .text {
    padding: 30px;
    text-align: center;
    position: relative;
    border-radius: 80px;
    background: #1b1b1b;
    transition: all 0.5s ease;
}
.how-i-work-item .text:after {
    top: -60px;
    left: 50%;
    content: "";
    position: absolute;
    border: 30px solid;
    transition: all 0.5s ease;
    border-color: transparent transparent #1b1b1b transparent;
    transform: translate(-50%);
}
.how-i-work-item .text h5 {
    color: #fff;
}
.how-i-work-item:hover .number span {
    background: var(--main-color);
}
.how-i-work-item:hover .img img {
    border-color: var(--main-color);
}
.how-i-work-item:hover .text {
    background: var(--main-color);
}
.how-i-work-item:hover .text:after {
    border-color: transparent transparent var(--main-color) transparent;
}
.how-i-work-item:hover .number-border:after,
.how-i-work-item:hover .number-border:before {
    border-color: var(--main-color);
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
    .arrow-dashed-img {
        display: none;
    }
}
/* ---------------------------------------------------------------- */
/* 16.My Skills
/* ---------------------------------------------------------------- */
.skills-inner > h6 {
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    color: #fff;
    padding: 8px 18px;
    margin-bottom: 10px;
    display: inline-block;
    background: var(--main-color);
}
.skills-inner h2 {
    margin-bottom: 20px;
}
.skills-inner > p {
    margin-bottom: 30px;
}
.skills-inner ul {
    margin-bottom: 30px;
}
.skills-inner ul li {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}
.skills-inner ul li:last-child {
    margin-bottom: 0;
}
.skills-inner ul li:before {
    content: "\f00c";
    font-weight: 700;
    vertical-align: middle;
    margin-right: 15px;
    display: inline-block;
    color: var(--main-color);
    font-family: "Font Awesome 5 Free";
}
.skills-inner .skills-item {
    text-align: center;
    border-radius: 30px;
    background: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
}
.skills-inner .skills-item .skills-item-text h5 {
    padding: 20px;
    font-size: 20px;
    color: #fff;
    border-radius: 100px;
    background: var(--main-color);
}
.skills-inner .skills-item .body {
    padding: 30px;
}
.skills-inner .skills-item .body h2:after {
    content: "%";
    font-family: var(--title-font);
    margin-left: 10px;
    display: inline-block;
}
.skills-inner .skills-item .skills-progress-bar {
    height: 7px;
    position: relative;
    background: var(--secondary-color);
    margin-top: 10px;
    overflow: hidden;
}
.skills-inner .skills-item .skills-progress-bar .skills-progress-value {
    top: 0;
    left: 0;
    height: 100%;
    position: absolute;
    background: var(--main-color);
}

.skills-img {
    z-index: 1;
    position: relative;
    display: inline-block;
}
.skills-img img {
    border-radius: 50px;
    transition: all 0.5s ease;
    border: 20px solid var(--main-color);
}
.skills-img:hover img {
    border-color: var(--secondary-color);
}
.skills-img:hover .icon-check {
    background: var(--secondary-color);
}
.skills-img:hover .icon-border-line:after,
.skills-img:hover .icon-border-line:before {
    border-color: var(--secondary-color);
}
.skills-img .icon-check {
    top: 50%;
    right: -40px;
    width: 100px;
    height: 100px;
    font-size: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    position: absolute;
    color: #fff;
    transition: all 0.5s ease;
    background: var(--main-color);
    transform: translateY(-50%);
}
.skills-img .icon-border-line {
    top: 50%;
    z-index: -5;
    right: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    position: absolute;
    transform: translateY(-50%);
}
.skills-img .icon-border-line:after,
.skills-img .icon-border-line:before {
    top: 50%;
    content: "";
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translateY(-50%);
    border: 2px solid var(--main-color);
}
.skills-img .icon-border-line:after {
    right: -10px;
    width: 120px;
    height: 120px;
    line-height: 120px;
}
.skills-img .icon-border-line:before {
    right: -20px;
    width: 140px;
    height: 140px;
    line-height: 140px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
    .skills-img {
        margin-bottom: 30px;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 576px) {
    .skills-item-resp {
        margin-top: 24px;
    }
    .skills-item-resp:first-child {
        margin-top: 0;
    }
    .skills-inner > h2 {
        font-size: 1.467rem;
        line-height: 1.4;
    }
    .skills-inner .mb-resp-15 {
        margin-bottom: 15px;
    }
    .skills-img .icon-check {
        display: none;
    }
    .skills-img .icon-border-line {
        display: none;
    }
}
/* ---------------------------------------------------------------- */
/* 17.Portfolio
/* ---------------------------------------------------------------- */
.portfolio-filter {
    text-align: right;
    margin-bottom: 50px;
}
.portfolio-filter a {
    font-size: 14px;
    font-weight: 600;
    padding: 9px 22px;
    color: var(--secondary-color);
    margin-right: 10px;
    border-radius: 100px;
    display: inline-block;
    background: #fff;
    text-transform: uppercase;
    transition: all 0.5s ease;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15);
}
.portfolio-filter a:last-child {
    margin-right: 0;
}
.portfolio-filter a:hover,
.portfolio-filter a.current {
    background: var(--main-color);
    color: #fff;
}

.portfolio-item {
    margin-bottom: 24px;
}
.portfolio-item .portfolio-item-inner {
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15);

}
.portfolio-item .portfolio-item-img {
    z-index: 1;
    border-radius: 30px;
    position: relative;
}
.portfolio-item .portfolio-item-img:before {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    content: "";
    height: 100%;
    visibility: hidden;
    position: absolute;
    border-radius: 30px;
    transition: all 0.5s ease;
    background: var(--secondary-color);
}
.portfolio-item .portfolio-item-img img {
    border-radius: 30px;
}
.portfolio-item .portfolio-item-img .portfolio-zoom-link {
    top: 50%;
    left: 50%;
    width: 80px;
    opacity: 0;
    height: 80px;
    font-size: 25px;
    line-height: 80px;
    position: absolute;
    text-align: center;
    border-radius: 50%;
    visibility: hidden;
    color: var(--main-color);
    background: #fff;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}
.portfolio-item .portfolio-item-img .portfolio-zoom-link:after,
.portfolio-item .portfolio-item-img .portfolio-zoom-link:before {
    top: 40px;
    content: "";
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translateY(-50%);
    border: 2px solid #fff;
}
.portfolio-item .portfolio-item-img .portfolio-zoom-link:after {
    right: -10px;
    width: 100px;
    height: 100px;
    line-height: 100px;
}
.portfolio-item .portfolio-item-img .portfolio-zoom-link:before {
    right: -20px;
    width: 120px;
    height: 120px;
    line-height: 120px;
}
.portfolio-item .portfolio-item-img .portfolio-zoom-link:hover {
    color: #fff;
    background: var(--main-color);
}
.portfolio-item .portfolio-item-img .portfolio-zoom-link:hover:after,
.portfolio-item .portfolio-item-img .portfolio-zoom-link:hover:before {
    border-color: var(--main-color);
}
.portfolio-item .body {
    padding: 30px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    justify-content: space-between;
}
.portfolio-item .body .portfolio-details span {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: var(--main-color);
    text-transform: uppercase;
}
.portfolio-item .body .portfolio-details h5 a {
    color: var(--secondary-color);
}
.portfolio-item .body .portfolio-details h5 a:hover {
    color: var(--main-color);
    text-decoration: underline;
}
.portfolio-item .body .portfolio-link {
    padding: 10px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.5s ease;
    /* border: 2px solid var(--secondary-color); */
}
.portfolio-item .body .portfolio-link i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    transition: all 0.5s ease;
    background: var(--secondary-color);
}
.portfolio-item .body .portfolio-link:hover {
    border-color: var(--main-color);
}
.portfolio-item .body .portfolio-link:hover i {
    background: var(--main-color);
}
.portfolio-item:hover .portfolio-item-img:before {
    opacity: 0.5;
    visibility: visible;
}
.portfolio-item:hover .portfolio-item-img .portfolio-zoom-link {
    opacity: 1;
    visibility: visible;
}

.call-to-action {
    margin-top: 76px;
    padding: 100px 0;
    background: var(--secondary-color);
}
.call-to-action .call-to-action-inner h2 {
    color: #fff;
}
.call-to-action .call-to-action-btn {
    text-align: right;
}

#portfolioCarousel {
    position: relative;
}
#portfolioCarousel img {
    border-radius: 30px;
}

.portfolio-single-inner {
    margin-top: 20px;
    margin-bottom: 20px;
}
.portfolio-single-inner h4 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}
.portfolio-single-inner p {
    margin-bottom: 24px;
}
.portfolio-single-inner .author-meta {
    margin-bottom: 20px;
}
.portfolio-single-inner .author-meta a {
    color: var(--secondary-color);
    margin-right: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.portfolio-single-inner .author-meta a:after {
    content: "";
    margin-left: 15px;
    border-left: 1px solid var(--main-color);
}
.portfolio-single-inner .author-meta a:last-child {
    margin-right: 0;
}
.portfolio-single-inner .author-meta a:last-child:after {
    display: none;
}
.portfolio-single-inner .author-meta a:hover {
    color: var(--main-color);
    text-decoration: underline;
}
.portfolio-single-inner .author-meta a span {
    color: var(--main-color);
    display: inline-block;
    margin-right: 15px;
}

.portfolio-grid-img img {
    border-radius: 30px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
    .portfolio-filter {
        text-align: left;
    }
    .call-to-action .call-to-action-inner {
        margin-bottom: 30px;
    }
    .call-to-action .call-to-action-inner h2 {
        color: #fff;
    }
    .call-to-action .call-to-action-btn {
        text-align: left;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
    .portfolio-item .body {
        display: block;
    }
    .portfolio-item .body .portfolio-details {
        margin-bottom: 20px;
    }
    .portfolio-grid-img {
        margin-bottom: 15px;
    }
    .portfolio-grid-img:last-child {
        margin-bottom: 0;
    }
    .call-to-action .call-to-action-inner > h2 {
        font-size: 1.467rem;
        line-height: 1.4;
    }
}
/* ---------------------------------------------------------------- */
/* 18.My Team
/* ---------------------------------------------------------------- */
#team .section-heading {
    margin-bottom: 26px;
}

.team-card {
    position: relative;
    margin-top: 124px;
}
.team-card .img {
    left: 50%;
    top: -100px;
    padding: 10px;
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translateX(-50%);
    border: 10px solid var(--secondary-color);
}
.team-card .img img {
    border-radius: 50%;
    position: relative;
}
.team-card .body {
    text-align: center;
    border-radius: 80px;
    transition: all 0.5s ease;
    background: var(--secondary-color);
    padding: 150px 30px 30px 30px;
}
.team-card .body .text {
    margin-bottom: 30px;
}
.team-card .body .text h5 {
    color: #fff;
    margin-bottom: 10px;
}
.team-card .body .text p {
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}
.team-card .body .social ul li {
    display: inline-block;
    margin-right: 10px;
}
.team-card .body .social ul li a {
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #fff;
    transition: all 0.5s ease;
}
.team-card .body .social ul li a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: var(--main-color);
    background: #fff;
    transition: all 0.5s ease;
}
.team-card .body .social ul li a:hover {
    border-color: var(--secondary-color);
}
.team-card .body .social ul li a:hover i {
    color: #fff;
    background: var(--secondary-color);
}
.team-card:hover .body {
    background: var(--main-color);
}
.team-card:hover .img {
    border-color: var(--main-color);
}

.pricing-card {
    position: relative;
    margin-top: 124px;
}
.pricing-card .price-text {
    left: 50%;
    top: -100px;
    padding: 10px;
    width: 200px;
    height: 200px;
    line-height: 200px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translateX(-50%);
    border: 10px solid var(--secondary-color);
}
.pricing-card .price-text h5 {
    border-radius: 50%;
    width: 100%;
    display: block;
    height: 100%;
    display: flex;
    font-size: 40px;
    color: var(--secondary-color);
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
}
.pricing-card .body {
    text-align: center;
    border-radius: 80px;
    transition: all 0.5s ease;
    background: var(--secondary-color);
    padding: 110px 30px 30px 30px;
}
.pricing-card .body .pricing-text {
    margin-bottom: 30px;
}
.pricing-card .body .pricing-text h5 {
    color: #fff;
    margin-bottom: 10px;
}
.pricing-card .body .pricing-text span {
    padding: 6px 20px;
    background: #fff;
    display: inline-block;
    color: var(--secondary-color);
    position: relative;
}
.pricing-card .body .pricing-text span::before,
.pricing-card .body .pricing-text span:after {
    content: "";
    top: 50%;
    vertical-align: middle;
    border: 18.5px solid white;
    display: inline-block;
    position: absolute;
    transform: translateY(-50%);
}
.pricing-card .body .pricing-text span:after {
    right: -36px;
    border-color: transparent transparent transparent #fff;
}
.pricing-card .body .pricing-text span:before {
    left: -36px;
    border-color: transparent #fff transparent transparent;
}
.pricing-card .body .pricing-list {
    margin-bottom: 30px;
}
.pricing-card .body .pricing-list li {
    display: block;
    margin-bottom: 8px;
    color: #fff;
}
.pricing-card:hover .body {
    background: var(--main-color);
}
.pricing-card:hover .primary-btn {
    background: #000;
}
.pricing-card:hover .primary-btn:hover {
    background: #fff;
}
.pricing-card:hover .primary-btn:hover .text {
    color: #000 !important;
}
.pricing-card:hover .price-text {
    border-color: var(--main-color);
}
.pricing-card:hover .price-text h5 {
    border-radius: 50%;
    width: 100%;
    display: block;
    height: 100%;
    display: flex;
    font-size: 40px;
    color: var(--secondary-color);
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
}

/* ---------------------------------------------------------------- */
/* 19.FAQ
/* ---------------------------------------------------------------- */
.accordion-item {
    margin-bottom: 30px;
    background: #fff;
    border: none;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 10px 30px 0 rgba(255, 69, 0, 0.1);
}
.accordion-item:last-child {
    margin-bottom: 0;
}
.accordion-item .accordion-item-header a {
    color: #000;
    padding: 30px 60px 30px 30px;
    display: block;
    position: relative;
    font-family: var(--title-font);
    font-weight: 700;
}
.accordion-item .accordion-item-header a i {
    margin-right: 15px;
    color: #000;
}
.accordion-item .accordion-item-header a:after {
    content: "\f067";
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--main-color);
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    font-weight: 700;
}
.accordion-item .accordion-item-header a[aria-expanded="true"]:after {
    content: "\f068";
}
.accordion-item .accordion-body {
    padding: 30px;
    background: #fff;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
    .accordion-resp-mt {
        margin-top: 30px;
    }
}
#borgsection {
    z-index: 42;
    overflow: hidden;
    padding: 100px 0 120px 0;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
#borgsection:before {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.75;
    z-index: -42;
    position: absolute;
    background: var(--secondary-color);
}
#borgsection .borgsection-inner {
    position: relative;
    z-index: 18;
    text-align: center;
}
#borgsection .borgsection-inner h3 {
    color: #fff;
    font-size: 35px;
    margin-bottom: 50px;
}
#borgsection .borgsection-inner .borgsection-video-btn {
    width: 100px;
    height: 100px;
    font-size: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    color: #fff;
    display: inline-block;
    transition: all 0.5s ease;
    background: var(--main-color);
    position: relative;
}
#borgsection .borgsection-inner .borgsection-video-btn:after,
#borgsection .borgsection-inner .borgsection-video-btn:before {
    top: 50%;
    content: "";
    position: absolute;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translateY(-50%);
    /* border: 2px solid var(--main-color); */
}
#borgsection .borgsection-inner .borgsection-video-btn:after {
    right: -10px;
    width: 120px;
    height: 120px;
    line-height: 120px;
}
#borgsection .borgsection-inner .borgsection-video-btn:before {
    right: -20px;
    width: 140px;
    height: 140px;
    line-height: 140px;
}
#borgsection .borgsection-inner .borg-video-wrap {
    position: relative;
}

/* ---------------------------------------------------------------- */
/* 19.Testimonial
/* ---------------------------------------------------------------- */
.testimonial-item {
    padding: 30px;
    display: flex;
    position: relative;
    margin-bottom: 24px;
    border-radius: 50px;
    background: #fff;
    transition: all 0.5s ease;
    justify-content: space-between;
    box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
}
.testimonial-item .img {
    padding: 10px;
    height: 100px;
    flex: 0 0 100px;
    margin-right: 15px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid var(--main-color);
}
.testimonial-item .img img {
    border-radius: 50%;
}
.testimonial-item .body h5 {
    margin-bottom: 10px;
}
.testimonial-item .body span {
    display: block;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--main-color);
}
.testimonial-item .body p {
    margin-bottom: 15px;
}
.testimonial-item .body .rating i {
    margin-right: 2px;
    color: var(--main-color);
}
.testimonial-item .body .rating i:last-child {
    margin-right: 0;
}
.testimonial-item .quote-icon {
    top: 30px;
    right: 30px;
    padding: 10px;
    position: absolute;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.5s ease;
    border: 2px solid var(--main-color);
}
.testimonial-item .quote-icon i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.5s ease;
    background: var(--main-color);
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
    .testimonial-item {
        display: block;
    }
    .testimonial-item .img {
        height: auto;
        margin-right: 0;
        margin-bottom: 15px;
    }
}
/* ---------------------------------------------------------------- */
/* 20.Blog
/* ---------------------------------------------------------------- */
.blog-item {
    margin-bottom: 24px;
    align-items: center;
    border-radius: 50px;
    background: #fff;
    transition: all 0.5s ease;
    justify-content: space-between;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15);
}
.blog-item .blog-img {
    overflow: hidden;
    position: relative;
    border-radius: 30px;
}
.blog-item .blog-img img {
    border-radius: 30px;
    transition: all 0.5s ease;
}
.blog-item .blog-img:hover img {
    transform: scale(1.1);
}
.blog-item .blog-body {
    position: relative;
    padding: 50px 30px 30px 30px;
}
.blog-item .blog-body .blog-author-img {
    top: -40px;
    left: 30px;
    font-size: 14px;
    position: absolute;
    border-radius: 50%;
    border: 10px solid #fff;
}
.blog-item .blog-body .blog-meta {
    margin-bottom: 15px;
}
.blog-item .blog-body .blog-meta a {
    font-size: 15px;
    margin-right: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}
.blog-item .blog-body .blog-meta a i {
    margin-right: 10px;
    color: var(--main-color);
}
.blog-item .blog-body .blog-meta a:hover {
    color: var(--main-color);
    text-decoration: underline;
}
.blog-item .blog-body h5 {
    margin-bottom: 20px;
}
.blog-item .blog-body h5 a {
    color: inherit;
}
.blog-item .blog-body h5 a:hover {
    text-decoration: underline;
    color: var(--main-color);
}
.blog-item .blog-body .blog-link {
    color: var(--main-color);
    font-weight: 600;
}
.blog-item .blog-body .blog-link:hover {
    text-decoration: underline;
}
.blog-item .blog-body .blog-link i {
    margin-left: 5px;
}
.blog-item .blog-body p {
    margin-bottom: 15px;
}

.widget-sidebar .sidebar-details-list ul li {
    margin-bottom: 15px;
}
.widget-sidebar .sidebar-details-list ul li:last-child {
    margin-bottom: 0;
}
.widget-sidebar .sidebar-details-list ul li h6 span {
    font-weight: 400;
    display: inline-block;
    font-family: var(--text-font);
}
.widget-sidebar .sidebar-details-list ul li h6 span:before {
    content: ":";
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 700;
    display: inline-block;
}
.widget-sidebar .sidebar-widgets {
    margin-bottom: 24px;
}
.widget-sidebar .sidebar-widgets .blog-search-btn {
    top: 0;
    right: 0;
    z-index: 4;
    border: none;
    width: 60px;
    outline: none;
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
    color: #fff;
    position: absolute;
    background: var(--main-color);
    transition: all 0.5s ease;
}
.widget-sidebar .sidebar-widgets .blog-search-btn:hover {
    color: #fff !important;
    background: var(--secondary-color);
}
.widget-sidebar .sidebar-widgets .blog-search-bar {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 50px;
    background: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
}
.widget-sidebar .sidebar-widgets .blog-search-bar .search-form-control {
    width: 100%;
    display: block;
    border: none;
    border-radius: 30px;
    padding: 18px 78px 18px 20px;
    transition: all 0.5s ease;
}
.widget-sidebar .sidebar-widgets:last-child {
    margin-bottom: 0;
}
.widget-sidebar .recent-post-item {
    margin-bottom: 20px;
}
.widget-sidebar .recent-post-item:last-child {
    margin-bottom: 0;
}
.widget-sidebar .recent-post-item .recent-post-img {
    float: left;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 50%;
}
.widget-sidebar .recent-post-item .recent-post-img img {
    border-radius: 50%;
    transition: all 0.5s ease;
}
.widget-sidebar .recent-post-item .recent-post-img img:hover {
    transform: scale(1.2);
}
.widget-sidebar .recent-post-item .recent-post-body .recent-post-title {
    margin-bottom: 14px;
    line-height: 1.5;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}
.widget-sidebar .recent-post-item .recent-post-body .recent-post-title:hover {
    color: var(--main-color);
    text-decoration: underline;
}
.widget-sidebar .recent-post-item .recent-post-body .recent-post-date i {
    margin-right: 8px;
    color: var(--main-color);
}
.widget-sidebar .sidebar-category-list {
    margin-bottom: 20px;
    border-radius: 20px;
    background: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
}
.widget-sidebar .sidebar-category-list li:last-child a {
    border-bottom: 0;
    border-radius: 0 0 20px 20px;
}
.widget-sidebar .sidebar-category-list li:first-child a {
    border-radius: 20px 20px 0 0;
}
.widget-sidebar .sidebar-category-list li.active a {
    color: #fff;
    background: var(--main-color);
    border-bottom-color: var(--main-color);
}
.widget-sidebar .sidebar-category-list li a {
    display: block;
    color: #000;
    padding: 18px 20px;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.widget-sidebar .sidebar-category-list li a:hover,
.widget-sidebar .sidebar-category-list li a.active {
    color: var(--main-color);
}
.widget-sidebar .sidebar-category-list li a:hover {
    color: #fff;
    background: var(--main-color);
    border-bottom-color: var(--main-color);
}
.widget-sidebar .sidebar-category-list li a:hover:before {
    width: 20px;
}
.widget-sidebar .sidebar-category-list li a .category-count {
    float: right;
}
.widget-sidebar .sidebar-archive-list li {
    display: block;
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.widget-sidebar .sidebar-archive-list li:first-child {
    padding-top: 0;
}
.widget-sidebar .sidebar-archive-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.widget-sidebar .sidebar-archive-list li a {
    color: #000;
    transition: all 0.25s ease;
    font-weight: 500;
}
.widget-sidebar .sidebar-archive-list li a:before {
    content: "";
    background: #000;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    transition: all 0.25s ease;
}
.widget-sidebar .sidebar-archive-list li a:hover {
    text-decoration: underline;
}
.widget-sidebar .sidebar-archive-list li a:hover,
.widget-sidebar .sidebar-archive-list li a.active {
    color: var(--main-color);
}
.widget-sidebar .sidebar-archive-list li a.active:before,
.widget-sidebar .sidebar-archive-list li a:hover:before {
    background: var(--main-color);
}
.widget-sidebar .sidebar-archive-list li a:before {
    height: 5px;
    width: 5px;
}
.widget-sidebar .sidebar-tags li {
    float: left;
}
.widget-sidebar .sidebar-tags li:last-child a {
    margin-right: 0;
}
.widget-sidebar .sidebar-tags li a {
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 50px;
    display: inline-block;
    color: #06133d;
    transition: all 0.5s ease;
    border: 1px solid #e0e0e0;
}
.widget-sidebar .sidebar-tags li a:hover,
.widget-sidebar .sidebar-tags li a.active {
    background: var(--main-color);
    border-color: transparent;
    color: #fff !important;
}
.widget-sidebar .sidebar-share li {
    margin-right: 10px;
    float: left;
}
.widget-sidebar .sidebar-share li:last-child {
    margin-right: 0;
}
.widget-sidebar .sidebar-share li a {
    padding: 5px;
    text-align: center;
    border-radius: 50%;
    color: var(--main-color);
    display: inline-block;
    transition: all 0.5s ease;
    border: 2px solid var(--main-color);
}
.widget-sidebar .sidebar-share li a i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.5s ease;
    background: var(--main-color);
}
.widget-sidebar .sidebar-share li a:hover {
    border-color: var(--secondary-color);
}
.widget-sidebar .sidebar-share li a:hover i {
    color: #fff !important;
    background: var(--secondary-color);
}
.widget-sidebar .tag-widgets {
    margin-bottom: 20px;
}

.blog-title-subline {
    margin-bottom: 20px;
}

.blog-post-img {
    position: relative;
}
.blog-post-img img {
    border-radius: 30px;
}
.blog-post-img .post-author-thumb {
    bottom: -60px;
    left: 0;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    border: 10px solid #fff;
}

.blog-text {
    margin-top: 70px;
}
.blog-text h4 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}
.blog-text .author-meta {
    margin-bottom: 20px;
}
.blog-text .author-meta a {
    color: var(--secondary-color);
    margin-right: 15px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.25s ease;
}
.blog-text .author-meta a:after {
    content: "";
    margin-left: 15px;
    border-left: 1px solid var(--main-color);
}
.blog-text .author-meta a:last-child {
    margin-right: 0;
}
.blog-text .author-meta a:last-child:after {
    display: none;
}
.blog-text .author-meta a:hover {
    color: var(--main-color);
    text-decoration: underline;
}
.blog-text .author-meta a span {
    color: var(--main-color);
    display: inline-block;
    margin-right: 15px;
}
.blog-text p {
    margin-bottom: 20px;
}
.blog-text blockquote {
    padding: 30px;
    font-weight: 500;
    margin-bottom: 30px;
    border-radius: 30px;
    color: var(--secondary-color);
    background: #fff;
    border-left: 5px solid var(--main-color);
    box-shadow: 0 10px 15px 0 rgba(255, 69, 0, 0.1);
}
.blog-text blockquote q {
    font-style: italic;
    line-height: 2;
}
.blog-text blockquote q:before {
    margin-right: 5px;
}
.blog-text blockquote q:after {
    margin-left: 5px;
}
.blog-text .grid-gallery-item {
    margin-bottom: 30px;
}
.blog-text .grid-gallery-item img {
    border-radius: 30px;
}
.blog-text h5 {
    margin-bottom: 15px;
}
.blog-text ul {
    margin-bottom: 30px;
}
.blog-text ul li {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.blog-text ul li:last-child {
    margin-bottom: 0;
}
.blog-text ul li:before {
    content: "";
    width: 10px;
    height: 2px;
    margin-left: 30px;
    margin-right: 10px;
    background: var(--secondary-color);
    vertical-align: middle;
    display: inline-block;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
    .padding-minus-90 {
        padding-bottom: 90px;
    }
    .widget-sidebar {
        margin-top: 20px;
    }
    .sidebar-pb-resp {
        padding-bottom: 90px;
    }
    .recent-post-item .recent-post-body .recent-post-title {
        line-height: 1.5;
        font-size: 1rem;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
    .blog-text h4 {
        font-size: 1.6rem;
    }
}
/* ---------------------------------------------------------------- */
/* 21.Contact
/* ---------------------------------------------------------------- */
.contact-info-item {
    padding: 30px;
    display: flex;
    margin-bottom: 24px;
    border-radius: 50px;
    background: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15);
}
.contact-info-item .icon {
    padding: 10px;
    margin-right: 30px;
    border-radius: 50%;
    text-align: center;
    /* border: 2px solid var(--main-color); */
}
.contact-info-item .icon span {
    height: 80px;
    width: 80px;
    font-size: 30px;
    border-radius: 50%;
    line-height: 80px;
    color: #fff;
    align-items: center;
    background: var(--main-color);
}
.contact-info-item .body h5 {
    margin-bottom: 11px;
}

.contact-form-wrap .contact-btn-left {
    margin-top: 6px;
}
.contact-form-wrap .contact-form-group {
    position: relative;
    margin-bottom: 20px;
}
.contact-form-wrap .contact-form-group .form-control {
    height: 60px;
    color: var(--secondary-color);
    outline: none;
    border: none;
    padding: 0 60px 0 30px;
    border-radius: 30px;
    transition: all 0.25s ease;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15);

}
.contact-form-wrap .contact-form-group .form-control:focus {
    outline: none;
    color: var(--secondary-color);
}
.contact-form-wrap .contact-form-group #txtInput {
    padding-left: 90px;
}
.contact-form-wrap .contact-form-group #txtCaptchaSpan {
    position: absolute;
    top: 50%;
    height: 60px;
    padding-left: 14px;
    padding-right: 14px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: var(--main-color);
    color: #fff;
    border-radius: 0;
}
.contact-form-wrap .contact-form-group textarea.form-control {
    height: auto;
    padding-top: 20px;
}
.contact-form-wrap .empty-form span,
.contact-form-wrap .email-invalid span,
.contact-form-wrap .phone-invalid span,
.contact-form-wrap .terms-alert span,
.contact-form-wrap .subject-alert span,
.contact-form-wrap .security-alert span {
    display: block;
    font-size: 16px;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    color: #ee4545;
    background: #fff;
    box-shadow: 0 10px 15px 0 rgba(255, 69, 0, 0.1);
}
.contact-form-wrap .form-response-error {
    display: none;
    font-size: 16px;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    color: #ee4545;
    background: #fff;
    box-shadow: 0 10px 15px 0 rgba(255, 69, 0, 0.1);
}
.contact-form-wrap .form-response-success {
    display: none;
    font-size: 16px;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    color: #3d8b40;
    background: #fff;
    box-shadow: 0 10px 15px 0 rgba(76, 175, 80, 0.1);
}
.contact-form-wrap #error_message {
    margin-top: 20px;
    display: block;
    color: #ee4545;
}
.contact-form-wrap .form-validate-icons {
    top: 0;
    right: 14px;
    height: 60px;
    position: absolute;
    line-height: 60px;
}
.contact-form-wrap .form-validate-icons span {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.contact-form-wrap .form-validate-icons span:before {
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}
.contact-form-wrap .form-validate-icons span.error {
    opacity: 1;
    visibility: visible;
}
.contact-form-wrap .form-validate-icons span.error:before {
    content: "\f00d";
    color: #fff;
    background: var(--main-color);
}
.contact-form-wrap .form-validate-icons span.success {
    opacity: 1;
    visibility: visible;
}
.contact-form-wrap .form-validate-icons span.success:before {
    content: "\f00c";
    color: #fff;
    background: #4caf50;
}
.contact-form-wrap .custom-select-wrapper {
    position: relative;
}
.contact-form-wrap .custom-select-wrapper select,
.contact-form-wrap .custom-select-wrapper .select-hide {
    display: none;
}
.contact-form-wrap .custom-select-wrapper .select-selected {
    outline: none;
    padding: 18px 30px;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    background: #fff;
    color: #000 !important;
    transition: all 0.25s ease;
    box-shadow: 0 10px 15px rgba(255, 69, 0, 0.1);
}
.contact-form-wrap .custom-select-wrapper .select-selected:focus {
    outline: none;
    border: none;
    box-shadow: 0px 23px 49px 0px rgba(255, 69, 0, 0.1);
}
.contact-form-wrap .custom-select-wrapper .select-selected:after {
    right: 14px;
    top: 14px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    content: "\f078";
    position: absolute;
    pointer-events: none;
    display: inline-block;
    color: #fff;
    background: var(--main-color);
    font-size: 14px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}
.contact-form-wrap
    .custom-select-wrapper
    .select-selected.select-arrow-active:after {
    content: "\f077";
}
.contact-form-wrap .custom-select-wrapper .select-items {
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    margin-top: 10px;
    position: absolute;
    border-radius: 10px;
    color: #000 !important;
    background-color: #fff;
    box-shadow: 0 10px 15px rgba(255, 69, 0, 0.1);
    animation: fadeInDown 0.5s ease forwards;
}
.contact-form-wrap .custom-select-wrapper .select-items .same-as-selected {
    background-color: var(--main-color);
    border-bottom-color: var(--main-color);
    color: #fff !important;
}
.contact-form-wrap .custom-select-wrapper .select-items div {
    color: #000;
    outline: none;
    width: 100%;
    display: block;
    padding: 18px 30px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    border-bottom: 1px solid rgba(255, 69, 0, 0.08);
}
.contact-form-wrap .custom-select-wrapper .select-items div:focus {
    outline: none;
    border: none;
    box-shadow: 0 23px 49px 0 rgba(255, 69, 0, 0.1);
}
.contact-form-wrap .custom-select-wrapper .select-items div:last-child {
    border-bottom: 0;
    border-radius: 0 0 10px 10px;
}
.contact-form-wrap .custom-select-wrapper .select-items div:first-child {
    border-radius: 10px 10px 0 0;
}
.contact-form-wrap .custom-select-wrapper .select-items div:hover {
    background-color: var(--main-color);
    border-bottom-color: var(--main-color);
    color: #fff;
}

.google-map {
    width: 100%;
    line-height: 0;
}
.google-map iframe {
    width: 100%;
    min-height: 500px;
    border: none;
}

.subscribe-section {
    background: #000;
}

.subscribe-heading {
    text-align: center;
}
.subscribe-heading h2 {
    margin-bottom: 30px;
    color: #fff;
}

.subscribe-form-group {
    display: flex;
}
.subscribe-form-group input {
    height: 60px;
    color: #fff;
    outline: none;
    border: none;
    width: 100%;
    text-align: center;
    padding: 0 30px 0 30px;
    border-radius: 30px 0 0 30px;
    transition: all 0.25s ease;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
}
.subscribe-form-group input:focus {
    background-color: rgba(255, 255, 255, 0.2);
}
.subscribe-form-group button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

@media only screen and (max-width: 575.98px) {
    .subscribe-heading h2 {
        font-size: 1.467rem;
    }
    .subscribe-form-group span.text {
        padding: 0 15px 0 20px;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
    .contact-info-wrap {
        margin-bottom: 30px;
    }
    .contact-btn-left {
        text-align: left;
    }
    .form-alerts .text-center span {
        text-align: left !important;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 576px) {
    .contact-info-item {
        display: block;
        text-align: left;
    }
    .contact-info-item .icon {
        padding: 10px;
        display: inline-block;
        margin-right: 0;
        margin-bottom: 20px;
    }
}
/* ---------------------------------------------------------------- */
/* 22.Footer
/* ---------------------------------------------------------------- */
.footer {
    background: var(--secondary-color);
}
.footer .footer-top {
    padding: 80px 0 50px 0;
}
.footer .footer-top .footer-widget {
    margin-bottom: 30px;
}
.footer .footer-top .footer-widget .footer-logo {
    margin-bottom: 10px;
}
.footer .footer-top .footer-widget .footer-desc {
    opacity: 0.75;
    color: #fff;
    margin-bottom: 20px;
}
.footer .footer-top .footer-widget .footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.footer .footer-top .footer-widget .footer-title:after {
    width: 50px;
    height: 2px;
    content: "";
    display: block;
    margin-top: 10px;
    background: var(--main-color);
}
.footer .footer-top .footer-widget .footer-social-links a {
    padding: 5px;
    text-align: center;
    margin-right: 10px;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-top .footer-widget .footer-social-links a i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.1);
}
.footer .footer-top .footer-widget .footer-social-links a:hover {
    border-color: var(--main-color);
}
.footer .footer-top .footer-widget .footer-social-links a:hover i {
    color: #fff !important;
    background: var(--main-color);
}
.footer .footer-top .footer-widget .footer-social-links a:last-child {
    margin-right: 0;
}
.footer .footer-top .footer-widget .footer-contact-info-list li {
    margin-bottom: 10px;
}
.footer .footer-top .footer-widget .footer-contact-info-list li:last-child {
    margin-bottom: 0;
}
.footer .footer-top .footer-widget .footer-contact-info-list li h6 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.footer .footer-top .footer-widget .footer-contact-info-list li p {
    color: #fff;
    opacity: 0.75;
    vertical-align: middle;
}
.footer .footer-top .footer-widget .footer-links li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.footer .footer-top .footer-widget .footer-links li:last-child {
    margin-bottom: 0;
}
.footer .footer-top .footer-widget .footer-links li span {
    color: #fff;
}
.footer .footer-top .footer-widget .footer-links li a {
    color: #fff;
    transition: all 0.5s ease;
}
.footer .footer-top .footer-widget .footer-links li a:hover {
    opacity: 1;
    color: #fff;
    text-decoration: underline;
}
.footer .footer-top .footer-widget .footer-links li:before {
    content: "\f054";
    font-weight: 600;
    margin-right: 15px;
    display: inline-block;
    color: var(--main-color);
    transition: all 0.5s ease;
    font-family: "Font Awesome 5 Free";
}
.footer .copyright {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 0;
}
.footer .copyright .copyright-text {
    color: #fff;
    opacity: 0.75;
    line-height: 38px;
}
.footer .copyright .footer-payment ul li {
    display: inline-block;
    margin-right: 5px;
}
.footer .copyright .footer-payment ul li:last-child {
    margin-right: 0;
}
.footer .copyright .footer-payment ul li i {
    color: #fff;
    font-size: 35px;
    line-height: 35px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
    .footer .copyright .footer-payment {
        margin-top: 30px;
    }
}
/* ---------------------------------------------------------------- */
/* 23.Breadcrumb
/* ---------------------------------------------------------------- */
.breadcrumb-section {
    z-index: 42;
    overflow: hidden;
    padding: 170px 0;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.breadcrumb-section:before {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.75;
    z-index: -42;
    position: absolute;
    background: var(--secondary-color);
}
.breadcrumb-section .breadcrumb-inner {
    position: relative;
    z-index: 18;
    text-align: center;
}
.breadcrumb-section .breadcrumb-inner h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}
.breadcrumb-section .breadcrumb-inner .breadcrumb-links li {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}
.breadcrumb-section .breadcrumb-inner .breadcrumb-links li.active:before {
    content: "\f30b";
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    vertical-align: middle;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}
.breadcrumb-section .breadcrumb-inner .breadcrumb-links li a {
    color: #fff;
}
.breadcrumb-section .breadcrumb-inner .breadcrumb-links li a:hover {
    text-decoration: underline;
}

/* ---------------------------------------------------------------- */
/* 24.Rtl Mode
/* ---------------------------------------------------------------- */
body.rtl-mode {
    text-align: right;
    direction: rtl;
}
body.rtl-mode .section-heading-left {
    text-align: right;
}
body.rtl-mode .section-heading-left h2 {
    text-align: right;
}
body.rtl-mode .section-heading-left h2:before {
    left: initial;
    right: 0;
}
body.rtl-mode .section-heading-left h2:after {
    left: initial;
    right: 30px;
}
body.rtl-mode .owl-carousel {
    direction: ltr;
}
body.rtl-mode .owl-carousel .owl-item {
    direction: rtl;
}
body.rtl-mode .scroll-top-btn {
    right: initial;
    left: 10px;
}
body.rtl-mode .scroll-down-btn:before,
body.rtl-mode .hero-email-link:before {
    width: 2px;
    height: 20px;
    content: "";
    margin-top: 15px;
    display: inline-block;
    vertical-align: baseline;
    background: #fff;
}
body.rtl-mode .scroll-down-btn:after,
body.rtl-mode .hero-email-link:after {
    display: none;
}
body.rtl-mode .hero-email-link {
    right: initial;
    left: 30px;
}
body.rtl-mode .scroll-down-btn {
    left: initial;
    right: 30px;
}
body.rtl-mode .primary-btn .icon i,
body.rtl-mode .white-btn .icon i {
    transform: rotate(180deg);
}
body.rtl-mode .primary-btn .text,
body.rtl-mode .white-btn .text {
    padding: 0 30px 0 20px;
    text-transform: uppercase;
}
body.rtl-mode .header .navbar-toggler {
    padding: 0 0 0 10px;
}
body.rtl-mode .header .default-nav-btn {
    margin-left: 0;
    margin-right: 10px;
}
body.rtl-mode .header .nav-item .nav-link {
    text-align: right;
}
body.rtl-mode .header .nav-item .nav-link:after {
    left: initial;
    right: 0;
}
body.rtl-mode .header .nav-item .nav-link:not(.active):after {
    left: initial;
    right: 0;
    transform-origin: 0 0;
}
body.rtl-mode .header .nav-item .nav-link:not(.active):hover:after {
    transform: scaleX(1);
    transform-origin: right;
}
body.rtl-mode .header .nav-item.dropdown .dropdown-item {
    text-align: right;
}
body.rtl-mode .header .nav-item.dropdown .dropdown-toggle:before {
    left: 0;
    right: initial;
}
body.rtl-mode .hero-banner .hero-social-list {
    left: 30px;
    right: initial;
}
body.rtl-mode .hero-banner .hero-img {
    text-align: left;
}
body.rtl-mode .hero-banner .hero-inner h2 {
    padding-right: 0;
    padding-left: 60px;
}
body.rtl-mode .about-inner .primary-btn .icon i {
    transform: rotate(0deg);
}
body.rtl-mode .about-img .about-video-btn {
    right: initial;
    left: -40px;
}
body.rtl-mode .about-img .video-border-line {
    right: initial;
    left: -40px;
}
body.rtl-mode .resume-item .body .icon-outer-line {
    margin-left: 20px;
    margin-right: 0;
}
body.rtl-mode .resume-item .resume-link i {
    transform: rotate(180deg);
}
body.rtl-mode .services-item .body a i {
    margin-left: 0;
    margin-left: 5px;
    transform: rotate(180deg);
}
body.rtl-mode .services-item .body a:hover i {
    margin-left: 0;
    margin-right: 10px;
}
body.rtl-mode .services-item:hover .body a i {
    margin-left: 0;
    margin-right: 5px;
}
body.rtl-mode .services-item:hover .body a:hover i {
    margin-left: 0;
    margin-right: 10px;
}
body.rtl-mode .web-design-process {
    border-radius: 30px;
    background: var(--secondary-color);
}
body.rtl-mode .web-design-process .design-process-video {
    position: relative;
    overflow: hidden;
}
body.rtl-mode .web-design-process .design-process-video img {
    border-radius: 0 30px 30px 0;
}
body.rtl-mode
    .web-design-process
    .design-process-video
    .design-process-video-btn
    i {
    padding-left: 7px;
    transform: rotate(180deg);
}
body.rtl-mode .web-design-process .design-process-inner {
    padding: 30px 6px 30px 30px;
}
body.rtl-mode .web-design-process .design-process-inner ul li i {
    margin-right: 0;
    margin-left: 15px;
}
body.rtl-mode .services-detail-top span {
    left: initial;
    right: 0;
}
body.rtl-mode .subscribe-newsletter .form-newsletter {
    position: relative;
}
body.rtl-mode .subscribe-newsletter .form-newsletter input {
    padding: 0 30px 0 50px;
}
body.rtl-mode .subscribe-newsletter .form-newsletter button {
    right: initial;
    left: 0;
}
body.rtl-mode .subscribe-newsletter .form-newsletter button i {
    transform: rotate(180deg);
}
body.rtl-mode .how-i-work-item .arrow-dashed-img {
    right: initial;
    left: -87px;
    transform: rotateY(180deg);
}
body.rtl-mode .skills-img .icon-check {
    right: initial;
    left: -40px;
}
body.rtl-mode .skills-img .icon-border-line {
    right: initial;
    left: -40px;
}
body.rtl-mode .skills-inner ul li:before {
    margin-right: 0;
    margin-left: 15px;
}
body.rtl-mode
    .skills-inner
    .skills-item
    .skills-progress-bar
    .skills-progress-value {
    right: 0;
    left: initial;
}
body.rtl-mode .portfolio-filter {
    text-align: left;
}
body.rtl-mode .portfolio-filter a {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl-mode .portfolio-filter a:last-child {
    margin-left: 0;
}
body.rtl-mode .portfolio-item .body .portfolio-link i {
    transform: rotate(180deg);
}
body.rtl-mode .call-to-action .call-to-action-btn {
    text-align: left;
}
body.rtl-mode .testimonial-item .img {
    margin-right: 0;
    margin-left: 15px;
}
body.rtl-mode .testimonial-item .body .rating i {
    margin-right: 0;
    margin-left: 2px;
}
body.rtl-mode .testimonial-item .body .rating i:last-child {
    margin-left: 0;
}
body.rtl-mode .testimonial-item .quote-icon {
    right: initial;
    left: 30px;
}
body.rtl-mode #testimonialCarousel.owl-carousel .owl-nav,
body.rtl-mode #blogCarousel.owl-carousel .owl-nav {
    right: initial;
    left: 0;
}
body.rtl-mode #testimonialCarousel.owl-carousel .owl-nav button span,
body.rtl-mode #blogCarousel.owl-carousel .owl-nav button span {
    transform: rotate(180deg);
}
body.rtl-mode #testimonialCarousel.owl-carousel .owl-nav button.owl-prev,
body.rtl-mode #blogCarousel.owl-carousel .owl-nav button.owl-prev {
    margin-right: 10px;
}
body.rtl-mode #portfolioCarousel.owl-carousel .owl-nav button span {
    transform: rotate(180deg);
}
body.rtl-mode .contact-info-item .icon {
    margin-right: 0;
    margin-left: 30px;
}
body.rtl-mode .contact-form-wrap .contact-form-group .form-control {
    padding: 0 30px 0 60px;
}
body.rtl-mode .contact-form-wrap .contact-form-group textarea.form-control {
    padding-top: 20px;
}
body.rtl-mode .contact-form-wrap .form-validate-icons {
    right: initial;
    left: 14px;
}
body.rtl-mode .contact-form-wrap .custom-select-wrapper .select-selected:after {
    right: initial;
    left: 14px;
}
body.rtl-mode .blog-item .blog-body .blog-meta a {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl-mode .blog-item .blog-body .blog-meta a i {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl-mode .blog-item .blog-body .blog-meta a:last-child {
    margin: 0;
}
body.rtl-mode .blog-item .blog-body .blog-meta a:last-child i {
    margin-right: 10px;
}
body.rtl-mode .blog-item .blog-body .blog-author-img {
    left: initial;
    right: 30px;
}
body.rtl-mode .blog-item .blog-body .blog-link i {
    margin-left: 0;
    margin-right: 5px;
    transform: rotate(180deg);
}
body.rtl-mode
    .custom-modal
    .modal-content
    .modal-body
    .popup-form-group
    .popup-form-control {
    padding: 0 60px 0 20px;
}
body.rtl-mode
    .custom-modal
    .modal-content
    .modal-body
    .popup-form-group
    > span {
    left: initial;
    right: 0;
}
body.rtl-mode
    .custom-modal
    .modal-content
    .modal-body
    .popup-form-group
    textarea {
    padding: 17px 60px 17px 20px !important;
}
body.rtl-mode .custom-form-group .captcha-input {
    padding-left: 20px !important;
    padding-right: 90px !important;
}
body.rtl-mode .custom-form-group .custom-form-control {
    padding: 17px 60px 17px 20px;
}
body.rtl-mode .custom-form-group > span {
    left: initial;
    right: 0;
}
body.rtl-mode .footer .footer-top .footer-widget .footer-social-links a {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl-mode
    .footer
    .footer-top
    .footer-widget
    .footer-contact-info-list
    li
    i {
    margin-right: 0;
    margin-left: 15px;
}
body.rtl-mode .footer .footer-top .footer-widget .footer-links li:before {
    margin-right: 0;
    margin-left: 15px;
    transform: rotate(180deg);
}
body.rtl-mode
    .breadcrumb-section
    .breadcrumb-inner
    .breadcrumb-links
    li.active:before {
    transform: rotate(180deg);
}
body.rtl-mode .inner-header-title:after,
body.rtl-mode .inner-header-title:before {
    left: initial;
    right: 0;
}
body.rtl-mode .blog-single-inner .blog-meta i {
    margin-right: 0;
    margin-left: 15px;
}
body.rtl-mode .blog-single-inner .blog-meta span:first-child {
    margin-right: 0;
    margin-left: 15px;
}
body.rtl-mode
    .comment-block
    .comments-wrap
    .comments-item-wrap
    .comments-item
    .comment-header
    a
    i {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl-mode
    .comment-block
    .comments-wrap
    .comments-item-wrap
    .comments-item
    img {
    margin-right: 0;
    margin-left: 15px;
}
body.rtl-mode .widget-sidebar .blog-share li {
    margin-right: 0;
    margin-left: 10px;
    float: right;
}
body.rtl-mode .widget-sidebar .sidebar-tags li {
    float: right;
}
body.rtl-mode .widget-sidebar .sidebar-tags li a {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl-mode .widget-sidebar .sidebar-archive-list li {
    padding: 10px 0 10px 10px;
}
body.rtl-mode .widget-sidebar .sidebar-archive-list li a:before {
    margin-right: 0;
    margin-left: 10px;
    transform: rotate(180deg);
}
body.rtl-mode .widget-sidebar .sidebar-category-list li a .category-count {
    float: left;
}
body.rtl-mode .widget-sidebar .recent-post-item .recent-post-img {
    float: right;
    margin-right: 0;
    margin-left: 1rem;
}
body.rtl-mode
    .widget-sidebar
    .recent-post-item
    .recent-post-body
    .recent-post-date
    i {
    margin-right: 0;
    margin-left: 8px;
}
body.rtl-mode .widget-sidebar .sidebar-widgets .blog-search-btn {
    right: initial;
    left: 0;
}
body.rtl-mode
    .widget-sidebar
    .sidebar-widgets
    .blog-search-bar
    .search-form-control {
    padding: 18px 20px 18px 78px;
}
body.rtl-mode .widget-sidebar .sidebar-widgets .blog-search-bar i {
    left: initial;
    right: 20px;
}
body.rtl-mode .widget-sidebar .sidebar-share li {
    margin-right: 0;
    margin-left: 10px;
    float: right;
}
body.rtl-mode .widget-sidebar .sidebar-share li:last-child {
    margin-left: 0;
}
body.rtl-mode .blog-post-img {
    position: relative;
}
body.rtl-mode .blog-post-img .post-author-thumb {
    left: initial;
    right: 0;
}
body.rtl-mode .portfolio-single-inner .author-meta a {
    display: inline-block;
}
body.rtl-mode .portfolio-single-inner .author-meta a:after {
    border-left: none;
    margin-right: 15px;
    border-right: 1px solid var(--main-color);
}
body.rtl-mode .portfolio-single-inner .author-meta a:first-child {
    margin-left: 0;
    margin-right: 0;
}
body.rtl-mode .portfolio-single-inner .author-meta a span {
    margin-right: 0;
    margin-left: 15px;
}
body.rtl-mode .blog-text .author-meta a {
    margin-right: 0;
    margin-left: 15px;
}
body.rtl-mode .blog-text .author-meta a:after {
    margin-left: 0;
    margin-right: 15px;
    border-left: none;
    border-right: 1px solid var(--main-color);
}
body.rtl-mode .blog-text .author-meta a:last-child {
    margin-left: 0;
}
body.rtl-mode .blog-text .author-meta a span {
    margin-right: 0;
    margin-left: 15px;
}
body.rtl-mode .blog-text blockquote {
    border-left: none;
    border-right: 5px solid var(--main-color);
}
body.rtl-mode .blog-text blockquote q:before {
    margin-right: 0;
    margin-left: 5px;
}
body.rtl-mode .blog-text blockquote q:after {
    margin-left: 0;
    margin-right: 5px;
}
body.rtl-mode .blog-text ul li:before {
    margin-left: 10px;
    margin-right: 30px;
}
body.rtl-mode .pagination-wrap .pagination-link {
    margin: 0 0 0 5px;
}
body.rtl-mode .pagination-wrap .pagination-link:first-child i {
    transform: rotate(180deg);
}
body.rtl-mode .pagination-wrap .pagination-link:last-child {
    margin-left: 0;
}
body.rtl-mode .pagination-wrap .pagination-link:last-child i {
    transform: rotate(180deg);
}
body.rtl-mode .comment-item .img {
    margin-right: 0;
    margin-left: 20px;
}
body.rtl-mode .comment-item .comment-meta span {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl-mode .comment-item .comment-meta span i {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl-mode .comment-item .reply-btn {
    margin-right: 0;
    margin-left: 10px;
}
body.rtl-mode .comment-item .reply-btn i {
    margin-right: 0;
    margin-left: 7px;
}
body.rtl-mode .comment-item.sub-comment-item {
    margin-left: 0;
    margin-right: 120px;
}
body.rtl-mode .leave-comment-wrapper .comment-form-group .form-control {
    padding: 0 30px 0 60px;
}
body.rtl-mode .leave-comment-wrapper .comment-form-group textarea.form-control {
    height: auto;
    padding-top: 20px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media only screen and (min-width: 991.98px) {
    body.rtl-mode .footer-desc {
        padding-right: 0;
        padding-left: 30px;
    }
    body.rtl-mode .dropdown-menu {
        left: initial;
        right: 0;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
    body.rtl-mode .header .navbar-brand {
        padding: 10px 15px 10px 0;
    }
    body.rtl-mode .header .dropdown-toggle:before {
        left: 20px !important;
        right: initial !important;
    }
    body.rtl-mode .hero-banner .hero-inner h2 {
        padding-left: 0;
    }
    body.rtl-mode .contact-btn-left {
        text-align: right;
    }
    body.rtl-mode .form-alerts .text-center span {
        text-align: right !important;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
    body.rtl-mode .portfolio-filter {
        text-align: right;
    }
    body.rtl-mode .call-to-action .call-to-action-btn {
        text-align: right;
    }
    body.rtl-mode .web-design-process .design-process-inner {
        padding: 30px !important;
    }
}
/* ---------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
    body.rtl-mode .about-img .about-video-btn,
    body.rtl-mode .about-img .video-border-line {
        right: initial;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    body.rtl-mode .contact-info-item {
        text-align: right;
    }
    body.rtl-mode .contact-info-item .icon {
        margin-left: 0;
    }
    body.rtl-mode .comment-item .img {
        margin-left: 0;
    }
}
body.rtl-mode .accordion-item .accordion-item-header a {
    padding: 30px 30px 30px 60px;
}
body.rtl-mode .accordion-item .accordion-item-header a i {
    margin-left: 15px;
}
body.rtl-mode .accordion-item .accordion-item-header a:after {
    left: 30px !important;
    right: initial;
}

body.rtl-mode .subscribe-form-group input {
    border-radius: 0 30px 30px 0;
}
body.rtl-mode .subscribe-form-group button {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
@media only screen and (max-width: 575.98px) {
    body.rtl-mode .subscribe-form-group span.text {
        padding: 0 15px 0 20px;
    }
}

body.rtl-mode #borgsection .borgsection-inner .borgsection-video-btn i {
    transform: rotate(180deg);
    padding-left: 10px;
}

body.rtl-mode .history-wrapper .history-item-inner .history-img {
    margin-left: 30px;
    margin-right: 0;
}

@media only screen and (max-width: 992px) {
    body.rtl-mode .history-wrapper .history-item .history-date-wrap {
        text-align: right !important;
    }
}
/* ---------------------------------------------------------------- */
/* 26.Home Intro
/* ---------------------------------------------------------------- */
.intro-hero-section {
    z-index: 1;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--secondary-color);
}
.intro-hero-section .intro-hero-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 50px;
}
.intro-hero-section .intro-hero-title span {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    margin: 0 auto 15px auto;
}

.demo-item {
    padding: 15px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 30px;
    background: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
}
.demo-item img {
    border-radius: 20px;
}
.demo-item .demo-item-link {
    margin-top: 15px;
    padding: 15px;
    display: block;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.25s ease;
    color: #fff !important;
    background: var(--main-color);
}
.demo-item .demo-item-link:hover {
    color: #fff !important;
    background: var(--secondary-color);
}

.demo-features-item {
    padding: 30px;
    border-radius: 50px;
    text-align: center;
    background: #fff;
    margin-bottom: 30px;
    transition: all 0.5s ease;
    box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
}
.demo-features-item .features-icon {
    margin-bottom: 20px;
}
.demo-features-item .features-text h5 {
    font-size: 1.125rem;
}

/* ------------------------------------------------------------- */
/* Responsive Media Query (576px)
/* ---------------------------------------------------------------- */
@media screen and (max-width: 576px) {
    .intro-hero-section .intro-hero-title {
        font-size: 1.4rem;
    }
    .intro-hero-section .intro-hero-title span {
        font-size: 2.2rem;
    }
} /*# sourceMappingURL=style.css.map */
