*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    color: #1F2B3D;
/*    background: #000;*/
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.object-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clear {
    clear: both;
    line-height: 0;
    font-size: 0;
}


img {
    max-width: 100%;
}

p {
    font-size: 15px;
    margin: 0;
    font-weight: normal;
}

a {
    text-decoration: none;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
    font-weight: 900;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.container {
    width: 100%;
    max-width: 1274px;
    margin: 0 auto;
    padding: 0 22px;
}

@media (min-width: 768px) {
    .container-fluid {
        max-width: 90%;
    }

    .container {
        padding: 0 45px !important;
    }
}

@media (min-width: 1440px) {

    .container,
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        padding-right: 22px;
        padding-left: 22px;
    }
}


.flex-prop {
    display: flex;
}

.section-padding {
    padding: 130px 0 0;
}

/*button style*/

.btn {
    padding: 8px 20px !important;
    color: #fff;
    border-radius: 50px;
    background: #FB9700;
    display: table;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    margin: 0 auto;
    transition: all ease 0.3s;
    border: 1px solid transparent;
}


.btn:hover {
    background: #6d2c9f;
    color: #fff !important;
    border: 1px solid #6d2c9f;
}


.btn-second {
    background: #6D2C9F;
}

.btn-second:hover {
    background: #9012f1;
}



@media (min-width: 1200px) {
    .btn {
        font-size: 18px;
        padding: 12px 30px !important;
    }
}



/*page header*/
header {
    position: fixed;
    top: 0;
    z-index: 99;
    left: 0;
    width: 100%;
    transition: all ease 0.3s;
}

.nav-up .header-main {
    top: -1px;
    position: relative;
}

.nav-up .header-top {
    height: 0;
    overflow: hidden;
    opacity: 0;
    overflow-x: -9999;
    padding: 0;
}

.header-main {
    display: block;
    background: transparent;
    z-index: 99999;
    width: 100%;
    transition: all ease 0.1s;
    top: 0;
    background: #ffffff;
    
}

.header_scroll .header-main {
    box-shadow: 0 4px 44px rgb(0 0 0 / 10%);
}

.header-top {
    background-color: #F5F5F5;
    padding: 8px 0;
    text-align: center;
    transition: all ease 0.3s;
}

.header-top p {
    font-size: 12px;
    font-weight: 500;
    color: #2C2B2B;
    line-height: 14px;
    padding: 0 10px;
}

.header-top p a {
    color: #242424;
    text-decoration: underline;
}

.header-main.header-fixed {
    top: 0;
    position: fixed;
    width: 100%;
    transition: all .3s ease;
}

.container-menu {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: space-between;
    transition: all ease 0.3s;
    align-items: center;
}

.navigation {
    width: calc(100% - 290px);
    display: flex;
    justify-content: flex-end;
}

.header-main:before,
.header-main:after {
    display: table;
    line-height: 0;
    content: "";
}

.core-menu {
    text-align: right;
    overflow: hidden;
}

.core-menu li {
    list-style: none;
    display: inline-block;
    cursor: pointer;
}

.core-menu li a {
    display: inline-block;
    padding: 15px 0 34px 0;
    font-size: 14px;
    transition: all ease 0.3s;
    color: #475656;
    font-weight: 500;
    position: relative;
}

.core-menu li a:hover{
    color: #0A2D7F !important;
}

.core-menu li.active a {
    color: #fb9700;
}

.hamburger-menu {
    display: none;
}

.header-logo {
    width: 152px;
    transition: all ease 0.1s;
}

/* hover */
.core-menu li:hover a span.toggle:before {
    color: #fff;
}

.core-menu li:hover a {
    color: #fff !important;
    background-color: #fb9700 !important;
}

.core-menu li:hover .menu-icon span {
    display: block;
}

.core-menu li:hover .menu-icon img {
    display: none;
}

.core-menu li:hover .menu-icon span img {
    display: block !important;
}

.core-menu li:hover .dropdown li a {
    background-color: #fff !important;
    color: #526581 !important;
}

.mobile-nav-btn {
    display: none;
}

.header-search {
    position: relative;
    margin-bottom: 30px;
}

.desktop-search {
    display: none;
}

.header-search input {
    width: 100%;
    border-radius: 50px;
    line-height: 49px;
    display: inline-block;
    border: none;
    padding: 0 30px 0 60px;
    font-size: 15px;
    color: #fff;
    transition: all ease 0.3s;
    background: url(../img/header-search-icon.svg) left 20px center no-repeat #ffffff00;
    backdrop-filter: blur(59px) brightness(1.3);
}

.header-search input:focus {
    outline: none;
    text-align: center;
    border: none;
    padding: 0 30px;
}

.header-search input::placeholder {
    color: #fff !important;
    transition: all ease 0.3s;
}

.header-btn a {
    padding: 10px 20px !important;
    color: #fff;
    border-radius: 50px;
    background: #FB9700;
    display: inline-block;
    font-size: 10px;
    text-align: center;
    font-weight: 500;
    margin-left: 15px;
    transition: all ease 0.3s;
    border: 1px solid transparent;
}

/* hover end */

