/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/*
===================
Nav Menu
===================
*/
.laxland-nav-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.laxland-nav-menu .custom-logo-link {
    display: none;
}
.laxland-nav-menu .laxland-menu-toggle {
    display: none;
}
.laxland-nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.laxland-nav-menu ul li {
    position: relative;
}
.laxland-nav-menu ul li a {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    padding: 15px 28px;
    border-left: 1px solid #564af9;
}
.laxland-nav-menu .menu-search {
    color: #fff;
    margin-right: 28px;
}

/* Sub Menu */
.laxland-nav-menu {
    background-color: #473bf0;
}
.laxland-nav-menu ul li.menu-item-has-children a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    margin-left: 5px;
}
.laxland-nav-menu ul li.menu-item-has-children .sub-menu a::after {
    display: none;
}
.laxland-nav-menu ul li .sub-menu {
    position: absolute;
    display: block;
    background-color: #473bf0;
    width: 250px;
    left: 0;
    top: 130%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.laxland-nav-menu ul li:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}
.laxland-nav-menu ul li .sub-menu li a {
    display: block;
    border: 0;
    border-top: 1px solid #564af9;
}

.laxland-nav-menu .menu-search .search--form {
    position: absolute;
    top: 54px;
    right: 0;
    z-index: 2;
    padding: 30px 50px;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
}
.laxland-nav-menu .menu-search .search-toggle {
    cursor: pointer;
}
.laxland-nav-menu .menu-search .search-toggle.active .open {
    display: none;
}
.laxland-nav-menu .menu-search .search-toggle .close {
    display: none;
}
.laxland-nav-menu .menu-search .search-toggle.active .close {
    display: block;
}
.laxland-nav-menu .menu-search .search--form form {
    position: relative;
}
.laxland-nav-menu .menu-search .search--form form input {
    border: 0;
    outline: 0;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 5px 30px 5px 15px;
    transition: width 2s;
}
.laxland-nav-menu .menu-search .search--form form button {
    position: absolute;
    right: 0;
    border: 0;
    outline: 0;
    height: 35px;
    width: 35px;
    background: transparent;
    padding: 0;
}

/*
===================
Hero Slider
===================
*/

.slider-section.style1 .owl-item {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
}
.slider-section.style1 .slide {
    position: relative;
    height: 950px;
}
.slider-section.style1 .slide .owl-item-bg {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.slider-section.style1 .slide .slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
    text-align: center;
}
.slider-section.style1 .slide .slide-content .subtitle {
    position: relative;
    color: var(--main-color);
    font-size: 50px;
    font-weight: normal;
    font-family: "Arno Pro", cursive;
    letter-spacing: 5px;
    margin-bottom: 10px;
}
.slider-section.style1 .slide .slide-content .title {
    color: #fff;
    font-size: 70px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 16px;
}
.slider-section.style1 .slide .slide-content .button-set {
    margin-top: 33px;
}
.slider-section.style1 .slide .slide-content .button-set .button {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 13px 35px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: rgba(0, 0, 0, 0.3);
}
.slider-section.style1 .slide .slide-content .button-set .button:hover {
    color: var(--main-color);
}
.slider-section.style1 .slide .slide-content .button-set .button::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.slider-section.style1 .slide .slide-content .button-set .button:hover::before {
    left: -50%;
}
.slider-section.style1 .slide .slide-content .button-set .button::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.slider-section.style1 .slide .slide-content .button-set .button:hover::after {
    right: -50%;
}

.slider-section.style1 .hero-slider:hover .owl-nav {
    opacity: 1;
}
.slider-section.style1 .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-80px);
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
}
.slider-section.style1 .owl-prev,
.slider-section.style1 .owl-next {
    width: 200px;
    height: 100px;
    line-height: 70px;
    position: absolute;
    top: 50%;
    transform: translateY(50%);
    overflow: hidden;
    transition: all 1s ease;
}
.slider-section.style1 .owl-prev {
    left: 10px;
}
.slider-section.style1 .owl-next {
    right: 10px;
}
.slider-section.style1 .owl-prev-thump,
.slider-section.style1 .owl-prev-icon,
.slider-section.style1 .owl-next-thump,
.slider-section.style1 .owl-next-icon {
    height: 100%;
}

.slider-section.style1 .owl-prev-thump,
.slider-section.style1 .owl-next-thump {
    width: 100%;
    background-size: cover;
    transition: all 1s ease-in-out;
    image-rendering: -webkit-optimize-contrast;
}
.slider-section.style1 .owl-prev-icon,
.slider-section.style1 .owl-next-icon {
    width: 40%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    padding-top: 8%;
    text-align: center;
    transition: all 1s ease;
}
.slider-section.style1 .owl-prev-icon:before,
.slider-section.style1 .owl-next-icon:before {
    font-family: bootstrap-icons;
    color: rgba(255, 255, 255, 0.7);
    font-size: 30px;
    transition: all 1s ease;
}
.slider-section.style1 .owl-prev-icon:before {
    content: "\F284";
}
.slider-section.style1 .owl-next-icon:before {
    content: "\F285";
}

.slider-section.style1 .owl-prev-icon {
    left: 0;
}
.slider-section.style1 .owl-next-icon {
    right: 0;
}
.slider-section.style1 .owl-prev:hover,
.slider-section.style1 .owl-next:hover {
    animation: navShadow 4s ease-in-out infinite;
}
.slider-section.style1 .owl-prev:hover .owl-prev-icon,
.slider-section.style1 .owl-next:hover .owl-next-icon {
    width: 25%;
}

@keyframes navShadow {
    0%,
    100% {
        box-shadow: 0px 0px 1px 0 #f1f1f1;
    }
    50% {
        box-shadow: 0px 0px 5px 0 #f1f1f1;
    }
}

.slider-section.style1 .owl-prev.disabled:hover,
.slider-section.style1 .owl-next.disabled:hover {
    animation: none;
}
.slider-section.style1 .owl-prev.disabled:hover .owl-prev-icon,
.slider-section.style1 .owl-next.disabled:hover .owl-next-icon {
    width: 50%;
}

/* Style Two */

.slider-section.style2 .hero-slider .slider-item {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
}
.slider-section.style2 .hero-slider .slider-item .text-wrapper {
    position: relative;
    width: 55%;
    padding-left: 35px;
}
.slider-section.style2 .hero-slider .slider-item .text-wrapper::before {
    content: "";
    position: absolute;
    height: 120%;
    width: 56px;
    border-top: 5px solid rgba(255, 255, 255, 0.4);
    border-left: 5px solid rgba(255, 255, 255, 0.4);
    border-bottom: 5px solid rgba(255, 255, 255, 0.4);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.slider-section.style2 .hero-slider .slider-item .subtitle {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 23px;
    padding-left: 60px;
}
.slider-section.style2 .hero-slider .slider-item .subtitle::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 50px;
    background-color: #ff8700;
    left: 0;
    top: 10px;
}
.slider-section.style2 .hero-slider .slider-item .title {
    color: #fff;
    font-size: 56px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 66px;
}
.slider-section.style2 .hero-slider .slider-item .title span {
    color: var(--main-color);
}
.slider-section.style2 .hero-slider .slider-item .button-set {
    margin-top: 33px;
}

.slider-section.style2 .hero-slider .slider-item .button-set .button {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding: 13px 35px;
    border: 1px solid #ff8711;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: rgba(0, 0, 0, 0.3);
}
.slider-section.style2 .hero-slider .slider-item .button-set .button::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: #ff8711;
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.slider-section.style2 .hero-slider .slider-item .button-set .button:hover::before {
    left: -50%;
}
.slider-section.style2 .hero-slider .slider-item .button-set .button::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: #ff8711;
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.slider-section.style2 .hero-slider .slider-item .button-set .button:hover::after {
    right: -50%;
}

