* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    font-family: "Inter";
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

.blog-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.blog {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 0 calc(33.33% - 20px);
    display: flex;
    flex-direction: column;

}

.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.blog:hover img {
    transform: scale(1.05);
}

.blog-image .date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 600;
}

.blog-content p {
    flex-grow: 1;
    color: #bbb;
    margin-bottom: 20px;
}

.blog-content a {
    align-self: flex-start;
    background-color: #1F558C;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 500;
    font-size: 13px;
}

.blog-content a:hover {
    background-color: #357EC7;
}

.img-sec img {
    width: 100%;
    margin-bottom: 27px;
    position: relative;
}

.box-blck {
    width: 100%;
    background: black;
    height: 95%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0.4;
}

.img-sec {
    position: relative;
}

.our-blg-cont {
    position: absolute;
    left: 39%;
    top: 42%;
    transform: translate(-50%, -50%);
}

.our-blg-cont h2 {
    font-size: 38px;
    color: white;
    font-weight: 700;
}

.our-blg-cont p {
    font-size: 16px;
    color: white;
    font-weight: 400;
    margin-top: 18px;
}


/* SOCIAL PANEL CSS */
.social-panel-container {
    position: fixed;
    right: 0;
    bottom: 80px;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.social-panel-container.visible {
    transform: translateX(-10px);
}

.social-panel {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 31px -17px rgba(0, 31, 97, 0.6);
    border: 5px solid #001F61;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 169px;
    width: 370px;
    max-width: calc(100% - 10px);
}

.social-panel button.close-btn {
    border: 0;
    color: #97A5CE;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
}

.social-panel button.close-btn:focus {
    outline: none;
}

.social-panel p {
    background-color: #001F61;
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    padding: 2px 17px 6px;
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    text-align: center;
    width: 235px;
}

.social-panel p i {
    margin: 0 5px;
}

.social-panel p a {
    color: #FF7500;
    text-decoration: none;
}

.social-panel h4 {
    margin: 20px 0;
    color: #97A5CE;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
}

.social-panel ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social-panel ul li {
    margin: 0 10px;
}

.social-panel ul li a {
    border: 1px solid #DCE1F2;
    border-radius: 50%;
    color: #001F61;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    text-decoration: none;
}

.social-panel ul li a:hover {
    border-color: #FF6A00;
    box-shadow: 0 9px 12px -9px #FF6A00;
}

.floating-btn {
    border-radius: 26.5px;
    background-color: #001F61;
    border: 1px solid #001F61;
    box-shadow: 0 16px 22px -17px #03153B;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.floating-btn:hover {
    background-color: #ffffff;
    color: #001F61;
}

.floating-btn:focus {
    outline: none;
}

.floating-text {
    background-color: #001F61;
    border-radius: 10px 10px 0 0;
    color: #fff;
    padding: 7px 15px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 998;
}

.floating-text a {
    color: #FF7500;
    text-decoration: none;
}

@media screen and (max-width: 480px) {

    .social-panel-container.visible {
        transform: translateX(0px);
    }

    .floating-btn {
        right: 10px;
    }
}

.faq-title {
    font-size: 16px;
    color: black;
    font-weight: 600;
}

.faq-text {
    color: gray;
    margin-top: 13px !important;
    font-weight: 500;
}

.faqs-container {
    margin: 0 auto;
    max-width: 1000px;
}

/*Faq end*/

/*Why Choose start*/

:root {
    --color-wrapper: #5b7098;
    --color-bg: #eee7cf;
    --color-grey: #424b54;
    --color-primary: #2B3153;
    --transition: all .5s ease-in-out;

    --icon-target: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyLDJBMTAsMTAgMCAwLDAgMiwxMkExMCwxMCAwIDAsMCAxMiwyMkExMCwxMCAwIDAsMCAyMiwxMkMyMiwxMC44NCAyMS43OSw5LjY5IDIxLjM5LDguNjFMMTkuNzksMTAuMjFDMTkuOTMsMTAuOCAyMCwxMS40IDIwLDEyQTgsOCAwIDAsMSAxMiwyMEE4LDggMCAwLDEgNCwxMkE4LDggMCAwLDEgMTIsNEMxMi42LDQgMTMuMiw0LjA3IDEzLjc5LDQuMjFMMTUuNCwyLjZDMTQuMzEsMi4yMSAxMy4xNiwyIDEyLDJNMTksMkwxNSw2VjcuNUwxMi40NSwxMC4wNUMxMi4zLDEwIDEyLjE1LDEwIDEyLDEwQTIsMiAwIDAsMCAxMCwxMkEyLDIgMCAwLDAgMTIsMTRBMiwyIDAgMCwwIDE0LDEyQzE0LDExLjg1IDE0LDExLjcgMTMuOTUsMTEuNTVMMTYuNSw5SDE4TDIyLDVIMTlWMk0xMiw2QTYsNiAwIDAsMCA2LDEyQTYsNiAwIDAsMCAxMiwxOEE2LDYgMCAwLDAgMTgsMTJIMTZBNCw0IDAgMCwxIDEyLDE2QTQsNCAwIDAsMSA4LDEyQTQsNCAwIDAsMSAxMiw4VjZaIiAvPjwvc3ZnPg==");
    --icon-plus: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTE5LDEzSDEzVjE5SDExVjEzSDVWMTFIMTFWNUgxM1YxMUgxOVYxM1oiIC8+PC9zdmc+");
}

.wrapper {
    /* background-color: var(--color-wrapper); */
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img img {
    width: 60px;
}

.card::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    background-color: #357EC7;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
    border-radius: 50%;
    transition: var(--transition);
    z-index: -1;
}

.card:is(:hover, :focus-visible)::before {
    height: 200%;
    width: 200%;
    border-radius: 0;
}

.card__icon {
    grid-area: icon;
    display: block;
    height: var(--card-icon-size);
    width: var(--card-icon-size);
    background-color: var(--card-color);
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-image: var(--icon-target);
    transition: var(--transition);
}

.card__title {
    grid-area: title;
    font-size: 21px;
    margin-top: var(--card-title-margin-top);
    transition: var(--transition);
    align-self: flex-end;
    color: white;
}

.card__description {
    grid-area: description;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(1000px);
    transition: var(--transition);
    margin-top: 20px;
}

.card__link {
    grid-area: link;
    border: 2px solid var(--card-color);
    color: var(--card-color);
    background-color: var(--card-bg-color);
    padding: .5rem 1rem;
    border-radius: .25rem;
    width: fit-content;
    height: fit-content;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.card__link:is(:hover, :focus-visible) {
    color: var(--card-bg-color);
    background-color: var(--card-color);
}

.card__button {
    grid-area: button;
    display: flex;
    background-color: var(--card-bg-color);
    height: var(--card-button-size);
    width: var(--card-button-size);
    border-radius: 50%;
    border: 2px solid var(--card-color);
    position: relative;
    transition: var(--transition);
}

.card__button:is(:hover, :focus-visible) {
    background-color: var(--card-color);
    border: 2px solid var(--card-color);
}

.card__button::after {
    content: "";
    mask-position: center;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-image: var(--icon-plus);
    background-color: var(--card-color);
    height: 85%;
    width: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.card__button:is(:hover, :focus-visible)::after {
    background-color: var(--card-bg-color);
}

/* hover */
.card:is(:hover, :focus-visible) {
    --card-color: white;
    --card-bg-color: #357EC7;
    --card-icon-size: 2.5rem;
    --card-title-margin-top: 0;
    --card-title-font-size: 1.5rem;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "icon"
        "title"
        "description"
        "link";
}

.card:is(:hover, :focus-visible) .card__description {
    opacity: 1;
    transform: translateY(0);
}

.section-head {
    margin-bottom: 60px;
}

.section-head h4 {
    position: relative;
    padding: 0;
    color: #357EC7;
    line-height: 1;
    letter-spacing: 0.3px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
}

.section-head h4:before {
    content: '';
    width: 60px;
    height: 3px;
    background: #357EC7;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}

.section-head h4 span {
    font-weight: 700;
    padding-bottom: 5px;
    color: #2f2f2f
}

p.service_text {
    color: #cccccc !important;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.section-head p,
p.awesome_line {
    color: #818181;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.extra-text {
    font-size: 34px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 25px;
    position: relative;
    text-transform: none;
}

.extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #357EC7;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}

.extra-text span {
    font-weight: 700;
    color: #357EC7;
}

/* .crd-grd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
} */

.crd-grd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 80px 0px 80px 0px;
}

.card-img img {
    width: 60px;
}

.card {
    --card-color: var(--color-bg);
    --card-bg-color: var(--color-primary);
    --card-icon-size: 5rem;
    --card-button-size: 2.5rem;
    --card-title-font-size: 2.5rem;
    --card-title-margin-top: 2rem;

    background-color: var(--card-bg-color);
    padding: 1.5rem;
    color: var(--card-color);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr 0 auto;
    grid-template-areas:
        "icon"
        "title"
        "description"
        "link";
    width: 100%;
    max-width: 100%;
    height: 240px;
    border-radius: .5rem;
    gap: 0px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

/*Why Choose end*/


.cont {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 60px;
}

.product-card {
    background-color: var(--card-background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 10px rgb(220 220 220 / 17%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: 0.5s;
}

.product-card:hover {
    transform: translateY(-30px);
    box-shadow: 0 15px 30px rgb(158 158 158 / 15%);
    transition: 0.5s;
}

.product-card__image {
    text-align: center;
    padding-top: 40px;
}

.product-card__image img {
    width: 85px;
    margin: 0 auto;
    /* background: #2b3153; */
    padding: 7px;
    border-radius: 50px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(135px);
    border: 3px dashed #2b3153;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 22px 46px;
}

.product-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: black;
    text-align: center;
}

.product-card__description {
    font-size: 15px;
    color: #878787;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 300;
}

.product-card__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card__price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-card__btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-card__btn:hover {
    background-color: #C71729;
}

@media (max-width: 480px) {
    .cont {
        max-width: 100%;
        padding: 0 20px;
    }

    .product-card__image {
        height: 200px;
    }

    .product-card__title {
        font-size: 1.3rem;
    }

    .product-card__description {
        font-size: 0.8rem;
    }

    .product-card__price {
        font-size: 1.1rem;
    }

    .product-card__btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

.upper-cont h4 {
    text-align: center;
    margin-bottom: 40px;
    color: black;
    font-size: 30px;
    font-weight: 600;
}

.input-box input {
    padding: 22px 38px;
    width: 50%;
    margin-bottom: 54px;
    border: none;
    background: white;
    border-radius: 50px;
    box-shadow: 2px 4px 10px #e4e4e4d9;
    font-size: 14px;
}

.input-box {
    text-align: center;
    position: relative;
}

.icnoos {
    position: absolute;
    left: 313px;
    top: 21px;
    color: black;
    font-size: 17px;
}

/*tabs*/


#wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content {
    max-width: 1200px;
    width: 100%;
    /* min-width: 250px; */
    margin: 0 0%;
    margin-top: 2%;
    margin-bottom: 3%;
    transition: 0.3s ease;
}

@media screen and (max-width: 512px) {
    .content {
        margin: 0 4%;
        margin-top: 5%;
    }
}

/* Tabs menu */
.tabs {
    margin: 0;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    border-radius: 2px 2px 0px 0px;
}

@media screen and (max-width: 512px) {
    .tabs {
        height: 40px;
    }
}

/* Tab Links */
.tablinks {
    background: transparent;
    background-image: linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, 0.2) 100%);
    border: none;
    outline: none;
    cursor: pointer;
    width: 25%;
    /*change depending on the number of tabs*/
    height: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    overflow: hidden;
    transition: 0.3s ease;
}

@media screen and (max-width: 512px) {
    .tablinks {
        height: 40px;
        font-size: 12px;
    }
}

.tablinks:before {
    background-image: linear-gradient(135deg, #2b3153 0%, #357EC7 100%);
    content: "";
    width: 100%;
    height: 0px;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
    z-index: 2;
}

/*tab buttons hover*/
.tablinks:hover::before {
    height: 100%;
    z-index: 2;
    bottom: 0;
}

@media screen and (max-width: 512px) {
    .tablinks:hover::before {
        height: 0;
    }
}

/* Tab active */
.tablinks.active {
    background-color: white;
    z-index: 0;
    border-right: 0px;
    border-left: 0px;
    height: 110px;
    bottom: 0px;
    overflow: hidden;
}

@media screen and (max-width: 512px) {
    .tablinks.active {
        height: 60px;
    }
}

.tablinks.active:before {
    content: "";
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
}

/* Tabs text */
.tablinks.active p,
.tablinks.active:hover p {
    opacity: 1;
    background: -webkit-linear-gradient(135deg, #2b3153 0%, #357EC7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tablinks p {
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: 0.5s ease;
    padding: 0;
    margin: 0;
    color: #686868;
    backface-visibility: hidden;
    font-weight: 400;
}

.tablinks:hover p {
    color: white;
    opacity: 1;
}

@media screen and (max-width: 512px) {
    .tablinks:hover p {
        color: #686868;
        opacity: 0.6;
    }
}

/* Tabs text bigger */
.tablinks p:before {
    content: attr(data-title);
    position: absolute;
    height: auto;
    width: auto;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
    font-size: 20px;
    transition: 1s ease-out;
    z-index: -1;
    font-weight: 600;
    top: 110%;
}

@media screen and (max-width: 512px) {
    .tablinks p:before {
        display: none;
    }
}

.tablinks:hover p:before {
    opacity: 0.1;
    font-size: 20px;
    top: 10%;
}

/* tab content */
/* .wrapper_tabcontent {
    background-color: white;
    margin-top: 0px;
    z-index: -3;
    position: relative;
    opacity: 1;
    padding: 40px 40px 60px 40px;
    overflow: hidden;
    transition: all 1s ease;
    top: 0;
} */

.wrapper_tabcontent {
    background-color: white;
    margin-top: 0px;
    z-index: 0;
    position: relative;
    opacity: 1;
    padding: 40px 40px 60px 40px;
    overflow: hidden;
    transition: all 1s ease;
    top: 0;
}

.tabcontent {
    display: none;
    min-height: 180px;
}

@keyframes tabEffect {
    from {
        top: -40px;
    }

    to {
        top: 0px;
    }
}

.tabcontent.active {
    transition: all 1s ease;
    display: block;
}

/* Tab content line */
.wrapper_tabcontent:after {
    content: "";
    height: 5px;
    width: 100%;
    position: absolute;
    background-image: linear-gradient(135deg, #2b3153 0%, #357EC7 100%);
    left: 0;
    bottom: 0;
    z-index: -2;
    transition: all 1s ease;
}

/* Title */
.tabcontent h3 {
    font-size: 40px;
    top: 75px;
    transform: rotate(90deg);
    position: absolute;
    left: -90px;
    opacity: 0.1;
    width: 200px;
    height: 60px;
    background: -webkit-linear-gradient(135deg, #2b3153 0%, #357EC7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0;
    animation: city 1s ease;
}

@media screen and (max-width: 512px) {
    .tabcontent h3 {
        top: 65px;
    }
}

@keyframes city {
    from {
        left: -150px;
    }

    to {
        left: -90px;
    }
}

/* Text*/
.tabcontent p {
    color: #686868;
    margin: 0;
    padding: 0;
    line-height: 28px;
    font-weight: 100;
    transition: all 1s ease;
    animation: fadeEffect 0.6s ease;
    width: 100%;
    font-size: 16px;
}

@media screen and (max-width: 512px) {
    .tabcontent p {
        font-size: 14px;
        line-height: 26px;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        margin-left: 30px;
    }

    to {
        opacity: 1;
        margin-left: 0;
    }
}

.card-img-1 img {
    width: 100%;
    border-radius: 16px;
}

.grid-card-tab {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.card-img-1 h4 {
    font-size: 16px;
    color: black;
    padding-top: 14px;
    font-weight: 600;
}

/*tabs*/

.help-1 {
    display: grid;
    gap: 2%;
    padding: 24px 20px;
    background: white;
    box-shadow: 1px 1px 14px #e8e8e8a3;
    border-radius: 12px;
    grid-template-columns: 12% 86%;
    transition: 0.5s;
}

.help-1:hover {
    box-shadow: 1px 1px 14px #ebebeb;
    transition: 0.5s;
    transform: translateY(-20px);
}

.help-1 img {
    width: 60px;
}

.help-cont h4 {
    color: black;
    font-size: 20px;
    font-weight: 600;
}

.help-cont p {
    color: #585858;
    font-size: 14px;
    font-weight: 300;
}

.help-cont-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.help-1 {
    display: grid;
    gap: 2%;
    padding: 24px 20px;
    background: white;
    box-shadow: 1px 1px 14px #e8e8e8;
    border-radius: 12px;
    grid-template-columns: 12% 86%;
    align-items: center;
}

.main-heading-help {
    /* padding: 2px 0px 32px 0px; */
    font-size: 28px;
    font-weight: 600;
    text-decoration: underline;
    position: absolute;
    top: 90px;
    left: 56px;
}

.head {
    position: relative;
    padding-bottom: 84px;
    padding-top: 84px;
}

.head h2 {
    display: inline-block;
    color: #e6e6e65e;
    font-size: 120px;
    position: absolute;
    top: -26px;
    left: 0px;
}

.bottom-tip h5 {
    font-size: 14px;
    font-weight: 500;
    background: #ecececab;
    color: gray;
    text-align: center;
    padding: 10px 10px;
    margin: 14px 0px;
}

/*************** 21st August********************/
.bg-image {
    /* background-image: url("https://files.webankieta.pl/user_files/user_logo/133984/image_1659369749.png"); */
    /* background-size: cover; */
    /* background-color: rgba(215,197,181, 1); */
    /* opacity: 1; */
    min-height: 72vh;
    padding: 0px;
    width: 100%;
    border: unset;
}
 
.patient-back {
    background: #fafafa;
    padding: 30px 0px;
}
 
.grid-survey-section {
    display: grid;
    grid-template-columns: 76% 24%;
}
 
.survey-grid-2 {
    padding: 10px 24px;
}
 
.survey-head {
    font-size: 14px;
    margin: 20px 0px 30px 0px;
    color: green;
    font-weight: 400;
}
 
.preview {
    font-size: 15px;
    font-weight: 500;
    color: green;
    background: transparent;
    border: unset;
    padding: 0px 0px 30px 0px;
}
 
.patient {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}
 
.patient-para {
    color: gray;
    font-size: 16px;
    font-weight: 400;
    margin: 30px 0px 26px 0px;
}
 
.template {
    background: #367ec7;
    color: white;
    text-decoration: none;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 100px;
    display: inline-block;
}
 
.temp-1 {
    margin-bottom: 30px;
    display: inline-block;
    margin-top: 0px;
}
 
.abcs {
    padding-bottom: 170px;
}
 
.surves {
    padding-top: 70px;
}
 
.temp-2 {
    display: inline-block;
    background-color: transparent;
    color: green;
    margin-top: 38px;
}
 
/* Overlay Styles */
.overlay {
    background: rgba(0, 0, 0, 0.8);
    opacity: 0.8;
    filter: alpha(opacity=80);
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
}
 
/* Popup */
.popup {
    background: white;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 101;
    width: 100%;
    height: 100%;
    margin: auto;
}
 
@media (max-width: 768px) {
    .popup {
        width: 90%;
        margin: auto 5%;
    }
}
 
.popup .popup-inner {
    position: relative;
    padding: 1em;
    height: 100vh;
}
 
.popup .popup-inner input.s3-btn-close {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    background: transparent;
    border: solid 1.5px #008001;
    color: #008001;
    cursor: pointer;
    border-radius: 15px;
    outline: none;
    width: 26px;
    height: 26px;
    font-size: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0px;
}
 
/*************
  S3 Button
*************/
input.s3-btn {
    background: #f1f1f1;
    border: none;
    width: 200px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
 
.s3-center {
    text-align: center;
}
 
 
.attribution {
    color: #fff;
    font-size: 11px;
    margin-top: 25px;
    text-align: center;
}
 
.attribution a {
    color: #fff;
}
 
.mains {
    background-image: white;
    font-weight: 400;
    padding: 60px 0px;
}
 
.faq {
    background-color: #fff;
    border-radius: 25px;
    padding: 50px 25px;
    margin: 150px 5% 5% 5%;
    min-width: 320px;
    max-width: 320px;
}
 
/*.faq__logo {*/
/*    background: url('https://bobmatyas.github.io/fm-faq-accordion/images/bg-pattern-mobile.svg') center bottom no-repeat;*/
/*    background-color: transparent;*/
/*    margin: 0 auto;*/
/*    max-width: 300px;*/
/*    padding: 0;*/
/*    margin-top: -157px;*/
/*}*/

.faq__logo {
    display: flex;
    align-items: center;
    background-image: url(https://bobmatyas.github.io/fm-faq-accordion/images/illustration-woman-online-desktop.svg), url(https://bobmatyas.github.io/fm-faq-accordion/images/bg-pattern-desktop.svg);
    background-position: -35px center, -571px -270px;
    background-size: 100%, 200%;
    height: 640px;
    /* min-width: 330px; */
    margin: 0;
    padding: 0;
    width: 492px;
    max-width: 600px;
    position: relative;
}
 
.faq__logo__image {
    margin-left: -13px;
    margin-bottom: 13px;
}
 
.faq__heading {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
}
 
.faq__detail {
    border-bottom: 1px solid lightgrey;
    margin: 10px 0 10px 0;
    padding: 5px 0 20px 0;
}
 
.faq__summary:hover,
.faq__summary:active {
    /* color: var(--orange); */
    cursor: pointer;
}
 
.faq__detail[open]>.faq__summary {
    font-weight: unset;
}
 
.faq__summary {
    list-style: none;
}
 
.faq__summary::-webkit-details-marker {
    display: none;
}
 
.faq__summary {
    display: flex;
    padding: 0;
    position: relative;
    text-align: left;
    justify-content: space-between;
    align-items: center;
}
 
 
.faq__summary:after {
    display: inline-block;
    content: url("https://bobmatyas.github.io/fm-faq-accordion/images/icon-arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right center;
    text-align: right;
    padding-bottom: 0px;
}
 
details[open] .faq__summary:after {
    display: inline-block;
    width: 18px;
    height: 10px;
    content: "";
    background-image: url("https://bobmatyas.github.io/fm-faq-accordion/images/icon-arrow-down.svg");
    background-repeat: no-repeat;
    background-position: center right;
    transform: scaleY(-1);
}
 
 
.faq__question {
    display: inline-block;
    margin: -9px 0;
    text-align: left;
    width: 90%;
    font-size: 14px;
}
 
.faq__question {
    display: inline-block;
    margin: 5px 0;
    text-align: left;
    width: 94%;
    font-size: 15px;
    font-weight: 600;
}
 
.faq__summary {
    color: var(--blue-dark);
    font-size: 1.4rem;
    font-weight: 600;
}
 
.faq__summary:focus {
    font-weight: bold;
    outline: none;
}
 
.faq__text {
    color: var(--blue-mid);
    font-size: var(--base-font-size);
    line-height: 1.6;
    margin: 10px 0 0 0;
}
 
.hidden-lg {
    display: block;
    /* height: 100%; */
    width: 100%;
}
 
.visible-lg {
    display: none;
}
 
.faq__heading {
    font-size: 30px;
    margin: 0 0px 20px 0px !important;
    padding-top: 12px;
}

.try-head
{
    padding-top: 60px;
    font-size: 31px;
    font-weight: 700;
    text-align: center;
}
 
.try-grid-conts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding-top: 30px;
    width: 1130px;
    margin: 0 auto;
}

.try-grid-1 img {
    border-radius: 16px;
    width: 100%;
}

.try-grid-1 h4 {
    font-size: 15px;
    font-weight: 600;
    padding-top: 10px;
}


@media (min-width: 900px) {
    .faq {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-width: 1200px;
    padding: 0;
    margin: 0px auto;
    box-shadow: 1px 2px 15px #367ec759;
}
 
    /* .faqs-hold {
        overflow: hidden;
 
    } */
 
    .faq__logo__holder {
        display: flex;
        align-items: center;
        height: 100%;
        justify-content: center;
    }
 
    .faq__holder {
        margin: 0 0px 0px 0px;
        padding: 0px 0;
        max-width: 700px;
        width: 600px;
        /* height: 580px;
        overflow: scroll; */
    }
 
.faq__logo {
    display: flex;
    align-items: center;
    background-image: url(https://bobmatyas.github.io/fm-faq-accordion/images/illustration-woman-online-desktop.svg), url(https://bobmatyas.github.io/fm-faq-accordion/images/bg-pattern-desktop.svg);
    background-position: -35px center, -571px -270px;
    background-size: 100%, 200%;
    height: 658px;
    margin: 0;
    padding: 0;
    width: 572px;
    max-width: 600px;
    position: relative;
    background-repeat: no-repeat;
}

 
.faq__heading {
    text-align: left;
    font-size: 2.25rem;
    font-weight: 600;
}
 
    .hidden-lg {
        display: none;
    }
 
    .visible-lg {
    display: block;
    position: absolute;
    margin-top: 142px;
    left: -90px;
}
 
    .faq__text {
        margin: 0px 0 8px 0;
        font-size: 13px;
    }
 
    .faq__detail {
    margin: 10px 40px 0 0 0 !important;
    padding: 0 20px 8px 0px;
}

}
 
/*************** 21st August********************/




@media screen and (max-width: 767px)
{
    .tabs 
    {
        height: 60px;
    }
    .grid-card-tab
 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.wrapper_tabcontent {
    background-color: white;
    margin-top: 0px;
    z-index: 0;
    position: relative;
    opacity: 1;
    padding: 40px 25px 60px 25px;
    overflow: hidden;
    transition: all 1s ease;
    top: 0;
}
.help-cont-box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 10px;
    margin-bottom: 15px;
}
.crd-grd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
    gap: 16px;
    margin: 40px 0px 40px 0px;
}
.icons-mvi {
    position: relative;
    width: 360px;
    height: 250px;
}

}