@media (max-width:992px) {
    .header-btn:hover {
        background-color: transparent;
    }

    li span.toggle:before {
        color: #526581;
    }

    .header-btn span {
        display: block;
    }

    .header-btn {
        position: relative;
        background-color: transparent;
        padding: 0 50px 0 0;
        text-align: right;
    }

    .container-menu {
        height: 55px;
        justify-content: flex-start;
        padding: 0 0;
    }

    .menu-icon {
        display: inline-block;
        margin-right: 25px;
    }

    .menu-icon span {
        display: none;
    }

    .hamburger-menu {
        position: absolute;
        top: 22px;
        right: 0;
        width: 30px;
        height: 20px;
        padding: 0;
        z-index: 99;
        border-radius: 50px;
        display: block;
    }

    .menu-open .hamburger-menu {
        position: fixed;
        top: 16px;
        right: 13px;
    }

    .header-logo {
        left: 0;
        width: 54px;
    }

    .header-logo img {
        transition: all ease 1s;
    }


    .navigation {
        display: block;
        width: calc(100% - 54px);
        text-align: start;
    }

    .core-menu {
        width: 90%;
        max-width: 337px;
        background: #ffffff;
        position: fixed;
        right: -1000vh;
        padding-top: 80px;
        height: 100vh;
        transition: all ease-in-out 0.3s;
    }

    .core-menu.fast {
        right: 0;
        z-index: 9;
        top: 0;
    }

    .core-menu li {
        width: 100%;
        text-align: start;
        display: block;
        padding: 0 20px 4px 13px;
    }

    .core-menu li a {
        display: flex;
        height: 45px;
        align-items: center;
        color: #475656;
        font-size: 13px;
        border-radius: 6px;
        position: relative;
        padding: 0 15px;
    }

    .core-menu li:focus {
        background: none;
    }

    .core-menu li a:focus {
        background: none;
    }

    .core-menu li a:hover {
        color: #fb9700;
    }

    .core-menu li.active a {
        color: #fff;
        background-color: #fb9700;
    }


    .core-menu li a span.toggle {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: 20px;
    }

    .hamburger-menu {
        display: block;
    }

    .burger-1,
    .burger-2,
    .burger-3 {
        display: block;
        position: absolute;
        width: 20px;
        height: 2px;
        border-radius: 30px;
        background: #475656;
        -webkit-transition: .2s ease;
        -ms-transition: .2s ease;
        -moz-transition: .2s ease;
        -o-transition: .2s ease;
        transition: .2s ease;
        right: 0;
    }

    .burger-1 {
        top: 0;
    }

        .burger-3 {
        top: 7px;
        width: 15px;
    }

    .burger-1.open, .burger-2.open, .burger-3.open {
    left: 5px;
    -webkit-transition: .2s ease;
    -ms-transition: .2s ease;
    -moz-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
    transform-origin: 50% 50%;
}

    .burger-1.open {
        top: 12px;
        width: 20px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

    .burger-2.open {
        opacity: 0;
    }

    .burger-3.open {
        top: 12px;
        width: 20px;
        transform: rotate(-45deg);
    }


    .dropdown {
        width: 100%;
        position: relative;
    }

    .dropdown2 {
        right: 0;
        top: 0;
        width: 100%;
        position: relative;
        padding: 0 20px;
    }

    .dropdown.fast {
        display: block;
    }

    .menu-off .core-menu.fast {
        right: -1000vh;
        z-index: -999;
    }

    .nav-down.menu-open.menu-off .header-logo {
        top: 25px;
    }

    .menu-open.menu-off.nav-up .hamburger-menu {
        top: 25px;
    }

    .menu-open.menu-off.nav-down .hamburger-menu {
        top: 86px;
    }

    .menu-off .burger-1.open,
    .menu-off .burger-2.open,
    .menu-off .burger-3.open {
        transform: rotate(0);
    }

    .menu-off .burger-1.open {
        left: 5px;
        top: 7px;
    }

    .menu-off .burger-2.open {
        left: 5px;
        top: 12px;
        opacity: 1;
    }

    .menu-off .burger-3.open {
        left: 5px;
        top: 17px;
    }
}

@media (min-width: 768px) {
    .menu-open .hamburger-menu {
        right: 45px;
    }
}

@media (min-width:993px) {
    .core-menu li a:hover {
        color: #04BCBC !important;
    }

    .core-menu li a:after {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        background-color: #fb9700;
        left: 0;
        transition: all ease 0.3s;
        bottom: -5px;
    }

    .header-btn a {
        padding: 12px 30px !important;
        font-size: 14px;
    }

.core-menu li a:hover:after {
    width: 100%;
}

.core-menu li.active a:after {
    width: 100%;
}
    .core-menu li:hover ul {
        display: block;
    }

    /* ----hover */
    .core-menu li:hover a {
        background-color: transparent !important;
        color: #fb9700 !important;
    }

    .core-menu li:hover a:hover {
        color: #fb9700  !important;
    }

    .header-main {
        height: 120px;
        display: flex;
        align-items: center;
    }

    .header_scroll .header-main{
        height: 72px;
    }

    .header_scroll .header-logo {
        width: 68px;
    }

    .nav-down .header-up {
        height: 100px;
    }

    .navigation {
        align-items: center;
        width: calc(100% - 152px);
    }

    .core-menu li a {
        padding: 0;
        margin: 0 15px;
    }



    

    .header-btn a:hover {
        background: #6d2c9f;
        color: #fff !important;
        border: 1px solid #6d2c9f;
    }

    .core-menu li:nth-child(5) a {
        margin-left: 9px;
    }

    .after-login .core-menu li:nth-child(5) a {
        margin-left: 18px;
    }

    .core-menu li:nth-child(4) a {
        margin-left: 9px;
    }

    .core-menu li:last-child a {
        padding-right: 0;
        margin-left: 18px;
    }

    .core-menu {
        position: relative;
        display: flex;
        overflow: unset;
    }

    .core-menu li {
        position: relative;
        display: flex;
        align-items: center;
    }

    .header-top {
        padding: 13px 0;
    }

    .header-top p {
        font-size: 14px;
    }

    .header-top p a {
        color: #7780FF;
    }

    .hideheader .header-main {
        height: 53px;
        padding: 6px 0 0 0;
    }
}

@media (min-width:1200px) {
    .header-logo {
        width: 110px;
    }

    .navigation {
        width: calc(100% - 110px);
        justify-content: flex-end;
        padding-left: 1%;
    }

    .hideheader .header-logo {
        width: 135px;
    }

    .header-search input {
        font-size: 20px;
        line-height: 61px;
    }

    .desktop-search {
        display: block;
        width: 100%;
        margin: 0 25px;
        max-width: 300px;
    }

    .core-menu li a {
        font-size: 16px;
        margin: 0 23px;
    }

    .header-btn a {
        font-size: 18px;
        padding: 12px 30px;
    }
}


/*page header*/


.master-banner {
    padding: 70px 0;
    position: relative;
    margin-top: 55px;
}


.master-banner-content h1 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 10px;
}

.master-banner-content p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.master-banner-content {
    position: relative;
    max-width: 470px;
    background: #16275366;
    padding: 20px;
    width: 100%;
    border-radius: 20px;
}


.download-redirect {
    display: table;
    max-width: 545px;
    margin: 16px auto 0;
}

.master-banner-slider-item .download-redirect {
    margin: 16px 0 0 0;
}

