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

/*
===================
Nav Menu
===================
*/

.gymup-nav-menu.style1 ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.gymup-nav-menu.style1 ul li {
    background: #EFF7F8;
    border-left: 3px solid var(--main-color);
    border-radius: 5px;
    margin-bottom: 10px;
    list-style: none;
    transition: 0.5s;
}
.gymup-nav-menu.style1 ul li:hover {
    background: var(--main-color);
}
.gymup-nav-menu.style1 ul li a {
    padding: 14px 18px;
    display: block;
    color: var(--paragraph-color);
    transition: 0.5s;
}
.gymup-nav-menu.style1 ul li:hover a{
    color: #fff;
}

/* Style Two */

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

/* Sub Menu */

.gymup-nav-menu.style2{
    background-color: #473BF0;
}
.gymup-nav-menu.style2 ul li.menu-item-has-children a::after{
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    margin-left: 5px;
}
.gymup-nav-menu.style2 ul li.menu-item-has-children .sub-menu a::after{
    display: none;
}
.gymup-nav-menu.style2 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;
}
.gymup-nav-menu.style2 ul li:hover .sub-menu{
    top: 100%;
    opacity: 1;
    visibility: visible;
}
.gymup-nav-menu.style2 ul li .sub-menu li a{
    display: block;
    border: 0;
    border-top: 1px solid #564af9;
}

.gymup-nav-menu.style2 .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;
}
.gymup-nav-menu.style2 .menu-search .search-toggle {
    cursor: pointer;
}
.gymup-nav-menu.style2 .menu-search .search-toggle.active .open {
    display: none;
}
.gymup-nav-menu.style2 .menu-search .search-toggle .close {
    display: none;
}
.gymup-nav-menu.style2 .menu-search .search-toggle.active .close {
    display: block;
}
.gymup-nav-menu.style2 .menu-search .search--form form{
    position: relative;
}
.gymup-nav-menu.style2 .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;
}
.gymup-nav-menu.style2 .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 .hero-slider .slider-item{
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
}
.slider-section.style1 .hero-slider .slider-item .text-wrapper{
    position: relative;
    width: 55%;
    padding-left: 35px;
}
.slider-section.style1 .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.style1 .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.style1 .hero-slider .slider-item .subtitle::before{
    content: '';
    position: absolute;
    height: 2px;
    width: 50px;
    background-color: #ff8700;
    left: 0;
    top: 10px;
}
.slider-section.style1 .hero-slider .slider-item .title{
    color: #fff;
    font-size: 56px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 66px;
}
.slider-section.style1 .hero-slider .slider-item .title span{
    color: var(--main-color);
}
.slider-section.style1 .hero-slider .slider-item .button-set{
    margin-top: 33px;
}

.slider-section.style1 .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.style1 .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.style1 .hero-slider .slider-item .button-set .button:hover::before {
    left: -50%;
}
.slider-section.style1 .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.style1 .hero-slider .slider-item .button-set .button:hover::after {
    right: -50%;
}

.slider-section.style1 .hero-slider .owl-nav .owl-prev,
.slider-section.style1 .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.style1 .hero-slider .owl-nav .owl-prev i,
.slider-section.style1 .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.style1 .hero-slider .owl-nav .owl-prev i:hover,
.slider-section.style1 .hero-slider .owl-nav .owl-next i:hover{
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.slider-section.style1 .hero-slider .owl-nav .owl-prev{
    top: 54%;
    right: 100px;
}
.slider-section.style1 .hero-slider:hover .owl-nav .owl-prev{
    
}
.slider-section.style1 .hero-slider .owl-nav .owl-next{
    top: 46%;
    right: 100px;
}
.slider-section.style1 .hero-slider:hover .owl-nav .owl-next{
    
}

/* Style Two */

.slider-section2{
    position: relative;
}
.slider-section2 .hero-slider .slider-item{
    position: relative;
    height: 850px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
}
.slider-section2 .hero-slider .slider-item::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
}
.slider-section2 .hero-slider .slider-item .text-area{
    position: relative;
    width: 65%;
}
.slider-section2 .hero-slider .slider-item .title h1{
    font-size: 80px;
    font-weight: bold;
    line-height: 1.2;
}
.slider-section2 .hero-slider .slider-item .title h1 span{
    color: #0c73ff;
    text-decoration: underline;
}
.slider-section2 .hero-slider .slider-item .description{
    margin-top: 22px;
}
.slider-section2 .hero-slider .slider-item .description p{
    color: #3f4755;
    font-size: 18px;
    font-weight: 500;
}

.slider-section2 .hero-slider .slider-item .button-set{
    margin-top: 37px;
}
.slider-section2 .hero-slider .slider-item .button-set a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: #0c73ff;
    padding: 18px 35px;
}
.slider-section2 .hero-slider .slider-item .button-set a.button2{
    color: #0c73ff;
    background: #fff;
    margin-left: 15px;
    padding: 18px 24px;
}