.slider-section.style2 .hero-slider .owl-nav .owl-prev,
.slider-section.style2 .hero-slider .owl-nav .owl-next {
    color: #fff;
    font-size: 20px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 99;
}
.slider-section.style2 .hero-slider .owl-nav .owl-prev i,
.slider-section.style2 .hero-slider .owl-nav .owl-next i {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.slider-section.style2 .hero-slider .owl-nav .owl-prev i:hover,
.slider-section.style2 .hero-slider .owl-nav .owl-next i:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.slider-section.style2 .hero-slider .owl-nav .owl-prev {
    top: 54%;
    right: 100px;
}
.slider-section.style2 .hero-slider:hover .owl-nav .owl-prev {
}
.slider-section.style2 .hero-slider .owl-nav .owl-next {
    top: 46%;
    right: 100px;
}
.slider-section.style2 .hero-slider:hover .owl-nav .owl-next {
}

/*
===================
Hero Text
===================
*/
.hero-text.style1 .subtitle {
    font-weight: 500;
    margin-bottom: 15px;
}
.hero-text.style1 .title {
    font-size: 56px;
    line-height: 70px;
    margin-bottom: 14px;
}
.hero-text.style1 .title span {
    color: #ff8711;
}
.hero-text.style1 .description {
    font-size: 17px;
    margin-bottom: 25px;
}
.hero-text.style1 .btn-set {
    display: flex;
    align-items: center;
}
.hero-text.style1 .btn-set .button {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding: 13px 35px;
    border: 1px solid #ff8711;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-text.style1 .btn-set .button:hover {
    color: var(--title-color);
}
.hero-text.style1 .btn-set .button::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: #ff8711;
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-text.style1 .btn-set .button:hover::before {
    left: -50%;
}
.hero-text.style1 .btn-set .button::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: #ff8711;
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-text.style1 .btn-set .button:hover::after {
    right: -50%;
}
.hero-text.style1 .btn-set .button i {
    margin-left: 5px;
}
.hero-text.style1 .btn-set .video-btn {
    display: inline-block;
    margin-left: 20px;
}
.hero-text.style1 .btn-set .video-btn i {
    display: inline-block;
    color: var(--main-color);
    font-size: 30px;
    height: 74px;
    width: 74px;
    line-height: 57px;
    text-align: center;
    border: 10px solid var(--main-color);
    border-radius: 50%;
    background-color: #fff;
}
.hero-text.style1 .btn-set .video-title {
    color: var(--title-color);
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    margin-left: 10px;
}

/*
===================
Hero Particles
===================
*/
.hero-particles.style1 {
    position: relative;
    text-align: center;
    height: 990px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-particles.style1 .subtitle {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 6px;
    z-index: 1;
}
.hero-particles.style1 .subtitle::before,
.hero-particles.style1 .subtitle::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 45px;
    background-color: var(--main-color);
    top: 50%;
    left: -55px;
}
.hero-particles.style1 .subtitle::after {
    left: inherit;
    right: -55px;
}
.hero-particles.style1 .title {
    position: relative;
    font-size: 85px;
    font-weight: bold;
    margin-bottom: 18px;
    z-index: 1;
}
.hero-particles.style1 .title span {
    color: var(--main-color);
}
.hero-particles.style1 .description {
    margin-bottom: 53px;
}
.hero-particles.style1 .button-set a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border: 1px solid var(--main-color);
    z-index: 1;
    overflow: hidden;
}
.hero-particles.style1 .button-set a.hero-btn1 {
    color: #fff;
    margin-right: 10px;
}
.hero-particles.style1 .button-set a.hero-btn1::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-particles.style1 .button-set a.hero-btn1:hover::before {
    left: -50%;
}
.hero-particles.style1 .button-set a.hero-btn1::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-particles.style1 .button-set a.hero-btn1:hover::after {
    right: -50%;
}
.hero-particles.style1 .button-set a.hero-btn2 {
    background-color: transparent;
}
.hero-particles.style1 .button-set a.hero-btn2::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-particles.style1 .button-set a.hero-btn2:hover::before {
    left: 0;
}
.hero-particles.style1 .button-set a.hero-btn2::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-particles.style1 .button-set a.hero-btn2:hover::after {
    right: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/* Style Two */

.hero-particles.style2 {
    position: relative;
    text-align: center;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-particles.style2 .subtitle {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 6px;
    z-index: 1;
}
.hero-particles.style2 .subtitle::before,
.hero-particles.style2 .subtitle::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 45px;
    background-color: var(--main-color);
    top: 50%;
    left: -55px;
}
.hero-particles.style2 .subtitle::after {
    left: inherit;
    right: -55px;
}
.hero-particles.style2 .title {
    position: relative;
    font-size: 85px;
    font-weight: bold;
    margin-bottom: 18px;
    z-index: 1;
}
.hero-particles.style2 .title span {
    color: var(--main-color);
}
.hero-particles.style2 .description {
    margin-bottom: 53px;
}
.hero-particles.style2 .button-set a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border: 1px solid var(--main-color);
    z-index: 1;
    overflow: hidden;
}
.hero-particles.style2 .button-set a.hero-btn1 {
    color: #fff;
    margin-right: 10px;
}
.hero-particles.style2 .button-set a.hero-btn1::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-particles.style2 .button-set a.hero-btn1:hover::before {
    left: -50%;
}
.hero-particles.style2 .button-set a.hero-btn1::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-particles.style2 .button-set a.hero-btn1:hover::after {
    right: -50%;
}
.hero-particles.style2 .button-set a.hero-btn2 {
    background-color: transparent;
}
.hero-particles.style2 .button-set a.hero-btn2::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-particles.style2 .button-set a.hero-btn2:hover::before {
    left: 0;
}
.hero-particles.style2 .button-set a.hero-btn2::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-particles.style2 .button-set a.hero-btn2:hover::after {
    right: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/* Style Three */

.hero-particles.style3 {
    position: relative;
}
.hero-particles.style3 .wrapper {
    position: relative;
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1290px;
    margin: auto;
    padding-top: 100px;
}
.hero-particles.style3 .wrapper .content {
    width: 50%;
}
.hero-particles.style3 .wrapper .single-image {
    width: 50%;
}
.hero-particles.style3 .wrapper .single-image img {
    position: absolute;
    top: 47px;
    right: -200px;
}
.hero-particles.style3 .subtitle {
    color: #4f7efa;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px;
    z-index: 1;
}
.hero-particles.style3 .title {
    position: relative;
    color: #fff;
    font-size: 56px;
    font-weight: bold;
    line-height: 66px;
    margin-bottom: 20px;
    z-index: 1;
}
.hero-particles.style3 .title span {
    position: relative;
    color: #4f7efa;
}
.hero-particles.style3 .title span::before {
    content: "";
    position: absolute;
    background: url(../images/hero3-underline.png);
    background-repeat: no-repeat;
    height: 15px;
    width: 100%;
    bottom: -5px;
}
.hero-particles.style3 .description {
    color: #a0a5b9;
    margin-bottom: 36px;
}
.hero-particles.style3 .button-set a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    padding: 19px 40px;
    background: #2e4ffe;
    background: -moz-linear-gradient(left, #2e4ffe 0%, #4f7efa 100%);
    background: -webkit-linear-gradient(left, #2e4ffe 0%, #4f7efa 100%);
    background: linear-gradient(to right, #2e4ffe 0%, #4f7efa 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e4ffe', endColorstr='#4f7efa',GradientType=1 );
    border-radius: 30px;
    z-index: 1;
}
.hero-particles.style3 .button-set a.hero-btn1 {
    color: #fff;
    margin-right: 10px;
}
.hero-particles.style3 .button-set a.hero-btn1 i {
    transform: rotate(-45deg);
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}
.hero-particles.style3 .button-set a.hero-btn2 {
    color: #fff;
    font-size: 18px;
    background: transparent;
    border-radius: 0;
    margin-left: 92px;
    padding: 0;
}
.hero-particles.style3 .button-set a.hero-btn2::before {
    content: "";
    position: absolute;
    background: url(../images/award.png);
    height: 41px;
    width: 57px;
    top: -8px;
    left: -75px;
}

/*
===================
 Hero Image
===================
*/
.hero-image.style1 .wrapper {
    position: relative;
    height: 600px;
    width: 600px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
}
.hero-image.style1 .wrapper .circle1 {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.hero-image.style1 .wrapper:hover .circle1 {
    z-index: 1;
}
.hero-image.style1 .wrapper:hover .rotate {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}
.hero-image.style1 .wrapper .circle1 a {
    position: absolute;
    color: #fff;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--main-color);
    z-index: 9999;
}
.hero-image.style1 .wrapper .circle1 a:nth-child(1) {
    left: -18px;
    top: 50%;
}
.hero-image.style1 .wrapper .circle1 a:nth-child(2) {
    left: 50%;
    top: -18px;
}
.hero-image.style1 .wrapper .circle1 a:nth-child(3) {
    right: -18px;
    top: 50%;
}
.hero-image.style1 .wrapper .circle1 a:nth-child(4) {
    left: 50%;
    bottom: -18px;
}
.hero-image.style1 .wrapper img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 0;
}

/*
===================
Item List
===================
*/
.item-list.style1 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.item-list.style1 ul li {
    font-size: 18px;
    margin-bottom: 8px;
}
.item-list.style1 ul li:last-child {
    margin-bottom: 0;
}
.item-list.style1 ul li img {
    margin-right: 15px;
}
.item-list.style1 ul li i {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    margin-right: 12px;
    height: 22px;
    width: 22px;
    line-height: 22px;
    text-align: center;
    background-color: var(--main-color);
    border-radius: 50%;
}

/* Style Two */

.item-list.style2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.item-list.style2 ul li {
    color: #7e7e7e;
    font-size: 18px;
    margin-bottom: 13px;
}
.item-list.style2 ul li:last-child {
    margin-bottom: 0;
}
.item-list.style2 ul li span {
    color: var(--title-color);
}
.item-list.style2 ul li i {
    display: inline-block;
    color: var(--main-color);
    margin-right: 10px;
}
.item-list.style2 ul li svg {
    margin: 0 10px 5px 0;
}

/* Style Three */

.item-list.style3 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.item-list.style3 ul li {
    position: relative;
    color: #0d1e35;
    font-weight: 500;
    padding-left: 35px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.item-list.style3 ul li:last-child {
    margin-bottom: 0;
    border: 0;
}
.item-list.style3 ul li::before {
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    background-color: #473bf0;
    left: 6px;
    top: 6px;
    border-radius: 50%;
    z-index: 1;
}
.item-list.style3 ul li::after {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background-color: #f2f2f2;
    left: 0;
    top: 0;
    border-radius: 50%;
}

/*
===================
Brand
===================
*/
.brand.style1 {
    position: relative;
}
.brand.style1 .brand-carousel {
    position: relative;
}
.brand.style1 .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}
.brand.style1 .brand-carousel .brand-item img {
    width: auto;
    object-fit: cover;
    margin: auto;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.brand.style1 .brand-carousel .slick-prev {
    position: absolute;
    color: #0c73ff;
    font-size: 26px;
    height: 50px;
    width: 50px;
    background: #fff;
    bottom: 100%;
    top: inherit;
    right: 50px;
    left: inherit;
    transform: inherit;
}
.brand.style1 .brand-carousel .slick-next {
    position: absolute;
    color: #0c73ff;
    font-size: 26px;
    height: 50px;
    width: 50px;
    background: #fff;
    bottom: 100%;
    top: inherit;
    right: 0;
    transform: inherit;
}
.brand.style1 .brand-carousel .slick-prev::before,
.brand.style1 .brand-carousel .slick-next::before {
    display: none;
}

.brand.style1 .brand-carousel .slick-prev:hover,
.brand.style1 .brand-carousel .slick-next:hover {
    color: #fff;
    background: #0c73ff;
}

/* Style Two */

/* Style Three */

.brand.style3 {
    position: relative;
}
.brand.style3 .brand-carousel {
    position: relative;
}
.brand.style3 .brand-carousel .brand-item img {
    width: auto;
    object-fit: cover;
    filter: grayscale(100%);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.brand.style3 .brand-carousel .brand-item:hover img {
    filter: grayscale(0);
}
.brand.style3 .brand-carousel .slick-prev {
    position: absolute;
    color: #0c73ff;
    font-size: 26px;
    height: 50px;
    width: 50px;
    background: #fff;
    bottom: 100%;
    top: inherit;
    right: 50px;
    left: inherit;
    transform: inherit;
}
.brand.style3 .brand-carousel .slick-next {
    position: absolute;
    color: #0c73ff;
    font-size: 26px;
    height: 50px;
    width: 50px;
    background: #fff;
    bottom: 100%;
    top: inherit;
    right: 0;
    transform: inherit;
}
.brand.style3 .brand-carousel .slick-prev::before,
.brand.style3 .brand-carousel .slick-next::before {
    display: none;
}

.brand.style3 .brand-carousel .slick-prev:hover,
.brand.style3 .brand-carousel .slick-next:hover {
    color: #fff;
    background: #0c73ff;
}

/*
===================
Section Title
===================
*/
.section-title.style1 .subtitle {
    position: relative;
    color: var(--main-color);
    font-size: 28px;
    font-weight: normal;
    font-family: "Arno Pro", cursive;
    letter-spacing: 3px;
    margin: 0 0 18px;
}
.section-title.style1 .title {
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.section-title.style1 .title span {
    color: var(--main-color);
}
.section-title.style1 .description {
    font-size: 18px;
}
.section-title.center {
    text-align: center;
    margin: auto;
}
.section-title.right {
    text-align: right;
}

/* Style Two */

.section-title.style2 .subtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--main-color);
    font-size: 28px;
    font-weight: normal;
    font-family: "Arno Pro", cursive;
    letter-spacing: 0.56px;
    margin: 0 0 18px;
}
.section-title.style2 .subtitle img {
    max-width: 100px;
    margin-right: 10px;
}
.section-title.style2 .title {
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    margin-bottom: 25px;
}
.section-title.style2 .title span {
    color: var(--main-color);
}
.section-title.style2 .description {
    color: #7e7e7e;
    font-size: 18px;
}

/* Style Three */

.section-title.style3 .subtitle {
    position: relative;
    color: #4f7efa;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 17px;
}
.section-title.style3 .title {
    font-size: 38px;
    margin-bottom: 20px;
}
.section-title.style3 .title span {
    position: relative;
    color: #4f7efa;
}
.section-title.style3 .title span::before {
    content: "";
    position: absolute;
    background: url(../images/underline.png);
    background-repeat: no-repeat;
    height: 10px;
    width: 100%;
    bottom: -6px;
}

/*
===================
Service Carousel
===================
*/
.service-section .owl-item {
    background: #fff;
}
.service-section .service-box {
    position: relative;
    padding: 20px 60px 50px 60px;
    box-shadow: 0 14px 46px 0 rgba(13, 30, 53, 0.04);
}
.service-section .service-box::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url("../images/service-img.jpg");
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: -2;
}
.service-section .service-box::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(12, 115, 255, 0.8);
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}
.service-section .service-box:hover::before {
    opacity: 1;
}
.service-section .service-box:hover::after {
    opacity: 1;
}
.service-section .service-box:hover .title h3,
.service-section .service-box:hover .description p,
.service-section .service-box:hover .service-button a {
    color: #fff;
}
.service-section .service-box .number {
    color: #0c73ff;
    font-size: 100px;
    font-weight: 900;
    opacity: 0.1;
}
.service-section .service-box:hover .number {
    color: #6baaff;
}
.service-section .service-box .title h3 {
    font-weight: bold;
    margin: 5px 0 20px;
}
.service-section .service-box .description p {
    color: #7f8388;
    margin: 0 0 22px;
}
.service-section .service-box .service-button a {
    color: #0d1e35;
    font-size: 18px;
    font-weight: bold;
}
.service-section .service-box .service-button a i {
    font-size: 30px;
}
.service-section .owl-dots {
    text-align: center;
    margin-top: 48px;
}
.service-section .owl-dots .owl-dot {
    height: 10px;
    width: 10px;
    background: #0c73ff;
    opacity: 0.11;
    margin-right: 8px;
    transition: 0.5s;
}
.service-section .owl-dots .owl-dot.active {
    width: 40px;
    opacity: 1;
}

/*
===================
Working Process
===================
*/
.process__row {
    text-align: center;
    position: relative;
    padding: 0px 75px;
}

.process__row::before {
    content: url(../images/shape-dashed.png);
    position: absolute;
    left: 0;
    top: 55px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.process-box .icon {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    z-index: 1;
    height: 150px;
    width: 150px;
    line-height: 150px;
    border-radius: 50%;
    background: #5347f9;
}

.process-box .icon i {
    color: #fff;
    font-size: 60px;
}

.process-box .process-title {
    color: #ffffff;
    font-weight: 600;
    text-transform: capitalize;
}

.process__number {
    color: #473bf0;
    font-weight: 600;
    height: 40px;
    width: 40px;
    background: #ffffff;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/* Style Two
-------------*/

.working-carousel .process-carousel {
    position: relative;
}
.working-carousel .process-carousel .process-box {
    position: relative;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 45px 15px 20px;
}
.working-carousel .process-carousel .process-box .icon {
    color: #0c73ff;
    font-size: 90px;
    margin-bottom: 30px;
}
.working-carousel .process-carousel .process-box .content .process-title {
    color: #fff;
}
.working-carousel .process-carousel .process-box .content p {
    color: #546b89;
}
.working-carousel .slick-slide {
    margin: 0 15px;
}
.working-carousel .slick-list {
    margin: 0 -15px;
    overflow: hidden;
}
.working-carousel .process-carousel .slick-prev {
    color: #0c73ff;
    font-size: 26px;
    height: 50px;
    width: 50px;
    background: #fff;
    top: inherit;
    bottom: -89px;
    right: 50px;
    left: inherit;
    transform: inherit;
}
.working-carousel .process-carousel .slick-next {
    color: #0c73ff;
    font-size: 26px;
    height: 50px;
    width: 50px;
    background: #fff;
    top: inherit;
    bottom: -89px;
    right: 0;
    transform: inherit;
}
.working-carousel .process-carousel .slick-prev::before,
.working-carousel .process-carousel .slick-next::before {
    display: none;
}

.working-carousel .process-carousel .slick-prev:hover,
.working-carousel .process-carousel .slick-next:hover {
    color: #fff;
    background: #0c73ff;
}

.search-box {
    position: relative;
}
.search-box .search-input {
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 0;
    padding: 16px 10px 16px 29px;
    width: 200px;
    outline: 0;
}
.search-box button {
    position: absolute;
    color: #0c73ff;
    font-size: 14px;
    height: 30px;
    width: 30px;
    border: 0;
    background: #fff;
    left: 184px;
    top: 50%;
    transform: translateY(-50%);
}
.search-box .search-input::placeholder {
    color: #fff;
    font-weight: bold;
}

/*
===================
Team Section
===================
*/
.single-team.style1 {
    position: relative;
    text-align: center;
    padding: 40px 20px 34px;
    border-radius: 5px;
    background-color: #f5f7f6;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-team.style1:hover {
    background-color: #121d17;
}
.single-team.style1 .profile-picture {
    position: relative;
    overflow: hidden;
}
.single-team.style1 .profile-picture img {
    height: 215px;
    width: 215px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid rgba(18, 29, 23, 0.1);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-team.style1:hover .profile-picture img {
    border-color: #ff8711;
}
.single-team.style1 .bio .name {
    font-size: 20px;
    font-weight: 600;
    margin: 23px 0 7px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-team.style1:hover .bio .name {
    color: #fff;
}
.single-team.style1 .bio .designation {
    color: var(--main-color);
    margin: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-team.style1:hover .bio .designation {
    color: #ff8711;
}

/* Style Two
---------------*/
.single-team.style2 {
    position: relative;
}
.single-team.style2 .profile-picture img {
    width: 100%;
}
.single-team.style2 .profile-picture {
    position: relative;
}
.single-team.style2 .profile-picture::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to top, #0d1e35 0%, transparent 50%);
}
.single-team.style2 .team-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 30px 50px 30px;
}
.single-team.style2 .team-content .team-button2 span {
    display: inline-block;
    color: #1075ff;
    font-size: 20px;
    font-weight: bold;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: #fff;
    margin-bottom: 35px;
    cursor: pointer;
}
.single-team.style2 .team-content .social-icons2 {
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.single-team.style2 .team-content .social-icons2 a {
    color: #0c73ff;
    background-color: #fff;
    height: 50px;
    width: 50px;
    line-height: 50px;
}
.single-team.style2 .team-content .name-designation h3 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 3px;
}
.single-team.style2 .team-content .name-designation h6 {
    color: #b6cae5;
    font-size: 14px;
    font-weight: normal;
}

/* Style Three
---------------*/
.single-team.style3 {
    position: relative;
    text-align: center;
    padding: 12px;
    background-color: #fff;
}
.single-team.style3 .profile-picture {
    position: relative;
    overflow: hidden;
}
.single-team.style3 .profile-picture .team-button {
    position: absolute;
    height: 60px;
    width: 60px;
    line-height: 45px;
    background: #fff;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: auto;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    color: #0c73ff;
    font-weight: bold;
    cursor: pointer;
}
.single-team.style3 .profile-picture .team-button::before {
    content: "+";
    font-size: 24px;
}
.single-team.style3 .profile-picture .team-button.active::before {
    content: "-";
    font-size: 34px;
}
.single-team.style3 .profile-picture img {
    width: 100%;
}
.single-team.style3 .profile-picture .social-icons {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}
.single-team.style3 .profile-picture .social-icons a {
    color: #0c73ff;
    font-size: 18px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 5px;
}
.single-team.style3 .name-designation {
    padding: 35px 0 0;
}
.single-team.style3 .name-designation h3 {
    color: #0d1e35;
    font-weight: bold;
    margin: 0 0 5px;
}
.single-team.style3 .name-designation h6 {
    color: #0c73ff;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Style Four
---------------*/
.single-team.style4 {
    position: relative;
    text-align: center;
    background-color: #fff;
}
.single-team.style4 .profile-picture {
    position: relative;
    overflow: hidden;
}
.single-team.style4 .profile-picture::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(22, 28, 45, 0.4);
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.single-team.style4:hover .profile-picture::before {
    opacity: 1;
    visibility: visible;
}
.single-team.style4 .profile-picture img {
    width: 100%;
}
.single-team.style4 .profile-picture .team-social-icons {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    transition: 0.5s;
}
.single-team.style4:hover .profile-picture .team-social-icons {
    bottom: 30px;
}
.single-team.style4 .profile-picture .team-social-icons a {
    display: inline-block;
    color: #fff;
    height: 45px;
    width: 45px;
    line-height: 45px;
    background: var(--main-color);
    margin-right: 5px;
    border-radius: 50%;
}
.single-team.style4 .profile-picture .team-social-icons a:hover {
    color: var(--main-color);
    background-color: #fff;
}
.single-team.style4 .team-content {
    padding: 35px 10px 20px 10px;
    box-shadow: 0px 10px 60px 0px rgba(22, 28, 45, 0.06);
}
.single-team.style4 .team-content h3 {
    font-size: 20px;
    margin: 0;
}
.single-team.style4 .team-content p {
    color: var(--main-color);
}

/*
===================
Single Button
===================
*/
.single-button.style1 .button {
    position: relative;
    display: inline-flex;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 13px 30px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-button.style1 .button:hover {
    color: var(--main-color);
}
.single-button.style1 .button i {
    font-size: 9px;
    margin-left: 5px;
}
.single-button.style1 .button::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-button.style1 .button:hover::before {
    left: -50%;
}
.single-button.style1 .button::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-button.style1 .button:hover::after {
    right: -50%;
}

/* Style Two */

.single-button.style2 .button {
    position: relative;
    display: flow-root;
    color: var(--main-color);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--main-color);
    padding: 13px 35px;
    z-index: 1;
    overflow: hidden;
}
.single-button.style2 .button:hover {
    color: #fff;
}
.single-button.style2 .button::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-button.style2 .button:hover::before {
    left: 0;
}
.single-button.style2 .button::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-button.style2 .button:hover::after {
    right: 0;
}
.single-button.style2 .button i {
    font-size: 9px;
    margin-left: 5px;
}

/* Style Three */

.single-button.style3 a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 19px 40px;
    background: #2e4ffe;
    background: -moz-linear-gradient(left, #2e4ffe 0%, #4f7efa 100%);
    background: -webkit-linear-gradient(left, #2e4ffe 0%, #4f7efa 100%);
    background: linear-gradient(to right, #2e4ffe 0%, #4f7efa 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e4ffe', endColorstr='#4f7efa',GradientType=1 );
    border-radius: 30px;
}
.single-button.style3 a i {
    transform: rotate(-45deg);
    display: inline-block;
    font-size: 14px;
    margin-left: 3px;
}

/* Style Four */

.app-store a {
    display: inline-flex;
    background: #fff;
    padding: 15px 20px 15px;
}
.app-store a img {
    margin-right: 9px;
}
.app-store a p {
    color: #7f8388;
    font-size: 10px;
    margin: 0;
    line-height: 1;
    margin-right: 6px;
}
.app-store a p .large-text {
    color: #0d1e35;
    font-size: 16px;
    font-weight: bold;
}

/*
===================
Circular Progress
===================
*/
.app-download {
    display: inline-flex;
    align-items: center;
    background: #fff;
    height: 130px;
    width: 340px;
    padding: 0 30px;
}
.app-download {
    top: 40px;
    right: -170px;
}
.app-download .circle_percent {
    font-size: 74px;
    width: 1em;
    height: 1em;
    position: relative;
    background: #eee;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    margin-right: 20px;
}
.app-download .circle_inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 1em;
    clip: rect(0 1em 1em 0.5em);
}
.app-download .round_per {
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 1em;
    background: #0c73ff;
    clip: rect(0 1em 1em 0.5em);
    transform: rotate(180deg);
    transition: 1.05s;
}
.app-download .percent_more .circle_inner {
    clip: rect(0 0.5em 1em 0em);
}
.app-download .percent_more:after {
    position: absolute;
    left: 0.5em;
    top: 0em;
    right: 0;
    bottom: 0;
    background: #0c73ff;
    content: "";
}
.app-download .circle_inbox {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #fff;
    z-index: 3;
    border-radius: 50%;
}
.app-download .percent_text {
    position: absolute;
    color: #0c73ff;
    font-size: 20px;
    font-weight: bold;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.app-download .description h3 {
    color: #0d1e35;
    font-weight: bold;
    margin: 0;
}
.app-download .description p {
    color: #7f8388;
    font-size: 14px;
    margin: 2px 0 0;
}

/*
===================
Testimonial
===================
*/

.testimonial.style1 .single-testimonial {
    position: relative;
    margin: 30px 0 35px;
    padding: 45px 40px 50px;
    border: 1px solid rgba(22, 22, 22, 0.1);
}
.testimonial.style1 .single-testimonial::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 30px;
    left: -30px;
    top: -30px;
    border-top: 1px solid rgba(22, 22, 22, 0.1);
    border-left: 1px solid rgba(22, 22, 22, 0.1);
}
.testimonial.style1 .single-testimonial::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 30px;
    right: -30px;
    bottom: -30px;
    border-bottom: 1px solid rgba(22, 22, 22, 0.1);
    border-right: 1px solid rgba(22, 22, 22, 0.1);
}
.testimonial.style1 .single-testimonial .icon {
    position: absolute;
    top: -30px;
    left: 50px;
    padding: 0 15px;
    background-color: #fff;
}
.testimonial.style1 .single-testimonial .icon img {
    height: auto;
    width: auto;
}
.testimonial.style1 .single-testimonial .quote-text {
    position: relative;
    line-height: 1.7;
}
.testimonial.style1 .single-testimonial .client-profile {
    position: absolute;
    bottom: -35px;
    right: 60px;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 0 18px;
}
.testimonial.style1 .single-testimonial .client-profile .image {
    margin-right: 20px;
    padding: 5px;
    border: 1px solid rgba(22, 22, 22, 0.1);
    border-radius: 50%;
}
.testimonial.style1 .single-testimonial .client-profile .image img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial.style1 .single-testimonial .client-bio .name {
    color: #626060;
    font-size: 20px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    margin-bottom: 0;
}
.testimonial.style1 .single-testimonial .client-bio .designation {
    color: #626060;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0;
}
.testimonial.style1 .owl-nav {
    text-align: center;
    margin-top: 40px;
}
.testimonial.style1 .owl-nav .owl-prev,
.testimonial.style1 .owl-nav .owl-next {
    color: var(--main-color);
    height: 50px;
    width: 50px;
    border: 1px solid var(--main-color);
    border-radius: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    opacity: 0.5;
}
.testimonial.style1 .owl-nav .owl-prev:hover,
.testimonial.style1 .owl-nav .owl-next:hover {
    opacity: 1;
}
.testimonial.style1 .owl-nav .owl-prev {
    margin-right: 10px;
}

/* Style One Dark */

.testimonial.style1.dark .single-testimonial {
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial.style1.dark .single-testimonial::before {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial.style1.dark .single-testimonial::after {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial.style1.dark .single-testimonial .icon {
    background-color: #1a1a1a;
}
.testimonial.style1.dark .single-testimonial .client-profile {
    background-color: #1a1a1a;
}

/* Style Two */

.testimonial.style2 {
    position: relative;
}
.testimonial.style2 .single-testimonial {
    position: relative;
    display: flex;
    align-items: center;
}
.testimonial.style2 .single-testimonial .image {
    flex-shrink: 0;
    margin-right: 140px;
}
.testimonial.style2 .single-testimonial .image img {
    height: 415px;
    width: 415px;
    object-fit: cover;
}
.testimonial.style2 .single-testimonial::before {
    content: "";
    position: absolute;
    height: 32px;
    width: 54px;
    background: url(../images/quote-icon.png);
    background-repeat: no-repeat;
    right: 0;
    top: 0;
}
.testimonial.style2 .single-testimonial .rating-stars {
    margin: 0 0 22px;
}
.testimonial.style2 .single-testimonial .rating-stars i {
    font-size: 24px;
    color: var(--main-color);
    margin-right: 5px;
}
.testimonial.style2 .single-testimonial .title {
    font-size: 36px;
    font-weight: normal;
    font-family: "Outfit", sans-serif;
    margin-bottom: 21px;
}
.testimonial.style2 .single-testimonial .quote-text {
    color: #7e7e7e;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 37px;
}
.testimonial.style2 .single-testimonial .client-profile {
    display: flex;
    align-items: center;
}
.testimonial.style2 .single-testimonial .client-profile .client-bio h3 {
    font-weight: normal;
    font-family: "Outfit", sans-serif;
    margin: 0 0 2px;
}
.testimonial.style2 .single-testimonial .designation {
    color: var(--main-color);
    text-transform: uppercase;
    margin: 0;
}
.testimonial.style2 .owl-nav {
    position: absolute;
    right: 0;
    bottom: 25px;
}
.testimonial.style2 .owl-nav .owl-prev {
    margin-right: 10px;
}
.testimonial.style2 .owl-nav .owl-prev,
.testimonial.style2 .owl-nav .owl-next {
    color: var(--main-color);
    font-size: 20px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid var(--main-color);
    border-radius: 0;
    transition: 0.3s;
}
.testimonial.style2 .owl-nav .owl-prev:hover,
.testimonial.style2 .owl-nav .owl-next:hover {
    color: #fff;
    background-color: var(--main-color);
}

/* Style Three */

.testimonial.style3 .single-testimonial {
    background-color: #fff;
    padding: 40px 40px 36px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.testimonial.style3 .single-testimonial:hover {
    border-color: var(--main-color);
}
.testimonial.style3 .single-testimonial .rating-stars i {
    color: #cacaca;
    font-size: 14px;
}
.testimonial.style3 .single-testimonial .rating-stars i.active {
    color: var(--main-color);
}
.testimonial.style3 .single-testimonial .client-profile {
    display: flex;
    align-items: center;
    margin-bottom: 33px;
}
.testimonial.style3 .single-testimonial .client-profile .image {
    margin-right: 30px;
}
.testimonial.style3 .single-testimonial .client-profile .image img {
    height: 100px;
    width: 100px;
    object-fit: cover;
}
.testimonial.style3 .single-testimonial .client-profile .client-bio h5 {
    font-size: 20px;
    margin-bottom: 4px;
}
.testimonial.style3 .single-testimonial .client-profile .client-bio .designation {
    font-weight: 600;
    margin-bottom: 9px;
}
.testimonial.style3 .single-testimonial .quote-text p {
    margin: 0;
}

.testimonial.style3 .owl-carousel .owl-nav button.owl-prev,
.testimonial.style3 .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    font-size: 18px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.testimonial.style3 .owl-carousel .owl-nav button.owl-prev {
    left: -20px;
}
.testimonial.style3 .owl-carousel .owl-nav button.owl-next {
    right: -20px;
}
.testimonial.style3 .owl-carousel .owl-nav button.owl-prev:hover,
.testimonial.style3 .owl-carousel .owl-nav button.owl-next:hover {
    color: #fff;
    background-color: var(--main-color);
}

/* Style Four */

.testimonial.style4 .single-testimonial {
    display: flex;
    align-items: center;
    background-image: url("../images/quote-img.png");
    background-repeat: no-repeat;
    background-position: right center;
}
.testimonial.style4 .single-testimonial .testimonial-content .client-profile {
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.testimonial.style4 .single-testimonial .testimonial-content .client-profile .image {
    margin-right: 20px;
}
.testimonial.style4 .single-testimonial .testimonial-content .client-profile .image img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial.style4 .single-testimonial .testimonial-content .client-bio .name {
    color: #0d1e35;
    margin-bottom: 8px;
}
.testimonial.style4 .single-testimonial .testimonial-content .client-bio .designation {
    color: var(--main-color);
    font-weight: 600;
}
.testimonial.style4 .owl-dots {
    margin-top: 50px;
}
.testimonial.style4 .owl-dots .owl-dot {
    height: 20px;
    width: 20px;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    margin-right: 10px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.testimonial.style4 .owl-dots .owl-dot.active {
    background-color: var(--main-color);
}

/* Style Five */

.testimonial.style5 .single-testimonial {
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: 0.3s;
}
.testimonial.style5 .wrapper {
    padding: 40px 35px 38px;
}
.testimonial.style5 .single-testimonial:hover {
    border-color: var(--main-color);
    background-color: rgba(255, 255, 255, 0.05);
}
.testimonial.style5 .single-testimonial .image {
    margin-right: 20px;
}
.testimonial.style5 .single-testimonial .image img {
    height: 80px;
    width: 80px;
    margin: auto;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial.style5 .single-testimonial .client-profile {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(18, 29, 23, 0.1);
    margin-bottom: 20px;
    padding-bottom: 30px;
}
.testimonial.style5 .single-testimonial .quote-text {
    font-family: "Poppins", sans-serif;
    line-height: 1.9;
    margin-bottom: 0;
}
.testimonial.style5 .single-testimonial .name {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 4px;
}
.testimonial.style5 .single-testimonial .designation {
    color: var(--main-color);
    font-size: 15px;
    margin-bottom: 0;
}
.testimonial.style5 .single-testimonial .testi-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    background-color: rgba(247, 247, 247, 0.05);
}
.testimonial.style5 .single-testimonial .testi-footer .icon img {
    width: auto;
}
.testimonial.style5 .single-testimonial .testi-footer .rating-stars i {
    color: #ffa439;
    font-size: 14px;
}

.testimonial.style5 .owl-dots {
    text-align: center;
    margin-top: 65px;
}
.testimonial.style5 .owl-dots .owl-dot {
    height: 12px;
    width: 12px;
    border: 2px solid rgba(18, 29, 23, 0.2);
    border-radius: 50%;
    margin-right: 8px;
}
.testimonial.style5 .owl-dots .owl-dot.active {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

/*
===================
Blog Post
===================
*/

.blog-post.style1 .blog-box {
    position: relative;
}
.blog-post.style1 .blog-box .blog-thumb {
    height: 430px;
}
.blog-post.style1 .blog-box .content-wrapper {
    width: 85%;
    margin: -100px auto 0;
}
.blog-post.style1 .blog-box .content-wrapper .blog-content {
    padding: 30px 35px 17px;
    background-color: #fff;
    box-shadow: 0px 10px 30px 2px rgb(104 110 125 / 8%);
}
.blog-post.style1 .blog-box .content-wrapper .blog-content .blog-title {
    font-size: 26px;
    font-weight: normal;
    line-height: 1.4;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.blog-post.style1 .blog-box .content-wrapper .blog-content .blog-title a {
    color: var(--title-color);
}
.blog-post.style1 .blog-box .content-wrapper .blog-content .blog-title a:hover {
    color: var(--main-color);
}
.blog-post.style1 .blog-box .content-wrapper .blog-content .blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}
.blog-post.style1 .blog-box .content-wrapper .blog-content .blog-meta .author {
    font-weight: 300;
}
.blog-post.style1 .blog-box .content-wrapper .blog-content .blog-meta .bar {
    height: 2px;
    width: 6px;
    background-color: var(--paragraph-color);
    margin: 0 10px;
}
.blog-post.style1 .blog-box .content-wrapper .blog-content .blog-meta .date {
    font-weight: 300;
}
.blog-post.style1 .owl-nav .owl-prev,
.blog-post.style1 .owl-nav .owl-next {
    position: absolute;
    top: 34%;
    color: #fff;
    height: 50px;
    width: 50px;
    background-color: var(--main-color);
    border-radius: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.blog-post.style1 .owl-nav .owl-prev {
    left: 0;
}
.blog-post.style1 .owl-nav .owl-next {
    right: 0;
}
.blog-post.style1 .owl-nav .owl-prev:hover,
.blog-post.style1 .owl-nav .owl-next:hover {
    color: var(--main-color);
    background-color: #fff;
}

/* Style Two */

.blog-post.style2 .blog-box .blog-thumb {
    position: relative;
    height: 300px;
    width: auto;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.blog-post.style2 .blog-box .blog-content {
    padding: 23px 30px 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.blog-post.style2 .blog-box:hover .blog-content {
    background-color: rgba(255, 255, 255, 0.05);
}
.blog-post.style2 .blog-box .blog-content .blog-meta {
    position: relative;
    display: flex;
    align-items: center;
}
.blog-post.style2 .blog-box .blog-content .category {
    display: flex;
    align-items: center;
}
.blog-post.style2 .blog-box .blog-content .category i {
    font-size: 14px;
    margin-right: 5px;
    background: -webkit-linear-gradient(left, #2e4ffe 0%, #4f7efa 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-post.style2 .blog-box .blog-content .category ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.blog-post.style2 .blog-box .blog-content .category a {
    color: #a0a5b9;
}
.blog-post.style2 .blog-box .blog-content .blog-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.blog-post.style2 .blog-box .blog-content .blog-title a {
    color: #fff;
}
.blog-post.style2 .blog-box .blog-content .description {
    color: #a0a5b9;
    line-height: 26px;
}
.blog-post.style2 .blog-box .blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 0;
    padding-left: 30px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.blog-post.style2 .blog-box:hover .blog-footer {
    background-color: rgba(255, 255, 255, 0.05);
}
.blog-post.style2 .blog-box .blog-footer p {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}
.blog-post.style2 .blog-box .blog-footer a {
    position: relative;
    display: inline-block;
    color: #a0a5b9;
    padding: 20px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-post.style2 .blog-box:hover .blog-footer a {
    color: #fff;
}
.blog-post.style2 .blog-box .blog-footer a::before {
    content: "";
    position: absolute;
    height: 100%;
    background: linear-gradient(to right, #2e4ffe 0%, #4f7efa 100%);
    top: 0;
    right: 0;
    border-bottom-right-radius: 5px;
    width: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.blog-post.style2 .blog-box:hover .blog-footer a::before {
    width: 100%;
}
.blog-post.style2 .blog-box .blog-footer a i {
    transform: rotate(-45deg);
    display: inline-block;
    font-size: 14px;
}

/* Style Three */

.blog-post.style3 .blog-box {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}
.blog-post.style3 .post-thumb img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.blog-post.style3 .blog-box .blog-content {
    padding: 22px 30px 24px;
    transition: 0.5s;
}
.blog-post.style3 .blog-box .blog-content .post-categories {
    margin: 0;
    padding: 0;
    list-style: none;
}
.blog-post.style3 .blog-box .blog-content .post-categories li a {
    display: inline-block;
    color: var(--main-color);
    font-size: 15px;
    font-family: "Poppins", sans-serif;
}
.blog-post.style3 .blog-box .blog-content .blog-title {
    font-weight: 600;
    margin-top: 13px;
    margin-bottom: 0;
}
.blog-post.style3 .blog-box .blog-content .blog-title a {
    color: var(--title-color);
}
.blog-post.style3 .blog-box .blog-content .blog-title a:hover {
    color: var(--main-color);
}
.blog-post.style3 .blog-box .post-footer {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-top: 1px solid rgba(18, 29, 23, 0.1);
}
.blog-post.style3 .blog-box .author {
    text-transform: capitalize;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}
.blog-post.style3 .blog-box .author span {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--main-color);
    margin-right: 5px;
}
.blog-post.style3 .owl-item:nth-child(odd) .blog-box .author span {
    background-color: #ff8711;
}
.blog-post.style3 .blog-box .post-footer .bar {
    height: 15px;
    width: 2px;
    background-color: rgba(18, 29, 23, 0.1);
    margin: 0 15px;
}

.blog-post.style3 .owl-carousel .owl-nav button.owl-prev,
.blog-post.style3 .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    font-size: 18px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.blog-post.style3 .owl-carousel .owl-nav button.owl-prev {
    left: -20px;
}
.blog-post.style3 .owl-carousel .owl-nav button.owl-next {
    right: -20px;
}
.blog-post.style3 .owl-carousel .owl-nav button.owl-prev:hover,
.blog-post.style3 .owl-carousel .owl-nav button.owl-next:hover {
    color: #fff;
    background-color: var(--main-color);
}

/* Style Four */

.blog-post.style4 .blog-box .blog-wrapper {
    position: relative;
    height: 395px;
    width: 100%;
}
.blog-post.style4 .blog-box .blog-wrapper::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, #263b58 0%, transparent 100%);
}
.blog-post.style4 .blog-box .blog-wrapper .blog-content {
    position: absolute;
    bottom: 0;
    padding: 0 50px 40px 50px;
}
.blog-post.style4 .blog-box .blog-wrapper .blog-content .blog-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.blog-post.style4 .blog-box .blog-wrapper .blog-content .blog-meta .bar {
    height: 12px;
    width: 1px;
    background: #fff;
    margin-right: 12px;
}
.blog-post.style4 .blog-box .blog-wrapper .blog-content .category,
.blog-post.style4 .blog-box .blog-wrapper .blog-content .author {
    position: relative;
    color: #fff;
    font-size: 14px;
    flex-grow: 0;
    flex-shrink: 0;
}
.blog-post.style4 .blog-box .blog-wrapper .blog-content .category i,
.blog-post.style4 .blog-box .blog-wrapper .blog-content .author i {
    margin-right: 5px;
}
.blog-post.style4 .blog-box .blog-wrapper .blog-content .category {
    display: flex;
    align-items: center;
    margin-right: 12px;
}
.blog-post.style4 .blog-box .blog-wrapper .blog-content .category ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.blog-post.style4 .blog-box .blog-wrapper .blog-content .category ul li a {
    color: #fff;
}
.blog-post.style4 .blog-box .blog-wrapper .blog-content .blog-title {
    margin-top: 15px;
}
.blog-post.style4 .blog-box .blog-wrapper .blog-content .blog-title a {
    color: #fff;
}

/* Style Five */

.blog-post.style5 .blog-box {
    position: relative;
    margin-bottom: 157px;
}
.blog-post.style5 .blog-box .blog-thumb {
    height: 450px;
}
.blog-post.style5 .blog-box .content-wrapper {
    border: 2px solid #fff;
    padding: 10px;
    position: absolute;
    bottom: -127px;
    width: 80%;
    margin: auto;
    left: 0;
    right: 0;
}
.blog-post.style5 .blog-box .content-wrapper .blog-content {
    padding: 34px 40px 17px;
    background-color: #fff;
    box-shadow: 0px 10px 30px 2px rgb(104 110 125 / 8%);
}
.blog-post.style5 .blog-box .content-wrapper .blog-content .blog-title {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}
.blog-post.style5 .blog-box .content-wrapper .blog-content .blog-title a {
    color: #161c2d;
}
.blog-post.style5 .blog-box .content-wrapper .blog-content .blog-excerpt {
    margin-bottom: 38px;
}
.blog-post.style5 .blog-box .content-wrapper .blog-content .blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding: 15px 0 0;
}
.blog-post.style5 .blog-box .content-wrapper .blog-content .blog-meta .category {
    margin-right: 20px;
}
.blog-post.style5 .blog-box .content-wrapper .blog-content .blog-meta .category ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.blog-post.style5 .blog-box .content-wrapper .blog-content .blog-meta .bar {
    height: 20px;
    width: 1px;
    background-color: #161c2d;
    margin-right: 20px;
}

/*
===================
Subscribe Form
===================
*/
.subscribe-form {
    position: relative;
}
.subscribe-form i {
    position: absolute;
    top: 49%;
    transform: translateY(-49%);
    left: 40px;
    color: #818790;
    z-index: 2;
}
.subscribe-form .subscribe-input {
    padding: 23px 48px 23px 70px;
    outline: 0;
    border: 0;
    border-radius: 0;
    width: 70%;
}
.subscribe-form .submit-btn {
    position: absolute;
    color: #fff;
    font-weight: bold;
    background: #0c73ff;
    border: 0;
    padding: 25px 10px 25px;
    top: 47%;
    transform: translateY(-50%);
    right: 0;
    width: 30%;
}

/*
===================
Latest Post
===================
*/
.latest-posts .single-post {
    display: table;
    margin-bottom: 30px;
}
.latest-posts .single-post:last-child {
    margin-bottom: 0;
}
.latest-posts .single-post .post-thumb {
    height: 80px;
    width: 100px;
    margin-right: 24px;
    border-radius: 3px;
}
.latest-posts .single-post .post-content {
    display: table-cell;
    vertical-align: middle;
}
.latest-posts .single-post .post-content .title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 5px;
}
.latest-posts .single-post .post-content .title a {
    color: #fff;
}
.latest-posts .single-post .post-content .title a:hover {
    color: #7bb92f;
}
.latest-posts .single-post .post-content .date {
    color: var(--main-color);
    font-size: 13px;
    font-family: "Poppins", sans-serif;
}

/*
===================
Feature Box
===================
*/
.feature-box.style1 {
    border: 1px solid rgba(22, 22, 22, 0.1);
    padding: 30px 35px 30px;
}
.feature-box.style1 .number {
    position: absolute;
    right: 35px;
    top: 35px;
    color: var(--main-color);
    font-size: 52px;
    font-family: var(--title-font);
    font-weight: bold;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    opacity: 0.3;
}
.feature-box.style1 .icon {
    flex-grow: 0;
    flex-shrink: 0;
    margin-bottom: 15px;
}
.feature-box.style1 .content .title {
    font-size: 24px;
    font-weight: normal;
    margin: 0;
}
.feature-box.style1 .content .underline {
    display: inline-block;
    height: 1px;
    width: 60px;
    background-color: var(--main-color);
    opacity: 0.4;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.feature-box.style1:hover .content .underline {
    width: 100%;
    opacity: 1;
}
.feature-box.style1 .content .description {
    margin: 12px 0 0;
}

/* Style Two */

.feature-box.style2 {
    display: flex;
}
.feature-box.style2 .icon {
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 28px;
}
.feature-box.style2 .icon i {
    font-size: 30px;
}
.feature-box.style2 .content .title {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 7px;
    padding-left: 42px;
}
.feature-box.style2 .content .title::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 30px;
    background-color: #fff;
    left: 0;
    top: 13px;
}
.feature-box.style2 .content .description {
    margin-bottom: 0;
}

/*
===================
 Flip Box
===================
*/

.flip-box.style1 {
    background-color: transparent;
    height: 350px;
    perspective: 1000px;
}

.flip-box.style1 .flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box.style1:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box.style1 .flip-box-front,
.flip-box.style1 .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box.style1 .flip-box-front {
    background-color: #bbb;
    color: black;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 35px;
}
.flip-box.style1 .flip-box-front .title {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}
.flip-box.style1 .flip-box-back {
    background-color: dodgerblue;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
}

.flip-box.style1 .flip-box-back .title {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.flip-box.style1 .flip-box-back .description {
    margin-bottom: 28px;
}
.flip-box.style1 .flip-box-back .back-btn {
    display: inline-block;
    color: var(--main-color);
    font-weight: 600;
}

/*
===================
Service Box
===================
*/

.service-box.style1 .image {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.service-box.style1 .image:before {
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1;
}
.service-box.style1:hover .image:before {
    height: 250%;
    -webkit-transition: all 900ms linear;
    transition: all 900ms linear;
    background-color: transparent;
}
.service-box.style1 .image img {
    width: 100%;
    object-fit: cover;
}
.service-box.style1 .content {
    position: relative;
    padding: 26px 0 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.service-box.style1 .content .subtitle {
    color: var(--main-color);
    font-size: 28px;
    font-weight: normal;
    font-family: "Arno Pro", cursive;
    letter-spacing: 2px;
}
.service-box.style1 .title {
    position: relative;
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.service-box.style1 .description p {
    margin-bottom: 31px;
}
.service-box.style1 .service-btn a {
    position: relative;
    display: inline-block;
    color: var(--title-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 30px;
    border: 1px solid var(--main-color);
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
}
.service-box.style1 .service-btn a:hover {
    color: #fff;
}
.service-box.style1 .service-btn a::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.service-box.style1 .service-btn a:hover::before {
    left: 0;
}
.service-box.style1 .service-btn a::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.service-box.style1 .service-btn a:hover::after {
    right: 0;
}
.service-box.style1 .service-btn a i {
    display: inline-block;
    font-size: 12px;
    margin-left: 5px;
}

/* Style Two */

.service-box.style2 {
    position: relative;
    display: flex;
    background-color: #fff;
}
.service-box.style2 .icon {
    margin-right: 25px;
}
.service-box.style2 .icon {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    flex-shrink: 0;
}
.service-box.style2:hover .icon {
    color: var(--main-color);
    background: #fff;
}
.service-box.style2 .icon i {
    font-size: 55px;
}
.service-box.style2 .title {
    position: relative;
    font-weight: normal;
    font-family: "Outfit", sans-serif;
    margin-bottom: 22px;
}
.service-box.style2 .description p {
    color: #7e7e7e;
    font-size: 18px;
    margin-bottom: 18px;
}
.service-box.style2 .content {
    position: relative;
}
.service-box.style2 .content .service-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--main-color);
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
}
.service-box.style2 .content .service-btn a::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 46px;
    background-color: var(--main-color);
    bottom: 8px;
    left: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
}
.service-box.style2 .content .service-btn a:hover::before {
    width: 100%;
}
.service-box.style2 .content .service-btn a i {
    display: inline-block;
    font-size: 24px;
    margin-left: 3px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
}

/* Style Three */

.service-box.style3 {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}
.service-box.style3 .content {
    position: relative;
    padding: 74px 35px 20px;
}
.service-box.style3 .title h3 {
    margin-bottom: 14px;
}
.service-box.style3 .description p {
    margin-bottom: 0;
}
.service-box.style3 .icon {
    position: absolute;
    left: 0;
    right: 0;
    top: -60px;
}
.service-box.style3 .icon i {
    display: inline-block;
    color: #fff;
    font-family: "Flaticon";
    font-style: normal;
    font-size: 36px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    height: 120px;
    width: 120px;
    line-height: 95px;
    background: var(--main-color);
    border-radius: 50%;
    border: 15px solid #fff;
}
.service-box.style3 .image {
    position: relative;
    width: 100%;
}

/* Style Four */

.service-box.style4 {
    position: relative;
    text-align: center;
    background-color: #fff;
    padding: 0 30px 25px;
    box-shadow: 0px 8px 20px 0px rgba(34, 36, 41, 0.05);
}
.service-box.style4 .content {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service-box.style4 .icon {
    margin-bottom: 35px;
}
.service-box.style4 .icon i {
    color: #473bf0;
    font-size: 46px;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #f6f6f8;
    text-align: center;
}
.service-box.style4 .icon i {
    display: inline-block;
    color: var(--main-color);
    font-family: "Flaticon";
    font-style: normal;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
}
.service-box.style4:hover .icon i {
    color: #fff;
    background-color: var(--main-color);
}
.service-box.style4 .title h4 {
    position: relative;
    margin-bottom: 37px;
}
.service-box.style4 .title h4::before {
    content: "";
    position: absolute;
    height: 5px;
    width: 65px;
    background-color: #f6f6f8;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -18px;
}
.service-box.style4 .description p {
    margin-bottom: 12px;
}
.service-box.style4 .content .text a {
    display: inline-flex;
    align-items: center;
    color: #473bf0;
    font-size: 18px;
    font-weight: 500;
}
.service-box.style4 .content .text a i {
    font-size: 30px;
}

/* Style Five */

.service-box.style5 .image {
    position: relative;
    width: 100%;
}
.service-box.style5 .image img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.service-box.style5 .content {
    position: relative;
    padding: 30px 30px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.service-box.style5:hover .content {
    background-color: rgba(255, 255, 255, 0.05);
}
.service-box.style5 .title h3 {
    position: relative;
    font-size: 20px;
    margin-bottom: 37px;
}
.service-box.style5 .title h3::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 40px;
    background-color: #4f7efa;
    opacity: 0.5;
    bottom: -11px;
    transition: 0.5s;
}
.service-box.style5:hover .title h3::before {
    width: 53px;
    opacity: 1;
}
.service-box.style5:hover .title h3::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 8px;
    background-color: #060b2b;
    bottom: -11px;
    left: 0;
    animation: move-dot 3s linear infinite;
}
@keyframes move-dot {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(53px);
        transform: translateX(53px);
    }
}
.service-box.style5 .description p {
    font-size: 15px;
    margin-bottom: 0;
}
.service-box.style5 .service-btn {
    margin-top: 18px;
}
.service-box.style5 .service-btn a {
    position: relative;
    font-size: 15px;
    font-weight: 500;
}
.service-box.style5 .service-btn a::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    bottom: -8px;
}
.service-box.style5 .service-btn a i {
    transform: rotate(-45deg);
    display: inline-block;
    font-size: 12px;
    margin-left: 5px;
}

/* Style Six */

.service-box.style6 {
    background-color: #fff;
    text-align: center;
    box-shadow: 0px 10px 50px 0px rgba(163, 168, 157, 0.1);
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.service-box.style6:hover {
    box-shadow: 0px 10px 50px 0px rgba(163, 168, 157, 0.2);
}
.service-box.style6 .image {
    position: relative;
}
.service-box.style6 .image::before {
    content: "";
    position: absolute;
    height: 5px;
    width: 0;
    background-color: #ff8711;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.service-box.style6:hover .image::before {
    width: 100%;
}
.service-box.style6 .image img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}
.service-box.style6 .content {
    position: relative;
    padding: 61px 30px 33px;
}
.service-box.style6 .title h4 {
    font-weight: 600;
    margin-bottom: 14px;
}
.service-box.style6 .description p {
    margin: 0 0 15px;
}
.service-box.style6 .icon {
    position: absolute;
    left: 0;
    right: 0;
    top: -38px;
    height: 75px;
    width: 75px;
    line-height: 75px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin: auto;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
}
.service-box.style6:hover .icon {
    background-color: #ff8711;
}
.service-box.style6 .icon i {
    color: #fff;
    font-family: "Flaticon";
    font-style: normal;
    font-size: 36px;
}
.service-box.style6 .button a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--title-color);
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.service-box.style6 .button a:hover {
    color: var(--main-color);
}
.service-box.style6 .button a::before {
    content: "";
    position: absolute;
    height: 1px;
    background-color: rgba(18, 29, 23, 0.2);
    bottom: 6px;
    left: 0;
    right: 7px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.service-box.style6 .button a:hover::before {
    background-color: var(--main-color);
}
.service-box.style6 .button a i {
    transform: rotate(-45deg);
    display: inline-block;
    color: var(--main-color);
    font-size: 24px;
    margin-left: 3px;
}

/* Style Seven */

.service-box.style7 {
    position: relative;
    border-bottom-left-radius: 80px;
    box-shadow: 0px 1px 95px 0px rgba(0, 0, 0, 0.08);
}
.service-box.style7::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom-left-radius: 80px;
}
.service-box.style7 .content {
    position: relative;
    padding: 20px 38px 38px 38px;
    border-bottom-left-radius: 80px;
    background-color: #fff;
    transition: 0.5s;
}
.service-box.style7:hover .content {
    background-color: transparent;
}
.service-box.style7 .icon {
    margin-bottom: 10px;
}
.service-box.style7 .icon i {
    color: #061738;
    font-size: 80px;
    transition: 0.5s;
}
.service-box.style7 .title h3 {
    margin-bottom: 23px;
    transition: 0.5s;
}
.service-box.style7 .service-btn a {
    color: #473bf0;
    font-size: 18px;
    font-weight: bold;
}
.service-box.style7 .description p {
    margin-bottom: 25px;
    transition: 0.5s;
}
.service-box.style7:hover .icon i,
.service-box.style7:hover .title h3,
.service-box.style7:hover .service-btn a,
.service-box.style7:hover .description p {
    color: #fff;
}

/*
===================
Video Section
===================
*/
.video-icon.style1 {
    text-align: center;
}
.video-icon.style1 a {
    position: relative;
    display: inline-block;
    color: #fff;
    width: 100px;
    height: 100px;
    line-height: 96px;
    background-color: rgba(255, 255, 255, 0.3);
    font-size: 40px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
}
.video-icon.style1 a .circle2 {
    animation-delay: 1.3s;
}
.video-icon.style1 a .circle3 {
    animation-delay: 2.6s;
}
.video-icon.style1 a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: ripple 3.9s linear 0s infinite;
    -webkit-animation: ripple 3.9s linear 0s infinite;
    -ms-animation: ripple 3.9s linear 0s infinite;
    -o-animation: ripple 3.9s linear 0s infinite;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    20% {
        -webkit-transform: scale(1.24);
        -moz-transform: scale(1.24);
        -o-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(2.1);
        -moz-transform: scale(2.1);
        -o-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0;
    }
}

/* Style Three */

.video-icon.style3 a {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-size: 28px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-white 1s linear infinite;
    -webkit-transition: 0.5s;
    z-index: 44;
}
@-webkit-keyframes ripple-white {
    0% {
        -webkit-box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0.3),
            0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0.3),
            0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        -webkit-box-shadow:
            0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3),
            0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow:
            0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3),
            0 0 0 30px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple-white {
    0% {
        -webkit-box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0.3),
            0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0.3),
            0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        -webkit-box-shadow:
            0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3),
            0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow:
            0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3),
            0 0 0 30px rgba(255, 255, 255, 0);
    }
}

/*
===================
Pricing Section
===================
*/
.pricing.style1 {
    background: #ffffff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 11px 29.4px 0.6px rgba(226, 226, 226, 0.2);
    box-shadow: 0px 11px 29.4px 0.6px rgba(226, 226, 226, 0.2);
    overflow: hidden;
}
.pricing.style1 .table-head {
    position: relative;
    text-align: center;
    background-color: #121d17;
    background-image: url(../images/pricing-head-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    padding: 35px 30px 63px;
}
.pricing.style1 .table-head .icon {
    position: absolute;
    height: 96px;
    width: 96px;
    line-height: 96px;
    background-color: var(--main-color);
    border-radius: 50%;
    left: 0;
    right: 0;
    bottom: -48px;
    margin: auto;
}
.pricing.style1 .table-head .icon::before {
    content: "";
    position: absolute;
    height: 110px;
    width: 110px;
    border: 1px dashed var(--main-color);
    border-radius: 50%;
    top: -7px;
    left: -7px;
}
.pricing.style1 .table-head .icon i {
    color: #fff;
    font-size: 30px;
}
.pricing.style1 .pricing-title {
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.pricing.style1 .pricing-title::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 30px;
    background-color: var(--main-color);
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
}

.pricing.style1 .table-body {
    padding: 90px 36px 32px;
}
.pricing.style1 .pricing-feature {
    margin-bottom: 32px;
}

.pricing.style1 .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.pricing.style1 .feature-icon {
    color: var(--main-color);
    margin-right: 10px;
}
.pricing.style1 .feature-icon i {
    font-size: 20px;
}
.pricing.style1 .feature-item .feature-text {
    font-family: "Poppins", sans-serif;
}
.pricing.style1 .price {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.pricing.style1 .price .currency {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    top: -13px;
}
.pricing.style1 .price .net-price {
    font-size: 42px;
    font-weight: 600;
}
.pricing.style1 .price .package-validity {
    font-size: 16px;
    font-weight: normal;
}

.pricing.style1 .pricing-btn {
    position: relative;
    display: inline-block;
    color: var(--title-color);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    padding: 15px 32px;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}
.pricing.style1 .pricing-btn:hover {
    color: #fff;
}
.pricing.style1 .pricing-btn::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.pricing.style1 .pricing-btn:hover::before {
    left: 0;
}
.pricing.style1 .pricing-btn::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.pricing.style1 .pricing-btn:hover::after {
    right: 0;
}

.pricing.style1.active .table-head {
    background-color: var(--main-color);
}
.pricing.style1.active .pricing-title::before {
    background-color: #fff;
}
.pricing.style1.active .table-head .icon::before {
    border: 7px solid #fff;
}
.pricing.style1.active .pricing-btn {
    color: #fff;
    background-color: var(--main-color);
}

/* Style Two
-------------*/

.pricing.style2 .pricing-table {
    position: relative;
    text-align: center;
    background-color: #eef1f4;
    box-shadow: 0px 10px 90px 0px rgba(13, 30, 53, 0.05);
    padding: 52px 60px 60px;
}
.pricing.style2 .pricing-table .table-head {
    border-bottom: 2px solid #fff;
    padding: 0 0 17px;
}
.pricing.style2 .pricing-table .table-head h6 {
    color: #0d1e35;
    font-size: 36px;
    font-weight: bold;
}
.pricing.style2 .pricing-table .table-body {
    padding-top: 32px;
}
.pricing.style2 .pricing-table .table-body .price {
    margin-bottom: 22px;
}
.pricing.style2 .pricing-table .table-body .price h1 {
    color: #473bf0;
    font-weight: bold;
}
.pricing.style2 .pricing-table .table-body .price h1 span {
    color: #0d1e35;
    font-size: 16px;
    font-weight: bold;
}
.pricing.style2 .pricing-table .table-body p {
    color: #7f8388;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}
.pricing.style2 .pricing-table .table-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.pricing.style2 .pricing-table .table-body ul li {
    color: #0d1e35;
    font-weight: bold;
    margin-bottom: 13px;
}
.pricing.style2 .pricing-table .table-body ul li:last-child {
    margin-bottom: 38px;
}
.pricing.style2 .pricing-table .table-body a {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    background-color: #473bf0;
    padding: 17px 34px;
}
.pricing.style2 .pricing-table.active {
    background-color: #0d1e35;
}
.pricing.style2 .pricing-table.active .table-head h6 {
    color: #fff;
}
.pricing.style2 .pricing-table.active .table-body .price h1 {
    color: #fff;
}
.pricing.style2 .pricing-table.active .table-body .price h1 span {
    color: #a9b8cd;
}
.pricing.style2 .pricing-table.active .table-body p {
    color: #485971;
}
.pricing.style2 .pricing-table.active .table-body ul li {
    color: #a9b8cd;
}
.pricing.style2 .pricing-table.active .table-body a {
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.pricing.style2 .pricing-table.active .table-body a:hover {
    color: #0d1e35;
}
.pricing.style2 .pricing-table.active .table-body a::after {
    background: #eef1f4;
}

/* Style Three
-------------*/
.pricing.style3 .pricing-table {
    position: relative;
    text-align: center;
    background-color: #eef1f4;
    box-shadow: 0px 10px 90px 0px rgba(13, 30, 53, 0.05);
    padding: 120px 60px 80px;
}
.pricing.style3 .pricing-table .table-head {
    border-bottom: 2px solid #fff;
    padding: 0 0 17px;
}
.pricing.style3 .pricing-table .table-head .icon {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 140px;
    width: 140px;
    line-height: 110px;
    background: #1174fa;
    margin: auto;
    color: #fff;
    border: 15px solid #fff;
    font-size: 55px;
}
.pricing.style3 .pricing-table .table-head h6 {
    color: #0d1e35;
    font-weight: bold;
}
.pricing.style3 .pricing-table .table-body {
    padding-top: 32px;
}
.pricing.style3 .pricing-table .table-body .price {
    margin-bottom: 22px;
}
.pricing.style3 .pricing-table .table-body .price h1 {
    color: #1174f9;
    font-weight: bold;
}
.pricing.style3 .pricing-table .table-body .price h1 span {
    color: #0d1e35;
    font-size: 16px;
    font-weight: bold;
}
.pricing.style3 .pricing-table .table-body p {
    color: #7f8388;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}
.pricing.style3 .pricing-table .table-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.pricing.style3 .pricing-table .table-body ul li {
    color: #0d1e35;
    font-weight: bold;
    margin-bottom: 13px;
}
.pricing.style3 .pricing-table .table-body ul li:last-child {
    margin-bottom: 38px;
}
.pricing.style3 .pricing-table .table-body a {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    background-color: #0c73ff;
    padding: 17px 34px;
}
.pricing.style3 .pricing-table.active {
    background-color: #0d1e35;
}
.pricing.style3 .pricing-table.active .table-head h6 {
    color: #fff;
}
.pricing.style3 .pricing-table.active .table-body .price h1 {
    color: #fff;
}
.pricing.style3 .pricing-table.active .table-body .price h1 span {
    color: #a9b8cd;
}
.pricing.style3 .pricing-table.active .table-body p {
    color: #485971;
}
.pricing.style3 .pricing-table.active .table-body ul li {
    color: #a9b8cd;
}
.pricing.style3 .pricing-table.active .table-body a {
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.pricing.style3 .pricing-table.active .table-body a:hover {
    color: #0d1e35;
}
.pricing.style3 .pricing-table.active .table-body a::after {
    background: #eef1f4;
}

/* Style Four
-------------*/

.pricing.style4 {
    background: #ffffff;
    padding: 43px 40px 43px 50px;
    -webkit-box-shadow: 0px 11px 29.4px 0.6px rgba(226, 226, 226, 0.2);
    box-shadow: 0px 11px 29.4px 0.6px rgba(226, 226, 226, 0.2);
}

.pricing.style4 .pricing-title {
    margin-bottom: 25px;
    border-bottom: 1px solid #f5f4fc;
    padding-bottom: 18px;
    text-transform: capitalize;
    line-height: 1.5;
}

.pricing.style4 .pricing-feature {
    margin-bottom: 65px;
}

.pricing.style4 .feature-item {
    margin-bottom: 14px;
}

.pricing.style4 .feature-icon {
    color: #473bf0;
    margin-right: 10px;
}

.pricing.style4 .price {
    color: #473bf0;
    font-weight: 800;
    margin-bottom: 30px;
}

.pricing.style4 .figure-title {
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.pricing.style4 .package-validity {
    color: #161c2d;
    font-size: 18px;
    font-weight: 400;
}

.pricing.style4 .pricing-btn {
    color: #473bf0;
    font-weight: 500;
    text-transform: capitalize;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.pricing.style4 .pricing-btn::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #b2aff8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.pricing.style4 .pricing-btn:hover::before {
    width: 0;
}

/* Style Five */

.pricing.style5 {
    background: #ffffff;
    border: 1px solid #ededed;
    -webkit-box-shadow: 0px 11px 29.4px 0.6px rgba(226, 226, 226, 0.2);
    box-shadow: 0px 11px 29.4px 0.6px rgba(226, 226, 226, 0.2);
}
.pricing.style5 .table-head {
    text-align: center;
    border-bottom: 1px solid #ededed;
    padding: 35px 30px 25px;
}
.pricing.style5 .pricing-title {
    font-size: 16px;
    font-weight: normal;
}

.pricing.style5 .table-body {
    padding: 33px 30px 32px;
}
.pricing.style5 .pricing-feature {
    margin-bottom: 38px;
}

.pricing.style5 .feature-item {
    margin-bottom: 14px;
}

.pricing.style5 .feature-icon {
    color: var(--main-color);
    margin-right: 10px;
}

.pricing.style5 .price {
    color: var(--main-color);
    font-size: 16px;
    font-weight: bold;
}
.pricing.style5 .price .net-price {
    font-size: 24px;
}

.pricing.style5 .pricing-btn {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 32px;
    border: 1px solid var(--main-color);
    z-index: 1;
    overflow: hidden;
}
.pricing.style5 .pricing-btn:hover {
    color: #fff;
}
.pricing.style5 .pricing-btn::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.pricing.style5 .pricing-btn:hover::before {
    left: 0;
}
.pricing.style5 .pricing-btn::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.pricing.style5 .pricing-btn:hover::after {
    right: 0;
}

/*
===================
Portfolio
===================
*/

.portfolio.style1 .portfolio-item {
    position: relative;
}
.portfolio.style1 .portfolio-item .portfolio-thumb {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}
.portfolio.style1 .portfolio-item .portfolio-thumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        to top,
        rgba(18, 29, 23, 1) 0%,
        rgba(18, 29, 23, 1) 8%,
        rgba(18, 29, 23, 0) 56%,
        rgba(18, 29, 23, 0) 100%
    );
    transform: scale(1.5);
}
.portfolio.style1 .portfolio-item .portfolio-thumb img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}
.portfolio.style1 .portfolio-item .portfolio-content {
    position: absolute;
    bottom: 0;
    padding: 0 40px 0;
    width: 100%;
    transform: translateY(22px);
    transition: 0.6s;
}
.portfolio.style1 .portfolio-item:hover .portfolio-content {
    transform: translateY(-30px);
}
.portfolio.style1 .portfolio-item .portfolio-content .category {
    position: relative;
    padding-left: 35px;
    margin-bottom: 8px;
}
.portfolio.style1 .portfolio-item .portfolio-content .category::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    height: 2px;
    width: 25px;
    background-color: #ff8711;
}
.portfolio.style1 .portfolio-item .portfolio-content .category span {
    color: #ff8711;
    font-family: "Poppins", sans-serif;
}
.portfolio.style1 .portfolio-item .portfolio-content .title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.portfolio.style1 .portfolio-item .portfolio-content .button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    opacity: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.portfolio.style1 .portfolio-item:hover .portfolio-content .button {
    opacity: 1;
}
.portfolio.style1 .portfolio-item .portfolio-content .button i {
    transform: rotate(-45deg);
    display: inline-block;
    color: var(--main-color);
    font-size: 24px;
    margin-left: 3px;
}

.portfolio.style1 .owl-dots {
    text-align: center;
    margin-top: 64px;
}
.portfolio.style1 .owl-dots .owl-dot {
    height: 5px;
    width: 20px;
    background-color: rgba(18, 29, 23, 0.2);
    margin-right: 10px;
    border-radius: 5px;
}
.portfolio.style1 .owl-dots .owl-dot.active {
    background-color: #ff8711;
}

/* Style Two */

.portfolio.style2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 30px;
}
.portfolio.style2 .portfolio-item {
    position: relative;
    height: 320px;
    text-align: center;
}
.portfolio.style2 .portfolio-item .portfolio-thumb {
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
}
.portfolio.style2 .portfolio-item:nth-child(1) {
    grid-column: 1/3;
}
.portfolio.style2 .portfolio-item:nth-child(2) {
    grid-column: 3/5;
}
.portfolio.style2 .portfolio-item:nth-child(3) {
    grid-column: 5/7;
}
.portfolio.style2 .portfolio-item:nth-child(4) {
    grid-column: 1/5;
}
.portfolio.style2 .portfolio-item:nth-child(5) {
    grid-column: 5/7;
}
.portfolio.style2 .portfolio-item:nth-child(6) {
    grid-column: 1/4;
}
.portfolio.style2 .portfolio-item:nth-child(7) {
    grid-column: 4/7;
}
.portfolio.style2 .portfolio-item:nth-child(8) {
    grid-column: 5/7;
}
.portfolio.style2 .portfolio-item:nth-child(9) {
    grid-column: 1/4;
}
.portfolio.style2 .portfolio-item:nth-child(10) {
    grid-column: 4/7;
}
.portfolio.style2 .portfolio-item:nth-child(11) {
    grid-column: 1/3;
}
.portfolio.style2 .portfolio-item:nth-child(12) {
    grid-column: 3/5;
}
.portfolio.style2 .portfolio-item:nth-child(13) {
    grid-column: 5/7;
}
.portfolio.style2 .portfolio-item:nth-child(14) {
    grid-column: 1/4;
}
.portfolio.style2 .portfolio-item:nth-child(15) {
    grid-column: 4/7;
}
.portfolio.style2 .portfolio-item .portfolio-content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(12, 115, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    transform: scale(0);
}
.portfolio.style2 .portfolio-item:hover .portfolio-content {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.portfolio.style2 .portfolio-item .portfolio-content h3 a {
    color: #fff;
    font-weight: bold;
}
.portfolio.style2 .portfolio-item .portfolio-content h6 {
    color: #dcebff;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Style Three */

.portfolio.style3 .swiper-container {
    position: relative;
    width: 100%;
    padding: 25px 0;
}
.portfolio.style3 .swiper-container .swiper-wrapper {
    align-items: center;
}
.portfolio.style3 .swiper-container > .swiper-slide__content {
    position: absolute;
    top: 0;
}

.portfolio.style3 .swiper-slide {
    display: -webkit-box;
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    width: 600px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-transform: scale(0.8);
    transform: scale(1);
}
.portfolio.style3 .swiper-slide .content {
    position: absolute;
    bottom: 60px;
    text-align: center;
}
.portfolio.style3 .swiper-slide .content h3,
.portfolio.style3 .swiper-slide .content p {
    opacity: 0;
    visibility: hidden;
}
.portfolio.style3 .swiper-slide.swiper-slide-active {
    position: relative;
    -webkit-transform: scale(1);
    transform: scale(1.27);
    height: 500px;
    width: 900px;
    z-index: 9;
    color: #fff;
}
.portfolio.style3 .swiper-slide.swiper-slide-active::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
}
.portfolio.style3 .swiper-slide.swiper-slide-active .content h3,
.portfolio.style3 .swiper-slide.swiper-slide-active .content p {
    opacity: 1;
    visibility: visible;
    color: #fff;
}
.portfolio.style3 .swiper-slide.swiper-slide-active .content h3 a {
    color: #fff;
}
.portfolio.style3 .swiper-slide__content {
    height: 300px;
}

.portfolio.style3 .swiper-prev {
    position: absolute;
    color: #061738;
    top: 50%;
    transform: translateY(-50%);
    left: 27%;
    z-index: 2;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.portfolio.style3 .swiper-prev:hover {
    color: #fff;
    background-color: #0c73ff;
}
.portfolio.style3 .swiper-prev i {
    font-size: 22px;
}
.portfolio.style3 .swiper-next {
    position: absolute;
    color: #061738;
    top: 50%;
    transform: translateY(-50%);
    right: 27%;
    z-index: 2;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.portfolio.style3 .swiper-next:hover {
    color: #fff;
    background-color: #473bf0;
}
.portfolio.style3 .swiper-next i {
    font-size: 22px;
}

/* Style Four */
.portfolio.style4 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 30px;
}
.portfolio.style4 .portfolio-item {
    position: relative;
    height: 320px;
    text-align: center;
}
.portfolio.style4 .portfolio-item .portfolio-thumb {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
}
.portfolio.style4 .portfolio-item:nth-child(1) {
    grid-column: 1/3;
}
.portfolio.style4 .portfolio-item:nth-child(2) {
    grid-column: 3/5;
}
.portfolio.style4 .portfolio-item:nth-child(3) {
    grid-column: 5/7;
}
.portfolio.style4 .portfolio-item:nth-child(4) {
    grid-column: 1/5;
}
.portfolio.style4 .portfolio-item:nth-child(5) {
    grid-column: 5/7;
}
.portfolio.style4 .portfolio-item:nth-child(6) {
    grid-column: 1/4;
}
.portfolio.style4 .portfolio-item:nth-child(7) {
    grid-column: 4/7;
}
.portfolio.style4 .portfolio-item:nth-child(8) {
    grid-column: 5/7;
}
.portfolio.style4 .portfolio-item:nth-child(9) {
    grid-column: 1/4;
}
.portfolio.style4 .portfolio-item:nth-child(10) {
    grid-column: 4/7;
}
.portfolio.style4 .portfolio-item:nth-child(11) {
    grid-column: 1/3;
}
.portfolio.style4 .portfolio-item:nth-child(12) {
    grid-column: 3/5;
}
.portfolio.style4 .portfolio-item:nth-child(13) {
    grid-column: 5/7;
}
.portfolio.style4 .portfolio-item:nth-child(14) {
    grid-column: 1/4;
}
.portfolio.style4 .portfolio-item:nth-child(15) {
    grid-column: 4/7;
}
.portfolio.style4 .portfolio-item .portfolio-content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(6, 23, 56, 0.6);
    opacity: 0;
    visibility: hidden;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    transform: scale(0);
}
.portfolio.style4 .portfolio-item:hover .portfolio-content {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.portfolio.style4 .portfolio-item .portfolio-content .content-wrapper a {
    color: #fff;
    font-size: 80px;
}

/*
===================
 Case Study
===================
*/

.case-study.style1 .case-item {
    position: relative;
}
.case-study.style1 .case-item::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(34, 36, 41, 1) 0%, rgba(34, 36, 41, 0) 100%);
    top: 0;
    left: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.case-study.style1 .case-item .case-thumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--main-color);
    top: 100%;
    left: 0;
    opacity: 0.9;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.case-study.style1 .case-item:hover .case-thumb::before {
    top: 0;
}
.case-study.style1 .case-item .case-thumb img {
    height: 400px;
    object-fit: cover;
}
.case-study.style1 .case-item .case-content {
    position: absolute;
    bottom: 6%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.case-study.style1 .case-item:hover .case-content {
    bottom: 43%;
}
.case-study.style1 .case-item .case-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.case-study.style1 .case-item .case-content ul li {
    position: relative;
    color: var(--main-color);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.case-study.style1 .case-item:hover .case-content ul li {
    color: #fff;
}
.case-study.style1 .case-item .case-content ul li::after {
    content: "/";
    margin: 0 3px;
}
.case-study.style1 .case-item .case-content ul li:last-child::after {
    display: none;
}
.case-study.style1 .case-content .title {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.case-study.style1 .case-content .title a {
    color: #fff;
}

/*
===================
 Portfolio Tab
===================
*/
.portfolio-tab.style1 {
    position: relative;
}
.portfolio-tab.style1 .portfolio-nav {
    text-align: center;
    position: absolute;
    right: 0;
    top: -131px;
}
.portfolio-tab.style1 .portfolio-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: end;
}
.portfolio-tab.style1 .portfolio-nav ul li {
    position: relative;
    color: var(--title-color);
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    margin-right: 10px;
    cursor: pointer;
    background-color: rgba(18, 29, 23, 0.07);
    padding: 7px 25px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.portfolio-tab.style1 .portfolio-nav ul li:hover,
.portfolio-tab.style1 .portfolio-nav ul li.current_menu_item {
    color: #fff;
    background-color: var(--main-color);
}
.portfolio-tab.style1 .portfolio-nav ul li:first-child {
    border-left: 0;
}
.portfolio-tab.style1 .portfolio-nav ul li:last-child {
    margin-right: 0;
}

.portfolio-tab.style1 .protfolio-item {
    position: relative;
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
}
.portfolio-tab.style1 .thumbnail {
    position: relative;
}
.portfolio-tab.style1 .thumbnail img {
    display: block;
    height: 430px;
    width: 100%;
    object-fit: cover;
}
.portfolio-tab.style1 .portfolio-content {
    position: absolute;
    left: 0;
    bottom: -50%;
    background-color: #121d17;
    padding: 30px 35px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.portfolio-tab.style1 .protfolio-item:hover .portfolio-content {
    bottom: 0;
}
.portfolio-tab.style1 .portfolio-content .title {
    margin: 0 0 5px;
    text-transform: capitalize;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
.portfolio-tab.style1 .portfolio-content p {
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
}
.portfolio-tab.style1 .portfolio-content p span {
    position: relative;
    display: inline-block;
    color: #ff8711;
    font-size: 14px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    padding: 0 0 0 30px;
}
.portfolio-tab.style1 .portfolio-content p span::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 20px;
    background-color: #ff8711;
    left: 0;
    top: 8px;
}
.portfolio-tab.style1 .portfolio-content a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.portfolio-tab.style1 .portfolio-content a::before {
    content: "";
    position: absolute;
    height: 1px;
    background-color: var(--main-color);
    bottom: 5px;
    left: 0;
    right: 7px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.portfolio-tab.style1 .portfolio-content a i {
    transform: rotate(-45deg);
    display: inline-block;
    font-size: 24px;
    margin-left: 3px;
}

/* Style Two */

.portfolio-tab.style2 {
    position: relative;
}
.portfolio-tab.style2 .portfolio-nav {
    text-align: center;
}
.portfolio-tab.style2 .portfolio-nav ul {
    margin: 0 0 45px;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: center;
}
.portfolio-tab.style2 .portfolio-nav ul li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    margin-right: 16px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.portfolio-tab.style2 .portfolio-nav ul li::before {
    content: "/";
    margin-right: 16px;
}
.portfolio-tab.style2 .portfolio-nav ul li:first-child::before {
    display: none;
}
.portfolio-tab.style2 .portfolio-nav ul li:hover,
.portfolio-tab.style2 .portfolio-nav ul li.current_menu_item {
    color: var(--main-color);
}
.portfolio-tab.style2 .portfolio-nav ul li:first-child {
    border-left: 0;
}
.portfolio-tab.style2 .portfolio-nav ul li:last-child {
    margin-right: 0;
}

.portfolio-tab.style2 .protfolio-item {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}
.portfolio-tab.style2 .thumbnail {
    position: relative;
}
.portfolio-tab.style2 .thumbnail::before {
    content: "";
    position: absolute;
    background-color: rgba(34, 36, 41, 0.75);
    width: 100%;
    height: 100%;
    bottom: -100%;
    clip-path: polygon(0 180px, 0% 100%, 100% 100%);
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.portfolio-tab.style2 .thumbnail:hover::before {
    bottom: 0;
}
.portfolio-tab.style2 .thumbnail img {
    display: block;
    height: 330px;
    width: 100%;
    object-fit: cover;
}
.portfolio-tab.style2 .portfolio-content {
    position: absolute;
    left: 40px;
    bottom: -100%;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.portfolio-tab.style2 .protfolio-item:hover .portfolio-content {
    bottom: 35px;
}
.portfolio-tab.style2 .portfolio-content h3 {
    margin: 8px 0 0px;
    text-transform: capitalize;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.portfolio-tab.style2 .portfolio-content h3 a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
}
.portfolio-tab.style2 .portfolio-content p {
    color: #fff;
    line-height: 1.2;
    margin: 5px 0 0;
}
.portfolio-tab.style2 .portfolio-content p span {
    display: inline-block;
    padding-top: 0px;
}
.portfolio-tab.style2 .portfolio-content .category-item {
    color: var(--main-color);
}

/* Style Three */

.portfolio-tab.style3 {
    position: relative;
}
.portfolio-tab.style3 .portfolio-nav {
    text-align: center;
    position: absolute;
    right: 0;
    top: -140px;
}
.portfolio-tab.style3 .portfolio-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: end;
}
.portfolio-tab.style3 .portfolio-nav ul li {
    position: relative;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
    cursor: pointer;
    border: 1px solid var(--main-color);
    padding: 4px 20px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.portfolio-tab.style3 .portfolio-nav ul li:hover,
.portfolio-tab.style3 .portfolio-nav ul li.current_menu_item {
    color: #fff;
    background-color: var(--main-color);
}
.portfolio-tab.style3 .portfolio-nav ul li:last-child {
    margin-right: 0;
}

.portfolio-tab.style3 .protfolio-item {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}
.portfolio-tab.style3 .thumbnail {
    position: relative;
}
.portfolio-tab.style3 .thumbnail img {
    display: block;
    height: 500px;
    width: 100%;
    object-fit: cover;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.portfolio-tab.style3 .portfolio-content {
    position: absolute;
    left: 0;
    bottom: 30px;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.portfolio-tab.style3 .portfolio-content .category-item {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    padding: 5px 30px;
    background-color: var(--main-color);
}
.portfolio-tab.style3 .portfolio-content h3 {
    text-transform: capitalize;
    background-color: #fff;
    padding: 9px 30px;
}
.portfolio-tab.style3 .portfolio-content h3 a {
    color: var(--title-color);
}

/* Style Four */

.portfolio-tab.style4 {
    position: relative;
    margin-top: 67px;
}
.portfolio-tab.style4 .portfolio-nav {
    text-align: center;
    position: absolute;
    left: 0;
    top: -67px;
}
.portfolio-tab.style4 .portfolio-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: end;
}
.portfolio-tab.style4 .portfolio-nav ul li {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-right: 40px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.portfolio-tab.style4 .portfolio-nav ul li::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    bottom: -3px;
    left: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.portfolio-tab.style4 .portfolio-nav ul li:hover::before,
.portfolio-tab.style4 .portfolio-nav ul li.current_menu_item::before {
    background-color: #4c79fa;
}
.portfolio-tab.style4 .portfolio-nav ul li:hover,
.portfolio-tab.style4 .portfolio-nav ul li.current_menu_item {
    color: #4c79fa;
}
.portfolio-tab.style4 .portfolio-nav ul li:first-child {
    border-left: 0;
}
.portfolio-tab.style4 .portfolio-nav ul li:last-child {
    margin-right: 0;
}

.portfolio-tab.style4 .protfolio-item {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}
.portfolio-tab.style4 .thumbnail {
    position: relative;
}
.portfolio-tab.style4 .thumbnail::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #2e4ffe 0%, #4f7efa 100%);
    opacity: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.portfolio-tab.style4 .protfolio-item:hover .thumbnail::before {
    opacity: 0.7;
}
.portfolio-tab.style4 .thumbnail img {
    display: block;
    height: 420px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.portfolio-tab.style4 .portfolio-content {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.portfolio-tab.style4 .protfolio-item:hover .portfolio-content {
    bottom: 0;
}
.portfolio-tab.style4 .portfolio-content h3 {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}
.portfolio-tab.style4 .portfolio-content h3 a {
    color: #060924;
}
.portfolio-tab.style4 .portfolio-content .button a {
    display: inline-block;
    padding: 28px 32px;
    background: linear-gradient(to right, #2e4ffe 0%, #4f7efa 100%);
}
.portfolio-tab.style4 .portfolio-content .button a i {
    transform: rotate(-45deg);
    display: inline-block;
    color: #fff;
    font-size: 16px;
}

/*
===================
Portfolio List
===================
*/

.portfolio-list.style1 .item {
    margin-bottom: 25px;
}
.portfolio-list.style1 .item .thumb img {
    height: 425px;
    object-fit: cover;
}
.portfolio-list.style1 .item .content {
    padding: 20px 30px 20px 56px;
}
.portfolio-list.style1 .item .content .category {
    position: relative;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    display: flex;
}
.portfolio-list.style1 .item .content .category::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 45px;
    background-color: var(--main-color);
    top: 50%;
    left: -56px;
}
.portfolio-list.style1 .item .content .category li {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.portfolio-list.style1 .item .content .title a {
    color: var(--title-color);
}
.portfolio-list.style1 .item .content .title a:hover {
    color: var(--main-color);
}

/*
===================
 Offer Carousel
===================
*/

.offers.style1 .owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
}
.offers.style1 .owl-item .item {
    position: relative;
    transition: 0.4s ease all;
}
.offers.style1 .owl-item .item::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(22, 22, 22, 0.9) 70%);
    left: 0;
    top: 100%;
    transition: 0.5s;
}
.offers.style1 .owl-item .item:hover::before {
    top: 0;
}
.offers.style1 .owl-item .item img {
    height: 620px;
    object-fit: cover;
}
.offers.style1 .owl-item .item .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 45px 40px;
    transform: translateY(100%);
    transition: 0.5s;
}
.offers.style1 .owl-item .item:hover .content {
    transform: translateY(0);
}
.offers.style1 .owl-item .item .content .title {
    color: #fff;
    font-weight: normal;
    font-family: "Outfit", sans-serif;
    letter-spacing: 1px;
    margin-bottom: 17px;
}
.offers.style1 .owl-item .item .content .description {
    color: #fff;
    font-size: 18px;
    line-height: 1.555555;
    margin-bottom: 26px;
}
.offers.style1 .owl-item .item .content .price span {
    font-size: 14px;
}
.offers.style1 .owl-item .item .content .price p {
    color: var(--main-color);
    font-size: 18px;
    margin-bottom: 0;
}
.offers.style1 .owl-item .item .content .button a {
    position: relative;
    display: inline-flex;
    color: var(--main-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
}
.offers.style1 .owl-item .item .content .button a::before {
    content: "";
    position: absolute;
    height: 1px;
    background-color: var(--main-color);
    width: 50%;
    bottom: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.offers.style1 .owl-item .item .content .button a:hover::before {
    width: 100%;
}
.offers.style1 .owl-nav .owl-prev,
.offers.style1 .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    height: 50px;
    width: 50px;
    background-color: #fff;
    border-radius: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.offers.style1 .owl-nav .owl-next {
    right: 0;
}
.offers.style1 .owl-nav .owl-prev:hover,
.offers.style1 .owl-nav .owl-next:hover {
    color: #fff;
    background-color: var(--main-color);
}

/*
===================
 Room Carousel
===================
*/

.rooms.style1 .owl-stage {
    margin: 63px 0;
}
.rooms.style1 .owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
}
.rooms.style1 .owl-item.center {
    z-index: 1;
}
.rooms.style1 .owl-item.center .item {
    opacity: 1;
    transform: scale(1.25);
}
.rooms.style1 .owl-item .item {
    position: relative;

    transition: 0.4s ease all;
    transform: scale(1);
}
.rooms.style1 .owl-item .item img {
    height: 500px;
}
.rooms.style1 .owl-item .item .content {
    position: absolute;
    bottom: 20px;
    background-color: #fff;
    width: 80%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 15px 35px 30px;
    opacity: 0;
    transition: 0.4s;
}
.rooms.style1 .owl-item.center .item .content {
    opacity: 1;
}
.rooms.style1 .owl-item .item .content .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}
.rooms.style1 .owl-item .item .content .title {
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 0;
}
.rooms.style1 .owl-item .item .content .description {
    font-size: 13px;
    margin-bottom: 0;
}
.rooms.style1 .owl-item .item .content .price span {
    font-size: 14px;
}
.rooms.style1 .owl-item .item .content .price p {
    color: var(--main-color);
    font-size: 18px;
    margin-bottom: 0;
}
.rooms.style1 .owl-item .item .content .button {
    text-align: center;
}
.rooms.style1 .owl-item .item .content .button a {
    position: relative;
    display: inline-flex;
    color: var(--title-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 7px 22px;
    border: 1px solid var(--main-color);
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    overflow: hidden;
}
.rooms.style1 .owl-item .item .content .button a:hover {
    color: #fff;
}
.rooms.style1 .owl-item .item .content .button a::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.rooms.style1 .owl-item .item .content .button a:hover::before {
    left: 0;
}
.rooms.style1 .owl-item .item .content .button a::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.rooms.style1 .owl-item .item .content .button a:hover::after {
    right: 0;
}

.rooms.style1 .owl-nav .owl-prev,
.rooms.style1 .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    height: 50px;
    width: 50px;
    background-color: #fff;
    border-radius: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.rooms.style1 .owl-nav .owl-next {
    right: 0;
}
.rooms.style1 .owl-nav .owl-prev:hover,
.rooms.style1 .owl-nav .owl-next:hover {
    color: #fff;
    background-color: var(--main-color);
}

/* Style Two */

.rooms.style2 {
    position: relative;
}
.rooms.style2 .item::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(198, 142, 80, 0) 0%, rgba(22, 22, 22, 1) 100%);
    left: 0;
    top: 0;
}
.rooms.style2 .owl-item .item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 158px 0 160px;
}
.rooms.style2 .content-item {
    position: relative;
}
.rooms.style2 .content-item .price {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    background-color: var(--main-color);
    padding: 14px 30px;
}
.rooms.style2 .content-item .text-wrapper {
    max-width: 300px;
    background-color: #fff;
    padding: 28px 30px 30px;
}
.rooms.style2 .content-item .text-wrapper .room-type {
    font-weight: normal;
    font-family: "Outfit", sans-serif;
    margin-bottom: 15px;
}
.rooms.style2 .content-item p {
    color: #7e7e7e;
    margin-bottom: 10px;
}
.rooms.style2 .content-item table {
    margin-bottom: 25px;
}
.rooms.style2 .content-item table tr {
    vertical-align: baseline;
}
.rooms.style2 .content-item table tr td {
    color: #7e7e7e;
    font-size: 14px;
    border: 0;
    padding: 0 10px 5px 0;
}
.rooms.style2 .content-item a {
    position: relative;
    display: inline-flex;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 13px 30px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.rooms.style2 .content-item a:hover {
    color: var(--main-color);
}
.rooms.style2 .content-item a::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.rooms.style2 .content-item a:hover::before {
    left: -50%;
}
.rooms.style2 .content-item a::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: 0;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.rooms.style2 .content-item a:hover::after {
    right: -50%;
}
.rooms.style2 .room-nav {
    position: absolute;
    width: 100%;
    bottom: 34px;
    z-index: 99;
}
.rooms.style2 .room-nav .custom-nav {
    display: flex;
    justify-content: space-between;
}
.rooms.style2 .room-nav .custom-nav span {
    position: relative;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}
.rooms.style2 .room-nav .custom-nav span::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    background-color: var(--main-color);
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.5s;
}
.rooms.style2 .room-nav .custom-nav span:hover::before,
.rooms.style2 .room-nav .custom-nav .active-nav::before {
    width: 100%;
}
.rooms.style2 .room-nav .custom-nav .active-nav {
    color: var(--main-color);
}

/*
===================
 Rooms Grid
===================
*/

.room-grid.style1 .item {
    position: relative;
    margin-bottom: 24px;
}
.room-grid.style1 .item img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}
.room-grid.style1 .item .content {
    position: absolute;
    bottom: 20px;
    background-color: #fff;
    width: 80%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 25px 35px 30px;
    opacity: 0;
    transition: 0.4s;
}
.room-grid.style1 .item .content {
    opacity: 1;
}
.room-grid.style1 .item .content .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}
.room-grid.style1 .item .content .title {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 0;
}
.room-grid.style1 .item .content .description {
    margin-bottom: 0;
}
.room-grid.style1 .item .content .price span {
    font-size: 14px;
}
.room-grid.style1 .item .content .price p {
    color: var(--main-color);
    font-size: 18px;
    margin-bottom: 0;
}
.room-grid.style1 .item .content .button {
    text-align: center;
}
.room-grid.style1 .item .content .button a {
    position: relative;
    display: inline-flex;
    color: var(--title-color);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 9px 22px;
    border: 1px solid var(--main-color);
    z-index: 1;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.room-grid.style1 .item .content .button a:hover {
    color: #fff;
}
.room-grid.style1 .item .content .button a::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    left: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.room-grid.style1 .item .content .button a:hover::before {
    left: 0;
}
.room-grid.style1 .item .content .button a::after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: var(--main-color);
    width: 50%;
    top: 0;
    right: -50%;
    z-index: -1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.room-grid.style1 .item .content .button a:hover::after {
    right: 0;
}

.room-grid.style1 .owl-nav .owl-prev,
.room-grid.style1 .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    height: 50px;
    width: 50px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.room-grid.style1 .owl-nav .owl-next {
    right: 0;
}

/*
===================
Copyright Menu
===================
*/
.copyright-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.copyright-menu ul li {
    margin-right: 20px;
}
.copyright-menu ul li:last-child {
    margin-right: 0;
}
.copyright-menu ul li a {
    color: #fff;
}

/*
===================
Working Process 2
===================
*/
.work-process .process-box {
    position: relative;
    text-align: center;
    padding: 35px;
}
.work-process .process-box .icon {
    position: relative;
    color: #fff;
    height: 104px;
    width: 104px;
    line-height: 104px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 40px;
    font-size: 48px;
}
.work-process .process-box .icon::after {
    content: url(../images/shape1.png);
    position: absolute;
    left: 122px;
    top: 15px;
}
.work-process .process-box.rotate .icon::after {
    content: url(../images/shape2.png);
}
.work-process .process-box.none .icon::after {
    display: none;
}
.work-process .process-box .icon span {
    position: absolute;
    color: #eef1f4;
    font-size: 16px;
    font-weight: bold;
    background: #0d1e35;
    height: 40px;
    width: 40px;
    line-height: 40px;
    bottom: -12px;
    right: -12px;
}
.work-process .process-box i {
    font-family: "Flaticon";
    font-style: normal;
}
.work-process .process-box .content h3 {
    color: #eef1f4;
    font-weight: bold;
}
.work-process .process-box .content p {
    color: #eef1f4;
    font-size: 14px;
    line-height: 1.8;
}

/*
===================
Icon Box
===================
*/
.icon-box.style1 {
    display: flex;
    align-items: center;
}
.icon-box.right {
    flex-direction: row-reverse;
}
.icon-box.style1 .icon {
    margin: 5px 15px 0 0;
    line-height: 1;
}
.icon-box.style1 .icon i {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--main-color);
}
.icon-box.right .icon {
    margin-left: 25px;
    margin-right: 0;
}
.icon-box.right .content {
    text-align: right;
}
.icon-box.style1 .content h4 {
    color: #626060;
    font-size: 18px;
    font-weight: normal;
    font-family: "Outfit", sans-serif;
    margin-bottom: 0;
}
.icon-box.style1 .content p {
    color: #c68e50;
    font-size: 22px;
    margin: 0;
}

/* Style Two */

.icon-box.style2 .wrapper {
    display: flex;
    align-items: center;
}
.icon-box.style2 .title {
    color: var(--paragraph-color);
    font-size: 20px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    margin-bottom: 7px;
}
.icon-box.right {
    flex-direction: row-reverse;
}
.icon-box.style2 .icon {
    margin-right: 25px;
    line-height: 1;
}
.icon-box.style2 .icon i {
    display: inline-block;
    color: var(--main-color);
    font-size: 30px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    background-color: rgba(255, 116, 38, 0.1);
    border-radius: 50%;
}
.icon-box.right .icon {
    margin-left: 25px;
    margin-right: 0;
}
.icon-box.right .content {
    text-align: right;
}
.icon-box.style2 .content p {
    margin: 0;
}

/* Style Three */

.icon-box.style3 .wrapper {
    display: flex;
}
.icon-box.style3 .title {
    font-size: 18px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}
.icon-box.style3 .icon {
    position: relative;
    flex-shrink: 0;
    margin-right: 15px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    background-color: rgba(217, 143, 75, 0.1);
}
.icon-box.style3 .icon i {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-size: 22px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.icon-box.style3 .description {
    line-height: 26px;
    margin-bottom: 0;
}

/*
===================
 Signature Box
===================
*/
.signature-box.style1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.signature-box.style1 .icon {
    margin: 0 16px 0 0;
    line-height: 1;
}
.signature-box.style1 .icon i {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--main-color);
}
.signature-box.style1 .icon img {
    height: 66px;
    width: 66px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 20px 0px rgba(110, 110, 110, 0.2);
}
.signature-box.style1 .content {
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid rgba(18, 29, 23, 0.1);
}
.signature-box.style1 .content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}
.signature-box.style1 .content p {
    color: var(--main-color);
    font-size: 15px;
    margin: 0;
}

/*
===================
Single Image
===================
*/
.single-image.style1 {
    position: relative;
    display: inline-block;
    text-align: center;
    padding-left: 40px;
}
.single-image.style1 .bar {
    position: absolute;
    height: 182px;
    width: 10px;
    background-color: var(--main-color);
    margin: 0 15px;
    top: 0;
    left: 0;
}
.single-image.style1 .image1 {
    padding: 0 125px 80px 0;
}
.single-image.style1 .image2 {
    position: absolute;
    top: 0;
    right: 10px;
}
.single-image.style1 .image2 img {
    height: 254px;
    width: 94px;
    object-fit: cover;
}
.single-image.style1 .counter-box {
    position: absolute;
    background-color: #ff8711;
    padding: 43px 50px 42px;
    bottom: 0;
    right: 0;
    border: 10px solid #fff;
}
.single-image.style1 .counter-box .icon {
    height: 80px;
    width: 80px;
    line-height: 78px;
    text-align: center;
    margin: 0 auto 27px;
    border-radius: 50%;
    background-color: #fff;
}
.single-image.style1 .counter-box .icon img {
    max-width: 40px;
}
.single-image.style1 .counter-box .number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
}
.single-image.style1 .counter-box .number h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}
.single-image.style1 .counter-box .title {
    color: #fff;
    margin: 0;
}

/* Style Two */

.single-image.style2 .image {
    position: relative;
    display: inline-block;
    padding-right: 20px;
}
.single-image.style2 .image::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 0;
    top: 20px;
    bottom: -20px;
    background-color: #ff8711;
    z-index: -1;
}
.single-image.style2 .box {
    position: absolute;
    height: 170px;
    width: 170px;
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    left: 0;
    bottom: 0;
    text-align: center;
}
.single-image.style2 .box .title {
    color: #fff;
    font-weight: 500;
    margin: 16px 0 0;
}

/* Style Three */

.single-image.style3 .image {
    position: relative;
    display: inline-block;
    padding-left: 26px;
}
.single-image.style3 .image::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0px;
    top: 40px;
    bottom: 40px;
    background-color: #ff8711;
    z-index: -1;
}
.single-image.style3 .image .shape {
    position: absolute;
    top: 50%;
    right: -52px;
    transform: translateY(-50%);
}
.single-image.style3 .box {
    position: absolute;
    height: 170px;
    width: 170px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    right: 20px;
    bottom: 20px;
    text-align: center;
    padding-top: 13px;
}
.single-image.style3 .box .icon {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 30px;
    background-color: var(--main-color);
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
}
.single-image.style3 .box .icon span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(123, 185, 47, 1);
    border-radius: 50%;
    animation: ripple 3s linear 0s infinite;
    -webkit-animation: ripple 3s linear 0s infinite;
    -ms-animation: ripple 3s linear 0s infinite;
    -o-animation: ripple 3s linear 0s infinite;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
    opacity: 0;
}
.single-image.style3 .box .title {
    font-weight: 500;
    margin: 26px 0 0;
}
@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.25);
        -moz-transform: scale(1.25);
        -o-transform: scale(1.25);
        transform: scale(1.25);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Style Four */

.single-image.style4 .image {
    position: relative;
    display: inline-block;
    padding: 0 0 30px 30px;
}
.single-image.style4 .image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 182px;
    width: 10px;
    background-color: #7bb92f;
    z-index: -1;
}
.single-image.style4 .box {
    position: absolute;
    background-color: #ff8711;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    bottom: 0;
    padding: 30px 30px;
    border-radius: 4px;
}
.single-image.style4 .box .icon {
    position: relative;
    display: inline-block;
    color: #f00;
    font-size: 30px;
    background-color: #fff;
    height: 62px;
    width: 62px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    margin-right: 20px;
}
.single-image.style4 .box .title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 6px;
}
.single-image.style4 .box .description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Style Five */

.single-image.style5 .image {
    position: relative;
    overflow: hidden;
}
.single-image.style5 .image:before {
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1;
}
.single-image.style5 .image:hover:before {
    height: 250%;
    -webkit-transition: all 900ms linear;
    transition: all 900ms linear;
    background-color: transparent;
}

/*
===================
Tabs
===================
*/
.room-tabs.style1 {
    padding: 158px 0 34px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background-image 0.5s ease-in-out;
}
.room-tabs.style1 .tabs {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 100px;
}
.room-tabs.style1 .tabs .tab {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}
.room-tabs.style1 .tabs .tab.active {
    border-bottom: 2px solid var(--main-color);
    color: var(--main-color);
}
.room-tabs.style1 .content-item {
    display: none;
}
.room-tabs.style1 .content-item .price {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    background-color: var(--main-color);
    padding: 14px 30px;
}
.room-tabs.style1 .content-item .text-wrapper {
    max-width: 300px;
    background-color: #fff;
    padding: 28px 30px 30px;
}
.room-tabs.style1 .content-item .text-wrapper .room-type {
    font-weight: normal;
    font-family: "Outfit", sans-serif;
    margin-bottom: 15px;
}
.room-tabs.style1 .content-item.active {
    display: block;
}
.room-tabs.style1 .content-item p {
    color: #7e7e7e;
    margin-bottom: 10px;
}
.room-tabs.style1 .content-item table {
    margin-bottom: 25px;
}
.room-tabs.style1 .content-item table tr {
    vertical-align: baseline;
}
.room-tabs.style1 .content-item table tr td {
    color: #7e7e7e;
    font-size: 14px;
    border: 0;
    padding: 0 10px 5px 0;
}
.room-tabs.style1 .content-item a {
    display: inline-block;
    color: #fff;
    padding: 14px 38px;
    background-color: var(--main-color);
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

/* Style Two */

.about-tabs.style2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-tabs.style2 .tabs {
    display: flex;
    width: 100%;
}

.about-tabs.style2 .tabs .tab {
    font-size: 15px;
    font-weight: 500;
    margin-right: 10px;
    padding: 16px 38px;
    cursor: pointer;
    border: 1px solid #e5e5e5;
}

.about-tabs.style2 .tabs .tab.active {
    border-color: #1ba8f1;
    color: #1ba8f1;
}

.about-tabs.style2 .content {
    width: 100%;
    margin-top: 25px;
}

.about-tabs.style2 .content .content-item {
    display: none;
}

.about-tabs.style2 .content .content-item.active {
    display: block;
}
.about-tabs.style2 .content .content-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.about-tabs.style2 .content .content-item ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
}
.about-tabs.style2 .content .content-item ul li::before {
    content: "";
    position: absolute;
    height: 6px;
    width: 6px;
    background-color: #1ba8f1;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.about-tabs.style2 .content .content-item ul li::after {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    background-color: rgba(27, 168, 241, 0.2);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.about-tabs.style2 .content .content-item a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    background-color: #1ba8f1;
    margin-top: 20px;
}

/*
===================
Accordion
===================
*/
.accordion.style1 {
    list-style: none;
    margin: 0;
    padding: 0;
}
.accordion.style1 li {
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
}
.accordion.style1 li:last-child {
    margin-bottom: 0;
}
.accordion.style1 a:not([href]):not([class]),
.accordion.style1 a:not([href]):not([class]):hover {
    color: #061738 !important;
}
.accordion.style1 a {
    position: relative;
    display: block;
    color: #061738;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    user-select: none;
    padding: 20px 20px 20px 30px;
}
.accordion.style1 a:after {
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--title-color);
    border-bottom: 1px solid var(--title-color);
    position: absolute;
    right: 30px;
    content: " ";
    top: 45%;
    transform: rotate(-45deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.accordion.style1 a i {
    display: inline-block;
    color: var(--main-color);
    font-size: 24px;
    margin-right: 15px;
}
.accordion.style1 a.active {
    color: #fff;
    background-color: var(--main-color);
}
.accordion.style1 a.active i {
    color: #fff;
}
.accordion.style1 a.active:after {
    border-color: #fff;
    transform: rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.accordion.style1 li p {
    display: none;
    margin: 0;
    padding: 30px 55px 30px 30px;
}

/* Style Two */

.accordion.style2 {
    list-style: none;
    margin: 0;
    padding: 0;
}
.accordion.style2 li {
    position: relative;
    margin-bottom: 20px;
}
.accordion.style2 li p {
    display: none;
    margin: 0;
    padding: 20px 25px 0;
}
.accordion.style2 a:not([href]):not([class]),
.accordion.style2 a:not([href]):not([class]):hover {
    color: #061738 !important;
}
.accordion.style2 a {
    display: block;
    color: #061738;
    font-size: 18px;
    font-weight: 600;
    line-height: 2.5;
    width: 100%;
    cursor: pointer;
    user-select: none;
    padding: 0 20px 0 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 25px;
}
.accordion.style2 a:after {
    width: 8px;
    height: 8px;
    border-right: 1px solid #4a6e78;
    border-bottom: 1px solid #4a6e78;
    position: absolute;
    right: 30px;
    content: " ";
    top: 17px;
    transform: rotate(-45deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.accordion.style2 a i {
    color: #fff;
    font-size: 14px;
    background-color: #473bf0;
    height: 33px;
    width: 33px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    margin-right: 15px;
}
.accordion.style2 p {
    line-height: 1.6;
    padding: 10px;
}
.accordion.style2 a.active {
    color: #fff;
    background-color: #473bf0;
    border-color: #473bf0;
}
.accordion.style2 a.active i {
    color: #473bf0;
    background-color: #fff;
}
.accordion.style2 a.active:after {
    border-color: #fff;
    transform: rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* Style Three */

.accordion.style3 {
    list-style: none;
    margin: 0;
    padding: 0;
}
.accordion.style3 li {
    position: relative;
    margin-bottom: 42px;
}
.accordion.style3 li::after {
    content: "";
    position: absolute;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    left: 94px;
    right: 0;
    bottom: -27px;
}
.accordion.style3 li:last-child::after {
    display: none;
}
.accordion.style3 li p {
    display: none;
    margin: 0;
    padding: 0 0 0 94px;
}
.accordion.style3 a {
    display: flex;
    align-items: center;
    color: #061738;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    user-select: none;
}
.accordion.style3 a .number {
    display: inline-block;
    color: #fff;
    font-size: 25px;
    background-color: var(--main-color);
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    margin-right: 15px;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    flex-shrink: 0;
}

/* Style Four */

.accordion.style4 {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #ffffff;
}

.accordion.style4 .accordion__single {
    display: block;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
    overflow: hidden;
}
.accordion.style4 .accordion__single:last-child {
    margin-bottom: 0;
}
.accordion.style4 .accordion__title {
    background: transparent;
    color: #161c2d;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 28px;
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.accordion.style4 .accordion__title::before {
    content: "";
    position: absolute;
    left: 30px;
    bottom: -3px;
    height: 1px;
    width: 90%;
    background: rgba(0, 0, 0, 0.07);
}

.accordion.style4 .accordion__title .meta--icon::before,
.accordion__title .meta--icon::after {
    content: "";
    position: absolute;
    top: 45%;
    background: #161c2d;
    height: 10px;
    width: 2px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.accordion.style4 .accordion__title .meta--icon::before {
    right: 38px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.accordion.style4 .accordion__title .meta--icon::after {
    right: 44px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.accordion.style4 .accordion__title.active .meta--icon::before {
    right: 44px;
}
.accordion.style4 .accordion__title.active .meta--icon::after {
    right: 38px;
}
.accordion.style4 .accordion__content-text {
    display: none;
    line-height: 1.6;
    padding: 20px 30px 10px;
}

/*
===================
Gallery
===================
*/

.image-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.image-gallery .single-item {
    position: relative;
    margin-left: -60px;
}
.image-gallery .single-item img {
    width: auto;
}
.image-gallery .single-item:first-child {
    z-index: 7;
    margin-left: -20px;
}
.image-gallery .single-item:nth-child(2) {
    z-index: 6;
}
.image-gallery .single-item:nth-child(3) {
    z-index: 5;
}
.image-gallery .single-item:nth-child(4) {
    z-index: 4;
}
.image-gallery .single-item:nth-child(5) {
    z-index: 3;
}
.image-gallery .single-item:nth-child(6) {
    z-index: 2;
}
.image-gallery .single-item:last-child {
    z-index: 1;
    margin-left: -30px;
    margin-bottom: 9px;
}

/*
=========
Counter
=========
*/
.single-counter.style1 {
    text-align: center;
}
.single-counter.style1 #counter .count,
.single-counter.style1 #counter .suffix {
    display: inline-block;
    color: var(--main-color);
    font-size: 80px;
    margin-bottom: 0;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
}
.single-counter.style1 #counter .title {
    position: relative;
    font-size: 20px;
    margin: 0;
}

/* Style Two */

.single-counter.style2 {
    display: flex;
    align-items: center;
}
.single-counter.style2 .icon {
    margin-right: 20px;
}
.single-counter.style2 .icon i {
    display: inline-block;
    color: #696969;
    font-size: 50px;
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    background: #f6f6f8;
}
.single-counter.style2 #counter .count {
    display: inline-block;
    font-size: 50px;
    margin-bottom: 0;
}
.single-counter.style2 #counter .suffix {
    display: inline-block;
    color: var(--title-color);
    font-size: 50px;
    margin-bottom: 0;
}
.single-counter.style2 #counter .title {
    position: relative;
    color: var(--main-color);
    font-size: 18px;
    margin: 2px 0 0;
    font-weight: 500;
}

/* Style Three */

.single-counter.style3 {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 42px 30px 49px;
    border-radius: 5px;
}
.single-counter.style3::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(to right, #2e4ffe 0%, #4f7efa 100%);
    transition: 0.5s;
}
.single-counter.style3:hover::before {
    width: 100%;
}
.single-counter.style3 .icon {
    margin-right: 20px;
}
.single-counter.style3 .icon i {
    color: var(--main-color);
    font-size: 50px;
}
.single-counter.style3 #counter .count {
    display: inline-block;
    margin-bottom: 0;
}
.single-counter.style3 .number {
    margin-bottom: 6px;
}
.single-counter.style3 #counter .suffix {
    display: inline-block;
    color: var(--title-color);
    margin-bottom: 0;
}
.single-counter.style3 #counter .title {
    position: relative;
    color: #a0a5b9;
    font-size: 16px;
    margin: 0;
    font-weight: normal;
}

/* Style Four */

.single-counter.style4 {
    position: relative;
    text-align: center;
    background-color: #f2f4fc;
    padding: 40px;
    border-radius: 3px;
    overflow: hidden;
}
.single-counter.style4 .serial {
    position: absolute;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    top: -75px;
    left: -75px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-counter.style4:hover .serial {
    top: 25px;
    left: 25px;
}
.single-counter.style4::before {
    content: "";
    position: absolute;
    height: 150px;
    width: 150px;
    line-height: 100px;
    background-color: var(--main-color);
    left: -150px;
    top: -150px;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-counter.style4:hover::before {
    left: -55px;
    top: -58px;
}
.single-counter.style4 .icon {
    margin-bottom: 50px;
}
.single-counter.style4 .icon i {
    font-size: 40px;
}
.single-counter.style4 #counter {
    margin: 0;
    padding: 0;
    list-style: none;
}
.single-counter.style4 #counter span {
    color: var(--title-color);
    font-size: 50px;
    font-weight: 600;
    transition: 0.3s;
}
.single-counter.style4:hover #counter span {
    color: var(--main-color);
}
.single-counter.style4 #counter h6 {
    position: relative;
    color: #57647c;
    font-size: 16px;
    margin: 50px 0 0;
    font-weight: normal;
}
.single-counter.style4 #counter h6::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 80px;
    background-color: var(--main-color);
    top: -28px;
    left: 0;
    right: 0;
    margin: auto;
}

/*
===================
 Progress Bar
===================
*/
.progress-item.style1 {
    margin-bottom: 28px;
}
.progress-item.style1 .progress-name {
    color: var(--title-color);
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    margin: 0 0 14px;
}
.progress-item.style1 .progress-stick {
    position: relative;
    height: 6px;
    background: rgba(18, 29, 23, 0.1);
    border-radius: 3px;
    margin: 5px 0;
}
.progress-item.style1 .progress-per {
    position: absolute;
    height: 6px;
    top: 0;
    background-color: var(--main-color);
    border-radius: 3px;
    width: 0;
    transition: 1s linear;
}
.progress-item.style1 .progress-per::before {
    content: attr(per);
    position: absolute;
    top: -39px;
    right: 0;
    color: var(--title-color);
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

/* Style Two */

.progress-item.style2 {
    margin-bottom: 32px;
}
.progress-item.style2 .progress-name {
    color: var(--title-color);
    font-weight: 500;
    margin: 0 0 16px;
}
.progress-item.style2 .progress-stick {
    position: relative;
    height: 1px;
    background: var(--main-color);
    margin: 5px 0;
}
.progress-item.style2 .progress-per {
    position: absolute;
    height: 10px;
    top: -5px;
    background-color: var(--main-color);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 0;
    transition: 1s linear;
}
.progress-item.style2 .progress-per::before {
    content: attr(per);
    position: absolute;
    top: -35px;
    right: 0;
}

/*
===================
Subscribe Form
===================
*/
.footer-subscribe {
    position: relative;
}
.footer-subscribe input[type="email"] {
    color: #fff;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0;
    outline: 0;
    background: transparent;
    padding: 5px 70px 5px 15px;
    height: 52px;
    width: 100%;
    margin-bottom: 15px;
    padding: 16px 120px 16px 16px;
    transition: 0.3s;
}
.footer-subscribe input[type="email"]:focus {
    color: #fff;
    border-color: var(--main-color);
}
.footer-subscribe input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.8);
}
.footer-subscribe input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.067;
    border: 0;
    outline: 0;
    padding: 18px 20px;
    height: 52px;
    background-color: var(--main-color);
    border-radius: 0;
}

/*
===================
 Home 2 Form
===================
*/
.home-2-form .form-control {
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    border: 0;
    outline: 0;
    padding: 17px 25px;
    border-radius: 5px;
}
.home-2-form input[type="submit"] {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    background-color: var(--main-color);
    border: 0;
    outline: 0;
    padding: 20px 34px;
    border-radius: 30px;
}

/*
===================
Contact Page Form
===================
*/
.contact-page-form input[type="text"],
.contact-page-form input[type="email"],
.contact-page-form input[type="tel"] {
    font-size: 14px;
    height: 50px;
    border: 0;
    border-bottom: 1px solid #dfdfdf;
    border-radius: 0;
    margin-bottom: 20px;
    padding: 10px 0;
}
.contact-page-form input[type="text"]:focus,
.contact-page-form input[type="email"]:focus,
.contact-page-form input[type="tel"]:focus {
    box-shadow: none;
    border-color: rgba(217, 143, 75, 0.5);
}
.contact-page-form input[type="text"]::placeholder,
.contact-page-form input[type="email"]::placeholder,
.contact-page-form input[type="tel"]::placeholder {
    color: #6c7470;
}
.contact-page-form textarea {
    font-size: 14px;
    height: 125px;
    border: 0;
    border-bottom: 1px solid #dfdfdf;
    border-radius: 0;
    margin-bottom: 30px;
    padding: 20px 0;
}
.contact-page-form textarea:focus {
    box-shadow: none;
    border-color: rgba(217, 143, 75, 0.5);
}
.contact-page-form textarea::placeholder {
    color: #6c7470;
}
.contact-page-form .submit-button {
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 0;
    outline: 0;
    border-radius: 0;
    background-color: var(--main-color);
    padding: 19px 35px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.contact-page-form .submit-button:hover {
    background-color: #0d1e35;
}

/*
===================
 Hero Booking Form
===================
*/

.hero-booking {
    display: flex;
}
.hero-booking p {
    margin-bottom: 0;
}
.hero-booking .check-in,
.hero-booking .check-out,
.hero-booking .button {
    width: 20%;
}
.hero-booking .adult {
    width: 12%;
}
.hero-booking .children {
    width: 15%;
}
.hero-booking .rooms {
    width: 13%;
}
.hero-booking label {
    width: 100%;
}
.hero-booking .check-in input,
.hero-booking .check-out input,
.hero-booking .adult select,
.hero-booking .children select,
.hero-booking .rooms select {
    color: var(--paragraph-color);
    height: 50px;
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 0;
    font-size: 16px;
    margin-top: 10px;
    padding: 14px 15px;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.hero-booking .button input {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    height: 50px;
    width: 100%;
    border: 0;
    outline: 0;
    margin-top: 35px;
    background-color: #161616;
    border-radius: 0;
    padding: 17px 20px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero-booking .button input:hover {
    background-color: var(--main-color);
}
.hero-booking select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url(../images/down.png) no-repeat 100% center;
    background-position-x: 100%;
    background-size: auto;
    background-size: 8px;
    background-position-x: 93%;
}

/* Style Two */

.hero2-booking {
    display: inline-block;
    padding: 41px 34px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 410px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
}
.hero2-booking label,
.hero2-booking input,
.hero2-booking select {
    width: 100%;
}
.hero2-booking label {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.hero2-booking input[type="date"] {
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid #c2c2c2;
    border-radius: 0;
    outline: 0;
    padding: 9px 10px 9px 17px;
    background-color: transparent;
}
.hero2-booking input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8);
}
.hero2-booking input[type="date"]:focus {
    color: rgba(255, 255, 255, 0.6);
}
.hero2-booking select {
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid #c2c2c2;
    border-radius: 0;
    outline: 0;
    padding: 9px 10px 9px 20px;
    background-color: transparent;
}
.hero2-booking select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url(../images/down-white.png) no-repeat 100% center;
    background-position-x: 100%;
    background-size: auto;
    background-size: 8px;
    background-position-x: 95%;
}
.hero2-booking select option {
    color: var(--title-color);
}
.hero2-booking input[type="submit"] {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 0;
    outline: 0;
    padding: 17px 10px;
    background-color: var(--main-color);
    border-radius: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.hero2-booking input[type="submit"]:hover {
    background-color: #161616;
}
.hero2-booking .check-in {
    margin-bottom: 22px;
}
.hero2-booking .check-out {
    margin-bottom: 22px;
}
.hero2-booking .adult {
    margin-bottom: 22px;
}
.hero2-booking .children {
    margin-bottom: 28px;
}

.hero2-booking ~ .wpcf7-response-output {
    color: #fff;
}

/*
===================
 Portfolio List
===================
*/

.portfolio-list.style2 #user-button {
    z-index: 1000;
    bottom: 1rem !important;
    right: 1rem !important;
    color: var(--user-button-text);
    transition: 1s 0s ease-out;
    -webkit-animation: slide 3s ease-out forwards;
    animation: slide 3s ease-out forwards;
}
@-webkit-keyframes slide {
    0%,
    50% {
        opacity: 0;
        display: block !important;
    }
    100% {
        opacity: 1;
        display: block !important;
    }
}
@keyframes slide {
    0%,
    50% {
        opacity: 0;
        display: block !important;
    }
    100% {
        opacity: 1;
        display: block !important;
    }
}
.portfolio-list.style2 #user-button .u-card {
    border-radius: 100%;
    box-shadow:
        0 0 1rem -0.25rem var(--user-button-shadow),
        inset 0 0 1rem -0.75rem var(--user-button-shadow);
}
.portfolio-list.style2 #user-button .u-main {
    cursor: pointer;
    --user-button-background: var(--user-button-main, #ec87c0);
}
.portfolio-list.style2 #user-button .u-main img {
    height: 100%;
    width: 100%;
}
.portfolio-list.style2 #user-button .u-main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
    opacity: 1;
    transition: 0s 4s;
}
.portfolio-list.style2 #user-button .u-icons {
    position: relative;
    z-index: 950;
    transform: translate(-50%, -50%);
    background: var(--user-button-circle);
    box-shadow: 0 0 0 0.125rem var(--user-button-cardborder);
    border-radius: 100%;
    transition: 0.25s;
    opacity: 1 !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.portfolio-list.style2 #user-button .u-icons a {
    color: inherit;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    text-decoration: none;
}
.portfolio-list.style2 #user-button .u-icons a div {
    padding: 0.5rem;
    transition: 0s;
}
.portfolio-list.style2 #user-button .u-icons a[href="https://twitter.com/Osorpenke"]
{
    position: relative;
}
.portfolio-list.style2 #user-button .u-icons a[href="https://twitter.com/Osorpenke"]:before
{
    content: "Middle Click";
    position: absolute;
    top: -1.5rem;
    left: 50%;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    white-space: pre;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in;
    background: #fffc;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}
.portfolio-list.style2 #user-button .u-icons a[href="https://twitter.com/Osorpenke"].show:before
{
    opacity: 1;
    transition: 0.25s ease-out;
}
.portfolio-list.style2 #user-button .u-icons a[href="https://twitter.com/Osorpenke"] div
{
    color: #1da1f2;
}
.portfolio-list.style2 #user-button .u-icons a[href="https://codepen.io/z-"] div
{
    background: black;
    color: white;
}
.portfolio-list.style2 #user-button .u-icons a.u-random div {
    position: relative;
    top: -1px;
    -webkit-animation: diespin 2s linear infinite;
    animation: diespin 2s linear infinite;
}
@-webkit-keyframes diespin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes diespin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.portfolio-list.style2 #user-button .u-icons a.u-random:not(:hover) div {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.portfolio-list.style2 #user-button .u-icons > * {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--singlecolour);
    border-radius: 100%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: 0.25s -0.05s;
}
.portfolio-list.style2 #user-button .u-icons > *:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.portfolio-list.style2 #user-button .u-icons > *:hover,
body #user-button .u-icons > *:focus-within {
    background: var(--hcolour);
}
.portfolio-list.style2 #user-button .u-icons > *:first-child:nth-last-child(1):nth-child(1),
body #user-button .u-icons > *:first-child:nth-last-child(1) ~ *:nth-child(1) {
    left: 25%;
    top: 25%;
}
.portfolio-list.style2 #user-button .u-icons > *:first-child:nth-last-child(2):nth-child(1),
body #user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(1) {
    left: 37.5%;
    top: 18.75%;
}
.portfolio-list.style2 #user-button .u-icons > *:first-child:nth-last-child(2):nth-child(2),
body #user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(2) {
    left: 18.75%;
    top: 37.5%;
}
.portfolio-list.style2 #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(1),
body #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(1) {
    left: 50%;
    top: 15.625%;
}
.portfolio-list.style2 #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(2),
body #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(2) {
    left: 25%;
    top: 25%;
}
.portfolio-list.style2 #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(3),
body #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(3) {
    left: 15.625%;
    top: 50%;
}
.portfolio-list.style2 #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(1),
body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(1) {
    left: 62.5%;
    top: 18.75%;
}
.portfolio-list.style2 #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(2),
body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(2) {
    left: 37.5%;
    top: 18.75%;
}
.portfolio-list.style2 #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(3),
body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(3) {
    left: 18.75%;
    top: 37.5%;
}
.portfolio-list.style2 #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(4),
body #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(4) {
    left: 18.75%;
    top: 62.5%;
}
.portfolio-list.style2 #user-button:hover .u-icons,
body #user-button:focus-within .u-icons {
    width: 300% !important;
    height: 300% !important;
}