.master-banner-slider {
    padding-bottom: 50px;
}

.master-banner-content .btn {
    margin: 25px 0 0;
}

.download-redirect p {
    font-size: 14px;
    font-weight: 400;
    color: #475656;
    position: relative;
    margin-bottom: 13px;
    line-height: 14px;
}

.download-redirect p span {
    position: relative;

    font-size: 14px;
}

.download-redirect p:after {
    content: "";
    position: absolute;
    left: 175px;
    width: 150px;
    height: 1px;
    top: 7px;
    background: rgb(251,171,65);
    background: linear-gradient(90deg, rgba(251,171,65,1) 0%, rgba(255,255,255,0) 100%);
}

.download-redirect ul {
    display: flex;
}

.download-redirect ul li {
    margin-right: 20px;
}

.download-redirect ul li:last-child {
    margin-right: 0;
}

.master-banner-wrapper {
    position: relative;
    z-index: 1;
}

.master-banner-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.master-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner {
    background-color: #070A0E;
}

.inner-banner .master-banner-content h1 {
    padding: 0;
}

.inner-banner .master-banner-image img {
    opacity: 0.3;
}

.inner-banner .master-banner-content {
    padding: 0;
    background-color: transparent;
    margin: 0 auto;
    text-align: center;
}



@media(min-width: 768px) {
    .master-banner-content h1 {
        font-size: 40px;
    }

    .master-banner-content {
        padding: 30px;
    }
}


@media(min-width: 992px) {
    .master-banner {
        padding: 141px 0 132px;
        margin: 120px 0 0;
    }

    .master-banner-content:after {
        display: none;
    }
}


@media(min-width: 1200px) {
.master-banner-content h1 {
    font-size: 50px;
    padding-bottom: 20px;
}

.master-banner-content p {
    font-size: 20px;
    margin-bottom: 16px;
}

.master-banner-image {
    min-height: 750px;
}

.master-banner {
    padding: 143px 0 179px;
}

.download-redirect ul li img {
    width: 143px;
}

.footer-image-text .download-redirect ul li img {
    width: 237px;
}

.download-redirect {
    margin: 30px 0 0 0;
    max-width: unset;
}

.master-banner-slider-item .download-redirect {
    margin: 30px 0 0 0;
}

.footer-image-text .download-redirect {
    margin: 16px 0 0 !important;
}

.master-banner:after {
    content: "";
    position: absolute;
    width: 540px;
    top: -85px;
    left: -17px;
    height: 540px;
    border-radius: 0 0 284px 0;
    z-index: -1;
    background: rgb(255,244,209);
    background: linear-gradient(103deg, rgba(255,244,209,1) 0%, rgba(255,255,255,0) 30%);
}

.inner-banner {
    padding: 220px 0;
}

.inner-banner .master-banner-image {
    min-height: unset;
}
}



.about-icon {
    padding: 30px 0;
    position: relative;
}

.heading h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1D2F2F;
    padding-bottom: 10px;
    text-align: center;
}

.heading p {
    font-size: 12px;
    color: #475656;
    position: relative;
    padding-bottom: 11px;
    text-align: center;
}


.about-icon-list-icon {
    margin: 0 auto 15px;
    display: table;
}

.about-icon-list-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #18173A;
    padding-bottom: 5px;
    text-align: center;
}

.about-icon-list-item p {
    font-size: 14px;
    color: #474761;
    padding-bottom: 0;
    text-align: center;
}

.heading {
    margin-bottom: 30px;
}

.about-icon-list-item {
    margin-bottom: 30px;
    padding: 20px 15px;
    border: 1px solid #D0D2DA;
    border-bottom: 5px solid #6D2C9F;
    border-radius: 20px;
}

.about-icon .heading {
    margin: 0 auto 25px;
    max-width: 1118px;
}

.four-column .about-icon-list-item p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.four-column .about-icon-list-item {
    border: 1px solid #D0D2DA;
}

.about-icon.four-column {
    padding: 40px 0;
}


@media(min-width: 768px) {
    .about-icon-list {
        display: flex;
        margin: 0 -15px -30px;
        justify-content: center;
        flex-wrap: wrap;
        width: calc(100% + 30px);
    }

    .about-icon-list-item {
        margin: 0 15px 30px;
        width: calc(33.333% - 30px);
    }

    .about-icon {
        padding: 60px 0 0;
    }

    .heading {
        margin-bottom: 45px;
    }

    .heading h2 {
        font-size: 28px;
    }

    .about-icon.four-column {
        padding: 70px 0;
    }
}

@media(min-width: 1200px) {
    .about-icon-list-item h3 {
        padding-bottom: 10px;
    }

    .heading p {
        font-size: 25px;
        padding-bottom: 15px;
    }

    .heading h2 {
        font-size: 40px;
    }

    .about-icon-list-item p {
        font-size: 16px;
    }

    .about-icon {
        padding: 100px 0 0;
    }

    .about-icon .heading {
        margin: 0 auto 35px;
    }

    .about-icon.four-column {
        padding: 90px 0;
    }
}





.image-text {
    padding: 40px 0;   
    margin: 0 0 40px;
}

.image-text + .image-text {
    padding-top: 0;
}

.image-text.inner {
    padding-bottom: 0;
}

.inner-image-text {
    background: transparent;
}

.image-text-image {
    margin: 0 auto 25px;
    position: relative;
}

.image-text-image img {
    width: 100%;
    border-radius: 20px;
}

.footer-image-text .image-text-image img {
    position: relative;
    max-width: 257px;
    margin: 0 auto;
    display: table;
    height: auto;
}

.image-text-float-logo {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 130px;
    height: auto;
    object-fit: unset;
}

.image-text-content p {
    font-size: 12px;
    color: #475656;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    display: inline-block;
}

.image-text-content-btn {
    text-align: center;
    display: block;
    margin-top: 10px;
}

.image-text-content .heading {
    margin-bottom: 10px;
}

.image-text-content-btn .btn {
    display: inline-block;
    margin: 0 5px;
}

.inner-image-text-list .image-text-wrapper {
    margin-bottom: 50px;
}

.inner-image-text-list .image-text-wrapper:last-child {
    margin-bottom: 0;
}

.footer-image-text {
    padding: 50px 0 100px !important;
}