.slider-section2 .hero-slider .owl-nav .owl-prev,
.slider-section2 .hero-slider .owl-nav .owl-next{
    color: #fff;
    font-size: 50px;
    position: absolute;
    top: 50%;
    -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-section2 .hero-slider .owl-nav .owl-prev{
    right: auto;
    left: 8%;
}
.slider-section2 .hero-slider .owl-nav .owl-next{
    left: auto;
    right: 8%;
}
.slider-section2 .hero-slider .owl-nav .owl-prev:hover,
.slider-section2 .hero-slider .owl-nav .owl-next:hover{
    color: #1d1d1b;
}

/*
===================
Hero Text
===================
*/
.hero-text.style1 .hero-content{
    margin-bottom: 59px;
}
.hero-text.style1 .subtitle {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}
.hero-text.style1 .subtitle i{
    font-size: 19px;
    margin-right: 5px;
}
.hero-text.style1 .hero-content .title {
    color: #fff;
    font-size: 85px;
    line-height: 0.97647;
    margin-bottom: 20px;
}
.hero-text.style1 .hero-content .title span{
    color: #ff8711;
}
.hero-text.style1 .hero-content .description {
    color: #fff;
    font-size: 22px;
    margin: 0;
    width: 85%;
}

.hero-text.style1 .button-set{
    margin-top: 20px;
}
.hero-text.style1 .button-set a{
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    padding: 16px 32px;
    background-color: var(--main-color);
    border-radius: 50px;
}

@media (max-width: 1199px) {
    
    .hero-text.style1 .hero-content .title{
        font-size: 52px;
    }
}

/* Style Two */

.hero-text.style2 .hero-content{
    margin-bottom: 59px;
}
.hero-text.style2 .subtitle {
    display: flex;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 32px;
}
.hero-text.style2 .subtitle i{
    font-size: 19px;
    margin-right: 5px;
}
.hero-text.style2 .hero-content .title {
    color: #fff;
    font-size: 68px;
    line-height: 1.15;
    margin-bottom: 18px;
}
.hero-text.style2 .hero-content .title span{
    font-weight: 200;
}
.hero-text.style2 .hero-content .description {
    color: #fff;
    margin: 0;
    width: 77%;
}

.hero-text.style2 .hero-tabs{
    position: absolute;
    width: 100%;
    z-index: 1;
}
.hero-text.style2 .hero-tabs .tab-navigation{
    position: relative;
    display: inline-flex;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.hero-text.style2 .hero-tabs .tab-navigation .nav-item {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 28px;
    background-color: #003B5A;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 2;
    transition: color 250ms ease-in-out;
    overflow: hidden;
}
.hero-text.style2 .hero-tabs .tab-navigation .nav-item.active {
    border-color: #FF5C00;
    background-color: #FF5C00;
}
.hero-text.style2 .hero-tabs .tab-navigation .nav-item:first-child {
    border-top-left-radius: 20px;
}
.hero-text.style2 .hero-tabs .tab-navigation .nav-item:nth-child(2) {
    border-left: 0;
    border-right: 0;
}
.hero-text.style2 .hero-tabs .tab-navigation .nav-item:last-child {
    border-top-right-radius: 20px;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body {
    background-color: #14506F;
    padding: 40px 41px 40px 39px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .tracking-form {
    position: relative;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .tracking-form input {
    color: #fff;
    padding: 19px 30px;
    outline: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    background-color: transparent;
    width: 100%;
    transition: 0.3s;
    line-height: inherit;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .tracking-form input::placeholder{
    color: #fff;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .tracking-form input:focus {
    border-color: var(--main-color);
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .tracking-form button {
    position: absolute;
    display: inherit;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1.28px;
    border: 0;
    outline: 0;
    border-radius: 40px;
    padding: 16px 28px;
    background-color: #FF5C00;
    top: 5px;
    right: 5px;
    transition: 0.3s;
    line-height: inherit;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .tracking-form button:hover {
    color: #003B5A;
    background-color: #fff;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .tracking-form button i{
    margin-right: 10px;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .quote-form form textarea {
    color: #fff;
    line-height: inherit;
    padding: 19px 30px;
    outline: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    background-color: transparent;
    width: 100%;
    transition: 0.3s;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .quote-form form textarea::placeholder{
    color: #fff;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .quote-form form textarea:focus {
    border-color: #FF5C00;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .quote-form form button {
    color: #fff;
    font-weight: bold;
    line-height: inherit;
    border: 0;
    outline: 0;
    margin-top: 15px;
    padding: 15px 28px;
    border-radius: 40px;
    background-color: #FF5C00;
    transition: 0.3s;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .quote-form form button:hover {
    color: #003B5A;
    background-color: #fff;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .contact-info {
    display: flex;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .contact-info .address-box {
    display: flex;
    width: 50%;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .contact-info .address-box .icon {
    margin-right: 20px;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .contact-info .address-box .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: #FF5C00;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .contact-info .address-box .content .title {
    color: #fff;
    margin-bottom: 4px;
}
.hero-text.style2 .hero-tabs .tab-content .tab-body .contact-info .address-box .content .description {
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 1399px) {
    .hero-text.style2 .hero-content .title{
        font-size: 60px;
    }
}
@media (max-width: 1199px) {
    .hero-text.style2 .hero-content .title{
        font-size: 52px;
    }
    .hero-text.style2 .hero-tabs .tab-content .tab-body .contact-info{
        flex-wrap: wrap;
    }
    .hero-text.style2 .hero-tabs .tab-content .tab-body .contact-info .address-box{
        width: 100%;
    }
    .hero-text.style2 .hero-tabs .tab-content .tab-body .contact-info .address-box:last-child{
        margin-top: 20px;
    }
}
@media(max-width: 1024px){
    .hero-text.style2 .hero-tabs{
        position: static;
    }
}
@media(max-width: 767px){
    .hero-text.style2 .hero-content .title{
        font-size: 46px;
    }
    .hero-text.style2 .hero-tabs .tab-navigation .nav-item{
        font-size: 14px;
        padding: 7px 15px;
    }
    .hero-text.style2 .hero-tabs .tab-navigation .nav-item:first-child {
        border-top-left-radius: 10px;
    }
    .hero-text.style2 .hero-tabs .tab-navigation .nav-item:last-child {
        border-top-right-radius: 10px;
    }
    .hero-text.style2 .hero-tabs .tab-content .tab-body{
        padding: 40px 30px 40px 30px;
    }
    .hero-text.style2 .hero-tabs .tab-content .tab-body .tracking-form input{
        padding: 13px 30px;
    }
    .hero-text.style2 .hero-tabs .tab-content .tab-body .tracking-form button{
        position: static;
        margin-top: 15px;
        padding: 15px 28px;
    }
    .hero-text.style2 .hero-tabs .tab-content .tab-body .contact-info .address-box .icon i{
        font-size: 16px;
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}

/*
===================
 Hero Image
===================
*/

.hero-image.style1 .wrapper{
    position: relative;
    display: inline-block;
}
.hero-image.style1 .shape1 {
    position: absolute;
    left: -35px;
    top: 9%;
}
.hero-image.style1 .main-image{
    position: relative;
    display: inline-block;
}
.hero-image.style1 .main-image::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 139, 249, 0.63) 0%, rgba(0, 139, 249, 0.00) 55.19%);
    bottom: 0;
    left: 0;
    border-top-left-radius: 275px;
    border-top-right-radius: 275px;
}
.hero-image.style1 .main-image::after {
    content: '';
    position: absolute;
    height: 97px;
    width: 41px;
    background-color: var(--main-color);
    bottom: 23%;
    left: -25px;
}
.hero-image.style1 .main-image img {
    height: auto;
    width: auto;
    border-top-left-radius: 275px;
    border-top-right-radius: 275px;
}
.hero-image.style1 .shape2 {
    position: absolute;
    right: -45px;
    bottom: 13px;
}

/*
===================
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 .title1,
.hero-particles.style1 .title2{
    position: relative;
    font-size: 150px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 6px;
    z-index: 1;
}
.hero-particles.style1 .title2{
    text-indent: 2.4em;
}
.hero-particles.style1 .title1 span{
    color: var(--main-color);
}
.hero-particles.style1 .description{
    margin-bottom: 53px;
}

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

@media(max-width: 1185px){

    .hero-particles.style1 .title1,
    .hero-particles.style1 .title2{
        font-size: 100px;
    }
}
@media(max-width: 991px){

    .hero-particles.style1 .title1,
    .hero-particles.style1 .title2{
        font-size: 80px;
    }
}
@media(max-width: 767px){

    .hero-particles.style1{
        height: 440px;
    }
    .hero-particles.style1 .title1,
    .hero-particles.style1 .title2{
        font-size: 50px;
    }
    .hero-particles.style1 .title2{
        text-indent: inherit;
    }
}

/* 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;
}

/* Style Four */

.hero-particles.style4 {
    position: relative;
    text-align: center;
    height: 990px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-particles.style4 .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.style4 .subtitle::before,
.hero-particles.style4 .subtitle::after{
    content: '';
    position: absolute;
    height: 2px;
    width: 45px;
    background-color: var(--main-color);
    top: 50%;
    left: -55px;
}
.hero-particles.style4 .subtitle::after{
    left: inherit;
    right: -55px;
}
.hero-particles.style4 .title{
    position: relative;
    font-size: 85px;
    font-weight: bold;
    margin-bottom: 18px;
    z-index: 1;
}
.hero-particles.style4 .title span{
    color: var(--main-color);
}
.hero-particles.style1 .description{
    margin-bottom: 53px;
}
.hero-particles.style4 .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.style4 .button-set a.hero-btn1{
    color: #fff;
    margin-right: 10px;
}
.hero-particles.style4 .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.style4 .button-set a.hero-btn1:hover::before{
    left: -50%;
}
.hero-particles.style4 .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.style4 .button-set a.hero-btn1:hover::after{
    right: -50%;
}
.hero-particles.style4 .button-set a.hero-btn2{
    background-color: transparent;
}
.hero-particles.style4 .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.style4 .button-set a.hero-btn2:hover::before{
    left: 0;
}
.hero-particles.style4 .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.style4 .button-set a.hero-btn2:hover::after{
    right: 0;
}

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

/*
===================
Item List
===================
*/
.item-list.style1 ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.item-list.style1 ul li{
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
}
.item-list.style1 ul li:last-child{
    margin-bottom: 0;
}
.item-list.style1 ul li:nth-child(even){
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.item-list.style1 ul li:nth-child(even) .text{
    border-left: 0;
    border-right: 3px solid var(--main-color);
}
.item-list.style1 ul li:nth-child(even) .number{
    margin-right: 0;
    margin-left: 12px;
}
.item-list.style1 ul li .number{
    color: #252525;
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.181818;
    margin-right: 12px;
}
.item-list.style1 ul li .text{
    position: relative;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    padding: 20px 30px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    border-left: 3px solid var(--main-color);
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    transition: 0.3s;
    z-index: 2;
}
.item-list.style1 ul li .text::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 3px;
    background-color: var(--main-color);
    top: 0;
    left: -3px;
    z-index: -1;
    transition: 0.5s;
}
.item-list.style1 ul li:hover .text::before{
    width: calc(100% + 3px);
}
.item-list.style1 ul li:hover .text{
    color: #fff;
}
.item-list.style1 ul li:nth-child(even) .text::before{
    left: inherit;
    right: -3px;
}
.item-list.style1 ul li i{
    color: var(--title-color);
    font-size: 16px;
    margin-right: 15px;
}

@media (max-width: 767px) {

    .item-list.style1 ul li{
        font-size: 20px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .item-list.style1 ul li .number{
        font-size: 40px;
        margin-bottom: 10px;
    }
    .item-list.style1 ul li .text{
        font-size: 18px;
        padding: 20px 15px;
    }
}

@media (max-width: 380px) {
    
    .item-list.style1 ul li .text{
        font-size: 14px;
    }
}

/* Style Two */

.item-list.style2 ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.item-list.style2 ul li{
    display: flex;
    color: var(--title-color);
    margin-bottom: 15px;
}
.item-list.style2 ul li:last-child{
    margin-bottom: 0;
}
.item-list.style2 ul li i{
    color: var(--main-color);
    font-size: 20px;
    margin: 6px 10px 0 0;
}

/* Style Three */

.item-list.style3 ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.item-list.style3 ul li {
    display: flex;
    align-items: start;
    margin-bottom: 12px;
}
.item-list.style3 ul li:last-child{
    margin-bottom: 0;
}
.item-list.style3 ul li i {
    color: #fff;
    display: inline-block;
    background: var(--main-color);
    margin: 7px 10px 0 0;
    padding: 5px;
    border-radius: 5px;
    font-size: 8px;
}

/* Style Four */

.item-list.style4 ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.item-list.style4 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.style4 ul li:last-child{
    margin-bottom: 0;
    border: 0;
}
.item-list.style4 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.style4 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 */

.brand.style2 .brand-carousel .brand-item img{
    width: auto;
}
.brand.style2 .owl-stage{
    display: flex;
    align-items: center;
}

/* 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;
    display: inline-block;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    text-transform: uppercase;
    margin: 0 0 13px;
    padding: 10px 25px;
    background: #fff;
    border-radius: 7px;
    z-index: 5;
}
.section-title.style1 .subtitle span{
    position: relative;
    z-index: 3;
}
.section-title.style1 .subtitle::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    height: calc(100% + 2px);
    width: calc(100% + 2px);
    background: linear-gradient(to right, rgba(197,52,35,1) 0%,rgba(226,154,145,0.5) 40%,rgba(255,255,255,0.5) 70%);
    border-radius: 8px;
    z-index: 1;
}
.section-title.style1 .subtitle::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    border-radius: 7px;
    z-index: 2;
}
.section-title.style1.center .subtitle{
    justify-content: center;
}
.section-title.style1 .title {
    color: var(--title-color);
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 23px;
    line-height: 1.1666666666;
    text-transform: capitalize;
}
.section-title.style1.left .title span {
    position: relative;
    z-index: 1;
}
.section-title.style1.left .title span::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -6px;
    z-index: -1;
    height: 29px;
    width: 237px;
    background-image: url('../images/underline.png');
    background-repeat: no-repeat;
}
.section-title.style1.center .title span {
    position: relative;
    z-index: 1;
}
.section-title.style1.center .title span::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -1px;
    z-index: -1;
    height: 29px;
    width: 237px;
   background-image: url('../images/underline.png');
    background-repeat: no-repeat;
}
.section-title.center{
    text-align: center;
    margin: auto;
}
.section-title.right{
    text-align: right;
}

@media (max-width: 1199px) {

    .section-title.style1 .title{
        font-size: 40px;
    }
}
@media(max-width: 991px){

    .section-title.style1 .title{
        font-size: 38px;
    }
}
@media(max-width: 767px){

    .section-title.style1 .subtitle{
        font-size: 16px;
    }
    .section-title.style1 .title{
        font-size: 30px;
    }
    .section-title.style1.center .title span::after{
        left: inherit;
        right: 0;
        bottom: -10px;
        width: 150px;
        background-size: contain;
    }
    .section-title.style1.left .title span::after{
        left: inherit;
        right: 0;
        bottom: -10px;
        width: 150px;
        background-size: contain;
    }
}

/* Style Two */

.section-title.style2 .subtitle{
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 13px;
    padding-left: 38px;
}
.section-title.style2 .subtitle::after{
    content: '';
    position: absolute;
    height: 32px;
    width: 32px;
    background: url(../images/subtitle-shape.png);
    left: 0;
    bottom: -3px;
}
.section-title.style2 .title{
    font-size: 60px;
    font-weight: bold;
    line-height: 1.166666;
    margin-bottom: 20px;
}
.section-title.style2 .title span{
    color: var(--main-color);
}

@media(max-width: 1024px){

    .section-title.style2 .subtitle{
        font-size: 18px;
    }
    .section-title.style2 .title{
        font-size: 50px;
    }
}
@media(max-width: 767px){

    .section-title.style2 .subtitle{
        font-size: 16px;
    }
    .section-title.style2 .title{
        font-size: 30px;
    }
}

/* 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;
    border: 1px solid #E3E3E3;
    border-radius: 20px;
    padding: 40px 40px 39px;
    transition: .4s;
    margin-top: 40px;
}
.service-section .service-box-icon i {
    display: inline-block;
    color: #003B5A;
    font-size: 45px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #F5F7FA;
    border-radius: 50%;
}
.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: 19px 0 12px;
    color: #003B5A;
}
.service-section .service-box .description p {
    color: #616670;
    margin: 0 0 31px;
}
.service-section .service-box .service-button a {
    font-size: 16px;
    display: inline-block;
    color: #003B5A;
    font-weight: bold;
    letter-spacing: 1.28px;
    transition: 0.3s;
}
.service-section .service-box .service-button a i{
    font-size: 14px;
    margin-left: 10px;
}
.service-section .service-carousel .owl-item.center {
    transform: translateY(-30px);
}
/*owl dots*/
.service-section .owl-dots{
    text-align: center;
    margin-top: 49px;
}
.service-section .service-carousel .owl-dots button {
    border: 0;
    outline: 0;
    height: 10px;
    width: 100px;
    background-color: #F5F7FA;
    border-radius: 5px;
}
.service-section .service-carousel .owl-dots button.active {
    background-color: #003B5A;
}
.service-section .service-carousel .owl-item.center .service-box-icon i {
    color: #fff;
    background-color: #FF5C00;
}

@media (max-width: 1024px) {

    .service-section .service-box {
        margin-top: 0;
    }
}
@media (max-width: 767px) {

    .service-section .service-carousel .owl-item.center {
        transform: translateY(0);
    }
    .service-section .service-box {
        margin-top: 0;
    }
    .service-section .owl-dots {
        margin-top: 20px;
    }
    .service-section .service-carousel .owl-dots button{
        width: 30px;
        margin-right: 10px;
    }
}

/*
===================
Team Section
===================
*/
.single-team.style1{
    position: relative;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 420px;
}
.single-team.style1 .profile-picture img {
    height: 304px;
    width: 100%;
    object-fit: cover;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-team.style1 .profile-picture ul li a:hover{
    color: #fff;
    background-color: var(--main-color);
}
.single-team.style1 .bio{
    position: absolute;
    width: 100%;
    bottom: -37px;
    background-color: #EFEFEF;
    padding: 21px 0 15px;
    transition: 0.5s;
}
.single-team.style1:hover .bio{
    bottom: 0;
}
.single-team.style1 .bio .name {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 12px;
}
.single-team.style1 .bio .designation {
    margin: 0 0 15px;
}
.single-team.style1 .bio .social-icons {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    opacity: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.single-team.style1:hover .bio .social-icons{
    opacity: 1;
}
.single-team.style1 .bio .social-icons li {
    margin-right: 25px;
}
.single-team.style1 .bio .social-icons li:last-child{
    margin-right: 0;
}
.single-team.style1 .bio .social-icons li a {
    display: inline-block;
    color: var(--paragraph-color);
    transition: 0.3s;
}
.single-team.style1 .bio .social-icons li a:hover{
    color: var(--main-color);
}

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

.single-team.style2{
    position: relative;
    text-align: center;
    background-color: #fff;
}
.single-team.style2 .profile-picture{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.single-team.style2 .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.style2:hover .profile-picture::before{
    opacity: 1;
    visibility: visible;
}
.single-team.style2 .profile-picture img{
    width: 100%;
}
.single-team.style2 .profile-picture .team-social-icons{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    transition: 0.5s;
}
.single-team.style2:hover .profile-picture .team-social-icons{
    bottom: 30px;
}
.single-team.style2 .profile-picture .team-social-icons a{
    display: inline-block;
    color: var(--main-color);
    height: 40px;
    width: 40px;
    line-height: 40px;
    background-color: #fff;
    margin-right: 5px;
    border-radius: 8px;
}
.single-team.style2 .profile-picture .team-social-icons a:hover{
    color: #fff;
    background-color: var(--main-color);
}
.single-team.style2 .team-content{
    padding: 20px 0 0;
}
.single-team.style2 .team-content h3 {
    font-size: 26px;
    margin: 0 0 8px;
}
.single-team.style2 .team-content p {
    color: var(--main-color);
    margin-bottom: 0;
}

/* Style Three
---------------*/

.single-team.style3{
    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.style3:hover{
    background-color: #121d17;
}
.single-team.style3 .profile-picture{
    position: relative;
    overflow: hidden;
}
.single-team.style3 .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.style3:hover .profile-picture img{
    border-color: #ff8711;
}
.single-team.style3 .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.style3:hover .bio .name{
    color: #fff;
}
.single-team.style3 .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.style3:hover .bio .designation{
    color: #ff8711;
}

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

.single-team.style4{
    position: relative;
    text-align: center;
    margin-bottom: 116px;
    padding: 33px 20px 163px;
    border-radius: 10px;
    box-shadow: 0px 16px 52px rgba(0, 0, 0, 0.07);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-team.style4:hover{
    background-color: var(--main-color);
}
.single-team.style4 .profile-picture {
    position: absolute;
    top: 115px;
    left: 20px;
    right: 20px;
    overflow: hidden;
}
.single-team.style4 .profile-picture img {
    height: 247px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-team.style4 .profile-picture ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    display: flex;
    justify-content: center;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-team.style4:hover .profile-picture ul {
    bottom: 20px;
}
.single-team.style4 .profile-picture ul li {
    margin-right: 10px;
}
.single-team.style4 .profile-picture ul li a {
    display: inline-block;
    color: var(--title-color);
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
    transition: 0.3s;
}
.single-team.style4 .profile-picture ul li a:hover{
    color: #fff;
    background-color: var(--main-color);
}
.single-team.style4 .bio .name {
    font-size: 20px;
    margin: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.single-team.style4:hover .bio .name{
    color: #fff;
}
.single-team.style4 .bio .designation {
    color: var(--title-color);
    margin: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.single-team.style4:hover .bio .designation{
    color: #fff;
}

/*
===================
 Team Carousel
===================
*/

.team-member.style1 .team-item{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.team-member.style1 .team-item .profile-picture{
    position: relative;
}
.team-member.style1 .team-item .profile-picture .social-toggle{
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    font-size: 16px;
    height: 51px;
    width: 51px;
    background-color: var(--main-color2);
    border: 0;
    outline: 0;
    border-radius: 4px;
}
.team-member.style1 .team-item .profile-picture .social-icons {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    position: absolute;
    top: 30px;
    left: 88px;
    background: var(--main-color2);
    border-radius: 5px;
}
.team-member.style1 .team-item .profile-picture .social-icons li a {
    position: relative;
    display: inline-block;
    margin: 0 0 0;
    font-size: 14px;
    width: 51px;
    height: 51px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    border-radius: 4px;
}
.team-member.style1 .team-item .profile-picture .social-icons li a::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    height: 19px;
    width: 1px;
    background: #fff;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}
.team-member.style1 .team-item .profile-picture .social-icons li:last-child a::before{
    display: none;
}
.team-member.style1 .team-item .bio {
    position: relative;
    padding: 30px 30px 24px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    z-index: 1;
}
.team-member.style1 .team-item .bio::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    transition: all 400ms linear;
    background: var(--main-color2);
    z-index: -1;
}
.team-member.style1 .team-item:hover .bio::before {
    height: 100%;
    border-radius: 0 0 10px 10px;
}
.team-member.style1 .team-item .bio .name {
    color: var(--title-color2);
    margin: 0 0 6px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.team-member.style1 .team-item:hover .bio .name{
    color: #fff;
}
.team-member.style1 .team-item .bio .designation {
    color: var(--title-color2);
    margin: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.team-member.style1 .team-item:hover .bio .designation{
    color: #fff;
}
.team-member.style1 .owl-nav {
    position: absolute;
    right: 0;
    top: -117px;
}
.team-member.style1 button.owl-prev,
.team-member.style1 button.owl-next {
    display: inline-block;
    font-size: 16px;
    text-align: center;
    height: 60px;
    width: 60px;
    background: #EFF7F9;
    line-height: 60px;
    color: var(--title-color2);
    border-radius: 100%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.team-member.style1 button.owl-prev {
    margin-right: 18px;
}
.team-member.style1 button.owl-prev:hover,
.team-member.style1 button.owl-next:hover {
    background: var(--main-color2);
    color: #fff;
}

/*
===================
Single Button
===================
*/

.single-button.style1 .button {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    background-color: var(--main-color);
    padding: 16px 32px;
    border-radius: 40px;
    z-index: 1;
    overflow: hidden;
}
.single-button.style1 .button span {
    position: absolute;
    display: block;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--title-color);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}
.single-button.style1 .button:hover span {
    width: 450px;
    height: 450px;
}
.single-button.style1 .button i{
    margin-left: 10px;
    transform: rotate(-45deg);
}

/* Style Two */

.single-button.style2 .button {
    display: inline-block;
    color: #000;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F5F7FA;
    padding: 30px 35px;
    border-radius: 20px;
    transition: 0.3s;
    font-weight: bold;
    line-height: 1.25;
}
.single-button.style2 .button:hover {
    background-color: #FF5C00;
    color: #fff;
}
.single-button.style2 .button i {
    margin-left: 10px;
    color: #003B5A;
    font-size: 20px;
    transform: rotate(-45deg);
    transition: 0.3s;
}
.single-button.style2 .button:hover i{
    color: #fff;
}


/* 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 */

.single-button.style4 .button{
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 13px 35px;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.single-button.style4 .button:hover{
    color: var(--title-color);
}
.single-button.style4 .button i {
    font-size: 9px;
    margin-left: 5px;
}
.single-button.style4 .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.style4 .button:hover::before {
    left: -50%;
}
.single-button.style4 .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.style4 .button:hover::after {
    right: -50%;
}

/*
===================
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 .5em);
}
.app-download .round_per {
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 1em;
    background: #0c73ff;
    clip: rect(0 1em 1em .5em);
    transform: rotate(180deg);
    transition: 1.05s;
}
.app-download .percent_more .circle_inner {
    clip:rect(0 .5em 1em 0em);
}
.app-download .percent_more:after {
    position: absolute;
    left: .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 .content{
    text-align: center;
}
.testimonial.style1 .single-testimonial .quote-icon i {
    font-size: 42px;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 1px;
}
.testimonial.style1 .single-testimonial .quote-text {
    font-size: 36px;
    line-height: 1.4;
    width: 90%;
    margin: 0 auto 34px;
}
.testimonial.style1 .single-testimonial .rating-stars{
    margin: 0 0 9px;
}
.testimonial.style1 .single-testimonial .rating-stars i {
    color: var(--main-color);
    font-size: 19px;
    margin-right: 3px;
}
.testimonial.style1 .single-testimonial .image {
    display: inline-block;
    margin-right: 20px;
}
.testimonial.style1 .single-testimonial .image img{
    height: 120px;
    width: 103px;
    object-fit: cover;
    border-radius: 20px;
}
.testimonial.style1 .single-testimonial .client-bio .name {
    font-size: 26px;
    margin: 0 0 4px;
    color: var(--title-color);
    font-weight: 600;
    line-height: 1.4;
}
.testimonial.style1 .single-testimonial .client-bio .designation{
    margin-bottom: 0;
}
.testimonial.style1 .single-testimonial .client-profile {
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial.style1 .owl-dots {
    position: absolute;
    right: 103px;
    bottom: 17px;
}
.testimonial.style1 .owl-dots .owl-dot {
    -moz-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    display: inline-block;
    height: 10px;
    width: 10px;
    background-color: #003B5A;
    border-radius: 50%; 
    border: 0;
    outline: 0;
    margin-right: 17px;
}
.testimonial.style1 .owl-dots .owl-dot.active{
    background-color: #003B5A;
    position: relative;
}
.testimonial.style1 .owl-dots button.active span {
    position: absolute;
    height: 24px;
    width: 24px;
    border: 2px solid #003B5A;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
    .testimonial.style1 .single-testimonial .quote-text{
        font-size: 28px;
    }
}
@media (max-width: 767px) {

    .testimonial.style1 .single-testimonial .quote-text{
        font-size: 18px;
        width: 100%;
    }
    .testimonial.style1 .owl-dots{
        position: static;
        margin: 20px 0 20px;
    }
}

/* Style Two */

.testimonial.style2 {
    position: relative;
    background: #fff;
    padding: 45px 45px;
    border-radius: 20px;
}
.testimonial.style2 .testimonial-image-slider{
    margin-right: 70px;
}
.testimonial.style2 .sin-testiImage {
    display: inline-block;
    outline: medium none;
}
.testimonial.style2 .sin-testiImage img {
    border-radius: 80px;
    cursor: pointer;
    display: inline-block !important;
    height: 286px;
    outline: 0 none;
    width: 80px;
    width: 161px;
    object-fit: cover;
    margin: 29px 0;
    transition: 0.3s;
}
.testimonial.style2 .sin-testiImage.slick-current img {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    transform: scale(1.2);
    border: 2px solid #fff;
}
.testimonial.style2 .testimonial-text-slider h2 {
    color: var(--title-color);
    display: block;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
}
.testimonial.style2 .testimonial-text-slider {
    margin: auto;
    padding: 0;
    position: relative;
    z-index: 9;
}
.testimonial.style2 .testimonial-text-slider .rating-stars{
    margin-bottom: 20px;
}
.testimonial.style2 .testimonial-text-slider .rating-stars i{
    color: var(--main-color);
}
.testimonial.style2 .testimonial-text-slider .quote{
    color: var(--title-color);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 18px;
}
.testimonial.style2 .testimonial-text-slider .name{
    margin: 0 0 2px;
}
.testimonial.style2 .testimonial-text-slider .designation{
    margin: 0;
}
.testimonial.style2 .prev-btn{
    position: absolute;
    height: 60px;
    width: 60px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    top: -197px;
    right: 30px;
    cursor: pointer;
    transition: 0.3s;
}
.testimonial.style2 .prev-btn:hover{
    border-color: var(--main-color);
    background-color: var(--main-color);
}
.testimonial.style2 .next-btn{
    position: absolute;
    height: 60px;
    width: 60px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    top: -197px;
    right: -45px;
    cursor: pointer;
    transition: 0.3s;
}
.testimonial.style2 .next-btn:hover{
    border-color: var(--main-color);
    background-color: var(--main-color);
}

@media(max-width: 767px){

    .testimonial.style2 {
        padding: 45px 25px;
    }
    .testimonial.style2 .testimonial-text-slider{
        margin-top: 25px;
    }
    .testimonial.style2 .testimonial-text-slider .quote{
        font-size: 18px;
    }
}

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

.blog-post.style1 .blog-box{
    position: relative;
    border: 1px solid rgba(112, 112, 112, 0.4);
    border-radius: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 35px;
}
.blog-post.style1 .blog-box:last-child{
    margin-bottom: 0;
}
.blog-post.style1 .blog-box .post-thumb{
    position: relative;
    display: inline-block;
    border-radius: 20px;
    flex-shrink: 0;
    overflow: hidden;
}
.blog-post.style1 .blog-box .post-thumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 59, 90, 0.5);
    opacity: 0;
    z-index: 1;
    transition: 0.5s;
}
.blog-post.style1 .blog-box:hover .post-thumb::before {
    opacity: 1;
}
.blog-post.style1 .blog-box .post-thumb img{
    height: 289px;
    width: 545px;
    object-fit: cover;
    transition: 0.5s;
}
.blog-post.style1 .blog-box:hover .post-thumb img{
    transform: scale(1.08);
}
.blog-post.style1 .blog-box .blog-content {
    padding: 0 75px 0 0;
    border-radius: 10px;
}
.blog-post.style1 .blog-box .blog-content .blog-title {
    margin-top: 0;
    margin-bottom: 11px;
}

.blog-post.style1 .blog-box .blog-content .blog-title a {
    color: var(--title-color);
    font-weight: 600;
    padding-bottom: 6px;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 98%);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: left 85%;
    transition: all 0.5s linear;
}
.blog-post.style1 .blog-box .blog-content .blog-title a:hover {
    background-size: 100% 1px;
}
.blog-post.style1 .blog-box .post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.blog-post.style1 .blog-box .author a{
    color: var(--paragraph-color);
    text-transform: capitalize;
}
.blog-post.style1 .blog-box .author a:hover{
    color: var(--main-color);
}
.blog-post.style1 .blog-box .post-meta .divider{
    height: 20px;
    width: 1px;
    background-color: rgba(112, 112, 112, 0.4);
    margin: 0 20px;
}
.blog-post.style1 .blog-box .button {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    padding: 15px 32px;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;
    margin-top: 17px;
}
.blog-post.style1 .blog-box .button:hover {
    color: #fff;
}
.blog-post.style1 .blog-box .button span {
    position: absolute;
    display: block;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--main-color);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}
.blog-post.style1 .blog-box .button:hover span {
    width: 385px;
    height: 385px;
}
.blog-post.style1 .blog-box .button i{
    margin-left: 5px;
    transform: rotate(-45deg);
}
.blog-post.style1 .owl-carousel .owl-nav{
    position: absolute;
    top: -120px;
    right: 0;
}
.blog-post.style1 .owl-carousel .owl-nav button,
.blog-post.style1 .owl-carousel .owl-nav button{
    color: var(--title-color);
    border: 0;
    outline: 0;
    height: 60px;
    width: 60px;
    background-color: rgba(0, 59, 90, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}
.blog-post.style1 .owl-carousel .owl-nav .owl-next{
    margin-left: 20px;
}
.blog-post.style1 .owl-carousel .owl-nav button:hover{
    color: #fff;
    background-color: var(--title-color);
}

@media(max-width: 1024px){

    .blog-post.style1 .blog-box {
        display: block;
    }
    .blog-post.style1 .blog-box .blog-content .blog-title{
        font-size: 28px;
    }
    .blog-post.style1 .blog-box .post-thumb{
        margin-top: 30px;
    }
}
@media(max-width: 767px){

    .blog-post.style1 .blog-box {
        flex-wrap: wrap;
        padding: 35px 25px;
    }
    .blog-post.style1 .blog-box .post-meta{
        margin-bottom: 10px;
    }
    .blog-post.style1 .blog-box .author a{
        font-size: 16px;
    }
    .blog-post.style1 .blog-box .date{
        font-size: 16px;
    }
    .blog-post.style1 .blog-box .blog-content {
        padding: 0;
    }
    .blog-post.style1 .blog-box .blog-content .blog-title {
        font-size: 22px;
    }
    .blog-post.style1 .blog-box .blog-content p{
        font-size: 16px;
    }
    .blog-post.style1 .blog-box .post-thumb{
        flex-shrink: inherit;
    }
    .blog-post.style1 .blog-box .post-thumb img{
        width: 100%;
    }
    .blog-post.style1 .blog-box .button{
        font-size: 13px;
        padding: 15px 19px;
    }
}

/* Style Two */

.blog-post.style2 .blog-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 10px 30px 0px rgba(14, 10, 7, 0.06);
    overflow: hidden;
    margin: 30px 0;
}
.blog-post.style2 .blog-box .post-thumb{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.blog-post.style2 .blog-box .post-thumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 59, 90, 0.5);
    opacity: 0;
    z-index: 1;
    transition: 0.5s;
}
.blog-post.style2 .blog-box:hover .post-thumb::before {
    opacity: 1;
}
.blog-post.style2 .blog-box .post-thumb img{
    height: 268px;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.blog-post.style2 .blog-box:hover .post-thumb img {
    transform: scale(1.08);
}
.blog-post.style2 .blog-box .blog-content {
    position: relative;
    padding: 19px 30px 18px;
    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 .blog-content .post-meta{
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}
.blog-post.style2 .blog-box .blog-content .post-meta .dot{
    height: 4px;
    width: 4px;
    background-color: var(--paragraph-color);
    border-radius: 50%;
    margin: 0 12px;
}
.blog-post.style2 .blog-box .blog-content .author i{
    color: var(--main-color);
    font-size: 14px;
    margin-right: 8px;
}
.blog-post.style2 .blog-box .blog-content .author a{
    color: var(--title-color);
    font-size: 14px;
    text-transform: uppercase;
}
.blog-post.style2 .blog-box .blog-content .date{
    color: var(--title-color);
    font-size: 14px;
    text-transform: uppercase;
}
.blog-post.style2 .blog-box .blog-content .date i{
    color: var(--main-color);
    font-size: 14px;
    margin-right: 8px;
}
.blog-post.style2 .blog-box .blog-content .blog-title {
    line-height: 1.3;
    margin-bottom: 16px;
}
.blog-post.style2 .blog-box .blog-content .blog-title a {
    position: relative;
    color: var(--title-color);
    display: inline;
    text-decoration: none;
    padding-bottom: 2px;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 98%);
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: left 85%;
    transition: all 0.5s linear;
}
.blog-post.style2 .blog-box .blog-content .blog-title a:hover {
    background-size: 100% 1px;
}
.blog-post.style2 .blog-box .blog-content .underline{
    position: relative;
    height: 1px;
    width: 100%;
    background-color: #e3e3e3;
    margin: 0 0 19px 0;
}
.blog-post.style2 .blog-box .blog-content .underline::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 80px;
    background-color: #213438;
}
.blog-post.style2 .blog-box .blog-content .read-more {
    font-size: 20px;
    position: relative;
    display: inline-block;
    color: var(--title-color);
    font-weight: 600;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
}
.blog-post.style2 .blog-box .blog-content .excerpt{
    margin:  12px 0 8px;
}
.blog-post.style2 .blog-box .blog-content .read-more:hover{
    color: var(--main-color);
}
.blog-post.style2 .blog-box .blog-content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    transform: rotate(-45deg);
}
.blog-post.style2 .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    outline: 0;
    height: 60px;
    width: 60px;
    background-color: transparent;
    border: 1px solid var(--main-color);
    border-radius: 8px;
    transition: 0.3s;
}
.blog-post.style2 .owl-nav button:hover{
    color: #fff;
    background-color: var(--main-color);
}
.blog-post.style2 .owl-nav .owl-prev{
    left: -84px;
}
.blog-post.style2 .owl-nav .owl-next {
    right: -84px;
}

@media (max-width: 1465px) {

    .blog-post.style2 .owl-nav {
        text-align: center;
        margin-top: 40px;
    }
    .blog-post.style2 .owl-nav .owl-prev,
    .blog-post.style2 .owl-nav .owl-next{
        position: static;
    }
    .blog-post.style2 .owl-nav .owl-prev{
        margin-right: 15px;
    }
}
@media (max-width: 1199px) {

    .blog-post.style2 .blog-box .blog-content {
        padding: 20px 30px 27px;
    }
    .blog-post.style2 .blog-box .blog-content .blog-title{
        font-size: 21px;
    }
}
@media(max-width: 767px){

    .blog-post.style2 .owl-nav {
        text-align: center;
        margin-top: 40px;
    }
    .blog-post.style2 .owl-nav .owl-prev,
    .blog-post.style2 .owl-nav .owl-next{
        position: static;
    }
    .blog-post.style2 .owl-nav .owl-prev{
        margin-right: 15px;
    }
}

/* Style Three */

.blog-post.style3 .blog-box{
    position: relative;
}
.blog-post.style3 .blog-box .post-thumb{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.blog-post.style3 .blog-box .post-thumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 59, 90, 0.5);
    opacity: 0;
    z-index: 1;
    transition: 0.5s;
}
.blog-post.style3 .blog-box:hover .post-thumb::before {
    opacity: 1;
}
.blog-post.style3 .blog-box .post-thumb img{
    height: 253px;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.blog-post.style3 .blog-box:hover .post-thumb img{
    transform: scale(1.08);
}
.blog-post.style3 .blog-box .blog-content {
    padding: 19px 0 0;
    border-radius: 10px;
}
.blog-post.style3 .blog-box .blog-content .blog-title {
    margin-top: 0;
    margin-bottom: 0;
}

.blog-post.style3 .blog-box .blog-content .blog-title a {
    color: #003B5A;
    padding-bottom: 6px;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 98%);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: left 85%;
    transition: all 0.5s linear;
}
.blog-post.style3 .blog-box .blog-content .blog-title a:hover {
    background-size: 100% 1px;
}
.blog-post.style3 .blog-box .post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.blog-post.style3 .blog-box .blog-content .date {
    color: rgba(0, 59, 90, 0.7);
    font-size: 14px;
    margin-right: 41px;
}
.blog-post.style3 .blog-box .blog-content .date i{
    color: var(--title-color);
    margin-right: 7px;
}
.blog-post.style3 .blog-box .author {
    color: rgba(0, 59, 90, 0.7);
    font-size: 14px;
}
.blog-post.style3 .blog-box .author a{
    color: rgba(0, 59, 90, 0.7);
    text-transform: capitalize;
}
.blog-post.style3 .blog-box .author a:hover{
    color: var(--main-color);
}
.blog-post.style3 .blog-box .author i{
    color: var(--title-color);
    margin-right: 10px;
}
.blog-post.style3 .blog-box .button {
    position: relative;
    display: inline-block;
    color: var(--title-color);
    font-weight: bold;
    letter-spacing: 1.28px;
    padding: 14px 29px;
    border: 1px solid var(--title-color);
    border-radius: 30px;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s;
    margin-top: 29px;
}
.blog-post.style3 .blog-box .button:hover {
    color: #fff;
}
.blog-post.style3 .blog-box .button span {
    position: absolute;
    display: block;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--title-color);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}
.blog-post.style3 .blog-box .button:hover span {
    width: 350px;
    height: 350px;
}
.blog-post.style3 .blog-box .button i{
    margin-left: 9px;
}
.blog-post.style1 .owl-carousel .owl-nav{
    position: absolute;
    top: -120px;
    right: 0;
}
.blog-post.style3 .owl-carousel .owl-nav button,
.blog-post.style3 .owl-carousel .owl-nav button{
    color: var(--title-color);
    border: 0;
    outline: 0;
    height: 60px;
    width: 60px;
    background-color: rgba(0, 59, 90, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}
.blog-post.style3 .owl-carousel .owl-nav .owl-next{
    margin-left: 20px;
}
.blog-post.style3 .owl-carousel .owl-nav button:hover{
    color: #fff;
    background-color: var(--title-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{
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 50px 35px 50px;
    border-radius: 10px;
}
.feature-box.style1 .icon{
    flex-grow: 0;
    flex-shrink: 0;
    height: 120px;
    width: 120px;
    line-height: 90px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    border: 15px solid #121d17;
    border-radius: 50%;
    margin-right: 20px;
}
.feature-box.style1 .content .title{
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 5px;
}
.feature-box.style1 .content .description{
    margin-bottom: 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 {
    background-color: #fff;
    border-bottom: 2px solid transparent;
    border-radius: 20px;
    padding: 38px 40px 38px;
    transition: 0.4s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.service-box.style1:hover {
    border-color: #003B5A;
}
.service-box.style1 .title {
    margin: 0;
    color: #003B5A;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 26px;
}
.service-box.style1 .service-icon {
    display: inline-block;
    margin-bottom: 51px;
}
.service-box.style1 .service-icon i {
    display: inline-block;
    color: #003B5A;
    font-size: 45px;
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    border: 1px solid #E3E3E3;
    border-radius: 50%;
    transition: 0.4s;
}
.service-box.style1:hover .service-icon i {
    color: #fff;
    background-color: #FF5C00;
    border-color: #FF5C00;
}
.service-box.style1 .description {
    margin: 0 0 22px;
    color: #616670;
    line-height: 1.875;
    font-size: 16px;
}
.service-box.style1 .service-btn a {
    display: inline-block;
    color: #003B5A;
    font-weight: bold;
    letter-spacing: 1.28px;
    transition: 0.3s;
}
.service-box.style1 .service-btn a:hover{
    color: var(--main-color);
}
.service-box.style1 .service-btn a i{
    font-size: 14px;
    margin-left: 10px;
}

/*srevice box style two*/


.service-box.style2 {
    background-color: #F5F7FA;
    border-radius: 20px;
    padding: 39px 40px 41px;
    transition: 0.3s;
}
.service-box.style2 .service-icon{
    margin-bottom: 50px;
}
.service-box.style2 .service-icon i {
    display: inline-block;
    color: #003B5A;
    font-size: 45px;
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #003B5A;
    border-radius: 50%;
    transition: 0.3s;
}
.service-box.style2:hover .service-icon i{
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.service-box.style2 .title {
    margin-bottom: 30px;
}
.service-box.style2 .description {
    color: var(--title-color);
    margin-bottom: 22px;
}
.service-box.style2 .service-btn a{
    display: inline-block;
    color: #003B5A;
    font-weight: bold;
    letter-spacing: 1.28px;
    transition: 0.3s;
}
.service-box.style2 .service-btn a:hover{
    color: var(--main-color);
}
.service-box.style2 .service-btn a i{
    color: #FF5C00;
    font-size: 14px;
    margin-left: 10px;
}

/*
===================
Video Section
===================
*/
.video-icon.style1{
    text-align: center;
}
.video-icon.style1 a {
    color: #fff;
    font-size: 42px;
    height: 150px;
    width: 150px;
    line-height: 150px;
    text-align: center;
    background-color: #FF5C00;
    border-radius: 50%;
    display: inline-block;
}
.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,.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 Two */

.video-icon.style2 a {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    width: 38px;
    height: 38px;
    line-height: 38px;
    background-color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 50%;
}
.video-icon.style2 a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,.5);
    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;
    border-radius: 50%;
}
.video-icon.style2 a .circle2 {
    animation-delay: 1.3s;
}
.video-icon.style2 a .circle3 {
    animation-delay: 2.6s;
}

@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 {
    padding: 43px 45px;
    background: #ffffff;
    border: 1px solid rgba(112, 112, 112, 0.4);
    -webkit-box-shadow: 0px 11px 29.4px 0.6px rgba(226, 226, 226, 0.2);
    border-radius: 20px;
    box-shadow: 0px 11px 29.4px 0.6px rgba(226, 226, 226, 0.2);
    transition: 0.3s;
}
.pricing.style1.active,
.pricing.style1:hover{
    border-color: var(--main-color);
}
.pricing.style1 .table-head{
    border-bottom: 1px solid rgba(112, 112, 112, 0.4);
    padding: 0 0 34px;
    transition: 0.3s;
}
.pricing.style1.active .table-head,
.pricing.style1:hover .table-head{
    border-color: var(--main-color);
}
.pricing.style1 .pricing-title {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pricing.style1 .table-body{
    padding: 33px 0 0;
}
.pricing.style1 .pricing-feature {
    margin-bottom: 45px;
}

.pricing.style1 .feature-item {
    display: flex;
    margin-bottom: 11px;
}

.pricing.style1 .feature-item .feature-icon {
    color: var(--main-color);
    margin-right: 15px;
}
.pricing.style1 .price .net-price{
    font-size: 40px;
    font-weight: 600;
}
.pricing.style1 .price .package-validity{
    color: #808A9B;
    font-size: 18px;
    font-weight: normal;
}

.pricing.style1 .button {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    padding: 15px 32px;
    border: 1px solid var(--main-color);
    border-radius: 40px;
    z-index: 1;
    overflow: hidden;
}
.pricing.style1 .button:hover{
    color: #fff;
}
.pricing.style1.active .button{
    color: #fff;
    background-color: var(--main-color);
}
.pricing.style1 .button i{
    transform: rotate(-45deg);
    margin-left: 5px;
}
.pricing.style1 .button span {
    position: absolute;
    display: block;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--main-color);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}
.pricing.style1 .button:hover span {
    width: 650px;
    height: 650px;
}

@keyframes move-to-right {
    49% {
        transform: translateX(-100%);
    }
    50% {
        opacity: 0;
        transform: translateX(100%);
    }
    51% {
        opacity: 1;
    }
}

@media(max-width: 767px){

    .pricing.style1 {
        padding: 43px 25px;
    }
    .pricing.style1 .price .net-price {
        font-size: 34px;
    }
    .pricing.style1 .feature-item .feature-text{
        font-size: 16px;
    }
    .pricing.style1 .button{
        font-size: 13px;
        padding: 15px 19px;
    }
}

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

.pricing.style2 {
    position: relative;
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}
.pricing.style2::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: -1;
    transition: .5s;
    background: var(--main-color2);
    border-radius: 10px;
}
.pricing.style2.active::before,
.pricing.style2:hover::before {
    height: 100%;
}
.pricing.style2 .table-head {
    position: relative;
    text-align: center;
    padding: 36px 40px 29px;
}
.pricing.style2 .table-head .currency {
    color: var(--title-color2);
    font-size: 48px;
    margin-bottom: 16px;
    transition: all 400ms linear;
}
.pricing.style2 .table-head .currency span {
    color: var(--paragraph-color);
    font-size: 15px;
    font-weight: normal;
    transition: all 400ms linear;
}
.pricing.style2 .pack-name {
    color: var(--title-color2);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
    transition: all 400ms linear;
}
.pricing.style2 .table-body{
    padding: 39px 40px 41px;
    border-top: 1px solid #E3E3E3;
    transition: all 400ms linear;
}
.pricing.style2 .pricing-feature {
    margin-bottom: 46px;
}

.pricing.style2 .feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--title-color2);
    margin-bottom: 15px;
    transition: all 400ms linear;
}
.pricing.style2 .pricing-btn {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--main-color2);
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 400ms linear;
}
.pricing.style2 .pricing-btn:hover{
    color: #fff;
}
.pricing.style2:hover .table-head .currency,
.pricing.style2:hover .table-head .currency span,
.pricing.style2:hover .pack-name,
.pricing.style2:hover .feature-item,
.pricing.style2:hover .table-head .currency,
.pricing.style2:hover .table-head .currency span,
.pricing.style2:hover .pack-name,
.pricing.style2:hover .feature-item{
    color: #fff;
}
.pricing.style2:hover .pricing-btn,
.pricing.style2.active .pricing-btn{
    color: var(--main-color2);
    background-color: #fff;
}
.pricing.style2:hover .table-body,
.pricing.style2.active .table-body{
    border-color: #50B0A0;
}

/* Style Three
-------------*/

.pricing.style3 {
    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.style3 .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.style3 .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.style3 .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.style3 .table-head .icon i{
    color: #fff;
    font-size: 30px;
}
.pricing.style3 .pricing-title {
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.pricing.style3 .pricing-title::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 30px;
    background-color: var(--main-color);
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
}

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

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

.pricing.style3 .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.style3 .pricing-btn:hover{
    color: #fff;
}
.pricing.style3 .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.style3 .pricing-btn:hover::before {
    left: 0;
}
.pricing.style3 .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.style3 .pricing-btn:hover::after {
    right: 0;
}

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

/* 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: .3s;
    transition: .3s;
    position: relative;
}

.pricing.style4 .pricing-btn::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #b2aff8;
    -webkit-transition: .3s;
    transition: .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: 10px;
    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: 580px;
    width: 100%;
    object-fit: cover;
}
.portfolio.style1 .portfolio-item .portfolio-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px 35px 40px;
    border-radius: 10px;
    width: 80%;
    transform: translateY(151px);
    background-color: #fff;
    transition: 0.6s;
}
.portfolio.style1 .portfolio-item:hover .portfolio-content{
    transform: translateY(-30px);
}
.portfolio.style1 .portfolio-item .portfolio-content .category {
    position: relative;
    margin-bottom: 5px;
}
.portfolio.style1 .portfolio-item .portfolio-content .category span{
    color: var(--main-color);
}
.portfolio.style1 .portfolio-item .portfolio-content .title{
    font-size: 30px;
    margin-bottom: 15px;
}
.portfolio.style1 .portfolio-item .portfolio-content .button {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    background-color: var(--paragraph-color);
    height: 45px;
    width: 45px;
    line-height: 46px;
    text-align: center;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.portfolio.style1 .portfolio-item .portfolio-content .button:hover{
    background-color: var(--main-color);
}

.portfolio.style1 .owl-dots {
    text-align: center;
    margin-top: 72px;
}
.portfolio.style1 .owl-dots .owl-dot {
    position: relative;
    height: 10px;
    width: 10px;
    background: var(--main-color);
    display: inline-block;
    margin: 0 8px;
    border-radius: 50%;
}
.portfolio.style1 .owl-dots .owl-dot.active::before {
    content: '';
    position: absolute;
    left: -7px;
    top: -7px;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
}

/* Style Two */

.portfolio.style2 .portfolio-item{
    position: relative;
}
.portfolio.style2 .portfolio-item .portfolio-thumb{
    position: relative;
    overflow: hidden;
}
.portfolio.style2 .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.style2 .portfolio-item .portfolio-thumb img{
    height: 414px;
    width: 100%;
    object-fit: cover;
}
.portfolio.style2 .portfolio-item .portfolio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 29px 30px;
    border: 1px solid #E3E3E3;
}
.portfolio.style2 .portfolio-item .portfolio-content .category {
    position: relative;
    margin-bottom: 8px;
}
.portfolio.style2 .portfolio-item .portfolio-content .category span{
    color: var(--title-color2);
}
.portfolio.style2 .portfolio-item .portfolio-content .title{
    color: var(--title-color2);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}
.portfolio.style2 .portfolio-item .portfolio-content .button {
    display: inline-block;
    background-color: var(--main-color2);
    color: #fff;
    font-size: 16px;
    height: 41px;
    width: 41px;
    text-align: center;
    line-height: 41px;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
.portfolio.style2 .portfolio-item .portfolio-content .button:hover{
    background-color: var(--title-color);
}
.portfolio.style2 .owl-dots {
    text-align: center;
    margin-top: 64px;
}
.portfolio.style2 .owl-dots .owl-dot{
    height: 5px;
    width: 20px;
    background-color: rgba(18, 29, 23, 0.2);
    margin-right: 10px;
    border-radius: 5px;
}
.portfolio.style2 .owl-dots .owl-dot.active{
    background-color: #ff8711;
}

/* Style Three */

.portfolio.style3 .portfolio-item{
    position: relative;
}
.portfolio.style3 .portfolio-item .portfolio-thumb{
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}
.portfolio.style3 .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.style3 .portfolio-item .portfolio-thumb img{
    height: 500px;
    width: 100%;
    object-fit: cover;
}
.portfolio.style3 .portfolio-item .portfolio-content {
    position: absolute;
    bottom: 0;
    padding: 0 40px 0;
    width: 100%;
    transform: translateY(22px);
    transition: 0.6s;
}
.portfolio.style3 .portfolio-item:hover .portfolio-content{
    transform: translateY(-30px);
}
.portfolio.style3 .portfolio-item .portfolio-content .category {
    position: relative;
    padding-left: 35px;
    margin-bottom: 8px;
}
.portfolio.style3 .portfolio-item .portfolio-content .category::before{
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    height: 2px;
    width: 25px;
    background-color: #ff8711;
}
.portfolio.style3 .portfolio-item .portfolio-content .category span{
    color: #ff8711;
}
.portfolio.style3 .portfolio-item .portfolio-content .title{
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.portfolio.style3 .portfolio-item .portfolio-content .button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.portfolio.style3 .portfolio-item:hover .portfolio-content .button{
    opacity: 1;
}
.portfolio.style3 .portfolio-item .portfolio-content .button i {
    transform: rotate(-45deg);
    display: inline-block;
    color: var(--main-color);
    font-size: 24px;
    margin-left: 3px;
}

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

/* 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-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.case-study.style1 .case-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.case-study.style1 .case-item:nth-child(1){
    width: calc(41.66666667% - 17px);
    margin-bottom: 30px;
}
.case-study.style1 .case-item:nth-child(2){
    width: calc(58.33333333% - 12px);
    margin-bottom: 30px;
}
.case-study.style1 .case-item:nth-child(3){
    width: calc(33.33333333% - 20px);
}
.case-study.style1 .case-item:nth-child(4){
    width: calc(33.33333333% - 20px);
}
.case-study.style1 .case-item:nth-child(5){
    width: calc(33.33333333% - 20px);
}
.case-study.style1 .case-item .case-thumb{
    position: relative;
}
.case-study.style1 .case-item .case-thumb::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 1px solid #FF5C00;
    border-radius: 20px;
    opacity: 0;
    z-index: 2;
    transition: 0.3s;
}
.case-study.style1 .case-item:hover .case-thumb::before {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    opacity: 1;
}
.case-study.style1 .case-item .case-thumb::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 59, 90, 0.5);
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: 0.3s;
}
.case-study.style1 .case-item:hover .case-thumb::after {
    opacity: 1;
}
.case-study.style1 .case-item .case-thumb img{
    height: 435px;
    width: 100%;
    object-fit: cover;
}

@media(max-width: 1024px){
    .case-study.style1 .case-item:nth-child(1){
        width: calc(50% - 15px);
        margin-bottom: 30px;
    }
    .case-study.style1 .case-item:nth-child(2){
        width: calc(50% - 15px);
        margin-bottom: 30px;
    }
    .case-study.style1 .case-item:nth-child(3){
        width: calc(50% - 15px);
        margin-bottom: 30px;
    }
    .case-study.style1 .case-item:nth-child(4){
        width: calc(50% - 15px);
        margin-bottom: 30px;
    }
    .case-study.style1 .case-item:nth-child(5){
        width: 100%;
    }
}
@media(max-width: 767px){
    .case-study.style1 .case-item:nth-child(1){
        width: 100%;
    }
    .case-study.style1 .case-item:nth-child(2){
        width: 100%;
    }
    .case-study.style1 .case-item:nth-child(3){
        width: 100%;
    }
    .case-study.style1 .case-item:nth-child(4){
        width: 100%;
    }
    .case-study.style1 .case-item:nth-child(5){
        width: 100%;
    }
    .case-study.style1 .case-item .case-thumb img {
        height: 335px;
    }
}

/* Style Two */

.case-study.style2 .case-item{
    margin-bottom: 80px;
}
.case-study.style2 .case-item .image{
    margin-right: 3px;
}
.case-study.style2 .case-item .image img {
    border-radius: 20px;
    height: 422px;
    width: 100%;
    object-fit: cover;
}
.case-study.style2 .case-item .content{
    margin-left: 3px;
}
.case-study.style2 .case-item .content .title {
    margin-bottom: 21px;
}
.case-study.style2 .case-item .content p {
    margin-bottom: 33px;
}
.case-study.style2 .case-item .content ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.case-study.style2 .case-item .content ul li{
    color: #003B5A;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 15px;
}
.case-study.style2 .case-item .content ul li i {
    margin-right: 9px;
}
.case-study.style2 .case-item .content a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #003B5A;
    font-weight: bold;
    letter-spacing: 1.28px;
    padding: 14px 29px;
    border: 1px solid #003B5A;
    border-radius: 40px;
    margin-top: 24px;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
}
.case-study.style2 .case-item .content a:hover {
    color: #fff;
}
.case-study.style2 .case-item .content a span {
    position: absolute;
    display: block;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #003B5A;
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}
.case-study.style2 .case-item .content a:hover span {
    height: 350px;
    width: 350px;
}
.case-study.style2 .case-item .content a i {
    font-size: 14px;
    margin-left: 8px;
}

@media (max-width: 1399px) {
    .case-study.style2 .case-item{
        padding: 0 13px;
    }
}
@media (max-width: 991px) {
    .case-study.style2 .case-item .content {
        margin: 22px 0 0 0;
    }
}
@media (max-width: 767px) {
    .case-study.style2 .case-item .content .title{
        font-size: 28px;
    }
}

/*
===================
 Industries
===================
*/

.industries.style1 .industries-item {
    border: 1px solid #E3E3E3;
    border-radius: 20px;
    margin-top: 20px;
    margin: 19px 0 30px;
    padding: 0 20px;
    transition: 0.3s;
}
.industries.style1 .industries-item:hover{
    border-color: #FF5C00;
}
.industries.style1 .industries-item .image {
    margin-top: -20px;
    border-radius: 20px;
    overflow: hidden;
}
.industries.style1 .industries-item .image img {
    height: 319px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.industries.style1 .industries-item .content {
    padding: 19px 10px 13px 10px;
}
.industries.style1 .industries-item .content .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.industries.style1 .industries-item .content .head .title {
    margin-bottom: 0;
}
.industries.style1 .industries-item .content .head a {
    color: #265269;
    font-size: 14px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #E3E3E3;
    border-radius: 50%;
    flex-shrink: 0;
    transition: 0.3s;
}
.industries.style1 .industries-item .content .head a:hover {
    color: #fff;
    background-color: #FF5C00;
    border-color: #FF5C00;
}

@media(max-width: 767px){
    .industries.style1 .industries-item .image img {
        height: 250px;
    }
}

/*
===================
 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;
    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;
    -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-grid.style1 .item{
    position: relative;
    border-radius: 5px;
    margin-bottom: 24px;
    overflow: hidden;
}
.portfolio-grid.style1 .item .thumb img{
    height: 450px;
    width: 100%;
    object-fit: cover;
}
.portfolio-grid.style1 .item .content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -75px;
    margin: auto;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 5px;
    padding: 0 0 0 25px;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.portfolio-grid.style1 .item:hover .content{
    bottom: 30px;
}
.portfolio-grid.style1 .item .content .title{
    font-size: 18px;
}
.portfolio-grid.style1 .item .content .title a{
    color: var(--title-color);
}
.portfolio-grid.style1 .item .content .title a:hover{
    color: var(--main-color);
}
.portfolio-grid.style1 .item .content .button {
    display: inline-block;
    height: 64px;
    width: 64px;
    line-height: 64px;
    text-align: center;
    background: var(--main-color);
    color: #fff;
    font-size: 20px;
}
.portfolio-grid.style1 .item .content .button:hover{
    background-color: var(--title-color);
}

/* Style Two */

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

/*
===================
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;
}

/*
===================
 Class Schedule
===================
*/

.class-schedule{
    margin-bottom: 0;
}
.class-schedule tr th{
    color: var(--main-color);
    font-size: 36px;
    font-weight: 600;
    border-color: rgba(112, 112, 112, 0.4);
    padding: 37px 45px;
}
.class-schedule tr td{
    font-size: 26px;
    font-weight: 600;
    border-color: rgba(112, 112, 112, 0.4);
    border-bottom: 1px solid transparent;
    padding: 27px 45px;
}
.class-schedule tr:last-child td{
    border-bottom: 1px solid rgba(112, 112, 112, 0.4);
}
.class-schedule tr td:first-child{
    color: var(--title-color);
}
.class-schedule tr:nth-child(even){
    background-color: rgba(112, 112, 112, 0.06);
}

@media(max-width: 767px){

    .class-schedule tr th {
        font-size: 18px;
        padding: 15px 27px;
    }
    .class-schedule tr td {
        font-size: 16px;
        padding: 15px 27px;
    }
}

/*@media screen and (max-width: 600px) {

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    .class-schedule thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .class-schedule tr {
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(112, 112, 112, 0.4);
    }

    .class-schedule tr td {
        font-size: 16px;
        position: relative;
        padding: 15px 45px;
        padding-left: 50%;
    }
    .class-schedule tr td:before {
        position: absolute;
        left: 10px;
        content: attr(data-label);
        font-weight: bold;
    }
    .class-schedule tr:last-child td{
        border-bottom: 0;
    }
}*/

/*
===================
 Working Process
===================
*/
.process-box.style1{
    position: relative;
    text-align: center;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.process-box.style1 .img-wrapper{
    position: relative;
    /*height: 200px;
    width: 200px;
    border-top-left-radius: 85px;
    border-top-right-radius: 90px;
    border-bottom-right-radius: 85px;
    border-bottom-left-radius: 90px;
    transform: rotate(45deg);
    overflow: hidden;*/
    mask-image: url(../images/mask-shape.png);
    mask-repeat: no-repeat;
}
.process-box.style1 .image{
    position: relative;
    display: inline-block;
}
.process-box.style1 .image::before{
    content: "";
    position: absolute;
    width: 215px;
    height: 215px;
    border: 1px solid var(--main-color);
    border-top-left-radius: 85px;
    border-top-right-radius: 90px;
    border-bottom-right-radius: 85px;
    border-bottom-left-radius: 90px;
    transform: rotate(-45deg);
    top: -3px;
    left: -1px;
}
.process-box.style1 .image img{
    width: 213px;
    height: 209px;
    object-fit: cover;
}
.process-box.style1 .content .title {
    color: var(--title-color);
    font-size: 26px;
    font-weight: 600;
    margin: 31px 0 5px;
}
.process-box.style1 .process-icon{
    position: absolute;
    top: 120px;
    left: -27px;
}
.process-box.style1 .process-icon  {
    display: inline-block;
    height: 70px;
    width: 70px;
    line-height: 60px;
    text-align: center;
    background-color: var(--title-color);
    border-radius: 50%;
    color: #fff;
    font-size: 40px;
    border: 2px solid #fff;
    transition: 0.3s;
}
.process-box.style1:hover .process-icon{
    background-color: var(--main-color);
    transform: translateY(-5px);
}
.process-box.style1 .process-icon img{
    height: auto;
    width: auto;
}
.process-box.style1 .number {
    position: absolute;
    top: -10px;
    left: -1px;
    height: 25px;
    width: 25px;
    color: #003B5A;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    background-color: #F5F7FA;
    border-radius: 50%;
}
.process-box.style1 .description {
    color: #717685;
    line-height: 1.875;
}

@media (max-width: 1024px) {
    
    .process-box.style1.tablet .process-icon::before{
        display: none;
    }
}

@media (max-width: 767px) {

    .process-box.style1 .process-icon::before{
        display: none;
    }
}

/* Style Two */

.process-box.style2 {
    text-align: center;
    border: 2px solid #265269;
    border-radius: 20px;
    padding: 28px 28px 43px;
}
.process-box.style2 .process-icon{
    margin-bottom: 30px;
}
.process-box.style2 .process-icon i{
    display: inline-block;
    color: #fff;
    font-size: 45px;
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    background-color: #FF5C00;
    border-radius: 50%;
}
.process-box.style2 .content .title{
    margin-bottom: 25px;
}
.process-box.style2 .content .description{
    margin-bottom: 0;
}

/*
===================
Icon Box
===================
*/
.single-icon-box.style1 {
    display: flex;
}
.single-icon-box.style1 .box-icon{
    color: #fff;
    font-size: 20px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #003B5A;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 20px;
}
.single-icon-box.style1 .content h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}
.single-icon-box.style1 .content p{
    margin: 0;
}

@media(max-width: 767px){

    .single-icon-box.style1 .content .title{
        font-size: 22px;
    }
    .single-icon-box.style1 .content p {
        font-size: 16px;
    }
}

/* Style Two*/

.single-icon-box.style2 {
    display: flex;
}
.single-icon-box.style2:hover {
    border-color: rgba(255, 92, 0, 0.8);
}
.single-icon-box.style2 .box-icon{
    height: 55px;
    width: 55px;
    line-height: 55px;
    text-align: center;
    background-color: var(--main-color);
    border-radius: 8px;
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 3px;
}
.single-icon-box.style2 .box-icon i {
    color: #fff;
    font-size: 30px;
}
.single-icon-box.style2 .content .title {
    color: var(--title-color);
    font-size: 20px;
    margin: 0 0 10px;
}

/* Style Three */

.single-icon-box.style3 {
    display: flex;
    transition: 0.3s;
}
.single-icon-box.style3 .box-icon{
    margin-right: 10px;
}
.single-icon-box.style3 .content .title{
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 6px;
}
.single-icon-box.style3 .content .description{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 0;
}

/*
===================
 Tracking Form
===================
*/

.tracking-form.style1 form{
    position: relative;
}
.tracking-form.style1 form input {
    line-height: inherit;
    padding: 14px 30px;
    outline: 0;
    border: 1px solid #003B5A;
    border-radius: 30px;
    background-color: transparent;
    width: 66%;
    transition: 0.3s;
}
.tracking-form.style1 form input:focus {
    border-color: #FF5C00;
}
.tracking-form.style1 form input::placeholder{
    color: #616670;
}
.tracking-form.style1 form button {
    color: #fff;
    border: 0;
    outline: 0;
    background-color: #FF5C00;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-left: 7px;
    transition: 0.3s;
}
.tracking-form.style1 form button:hover {
    background-color: #003B5A;
}

/* Style Two */

.tracking-form.style2 form{
    position: relative;
}
.tracking-form.style2 form input {
    color: #fff;
    border: 1px solid #fff;
    outline: 0;
    width: 100%;
    line-height: inherit;
    background-color: #003B5A;
    padding: 19px 30px;
    border-radius: 40px;
    transition: 0.3s;
}
.tracking-form.style2 form input:focus {
    border-color: #FF5C00;
}
.tracking-form.style2 form input::placeholder{
    color: #fff;
}
.tracking-form.style2 form button {
    position: absolute;
    color: #fff;
    height: 60px;
    width: 60px;
    border: 0;
    outline: 0;
    top: 5px;
    right: 5px;
    background-color: #FF5C00;
    border-radius: 50%;
    transition: 0.3s;
}
.tracking-form.style2 form button:hover {
    color: #FF5C00;
    background-color: #fff;
}

/*
===================
 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;
    z-index: 1;
}
.single-image.style1 .wrapper{
    display: flex;
    gap: 30px;
}
.single-image.style1 .wrapper .left{
    width: 50%;
}
.single-image.style1 .wrapper .right{
    width: calc(50% - 30px);
}
.single-image.style1 .image1{
    position: relative;
    margin-right: 15px;
    margin-bottom: 28px;
}
.single-image.style1 .image1::before {
    content: "";
    position: absolute;
    height: 99%;
    width: 99%;
    border: 1px solid var(--main-color);
    border-radius: 20px;
    top: 17px;
    left: 17px;
}
.single-image.style1 .image1 img{
    max-width: 100%;
    border-radius: 20px;
}
.single-image.style1 .image2 img {
    border-radius: 20px;
    max-width: 100%;
}
.single-image.style1 .text-box{
    display: flex;
    margin-bottom: 20px;
    padding: 30px 40px;
    background-color: var(--main-color);
    border-radius: 20px;
}
.single-image.style1 .text-box .title{
    color: #fff;
    font-size: 50px;
    margin-bottom: 0;
    margin-right: 30px;
}
.single-image.style1 .text-box .subtitle{
    color: #fff;
    margin-bottom: 0;
}
.single-image.style1 .image3 img{
    height: 404px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 1024px) {

    .single-image.style1{
        display: inline-block;
    }
    .single-image.style1 .image2{
        right: -197px;
    }
    .single-image.style1 .text-box{
        display: block;
    }
    .single-image.style1 .shape{
        right: -197px;
    }
}
@media (max-width: 767px) {

    .single-image.style1 .wrapper{
        flex-wrap: wrap;
    }
    .single-image.style1 .wrapper .left{
        width: 100%;
    }
    .single-image.style1 .wrapper .right{
        width: 100%;
    }
    .single-image.style1 .image1 img {
        height: auto;
        width: 100%;
    }
    .single-image.style1 .image2{
        position: relative;
        right: inherit;
        top: inherit;
        margin-top: 10px;
    }
    .single-image.style1 .image2 img{
        height: auto;
        width: 100%;
        border: 0;
    }
    .single-image.style1 .shape{
        display: none;
    }
}

/* Style Two */

.single-image.style2{
    position: relative;
}
.single-image.style2 .image1 img{
    border-radius: 20px;
}
.single-image.style2 .text-box {
    position: absolute;
    display: flex;
    align-items: center;
    padding: 30px 24px 30px 40px;
    border-radius: 20px;
    background-color: var(--title-color);
    right: 40px;
    bottom: 40px;
}
.single-image.style2 .text-box .box-icon {
    display: flex;
    align-items: center;
    margin-right: 17px;
}
.single-image.style2 .text-box .box-icon img {
    height: 54px;
    width: 54px;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-right: -20px;
}
.single-image.style2 .text-box .box-icon i {
    flex-shrink: 0;
    height: 54px;
    width: 54px;
    line-height: 54px;
    text-align: center;
    color: var(--title-color);
    font-size: 24px;
    background-color: #fff;
    border-radius: 50%;
}
.single-image.style2 .content{
    text-align: left;
}
.single-image.style2 .text-box .title {
    color: #fff;
    margin-bottom: 2px;
}
.single-image.style2 .text-box .subtitle {
    color: #fff;
    margin-bottom: 0;
}

/* Style Three */

.single-image.style3 {
    position: relative;
    max-width: 600px;
}
.single-image.style3 .image1{
    display: inline-block;
    margin: 63px 0 246px;
}
.single-image.style3 .image1 img{
    border-radius: 20px;
    max-width: 347px;
}
.single-image.style3 .image2 {
    position: absolute;
    top: 0;
    right: 0;
}
.single-image.style3 .image2 img {
    border-radius: 20px;
    max-width: 230px;
}
.single-image.style3 .image3 {
    position: absolute;
    bottom: 33px;
    right: 47px;
}
.single-image.style3 .image3 img {
    border: 7px solid #fff;
    border-radius: 20px;
    width: 293px;
}
.single-image.style3 .text-box {
    position: absolute;
    background-color: #FF5C00;
    padding: 40px 35px 20px;
    height: 212px;
    width: 218px;
    border-radius: 20px;
    left: 79px;
    top: 318px;
}
.single-image.style3 .text-box .title {
    color: #fff;
    font-size: 68px;
    margin-bottom: 4px;
}
.single-image.style3 .text-box .subtitle {
    color: #fff;
    margin-bottom: 0;
}
.single-image.style3 .shape {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

@media(max-width: 767px){
    .single-image.style3{
        text-align: center;
    }
    .single-image.style3 .image1{
        margin: 0 0 20px;
    }
    .single-image.style3 .image1 img{
        width: 100%;
    }
    .single-image.style3 .image2{
        position: static;
        width: 50%;
        float: left;
        padding-right: 18px;
    }
    .single-image.style3 .image2 img{
        width: 100%;
    }
    .single-image.style3 .image3{
        position: static;
        width: 50%;
        display: inline-block;
    }
    .single-image.style3 .image3 img{
        border: 0;
    }
    .single-image.style3 .text-box{
        display: none;
    }
    .single-image.style3 .shape{
        display: none;
    }
}

/* Style Four */

.single-image.style4{
    position: relative;
}
.single-image.style4 .image1{
    position: absolute;
    left: -145px;
    top: -58px;
}
.single-image.style4 .image1 img {
    width: auto;
}

@media (max-width: 1199px) {
    .single-image.style4 .image1{
        position: static;
    }
}
@media(max-width: 1024px){
    .single-image.style4 .image1{
        position: static;
    }
}

/*
===================
 Author Card
===================
*/

.author-card.style1{
    display: flex;
    align-items: center;
}
.author-card.style1 .image {
    margin-right: 21px;
}
.author-card.style1 .image img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border: 2px solid var(--main-color);
    border-radius: 50%;
}
.author-card.style1 .content .designation {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 6px;
}
.author-card.style1 .content .name {
    font-size: 20px;
}

/* Style Two */

.author-card.style2 {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 16px 52px rgba(0, 0, 0, 0.07);
    padding: 41px 29px 23px;
    border-radius: 10px;
}
.author-card.style2 .image {
    margin-right: 19px;
    border: 2px solid var(--main-color2);
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}
.author-card.style2 .image img {
    height: 98px;
    width: 98px;
    object-fit: cover;
}
.author-card.style2 .content .name {
    font-size: 20px;
    color: var(--title-color2);
    margin: 0 0 10px;
}
.author-card.style2 .content .designation {
    color: var(--paragraph-color);
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 13px;
}
.author-card.style2 .content .description {
    color: var(--paragraph-color);
}

/*
===================
Tabs
===================
*/
.about-tabs.style1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-tabs.style1 .tabs {
    display: flex;
    width: 100%;
    border-top: 1px solid #eeeeee;
}

.about-tabs.style1 .tabs .tab {
    color: #606060;
    font-size: 17px;
    font-weight: 500;
    margin-right: 50px;
    padding: 20px 0;
    cursor: pointer;
    border-top: 3px solid transparent;
}

.about-tabs.style1 .tabs .tab.active {
    border-top: 3px solid #473bf0;
    color: #061738;
}

.about-tabs.style1 .content {
    width: 100%;
    margin-top: 8px;
}

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

.about-tabs.style1 .content .content-item.active {
    display: block;
}
.about-tabs.style1 .content .content-item p{
    font-size: 20px;
    margin-bottom: 30px;
}
.about-tabs.style1 .content .content-item ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.about-tabs.style1 .content .content-item ul li{
    position: relative;
    margin-bottom: 12px;
}
.about-tabs.style1 .content .content-item ul li i{
    color: #473bf0;
    font-size: 14px;
    margin-right: 15px;
}
.about-tabs.style1 .content .content-item a{
    display: inline-block;
    color: #fff;
    font-weight: 600;
    padding: 14px 38px;
    background-color: #473bf0;
    margin-top: 22px;
}
.about-tabs.style1 .content .content-item a i{
    font-size: 15px;
    margin-left: 10px;
}

/* 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;
}

/*
===================
 Classes
===================
*/

.home-classes.style1{
    border-top: 1px solid rgba(112, 112, 112, 0.3);
}
.home-classes.style1 .class-item {
    overflow: hidden;
}
.home-classes.style1 .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: bold;
    padding: 30px 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
    transition: background-color 0.3s;
}
.home-classes.style1 .accordion-header .text {
    color: var(--title-color);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
}
.home-classes.style1 .accordion-header .class-meta{
    display: flex;
    align-items: center;
}
.home-classes.style1 .accordion-header .class-meta .item{
    display: flex;
}
.home-classes.style1 .accordion-header .class-meta .item .name{
    color: #707070;
}
.home-classes.style1 .accordion-header .class-meta .item .value{
    color: var(--title-color);
    margin-left: 8px;
}
.home-classes.style1 .accordion-header .class-meta span{
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
}
.home-classes.style1 .accordion-header .class-meta .divider{
    margin: 0 20px;
    background-color: rgba(112, 112, 112, 0.6);
    height: 20px;
    width: 1px;
}
.home-classes.style1 .accordion-header .button a {
    display: inline-block;
    color: var(--main-color);
    font-size: 18px;
    padding: 6px 33px;
    border: 1px solid var(--main-color);
    border-radius: 30px;
    flex-shrink: 0;
}
.home-classes.style1 .accordion-header.active .button a{
    color: #fff;
    background-color: var(--main-color);
}
.home-classes.style1 .accordion-content {
    display: none;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
}
.home-classes.style1 .accordion-content .content-wrap{
    display: flex;
    padding: 30px 0;
}
.home-classes.style1 .accordion-content .content-wrap .text{
    margin-right: 80px;
}
.home-classes.style1 .accordion-content .content-wrap .text ul{
    padding-left: 18px;
}
.home-classes.style1 .accordion-content .content-wrap .image{
    flex-shrink: 0;
}
.home-classes.style1 .accordion-content .content-wrap .image img{
    height: 260px;
    width: 560px;
    object-fit: cover;
    border-radius: 20px;
}

@media(max-width: 1024px){

    .home-classes.style1 .accordion-header{
        flex-wrap: wrap;
    }
    .home-classes.style1 .accordion-header .text{
        width: 100%;
        margin-bottom: 10px;
    }
    .home-classes.style1 .accordion-content .content-wrap{
        display: block;
    }
    .home-classes.style1 .accordion-content .content-wrap .text {
        margin-bottom: 30px;
    }
}
@media(max-width: 767px){
    
    .home-classes.style1 .accordion-header{
        flex-wrap: wrap;
    }
    .home-classes.style1 .accordion-header .text{
        font-size: 24px;
    }
    .home-classes.style1 .accordion-header .class-meta{
        display: block;
        width: 100%;
        margin: 10px 0 12px;
    }
    .home-classes.style1 .accordion-header .class-meta span{
        font-size: 14px;
    }
    .home-classes.style1 .accordion-header .class-meta .divider{
        display: none;
    }
    .home-classes.style1 .accordion-content .content-wrap .text {
        margin-right: 0;
    }
}

/* Style Two */

.home-classes.style2 .class-item{
    margin-bottom: 24px;
    padding: 30px 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    transition: 0.3s;
}
.home-classes.style2 .class-item:hover{
    border: 1px solid var(--main-color);
}
.home-classes.style2 .class-item .image{
    margin-bottom: 23px;
}
.home-classes.style2 .class-item .image img{
    height: 250px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.home-classes.style2 .class-item .content .title{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 13px;
}
.home-classes.style2 .class-item .content .text{
    margin-bottom: 18px;
}
.home-classes.style2 .class-item .content a{
    color: var(--title-color);
    transition: 0.3s;
}
.home-classes.style2 .class-item .content a:hover{
    color: var(--main-color);
}
.home-classes.style2 .class-item .content a i{
    transform: rotate(-45deg);
    margin-left: 5px;
}

/* Style Three */

.home-classes.style3 .class-item{
    margin-bottom: 24px;
    padding: 30px 30px;
    background-color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    border-radius: 20px;
    transition: 0.3s;
}
.home-classes.style3 .class-item:hover{
    border-color: var(--main-color);
}
.home-classes.style3 .class-item .image img{
    height: 320px;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.home-classes.style3 .class-item .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.home-classes.style3 .class-item .content .title{
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
}
.home-classes.style3 .class-item .content .text p{
    color: var(--title-color);
    margin-bottom: 8px;
}
.home-classes.style3 .class-item .content a{
    display: inline-block;
    color: var(--main-color);
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    flex-shrink: 0;
    transition: 0.3s;
}
.home-classes.style3 .class-item:hover .content a{
    color: #fff;
    background-color: var(--main-color);
}
.home-classes.style3 .class-item .content a i{
    transform: rotate(-45deg);
}

@media(max-width: 1024px){

    .home-classes.style3 .class-item .content .title{
        font-size: 30px;
    }
}
@media(max-width: 767px){

    .home-classes.style3 .class-item .content .title{
        font-size: 24px;
    }
}

/*
===================
Accordion
===================
*/
.accordion.style1 {
    list-style: none;
    margin: 0;
    padding: 0;
}
.accordion.style1 li {
    background-color: #fff;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.accordion.style1 li:last-child{
    margin-bottom: 0;
}
.accordion.style1 .title {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--title-color);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    width: 100%;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    margin-bottom: 0;
    padding: 17px 70px 17px 20px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    /* transition: 0.3s; */
    margin: 0;
}
.accordion.style1 .title .text{
    display: flex;
  align-items: center;
}
.accordion.style1 .title span {
    display: inline-block;
    color: var(--title-color);
    font-size: 18px;
    font-weight: normal;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid var(--title-color);
    margin-right: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}
.accordion.style1 .title i {
    color: #003B5A;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #F5F7FA;
    flex-shrink: 0;
    position: absolute;
    right: 26px;
}
.accordion.style1 .title.active i.fa-plus {
    display: none;
}
.accordion.style1 .title i.fa-minus {
    display: none;
}
.accordion.style1 .title.active i.fa-minus {
    display: block;
}
.accordion.style1 li p {
    display: none;
    font-size: 20px;
    line-height: 30px;
    margin: 0;
    padding: 0 30px 20px 85px;
}
.accordion.style1 .title .icon{
    flex-shrink: 0;
    position: absolute;
    right: 26px;
    transition: 0.3s;
}
.accordion.style1 .title.active .icon{
    transform: rotate(45deg);
}
.accordion.style1 .title .icon img{
    max-width: 20px;
}

@media(max-width: 767px){

    .accordion.style1 .title{
        font-size: 20px;
    }
    .accordion.style1 li p{
        font-size: 16px;
    }
}

/* Style Two */

.accordion.style2 {
    list-style: none;
    margin: 0;
    padding: 0;
}
.accordion.style2 li {
    position: relative;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background-color: #213438;
    overflow: hidden;
}
.accordion.style2 li:last-child{
    margin-bottom: 0;
}
.accordion.style2 .title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.333;
    width: 100%;
    cursor: pointer;
    user-select: none;
    padding: 20px 28px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.accordion.style2 .title.active i.fa-plus {
    display: none;
}
.accordion.style2 .title i.fa-minus {
    display: none;
}
.accordion.style2 .title.active i.fa-minus {
    display: block;
}
.accordion.style2 li p {
    display: none;
    color: #fff;
    margin: 0;
    padding: 0 30px 20px;
}

/* Style Three */

.accordion.style3 {
    list-style: none;
    margin: 0;
    padding: 0;
}
.accordion.style3 li {
    position: relative;
    margin-bottom: 20px;
}
.accordion.style3 li p {
    display: none;
    margin: 0;
    padding: 20px 25px 0;
}
.accordion.style3 a:not([href]):not([class]),
.accordion.style3 a:not([href]):not([class]):hover {
    color: #061738 !important;
}
.accordion.style3 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.style3 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.style3 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.style3 p {
    line-height: 1.6;
    padding: 10px;
}
.accordion.style3 a.active{
    color: #fff;
    background-color: #473bf0;
    border-color: #473bf0;
}
.accordion.style3 a.active i{
    color: #473bf0;
    background-color: #fff;
}
.accordion.style3 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 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: .3s;
    transition: .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: .3s;
    transition: .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;
}

/*
===================
 Social Icons
===================
*/

.social-icons.style1{
    display: flex;
    align-items: center;
}
.social-icons.style1 .list-item{
    margin-right: 20px;
}

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

.image-gallery.style1 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 24px;
}
.image-gallery.style1 .single-item{
    border-radius: 20px;
    overflow: hidden;
}
.image-gallery.style1 .single-item a{
    display: block;
}
.image-gallery.style1 .single-item .image{
    position: relative;
    display: block;
}
.image-gallery.style1 .single-item .image::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 1px solid var(--main-color);
    border-radius: 20px;
    opacity: 0;
    z-index: 2;
    transition: 0.3s;
}
.image-gallery.style1 .single-item:hover .image::before {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    opacity: 1;
}
.image-gallery.style1 .single-item .image::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 59, 90, 0.6);
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: 0.3s;
}
.image-gallery.style1 .single-item:hover .image::after {
    opacity: 1;
}
.image-gallery.style1 .single-item img {
    width: 100%;
    height: 416px;
    object-fit: cover;
}
.image-gallery.style1 .single-item:nth-child(1){
    grid-column: 1 / 8;
}
.image-gallery.style1 .single-item:nth-child(2){
    grid-column: 8 / 13;
}
.image-gallery.style1 .single-item:nth-child(3){
    grid-column: 1 / 6;
}
.image-gallery.style1 .single-item:nth-child(4){
    grid-column: 6 / 13;
}
.image-gallery.style1 .single-item:nth-child(5){
    grid-column: 1 / 8;
}
.image-gallery.style1 .single-item:nth-child(6){
    grid-column: 8 / 13;
}
.image-gallery.style1 .single-item:nth-child(7){
    grid-column: 1 / 6;
}
.image-gallery.style1 .single-item:nth-child(8){
    grid-column: 6 / 13;
}
.image-gallery.style1 .single-item:nth-child(9){
    grid-column: 1 / 8;
}
.image-gallery.style1 .single-item:nth-child(10){
    grid-column: 8 / 13;
}

@media(max-width: 767px){

    .image-gallery.style1 {
        display: block;
    }
    .image-gallery.style1 .single-item{
        margin-bottom: 24px;
    }
    .image-gallery.style1 .single-item:last-child{
        margin-bottom: 0;
    }
    .image-gallery.style1 .single-item img {
        height: 320px;
    }
}

/*
=========
Counter
=========
*/
.single-counter.style1 {
    text-align: center;
    background: url(../images/bolt.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px 0 20px;
}
.single-counter.style1 .counter{
    display: inline-block;
}
.single-counter.style1 .counter .count,
.single-counter.style1 .counter .suffix {
    display: inline-block;
    margin-bottom: 0;
    color: var(--title-color);
    font-size: 60px;
    font-weight: bold;
    margin: 0 0 5px;
}
.single-counter.style1 .counter .suffix{
    color: var(--main-color);
}
.single-counter.style1 .counter .title {
    position: relative;
    color: #1D1D1E;
    line-height: 1;
    margin: 0;
}

@media(max-width: 767px){

    .single-counter.style1 .counter .count,
    .single-counter.style1 .counter .suffix{
        font-size: 50px;
    }
}

/* Style Two */

.single-counter.style2 {
    text-align: left;
    position: relative;
}
.single-counter.style2::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 140px;
    background-color: #fff;
    top: 50%;
    right: -193px;
}
.single-counter.style2 .number h2 {
    display: inline-block;
    position: relative;
    margin: 0 0 0px;
    color: #fff;
    font-size: 68px;
    font-weight: bold;
}
.single-counter.style2 #counter .title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin: 4px 0 0;
}
.single-counter.seperator-line::after{
    display: none;
}

@media(max-width: 1024px){
    .single-counter.style2::after {
        display: none;
    }
}

@media(max-width: 767px){
    .single-counter.style2 .number h2{
        font-size: 48px;
    }
    .single-counter.style2 #counter .title{
        font-weight: 600;
    }
}

/* 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-bars.style1 .progress-item{
    margin-bottom: 29px;
}
.progress-bars.style1 .progress-item:last-child{
    margin-bottom: 0;
}
.progress-bars.style1 .progress-item .progress-name {
    color: #003B5A;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 9px;
}
.progress-bars.style1 .progress-item .progress-stick {
    border-radius: 3px;
    margin: 5px 0;
    position: relative;
    height: 1px;
    background: #E3E3E3;
    margin: 5px 0;
}
.progress-bars.style1 .progress-item .progress-per{
    position: absolute;
    height: 1px;
    top: 0;
    background-color: #003B5A;
    width: 0;
    transition: 1s linear;
}
.progress-bars.style1 .progress-item .progress-per::before {
    font-weight: 500;
    content: attr(per);
    position: absolute;
    top: -37px;
    right: 0;
    color: #003B5A;
}

/* 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;
}

/*
===================
 Marque Text
===================
*/

.item-wrapper.style1 {
    display: flex;
    overflow: hidden;
}
.item-wrapper.style1 .marquee-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
    animation: marquee 30s linear infinite;
}
.item-wrapper.style1 .marquee-item .text {
    color: var(--main-color);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.277777777;
}
.item-wrapper.style1 .marquee-item .dot{
    height: 8px;
    width: 8px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin: 0 30px;
}
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Style Two */

.item-wrapper.style2 {
    display: flex;
    overflow: hidden;
}
.item-wrapper.style2 .marquee-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
    animation: marquee 30s linear infinite;
}
.item-wrapper.style2 .marquee-item .text {
    color: var(--main-color);
    font-size: 120px;
    font-weight: bold;
    line-height: 1;
}
.item-wrapper.style2 .marquee-item .dot{
    height: 8px;
    width: 8px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin: 0 30px;
}

@media(max-width: 767px){

    .item-wrapper.style2 .marquee-item .text {
        font-size: 80px;
    }
}

/*
===================
 BMI Calculator
===================
*/

.bmi-calculator.style1 input {
    width: 100%;
    border: 0;
    outline: 0;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 30px;
    padding: 14px 30px;
    line-height: inherit;
    transition: 0.3s;
}
.bmi-calculator.style1 input::placeholder{
    color: var(--title-color);
}
.bmi-calculator.style1 input:focus{
    border: 1px solid var(--main-color);
}
.bmi-calculator.style1 select {
    color: var(--title-color);
    width: 100%;
    border: 0;
    outline: 0;
    background-color: #fff;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 30px;
    padding: 14px 30px;
    line-height: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: 0.3s;
}
.bmi-calculator.style1 select:focus{
    border: 1px solid var(--main-color);
}
.bmi-calculator.style1 .gender-field{
    position: relative;
}
.bmi-calculator.style1 .gender-field::before {
    content: "\f078";
    position: absolute;
    right: 28px;
    top: 18px;
    color: var(--title-color);
    font-size: 16px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    z-index: 1;
}
.bmi-calculator.style1 .factor-field{
    position: relative;
}
.bmi-calculator.style1 .factor-field::before {
    content: "\f078";
    position: absolute;
    right: 28px;
    top: 18px;
    color: var(--title-color);
    font-size: 16px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    z-index: 1;
}
.bmi-calculator.style1 button {
    border: 0;
    outline: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    background-color: var(--main-color);
    padding: 16px 32px;
    border-radius: 40px;
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
}
.bmi-calculator.style1 button:hover {
    background-color: var(--title-color);
}
.bmi-calculator.style1 #bmi-result{
    margin-bottom: 0;
}

/*
===================
Subscribe Form
===================
*/
.footer-subscribe{
    position: relative;
}
.footer-subscribe input[type="email"] {
    position: relative;
    color: #fff;
    font-size: 15px;
    height: 64px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: 0;
    padding: 0 65px 0 22px;
    width: 100%;
    transition: 0.3s;
}
.footer-subscribe input[type="email"]:focus{
    color: #fff;
    border-color: #fff;
}
.footer-subscribe input[type="email"]::placeholder{
    color: rgba(255, 255, 255, 1);
    font-weight: normal;
    opacity: 0.9;
}
.footer-subscribe button {
    background: var(--main-color);
    height: 46px;
    width: 48px;
    color: #fff;
    font-size: 16px;
    position: absolute;
    right: 9px;
    top: 9px;
    border: 0;
    outline: 0;
    padding: 0;
}

/*
===================
 Home 1 Form
===================
*/

.home1-contact p{
    margin-bottom: 0;
}
.home1-contact label {
    display: block;
    color: var(--title-color);
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 8px;
}
.home1-contact input[type="text"],
.home1-contact input[type="email"],
.home1-contact input[type="tel"] {
    line-height: inherit;
    width: 100%;
    outline: 0;
    border: 1px solid rgba(0, 59, 90, 0.25);
    border-radius: 30px;
    padding: 14px 20px;
    transition: 0.3s;
}
.home1-contact input[type="text"]::placeholder,
.home1-contact input[type="email"]::placeholder,
.home1-contact input[type="tel"]::placeholder{
    color: rgba(0, 59, 90, 0.6);
}
.home1-contact input[type="text"]:focus,
.home1-contact input[type="email"]:focus,
.home1-contact input[type="tel"]:focus{
    border-color: var(--main-color);
}
.home1-contact textarea{
    color: rgba(0, 59, 90, 0.6);
    width: 100%;
    outline: 0;
    border: 1px solid rgba(0, 59, 90, 0.25);
    border-radius: 30px;
    padding: 14px 20px;
    height: 130px;
    transition: 0.3s
}
.home1-contact textarea::placeholder{
    color: rgba(0, 59, 90, 0.6);
}
.home1-contact textarea:focus{
    border-color: var(--main-color);
}

.home1-contact input[type="submit"] {
    color: #fff;
    font-weight: bold;
    letter-spacing: 1.28px;
    line-height: inherit;
    border: 0;
    outline: 0;
    background-color: #FF5C00;
    padding: 15px 30px;
    border-radius: 30px;
    transition: 0.3s;
}
.home1-contact input[type="submit"]:hover {
    background-color: var(--title-color);
}

.home1-contact .email-field {
    position: relative;
    margin-bottom: 20px;
}
.home1-contact .email-field::before {
    content: "\f1d8";
    position: absolute;
    right: 28px;
    top: 14px;
    color: var(--title-color);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    z-index: 1;
}
.home1-contact .phone-field {
    position: relative;
    margin-bottom: 20px;
    margin-left: 5px;
}
.home1-contact .phone-field::before {
    content: "\f095";
    position: absolute;
    right: 28px;
    top: 14px;
    color: #003B5A;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    z-index: 1;
}
.home1-contact .address-field {
    position: relative;
    margin-bottom: 20px;
}
.home1-contact .address-field::before {
    content: "\f3c5";
    position: absolute;
    right: 28px;
    top: 14px;
    color: #003B5A;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    z-index: 1;
}
.home1-contact .message-field {
    position: relative;
    margin-bottom: 20px;
}
.home1-contact .message-field::before {
    content: "\f0e0";
    position: absolute;
    right: 28px;
    top: 14px;
    color: #003B5A;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    z-index: 1;
}

/*
===================
 Home 2 Form
===================
*/
.home2-contact label{
    display: block;
    color: #003B5A;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 8px;
}
.home2-contact input[type="text"],
.home2-contact input[type="email"],
.home2-contact input[type="tel"] {
    width: 100%;
    outline: 0;
    border: 1px solid rgba(0, 59, 90, 0.25);
    border-radius: 30px;
    padding: 14px 20px;
    line-height: inherit;
    transition: 0.3s;
}
.home2-contact input[type="text"]::placeholder,
.home2-contact input[type="email"]::placeholder,
.home2-contact input[type="tel"]::placeholder {
    color: rgba(0, 59, 90, 0.6);
    opacity: 1;
}
.home2-contact input[type="text"]:focus,
.home2-contact input[type="email"]:focus,
.home2-contact input[type="tel"]:focus {
    border-color: var(--main-color);
}
.home2-contact .fname-field,
.home2-contact .lname-field,
.home2-contact .email-field,
.home2-contact .phone-field{
    position: relative;
    margin-bottom: 20px;
}
.home2-contact .email-field::before {
    content: "\f1d8";
    position: absolute;
    right: 28px;
    top: 14px;
    color: #003B5A;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    z-index: 9;
}
.home2-contact .phone-field::before{
    content: "\f095";
    position: absolute;
    right: 28px;
    top: 14px;
    color: #003B5A;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    z-index: 9;
}
.home2-contact .radio-field{
    margin-bottom: 31px;
}
.home2-contact .radio-field label{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    font-family: "Rubik";
    margin-bottom: 0;
}
.home2-contact .radio-field input[type="radio"]{
    height: 25px;
    width: 25px;
    margin-right: 16px;
}
.home2-contact .radio-field p{
    display: flex;
    align-items: center;
}
.home2-contact .radio-field a{
    margin: 0 0 8px 20px;
}
.home2-contact .radio-field .wpcf7-list-item{
    margin: 0;
}
.home2-contact .message-field{
    position: relative;
    margin-bottom: 10px;
}
.home2-contact .message-field::before {
    content: "\f0e0";
    position: absolute;
    right: 28px;
    top: 14px;
    color: #003B5A;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    z-index: 9;
}
.home2-contact textarea{
    color: rgba(0, 59, 90, 0.6);
    width: 100%;
    outline: 0;
    border: 1px solid rgba(0, 59, 90, 0.25);
    border-radius: 30px;
    padding: 18px 20px;
    height: 130px;
    transition: 0.3s;
}
.home2-contact textarea:focus{
    border-color: var(--main-color);
}
.home2-contact p{
    margin-bottom: 0;
}
.home2-contact input[type="submit"] {
    color: #fff;
    font-weight: bold;
    letter-spacing: 1.28px;
    line-height: inherit;
    border: 0;
    outline: 0;
    background-color: #003B5A;
    padding: 15px 30px;
    border-radius: 30px;
    width: 100%;
    transition: 0.4s;
}
.home2-contact input[type="submit"]:hover{
    background-color: var(--main-color);
}

@media(max-width: 767px){
    .home2-contact .radio-field p{
        flex-wrap: wrap;
    }
}

/*
===================
 Home 2 Tracking
===================
*/

.home2-tracking p{
    margin-bottom: 0;
}
.home2-tracking label{
    display: block;
    color: #003B5A;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.25;
    margin: 30px 0 14px;
}
.home2-tracking .select-field{
    position: relative;
}
.home2-tracking .select-field::before{
    content: "\f054";
    position: absolute;
    right: 30px;
    top: 20px;
    color: #003B5A;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    z-index: 1;
}
.home2-tracking select{
    position: relative;
    color: #616670;
    line-height: inherit;
    border: 0;
    background-color: #F5F7FA;
    border-radius: 20px;
    outline: 0;
    width: 100%;
    padding: 20px 30px;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.home2-tracking input[type="submit"]{
    border: 0;
    outline: 0;
    color: #fff;
    letter-spacing: 1.28px;
    line-height: inherit;
    width: 100%;
    padding: 15px;
    background-color: #FF5C00;
    border-radius: 40px;
    margin-top: 39px;
    transition: 0.3s;
}
.home2-tracking input[type="submit"]:hover{
    background-color: var(--title-color);
}

/*
===================
Contact Page Form
===================
*/

.contact-page-form input[type="text"],
.contact-page-form input[type="email"],
.contact-page-form input[type="tel"] {
    width: 100%;
    border: 0;
    outline: 0;
    border: 1px solid rgba(112, 112, 112, 0.4);
    border-radius: 30px;
    padding: 14px 30px;
    line-height: inherit;
    transition: 0.3s;
}
.contact-page-form input[type="text"]::placeholder,
.contact-page-form input[type="email"]::placeholder,
.contact-page-form input[type="tel"]::placeholder {
    color: var(--paragraph-color);
    opacity: 0.8;
}
.contact-page-form input[type="text"]:focus,
.contact-page-form input[type="email"]:focus,
.contact-page-form input[type="tel"]:focus {
    border-color: var(--main-color);
}
.contact-page-form .name-field,
.contact-page-form .email-field,
.contact-page-form .phone-field{
    position: relative;
    margin-bottom: 15px;
}
.contact-page-form .message-field{
    position: relative;
    margin-bottom: 15px;
}
.contact-page-form textarea{
    width: 100%;
    border: 0;
    outline: 0;
    border: 1px solid rgba(112, 112, 112, 0.4);
    border-radius: 30px;
    padding: 26px 30px;
    height: 173px;
    transition: 0.3s;
}
.contact-page-form textarea::placeholder{
    color: var(--paragraph-color);
    opacity: 0.8;
}
.contact-page-form textarea:focus{
    border-color: var(--main-color);
}
.contact-page-form p{
    margin-bottom: 0;
}
.contact-page-form input[type="submit"] {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: inherit;
    border: 0;
    outline: 0;
    background-color: var(--main-color);
    padding: 15px 30px;
    border-radius: 30px;
    transition: 0.4s;
}
.contact-page-form input[type="submit"]:hover{
    background-color: var(--title-color);
}

@media(max-width: 767px){
    .contact-page-form .radio-field p{
        flex-wrap: wrap;
    }
}

/*
===================
 Tracking
===================
*/

.track-3 p{
    margin-bottom: 0;
}
.track-3 .select-field {
    position: relative;
}
.track-3 .select-field::before {
    content: "\f054";
    position: absolute;
    right: 30px;
    top: 20px;
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.track-3 label {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.25;
    margin: 25px 0 15px 9px;
}
.track-3 select {
    position: relative;
    color: #fff;
    line-height: inherit;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 40px;
    outline: 0;
    background-color: transparent;
    width: 100%;
    margin-bottom: 4px;
    padding: 19px 30px;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.track-3 select option{
    color: #003B5A;
}
.track-3 input[type="submit"] {
    border: 0;
    outline: 0;
    color: #fff;
    letter-spacing: 1.28px;
    line-height: inherit;
    width: 100%;
    padding: 15px;
    background-color: var(--main-color);
    border-radius: 40px;
    margin-top: 36px;
    transition: 0.3s;
}
.track-3 input[type="submit"]:hover {
    color: #FF5C00;
    background-color: #fff;
}

/*
===================
 Newsletter
===================
*/

.newsletter{
    position: relative;
}
.newsletter input[type="email"] {
    color: #fff;
    line-height: inherit;
    outline: 0;
    height: 60px;
    width: 100%;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    transition: 0.3s;
}
.newsletter input[type="email"]:focus{
    color: #fff;
    border-color: var(--main-color);
}
.newsletter input[type="email"]::placeholder{
    color: #E3E3E3;
}
.newsletter button[type="submit"] {
    position: absolute;
    top: 4px;
    right: 4px;
    border: 0;
    outline: 0;
    color: #fff;
    font-weight: bold;
    line-height: inherit;
    background-color: var(--main-color);
    height: 52px;
    width: 52px;
    border-radius: 8px;
    transition: 0.3s;
}
.newsletter button[type="submit"]:hover{
    color: var(--main-color);
    background-color: #fff;
}
.newsletter p{
    margin: 0;
}
.mc4wp-response{
    margin-top: 10px;
}
.mc4wp-response p{
    color: #fff;
}