.portfolio-list.style2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100vh;
    font-family: "Roboto", sans-serif;
    transition: 0.25s;
}
.portfolio-list.style2.dark {
    background: #232223;
    color: white;
}
@media (prefers-color-scheme: dark) {
    .portfolio-list.style2:not(.light) {
        background: #232223;
        color: white;
    }
}
.portfolio-list.style2 .credit {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: inherit;
}
.portfolio-list.style2 .options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    min-width: 600px;
    max-width: 900px;
    width: calc(100% - 100px);
    height: 400px;
}
@media screen and (max-width: 718px) {
    .portfolio-list.style2 .options {
        min-width: 520px;
    }
    .portfolio-list.style2 .options .option:nth-child(5) {
        display: none;
    }
}
@media screen and (max-width: 638px) {
    .portfolio-list.style2 .options {
        min-width: 440px;
    }
    .portfolio-list.style2 .options .option:nth-child(4) {
        display: none;
    }
}
@media screen and (max-width: 558px) {
    .portfolio-list.style2 .options {
        min-width: 360px;
    }
    .portfolio-list.style2 .options .option:nth-child(3) {
        display: none;
    }
}
@media screen and (max-width: 478px) {
    .portfolio-list.style2 .options {
        min-width: 280px;
    }
    .portfolio-list.style2 .options .option:nth-child(2) {
        display: none;
    }
}
.portfolio-list.style2 .options .option {
    position: relative;
    overflow: hidden;
    min-width: 60px;
    margin: 10px;
    background: var(--optionBackground, var(--defaultBackground, #e6e9ed));
    background-size: auto 120%;
    background-position: center;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.portfolio-list.style2 .options .option:nth-child(1) {
    --defaultBackground: #ed5565;
}
.portfolio-list.style2 .options .option:nth-child(2) {
    --defaultBackground: #fc6e51;
}
.portfolio-list.style2 .options .option:nth-child(3) {
    --defaultBackground: #ffce54;
}
.portfolio-list.style2 .options .option:nth-child(4) {
    --defaultBackground: #2ecc71;
}
.portfolio-list.style2 .options .option:nth-child(5) {
    --defaultBackground: #5d9cec;
}
.portfolio-list.style2 .options .option:nth-child(6) {
    --defaultBackground: #ac92ec;
}
.portfolio-list.style2 .options .option.active {
    flex-grow: 10000;
    transform: scale(1);
    max-width: 600px;
    margin: 0px;
    border-radius: 40px;
    background-size: auto 100%;
}
.portfolio-list.style2 .options .option.active .shadow {
    box-shadow:
        inset 0 -120px 120px -120px black,
        inset 0 -120px 120px -100px black;
}
.portfolio-list.style2 .options .option.active .label {
    bottom: 20px;
    left: 20px;
}
.portfolio-list.style2 .options .option.active .label .info > div {
    left: 0px;
    opacity: 1;
}
.portfolio-list.style2 .options .option:not(.active) {
    flex-grow: 1;
    border-radius: 30px;
}
.portfolio-list.style2 .options .option:not(.active) .shadow {
    bottom: -40px;
    box-shadow:
        inset 0 -120px 0px -120px black,
        inset 0 -120px 0px -100px black;
}
.portfolio-list.style2 .options .option:not(.active) .label {
    bottom: 10px;
    left: 10px;
}
.portfolio-list.style2 .options .option:not(.active) .label .info > div {
    left: 20px;
    opacity: 0;
}
.portfolio-list.style2 .options .option .shadow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 120px;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.portfolio-list.style2 .options .option .label {
    display: flex;
    position: absolute;
    right: 0px;
    height: 40px;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.portfolio-list.style2 .options .option .label .icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: white;
    color: var(--defaultBackground);
}
.portfolio-list.style2 .options .option .label .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
    color: white;
    white-space: pre;
}
.portfolio-list.style2 .options .option .label .info > div {
    position: relative;
    transition:
        0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95),
        opacity 0.5s ease-out;
}
.portfolio-list.style2 .options .option .label .info .main {
    font-weight: bold;
    font-size: 1.2rem;
}
.portfolio-list.style2 .options .option .label .info .sub {
    transition-delay: 0.1s;
}