.about-icon-btn .btn {
    margin-top: 40px;
}

.image-text + .about-icon {
    padding: 0;
}

@media(min-width: 768px) {
    .image-text-content p {
        font-size: 16px;
    }

    .image-text {
        margin: 0 0 60px;
        padding: 60px 0 30px;
    }
}

@media(min-width: 1200px) {
    .image-text {
        padding: 100px 0 30px;
        margin: 0 0 80px;
    }

    .image-text-content p {
        text-align: left;
    }

    .image-text-wrapper {
        justify-content: space-between;
        display: flex;
    }

    .image-text-wrapper.reverse {
        flex-direction: row-reverse;
    }

    .image-text-image{
        width: calc(50% - 30px);
        min-height: 300px;
        margin: 0 30px 0 0;
    }

    .reverse .image-text-image{
        margin: 0 0 0 30px;
    }

    .image-text-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }

    .footer-image-text .image-text-image{
        width: 540px;
        margin-left: 40px;
        max-height: 380px;
        overflow: hidden;
    }

    .inner .image-text-wrapper {
        align-items: center;
    }

    .image-text-content {
        width: 50%;
        padding-left: 30px;
    }

    .footer-image-text .image-text-content {
        width: calc(100% - 540px);
        padding-left: 26px;
        max-width: 526px;
    }

    .inner .image-text-content {
        padding-top: 42px;
        padding-bottom: 42px;
        padding-left: 42px;
    }

    .inner.reverse .image-text-content {
        padding-top: 42px;
        padding-bottom: 42px;
        padding-left: 0;
        padding-right: 42px;
    }

    #downloadpopcomming .footer-image-text .image-text-content {
        max-width: 542px;
    }

    .footer-image-text .image-text-wrapper {
        justify-content: flex-start;
    }

    .reverse .image-text-content {
        padding-left: 0;
        padding-right: 30px;
    }

    .inner .image-text-image {
        margin: 0;
        width: 50%;
    }

    .inner.reverse .image-text-image {
        margin: 0;
    }

    .image-text .container {
        max-width: 1330px;
    }

    .image-text .heading h2 {
        text-align: left;
    }

    .image-text-content-btn {
        text-align: left;
    }

    .image-text-content-btn .btn {
        margin: 0 10px 0 0;
    }

    .image-text-float-logo {
        bottom: -30px;
        left: unset;
        right: -30px;
        transform: unset;
        max-width: 200px;
        width: 200px !important;
        height: auto !important;
        object-fit: unset !important;
    }

    .four-column .about-icon-list-item {
        width: calc(25% - 30px);
    }
}




#downloadpopcomming .heading h2 {
    font-size: 30px;
    color: #04BCBC;
}

#downloadpopcomming .image-text-content p {
    font-size: 20px;
}


@media(min-width: 768px) {

    #downloadpopcomming .heading h2 {
        font-size: 40px;
    }

    #downloadpopcomming .image-text-content p {
        font-size: 25px;
    }
}


@media(min-width: 1200px) {
    #downloadpopcomming .heading h2 {
        font-size: 50px;
    }

    #downloadpopcomming .image-text-content p {
        font-size: 35px;
    }
}

.testimonial-avatar-content {
    position: relative;
}

.testimonial-avatar-content:after {
    content: "";
    position: absolute;
    width: 45px;
    height: 35px;
    background: url(../img/quote-icon.svg) 0 0 no-repeat;
    top: 50%;
    right: 7px;
    transform: translate(0, -50%);
}

.testimonial-star {
    margin-bottom: 10px;
}

.testimonial-slider-item p {
    color: #737373;
    font-size: 15px;
    position: relative;
}

.testimonial-slider-item {
    box-shadow: 0 0 50px rgba(32,152,155,0.1);
    border-radius: 15px;
    padding: 25px 25px 20px;
    background: #fff;
    margin: 0;
}

.testimonial-slider-item-top {
    position: relative;    
}

.testimonial-slider {
    width: calc(100% + 50px);
    margin: 0px -25px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.testimonial-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
}

.testimonial-avatar-content {
    width: calc(100% - 60px);
    padding-left: 15px;
    padding-right: 60px;
}

.testimonial-avatar-content h4 {
    font-size: 20px;
    color: #1D2F2F;
    font-weight: 600;
    padding-bottom: 8px;
    position: relative;
    display: inline-block;
}

.testimonial-avatar-content h5 {
    font-size: 11px;
    color: #737373;
    font-weight: 400;
}

.testimonial-slider .slick-slide {
    margin: 25px;
}

.testimonial .heading {
    margin-bottom: 10px;
}

.testimonial {
    position: relative;
}



.testimonial {
    padding: 60px 0;
}

.testimonial-slider {
    padding-bottom: 75px;
}


@media(min-width: 768px) {
.testimonial-slider .slick-slide {
    height: auto;
}

.testimonial-slider .slick-track {
        display: flex;
    }

    .testimonial-slider .slick-slide>* {
        height: 100%;
        display: flex;
     }

     .testimonial-slider .slick-slide div .testimonial-slider-item div {
        height: unset;
     }

     .testimonial-slider-item {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        margin-top: 0;
    }

    .testimonial-slider .slick-slide {
        margin: 25px 15px;
    }
}
@media(min-width: 768px) {
.testimonial-slider {
    width: calc(100% + 30px);
    margin: 0px -15px;
    position: relative;
    overflow: unset;
}

.testimonial-slider:after {
    content: "";
    position: absolute;
    left: -4px;
    top: 0;
    width: 36px;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.testimonial-slider:before {
    content: "";
    position: absolute;
    right: -4px;
    top: 0;
    width: 36px;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.testimonial-slider .slick-list {
    padding: 0 15px;
}
}

@media(min-width: 1200px) {
    .testimonial-slider .slick-slide {
        width: 722px;
    }

    .testimonial-slider .slick-list {
        padding: 0;
    }

    .testimonial-slider-item h3 {
        font-size: 30px;
        padding-right: 135px;
    }

    .testimonial-slider-item p {
        font-size: 16px;
    }

    .testimonial {
        padding: 80px 0 100px;
    }

    .testimonial-avatar-content h5 {
        font-size: 16px;
    }
}


.blog-card-item-content {
    padding: 20px 25px;
}

.blog-card-item-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1D2F2F;
    padding-bottom: 10px;
    display: block;
}

.blog-card-item-content p {
    font-size: 14px;
    font-weight: 400;
    color: #656D6D;
    padding-bottom: 0;
    display: block;
}

.blog-card-item-image {
    aspect-ratio: 2 / 1.15;
    border-radius: 10px;
    overflow: hidden;
}

.blog-card-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-item-info {
    padding: 10px 15px;
    background: #fff;
    justify-content: space-between;
    display: flex;
    position: relative;
    box-shadow: 0 5px 10px rgba(213,229,229,1);
    margin-top: -20px;
    left: 20px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.blog-card-item-info span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.blog-card-item-info span strong {
    font-size: 14px;
    font-weight: 500;
    margin-left: 7px;
    color: #656D6D;
}

.blog-card-item {
    margin: 0 0 25px 0;
    background-color: #fff;
    display: block;
    border-radius: 10px;
}

.blog-card {
    padding: 65px 0 97px;
    background-color: #F8F3FC;
}


@media(min-width: 768px) {
    .blog-card-list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -20px;
        width: calc(100% + 40px);
    }

    .blog-card-item {
        margin: 0 20px 40px 20px;
        width: calc(50% - 40px);
    }
    
}


@media(min-width: 1200px) {
    .blog-card-item {
        width: calc(33.333% - 40px);
    }

    .blog-card-item:hover .blog-card-item-content h3 {
        color: #6D2C9F;
    }

    .blog-card {
        padding: 65px 0 97px;
    }

    .blog-card-item-content h3 {
        font-size: 18px;
    }
}


.page-footer {
    padding: 75px 15px 30px;
    position: relative;
    background: #183E77;
}

.footer-logo {
    display: block;
    text-align: center;
    margin-bottom: 16px;
}

.footer-social ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.footer-social ul li a {
    color: #fff !important;
    font-size: 18px;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.footer-social ul li {
    margin: 0 8px;
}

.footer-footer-link ul  {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.footer-footer-link ul li {
    margin: 0 5px;
}
.footer-footer-link ul li a {
    font-size: 15px;
    color: #fff;
    display: block;
    text-align: center;
    font-weight: 400;
} 

.footer-footer-link ul li {
    font-size: 15px;
    color: #fff;
    display: block;
    text-align: center;
    font-weight: 400;
    margin-bottom: 10px;
} 

.footer-social ul li a:hover {
    color: #FCC000 !important;
}


.footer-footer-link ul li a:hover {
    color: #FB9700 !important;
}

.back-top-btn {
    position: absolute;
    top: -107px;
    right: 0;
}

.page-footer-wrapper{
    position: relative;
    display: block;
}

.back-top-btn a {
    background: #04BCBC;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}


.full-page-scr .modal-dialog {
    max-width: 100%;
    margin: 0;
}

.full-page-scr .btn-closes {
    background: #fff;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    line-height: 1.2;
    text-align: center;
    outline: none;
    position: absolute;
    color: #F03F5F;
    font-weight: 300;
    opacity: 1;
    padding: 0;
    margin: 1px;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
}

.footer-social ul li a:hover {
    background: #FB9700;
    color: #fff !important;
}

.footer-footer-link {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.page-footer-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

@media(min-width: 768px) {
    .footer-footer-link ul {
        flex-direction: row;
        position: relative;
        justify-content: flex-end;
    }

    .footer-footer-link ul li:last-child {
        position: absolute;
        left: 0;
        top: 0;
        margin-left: 0;
    }

    .back-top-btn {
        top: -24px;
    }

    .back-top-btn a:hover {
        background: #ffc137;
    }

    .footer-footer-link ul li {
        margin: 0 0 0 35px;
    } 

}

@media(min-width: 1200px) {
    .footer-social ul li a {
        font-size: 22px;
        width: 54px;
        height: 54px;
    }

    .back-top-btn a {
        width: 80px;
        height: 80px;
    }

    .back-top-btn {
        top: 100px;
    }
}



.full-page-scr .image-text {
    min-height: 99vh;
    margin: 0;
}

.full-page-scr .modal-content {
        border: none;
    border-radius: 0;
    min-height: 100vh;
}


.image-slider-text {
    padding: 50px 0; 
}

.js-image-slider-for .slick-slide {
    transform: scale(0.6) translate(701px);
    position: relative;
    transition: all ease 0.3s;
}

.js-image-slider-for .slick-slide.slick-center + .slick-slide {
  transform: scale(0.6) translate(-270px);
  z-index: 10;
}

.js-image-slider-for .slick-slide.slick-center + .slick-slide + .js-image-slider-for .slick-slide {
  transform: scale(0.6)  translate(-640px);
  z-index: 5;
}

.js-image-slider-for .slick-slide.slick-active {
  transform: scale(0.6) translate(270px);
}

.js-image-slider-for .slick-slide.slick-center {
  /* margin: 0 -10%; */
  transform: scale(1);
  z-index: 30;
}

.js-image-slider-for .slick-slide.slick-center:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    background: rgb(0,0,0);
    background: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 81%);
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.25;
}

.js-image-slider-for .slick-slide.slick-center div {
    position: relative;
    z-index: 1;
}

.slick-center:after {
  opacity: 0;
}

.js-image-slider-for {
    max-width: 455px;
    margin: 0 auto 30px;
}

.image-slider-content {
    text-align: center;
} 

.image-slider-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1D2F2F;
    padding-bottom: 15px;
}

.image-slider-content p {
    color: #737373;
    font-size: 15px;
    position: relative;
    margin-bottom: 15px;
}

.image-slider-content-btns {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-slider-content-btns .btn + .btn {
    margin-left: 20px;
}

.js-image-slider-nav .slick-dots li {
    height: 15px;
}

.js-image-slider-nav .slick-next {
    background: url(../img/image-slider-slick-next-arrow.svg) center center no-repeat;
    margin-left: 70px;
    width: 61px;
}

.js-image-slider-nav .slick-prev {
    width: 61px;
    background: url(../img/image-slider-slick-prev-arrow.svg) center center no-repeat;
    margin-left: -131px;
}

.js-image-slider-nav .slick-next,
.js-image-slider-nav .slick-prev { 
    bottom: -4px;
}

.js-image-slider-nav {
    padding-bottom: 50px;
}

.js-image-slider-nav .slick-dots li button:after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border: 1px solid #00C6C6;
    opacity: 0;
}

.js-image-slider-nav .slick-dots li.slick-active button:after {
    opacity: 1;
}

.image-slider-content .btn {
    margin: 15px 0 0;
}

.image-slider-content h3 {
    padding: 5px 15px;
    background-color: #B49CC7;
    border-radius: 50px;
    max-width: max-content;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    margin: 0 auto 10px;
}

@media(min-width: 768px) {
    .js-image-slider-for {
        width: 50%;
        margin: 0;
    }

    .image-slider-content h3 {
        margin: 0 0 10px;
    }

    .js-image-slider-nav {
        width: 50%;
        padding: 0 45px 0 0;
    }

    .reverse .js-image-slider-nav {
        padding: 0 0 0 45px;
    }

    .full-width .js-image-slider-nav {
        width: 100%;
        padding: 0;
        margin-bottom: 40px;
    }

    .image-slider-content-btns {
        justify-content: flex-start;
    }

    .full-width .image-slider-content-btns {
        justify-content: center;
    }

    .full-width .js-image-slider-for {
        width: 100%;
        margin: 0 auto;
    }

    .js-image-slider {
        align-items: center;
        justify-content: space-between;
        display: flex;
    }

    .full-width .js-image-slider {
        display: block;
    }

    .reverse .js-image-slider {
        flex-direction: row-reverse;
    }

    /*.js-image-slider-nav .slick-slide {
        display: none !important;
    }

    .js-image-slider-nav .slick-slide.slick-current.slick-active {
        display: block !important;
    }*/

    .image-slider-content {
        min-height: 306px;
        text-align: left;
        padding-right: 26px;
    }

    .full-width .image-slider-content {
        width: 100%;
        min-height: unset;
        text-align: center;
        padding-right: 0;
    }

    .js-image-slider-nav .slick-dots {
        display: flex;
        flex-direction: column;
        width: unset;
        height: 100%;
        right: 0;
        justify-content: center;
        align-items: flex-end;
    }

    .js-image-slider-nav .slick-dots li {
        height: auto;
        margin: 5px;
    }

    .js-image-slider-nav .slick-next, .js-image-slider-nav .slick-prev {
        bottom: unset;
        transform: translate(0, -50%) rotate(90deg);
        right: -21px;
        left: unset;
        top: 50%;
    }

    .js-image-slider-nav .slick-prev {
        margin-top: -100px;
    }

    .js-image-slider-nav .slick-next {
        margin-top: 100px;
    }

}



@media(min-width: 1200px) {
.js-image-slider-for .slick-slide.slick-active {
    transform: scale(0.6) translate(180px);
}

.js-image-slider-for .slick-slide.slick-center + .slick-slide {
    transform: scale(0.6) translate(-180px);
}
.js-image-slider-for .slick-slide.slick-center {
    transform: scale(1);
    z-index: 30;
}

.js-image-slider-for {
    width: 455px;
}

.js-image-slider-nav {
    width: calc(100% - 455px);
}

.image-slider-content h2 {
    font-size: 35px;
}

.image-slider-content p {
    font-size: 16px;
    line-height: 24px;
    max-width: 603px;
}

.full-width .image-slider-content p {
    max-width: unset;
}

.image-slider-content h3 {
    font-size: 18px;
    padding: 9px 15px;
}

.js-image-slider-for .slick-slide.slick-center:before {
    width: 433px;
    height: 433px;
}


.image-slider-text {
    padding: 100px 0; 
}
}

.contact-list-input {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.contact-list-input input {
    font-size: 12px;
    display: block;
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    background: #fff;
    color: #323840;
    border: 1px solid #CCD4D4;
    font-size: 12px;
    border-radius: 10px;
    font-weight: 600;
    box-sizing: border-box;
}

.contact-list-input label {
    color: #656D6D;
    font-size: 12px;
    font-weight: 400;
    display: block;
    top: 9px;
    position: relative;
    left: 15px;
    z-index: 1;
}



.contact-list-input label span {
    display: inline-block;
    padding: 0 4px;
    background: #fff;
}

.contact-list-input label span sup {
    color: #FA470F;
    top: 0;
    font-size: 12px;
}

.contact-list-input textarea {
    font-size: 12px;
    display: block;
    width: 100%;
    resize: none;
    height: 150px;
    padding: 10px 15px;
    background: #fff;
    color: #323840;
    border: 1px solid #CCD4D4;
    font-size: 12px;
    border-radius: 10px;
    font-weight: 600;
    box-sizing: border-box;
}

.contact-list-input input:focus,
.contact-list-input input:hover,
.contact-list-input textarea:hover,
.contact-list-input textarea:focus {
    border: 1px solid #FB9700;
    outline: none;
    box-shadow: none;
}



.contact-list-input .btn {
    margin: 13px auto 0;
    display: table;
}

.contact-body {
    padding: 50px 0 100px;
}

.contact-list .heading {
    margin-bottom: 25px;
}

.filer-product-pagination ul.pagination li a {
    width: 30px;
    height: 30px;
    border-radius: 50px !important;
    border: 1px solid #C5D9DC;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    color: #1D1C1C;
    align-items: center;
    justify-content: center;
}

.filer-product-pagination ul.pagination li a:hover,
.filer-product-pagination ul.pagination li.pagination-active a {
    border: 1px solid #04BCBC;
    color: #fff;
    background: #04BCBC;
    box-shadow: 0 10px 25px rgba(0,198,198,0.50);
}

.filer-product-pagination {
    margin-top: 20px;
}

.filer-product-pagination ul.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.filer-product-pagination ul.pagination li {
    margin: 0 5px;
    display: inline-block;
}

@media(min-width:768px) {
    .contact-list {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 0 100px rgba(210,225,225,1);
        padding: 30px;
        max-width: 950px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

     .contact-list .heading p {
        padding-bottom: 0;
        font-size: 18px;
     }

    .contact-list .heading p:after {
        display: none;
    }

    .contact-list-wrapper {
        position: relative;
        max-width: 950px;
        margin: 0 auto;
    }

    .contact-list-wrapper:after {
        content: "";
        position: absolute;
        top: -40px;
        left: -40px;
        width: 262px;
        height: 214px;
        z-index: -1;
        background: url(../img/contact-list-left-bg.png) 0 0 no-repeat;
    }

    .contact-list-wrapper:before {
        content: "";
        position: absolute;
        bottom: -40px;
        right: -40px;
        width: 262px;
        height: 214px;
        z-index: -1;
        background: url(../img/contact-list-right-bg.png) 0 0 no-repeat;
    }

    .contact-body {
        padding: 120px 0;
    }
    }


@media(min-width:768px) {
    .filer-product-pagination {
        margin-top: 10px;
    }
}

.blog-detail-body {
    padding: 90px 0 50px;
}

.back-blog-detail-body-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #C5D9DC;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    color: #595F6E;
}

.blog-detail-body-left h1 {
    padding-left: 40px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212631;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-detail-body-left {
    position: relative;
}

.blog-detail-body-left .blog-card-item-info {
    padding: 0;
    background: transparent;
    justify-content: flex-start;
    box-shadow: none;
    margin-top: 0;
    left: 0;
    border-radius: 0;
    margin-bottom: 10px;
}

.blog-detail-body-left .blog-card-item-info span {
    margin-right: 20px;
}

.blog-detail-image {
    aspect-ratio: 2 / 1.05;
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body-right h4 {
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 20px;
    color: #212631;
}

.blog-detail-body-left h3 {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 5px;
    color: #394256;
}

.blog-detail-body-left p {
    font-size: 16px;
    padding-bottom: 25px;
    color: #394256;
    line-height: 27px;
}

.blog-detail-body-right {
    margin-top: 25px;
}

.blog-detail-body-right .blog-card-item-content p {
    display: none;
}

.blog-detail-body-right .blog-card-item-content {
    position: relative;
    padding-bottom: 43px;
    margin-top: 10px;
}

.blog-detail-body-right .blog-card-item-info {
    position: absolute;
    top: unset;
    bottom: 0;
    margin-bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-radius: 0;
    justify-content: flex-start;
    box-shadow: none;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #D9D9D9;
}

.blog-detail-body-right .blog-card-item-info span {
    margin-right: 25px;
}


@media(min-width: 992px) {
    .blog-detail-body {
        padding: 115px 0 80px;
    }

    .blog-detail-body-right .blog-card-item-info span {
        margin-right: 0;
        max-width: 45%;
    }

    .blog-detail-body-right .blog-card-item-info {
        justify-content: space-between;
    }
}


@media(min-width: 1200px) {
.blog-detail-body-wrapper {
    display: flex;
}

.blog-detail-body-right {
    width: 315px;
    margin-top: 126px;
}

.blog-detail-body-left .blog-card-item-info span {
    margin-right: 60px;
}

.blog-detail-body-left {
    width: calc(100% - 315px);
    padding-right: 30px;
}

.blog-detail-body-right .blog-card-list {
    margin: 0;
    width: 100%;
}

.blog-detail-body-right .blog-card-item {
    margin: 0 0 20px;
    width: 100%;
}

.back-blog-detail-body-btn {
    position: relative;
    margin-bottom: 20px;
}

.blog-detail-body-left h1 {
    padding-left: 0;
    -webkit-line-clamp: 1;
}
}



























































.full-width-image-text {
    padding: 70px 0;
    position: relative;
    background-color: #183E77;
}


.full-width-image-text-content h2 {
    color: #fff;
    padding-bottom: 12px;
}

.full-width-image-text-content p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.full-width-image-text-content {
    position: relative;
    text-align: center;
}



.full-width-image-text-content .btn {
    margin: 25px auto 0;
}

.full-width-image-text-wrapper {
    position: relative;
    z-index: 1;
}

.full-width-image-text-image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.full-width-image-text-image img {
    opacity: 0.4;
}






@media(min-width: 768px) {
    .full-width-image-text-content h2 {
        font-size: 40px;
    }

    .full-width-image-content {
        padding: 30px;
    }
}


@media(min-width: 1200px) {
    .full-width-image {
        padding: 141px 0 132px;
    }

    .full-width-image-content:after {
        display: none;
    }

    .full-width-image-text-content p {
        font-size: 25px;
    }

    .full-width-image-text-content h2 {
        font-size: 40px;
        padding-bottom: 20px;
    }

    .full-width-image-text {
        padding: 120px 0 140px;
    }
}



.video-embed {
  background-color: #1a438b;
  
}

.vid-wrap {
  display: block;
  position: relative;
  aspect-ratio:  2 / 0.972;
  background: #183E77;
}
.vid-wrap h2 {
  color: #fff;
  text-align: center;
}
.vid-wrap img {
    cursor: pointer;
    position: relative;
    opacity: 0.4;
}
.vid-wrap img.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    opacity: 1;
}
.vid-wrap iframe {
    width: 100%;
    height: 100%;
    display: none;
}
.vid-wrap a {
  display: none;
}

.btn-close {
    background: none;
}
.vid-wrap a .fa-times {
  background-color: #fff;
  padding: 3px 5px;
  border-radius: 50%;
  color: #000;
  position: absolute;
  font-size: 18px;
  top: 5px;
  right: 5px;
}

.about-icon + .full-width-image-text {
    margin-top: 40px;
}


.bg-light-gray {
    padding: 50px 0;
    background-color: #FFF7ED;
}

.bg-light-gray .about-icon-list-item {
    background-color: #fff;
}

.about-icon-list-content {
    text-align: center;
    margin: 50px 0 20px;
}

.about-icon-list-content p {
    font-size: 20px;
}

@media(min-width: 768px) {
    .vid-wrap img.btn-play {
        width: 80px;
    }

    .about-icon + .full-width-image-text {
        margin-top: 70px;
    }


    .bg-light-gray {
        padding: 65px 0;
    }

    .about-icon-list-content p {
        font-size: 22px;
    }
}


@media(min-width: 1200px) {
    .vid-wrap img.btn-play {
        width: 125px;
    }

    .about-icon + .full-width-image-text {
        margin-top: 100px;
    }

    .bg-light-gray {
        padding: 100px 0;
    }

    .about-icon-list-content {
        margin: 100px 0 45px;
    }

    .about-icon-list-content p {
        font-size: 25px;
        line-height: 37px;
    }
}



.tab-accordian {
    padding: 50px 0;
    position: relative;
}

.tabbed-content {
    background: #fff;
    border: 1px solid #C7C1BC;
    border-radius: 20px;
    margin: 0;
    overflow: hidden;
}

.tabs ul {
    margin: 0;
    padding: 0;
    font-weight: bold;
}
.tabs ul li {

}
.tabs ul li a {
    padding: 12px 20px;
    background-color: #FFF7ED;
    font-size: 20px;
    color: #18173A;
    border-bottom: 1px solid #C7C1BC;
}

.tabs ul li:last-child a {
    border-bottom: 1px solid transparent;
}
.tabs ul li a:hover, .tabs ul li a.active {
  background: #FB9700;
  color: #fff;
}

.item {
  margin-bottom: 2px;
}
.item::before {
  cursor: pointer;
  padding: 12px 20px;
    background-color: #FFF7ED;
    font-size: 17px;
    color: #18173A;
    border-bottom: 1px solid #C7C1BC;
    display: block;
}
.item.active::before {
  background: #444;
  color: #eee;
}
.item.active .item-content {
  padding: 1em;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

@media all and (min-width: 800px) {
  .item.active .item-content {
    padding-top: 0;
  }
}
/* 
The project specific CSS starts here
This is the minimum CSS that you will need in order for this to work
*/
.tabbed-content .tabs {
  display: none;
}
.tabbed-content .item {
  min-height: 2em;
}
.tabbed-content .item::before {
  content: attr(data-title);
}
.tabbed-content .item .item-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.tabbed-content .item.active .item-content {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.item-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #18173A;
    margin-bottom: 15px;
}

.tabbed-content.tabs-side .item-content ul {
    margin-left: 15px;
 }

.tabbed-content.tabs-side .item-content ul li {
    padding-left: 15px;
    margin: 15px 0;
    position: relative;
}

.tabbed-content.tabs-side .item-content ul li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 50px;
}

@media all and (min-width: 1200px) {
  .tabbed-content .tabs {
    display: block;
  }
  .tabbed-content .tabs li {
    display: inline-block;
  }
  .tabbed-content .tabs li a {
    display: block;
  }
  .tabbed-content .item {
    min-height: 0;
  }
  .tabbed-content .item::before {
    display: none;
  }
  .tabbed-content.tabs-side .tabs {
    width: 349px;
  }
  .tabbed-content.tabs-side .tabs li {
    display: block;
  }
  .tabbed-content.tabs-side .item {
    width: calc(100% - 349px);
    padding: 30px 30px 60px 30px;
    display: none;
    border-left: 1px solid #C7C1BC;
  }

  .tabbed-content.tabs-side .item.active {
    display: block;
  }

  .tabbed-content {
    display: flex;
  }

  .item-content h3 {
    font-size: 30px;
}

.tab-accordian {
    padding: 100px 0;
}
}


.custom-select {
  position: relative;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: DodgerBlue;
}

.select-selected.select-arrow-active:after {
    border-bottom: none;
    border-right: none;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    margin: 0px;
}

.select-selected {
    font-size: 12px;
    display: block;
    width: 100%;
    height: 50px;
    padding: 10px 39px 10px 15px;
    background: #fff;
    color: #323840;
    border: 1px solid #CCD4D4;
    font-size: 12px;
    border-radius: 10px;
    font-weight: 600;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.select-items div {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    font-size: 14px;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

.select-items {
    position: absolute;
    background-color: #3c3c3c;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 0 0 8px 8px;
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.select-selected:after {
    content: '';
    display: block;
    border: none;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg) translate(0, -50%);
    height: 10px;
    width: 10px;
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 50%;
    margin: -6px 0 0 0;
}

.radio-box-list ul {
    display: flex;
    padding: 18px 0 0 0;
    flex-wrap: wrap;
    margin-bottom: -15px;
}

.radio-box-list ul li {
    color: #AAAAAA;
    display: flex;
    position: relative;
    margin: 0 15px 15px 0;
}

.radio-box-list ul li:last-child {
    margin-right: 0;

}

.radio-box-list ul li input[type=radio]{
  position: absolute;
  visibility: hidden;
}

.radio-box-list ul li label {
    display: block;
    position: relative;
    font-weight: 300;
    font-size: 14px;
    padding: 0 0 0 25px;
    margin: 0;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    margin: 0;
    top: 0;
    left: 0;
}

.radio-box-list ul li .check {
    display: block;
    position: absolute;
    border: 1px solid #B5B5B5;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    top: 2px;
    left: 0;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
    box-shadow: inset 0 4px 4px rgba(0,0,0,0.25);
}


.radio-box-list ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 10px;
    width: 10px;
    top: 4px;
    left: 4px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
    background: #18173A;
    opacity: 0;
}

.radio-box-list input[type=radio]:checked ~ .check {
  border: 1px solid #18173A;
}

.radio-box-list input[type=radio]:checked ~ .check::before{
  opacity: 1;
}

.check-box.contact-list-input label {
    left: 0;
}

.checkbox-custom {
  display: block;
  margin-bottom: 15px;
}

.checkbox-custom a {
    font-weight: 700;
    color: #FB9700;
    text-decoration: underline;
    font-size: 14px;
}

.checkbox-custom input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox-custom label {
    position: relative;
    cursor: pointer;
    font-weight: 400;
    color: #18173A;
    font-size: 14px;
    top: 0;
    left: 0;
    padding-left: 27px;
}

.checkbox-custom label:before {
    content: "";
    display: block;
    position: absolute;
    border: 1px solid #B5B5B5;
    border-radius: 5px;
    height: 20px;
    width: 20px;
    top: 2px;
    left: 0;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
    box-shadow: inset 0 4px 4px rgba(0,0,0,0.25);
}

.checkbox-custom input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    z-index: 11;
}

.checkbox-custom input:checked + label:before {
    background-color: #183E77;
    border-color: #183E77;
}

.with-terms {
    margin-top: 10px;
}

@media(min-width: 768px) {
    .radio-box-list ul li {
        margin-right: 25px;
    }

    .with-terms {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .with-terms .btn {
        margin: 0;
    }

    .checkbox-custom {
        margin-bottom: 0;
    }
}