/*--------------------------------------------- CSS FOR INCLUDING FOR FONTS START ---------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
/*--------------------------------------------- CSS FOR INCLUDING FOR FONTS COMPLETE ---------------------------------------*/

/*--------------------------------------------- CSS FOR PRE-DEFINED SECTION START ---------------------------------------*/
*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    font-size: 18px;
}

:root {
    --defaut-light-background: #fff;
    --defaut-dark-background: #101840;
    --defaut-light-color: #fff;
    --defaut-dark-color: #101840;
    --defaut-light-thinklab-theme: #ec1a1f;
    --defaut-dark-thinklab-theme: #0d8a49;
    --defaut-font-family: "Manrope", sans-serif;
    --defaut-line-height: 1.2;
    --defaut-font-weight: normal;
    --defaut-font-style: normal;
}

body {
    margin: 0;
    height: auto;
    width: 100%;
    font-family: var(--defaut-font-family);
    line-height: var(--defaut-line-height);
    font-weight: var(--defaut-font-weight);
    color: var(--defaut-dark-color);
    background: #007cf80c;
    position: relative;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-weight: var(--defaut-font-weight);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: var(--defaut-line-height);
}

p {
    line-height: 1.5;
}

a,
a:hover {
    text-decoration: none;
    color: var(--defaut-dark-color);
}

ul,
ol {
    padding: 0;
    margin: 0;
}

ul li,
ol li {
    list-style: none;
}

ul li.active a,
ol li.active a {
    color: var(--defaut-dark-thinklab-theme);
    font-weight: 700;
}

img {
    height: auto;
    width: 100%;
    object-fit: cover;
}

i {
    font-weight: 100;
}

button {
    outline: none;
}

button:focus {
    outline: none;
}

iframe {
    height: auto;
    width: 100%;
}

table {
    height: auto;
    width: 100%;
    border-collapse: collapse;
}

table thead tr th {
    background: linear-gradient(to bottom, var(--defaut-light-background), #f2f2f2);
    border: 2px solid #00000010;
    padding: 15px 20px;
    font-size: 95%;
    font-weight: 700;
    color: #707070;
}

table tbody tr td {
    border: 2px solid #00000010;
    padding: 15px 20px;
    font-size: 85%;
}

form {
    height: auto;
    width: 100%;
}

form .form-group {
    height: auto;
    width: 100%;
    margin-bottom: 20px;
}

form .form-group h6 {
    font-size: 90%;
    text-align: center;
    margin: 30px 0 0;
    font-weight: 400;
    color: #5d5d5d;
}

form .form-group h6 a {
    color: var(--defaut-dark-theme);
    text-decoration: underline;
    font-weight: 600;
}

form .form-group.special-ip {
    padding: 35px 20px;
    border-radius: 5px;
    background: #f9f9f9;
    box-shadow: 5px 5px 0 0 #00000010;
    margin-bottom: 30px;
}

form .form-group.checkbox-ip {
    display: flex;
    align-items: center;
}

form .form-group.forget-password {
    text-align: right;
}

form .form-group.forget-password a {
    font-size: 95%;
    color: var(--defaut-dark-theme);
    font-weight: 600;
}

label {
    font-size: 90%;
    margin-bottom: 6px;
    font-weight: 500;
}

form .form-group.checkbox-ip label {
    margin-bottom: 0;
}

input,
select,
textarea {
    display: block;
    height: auto;
    width: 100%;
    border: 1px solid #0d8a496b;
    border-radius: 5px;
    padding: 10px 15px;
    backdrop-filter: blur(10px);
    color: var(--defaut-dark-color);
    font-size: 100%;
    margin: 0;
    box-shadow: 0 5px 10px 0 #0d8a4929;
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--defaut-dark-theme);
}

input:hover,
select:focus,
textarea:focus {
    border-color: var(--defaut-dark-theme);
}

input[type="checkbox"] {
    padding: 0;
    appearance: none;
    min-height: 20px;
    max-width: 20px;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

input[type="checkbox"]:hover {
    background: #ffffff70;
}

input[type="checkbox"]:checked {
    background: var(--defaut-light-theme);
}

input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--defaut-light-color);
    z-index: 2;
}

input[type=number] {
    appearance: none;
}

input::placeholder {
    color: #ccc;
}

a.pg-btn,
button.pg-submit-btn {
    font-size: 100%;
}

a.pg-btn {
    display: inline-block;
    background: var(--defaut-light-background);
    border-radius: 5px;
    padding: 12px 65px 12px 30px;
    color: var(--defaut-dark-color);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

a.pg-btn::after {
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 50%;
    background: #f2f2f28a;
    border-radius: 5px 0 0 5px;
    clip-path: polygon(0 0, 49% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

a.pg-btn i {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 50px;
    font-size: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-45deg, var(--defaut-dark-thinklab-theme), var(--defaut-light-thinklab-theme));
    color: var(--defaut-light-color);
    border-radius: 5px;
}

button.pg-submit-btn {
    height: auto;
    width: 100%;
    outline: none;
    text-align: center;
    background: var(--defaut-dark-thinklab-theme);
    border: 1px solid #ffffff80;
    border-radius: 10px;
    padding: 15px 0;
    color: var(--defaut-light-color);
    font-weight: 600;
}

hr.pg-hr {
    height: auto;
    width: 100%;
    min-height: 1px;
    background: var(--defaut-dark-background);
    margin: 20px 0;
}

hr.pg-hr.light {
    background: var(--defaut-light-background);
}

.logo {
    height: auto;
    width: 100%;
}

.logo a {
    display: block;
}

.hero {
    height: 100vh;
    width: 100%;
}

.pg-section-spacing {
    height: auto;
    width: 100%;
    padding: 30px 0;
}

.pg-section-spacing.top-spacing {
    padding: 30px 0 0;
}

.pg-section-spacing.bottom-spacing {
    padding: 0 0 30px;
}

.common-section {
    background: var(--defaut-light-background);
    border-radius: 40px;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 40px;
    z-index: -1;
}

.section-overlay {
    background: linear-gradient(60deg, var(--defaut-light-background) 40%, transparent 80%);
}

.section-overlay.themed-overlay {
    background: linear-gradient(230deg, #0929a8f7, #101840cf);
}

.section-overlay.themed-overlay.thinkray-themed {
    background: linear-gradient(130deg, #9f0d7fe3, #ff60ddd4);
}

.section-overlay.themed-overlay.thinkdigital-themed {
    background: linear-gradient(130deg, #02b30ed0, #24cf2faf);
}

.section-heading {
    height: auto;
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0 60px;
}

.section-heading.divided {
    max-width: 100%;
    margin: 0;
}

.section-heading h2 {
    font-size: 230%;
    font-weight: 700;
    margin: 30px 0;
}

.section-heading h2 span {
    color: var(--defaut-dark-thinklab-theme);
}

.section-heading.thinkray-themed h2 span {
    color: var(--defaut-dark-thinkray-theme);
}

.section-heading.thinkdigital-themed h2 span {
    color: var(--defaut-dark-thinkdigital-theme);
}

.section-heading p {
    font-size: 90%;
}

ul.pg-listing li {
    font-size: 85%;
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
    z-index: 1;
}

ul.pg-listing li::before {
    content: '✓';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--defaut-light-thinkdigital-theme);
    color: var(--defaut-light-color);
    border-radius: 50%;
    padding: 2px 5px;
    z-index: 2;
}

ul.pg-listing li:last-child {
    margin-bottom: 0;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social i {
    font-size: 100%;
    height: auto;
    width: 100%;
    min-height: 35px;
    max-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--defaut-light-color);
    border-radius: 50%;
    border: 1px solid var(--defaut-light-background);
}

.social a {
    font-size: 95%;
    color: var(--defaut-light-color);
    padding-left: 8px;
}

span.pg-chip {
    display: inline-block;
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

span.pg-chip {
    font-size: 90%;
    padding: 8px 25px;
    color: var(--defaut-dark-color);
    background: #007af80f;
    box-shadow: 0 10px 40px 0 #00000010;
    border: 1px solid #007cf898;
    position: relative;
    z-index: 1;
}

span.pg-chip.light {
    background: var(--defaut-light-background);
}

.basic-form {
    height: auto;
    width: 100%;
    padding: 50px 45px;
    background: var(--defaut-light-background);
    border-radius: 20px;
}

.basic-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.basic-form-head h4 {
    font-size: 200%;
    margin-bottom: 2px;
}

.basic-form-head p {
    font-size: 95%;
}

.basic-form-head .logo {
    max-width: 180px;
}

.form-copyright {
    height: auto;
    width: 100%;
    margin-top: 35px;
    text-align: center;
}

.form-copyright em {
    font-style: var(--defaut-font-style);
    font-size: 70%;
}

.form-copyright p a {
    font-size: 70%;
    font-weight: 600;
    text-decoration: underline;
    opacity: 0.8;
    padding: 0 15px;
}

.form-copyright a:first-child {
    padding-left: 0;
}

/*--------------------------------------------- CSS FOR PRE-DEFINED COMPLETE ---------------------------------------*/

/*--------------------------------------------- CSS FOR HEADER START ---------------------------------------*/
header.main-header {
    height: auto;
    width: 100%;
}

nav.nav {
    height: auto;
    width: 100%;
}

.top-header {
    width: 100%;
    padding: 6px 0;
    background: var(--defaut-light-thinklab-theme);
    color: var(--defaut-light-color);
    position: relative;
    z-index: 2;
}

.top-header::after {
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 50%;
    background: var(--defaut-dark-thinklab-theme);
    clip-path: polygon(0 1%, 100% 0, 92% 100%, 0 100%);
    z-index: 1;
}

.top-header-social {
    height: auto;
    width: 100%;
    position: relative;
    z-index: 3;
}

.top-header-news {
    height: auto;
    width: 100%;
    text-align: right;
}

.top-header-news h6 {
    font-size: 100%;
    font-weight: var(--defaut-font-weight);
    font-style: italic;
}

.top-header-news h6 span {
    font-weight: 600;
    font-style: var(--defaut-font-style);
}

/*--------------------------------------------- CSS FOR HEADER COMPLETE ---------------------------------------*/

/*--------------------------------------------- CSS FOR HERO SECTION START ---------------------------------------*/
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

/*--------------------------------------------- CSS FOR HERO SECTION COMPLETE ---------------------------------------*/

/*--------------------------------------------- CSS FOR LOGIN-HERO SECTION START ---------------------------------------*/
.login-hero {
    height: auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.login-hero .hero {
    height: auto;
}

.login-form {
    height: auto;
    width: 100%;
    max-width: 35%;
    border-radius: 20px;
    z-index: 2;
}

.login-form .basic-form {
    height: 95vh;
    padding: 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form .basic-form-head .logo {
    max-width: 50%;
    margin-bottom: 30px;
}

.login-hero-carousel {
    height: 95vh;
    width: 100%;
    max-width: 65%;
    background-size: 72%;
    background-position: left;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.login-hero-carousel-overlay {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}

.login-hero-man {
    position: absolute;
    bottom: 0;
    right: 10px;
    height: auto;
    width: 100%;
    max-width: 40%;
    z-index: 2;
}

.hero-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 6%;
    position: relative;
    z-index: 2;
}

.hero-feature-img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 28px;
}

.hero-feature-img img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-copy {
    height: auto;
    width: 100%;
}

.hero-copy h1 {
    margin: 0;
    font-size: 320%;
    line-height: 1.12;
    font-weight: 900;
    color: #172033;
    letter-spacing: -1px;
}

.hero-copy h1 span {
    display: block;
    color: #087b3f;
}

.hero-line {
    width: 100%;
    max-width: 310px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 18px 0;
}

.hero-line span,
.hero-line em {
    height: 1px;
    flex: 1;
    display: block;
    background: #e31e24;
}

.hero-line i {
    color: #e31e24;
    font-size: 17px;
    line-height: 1;
}

.hero-copy p {
    max-width: 390px;
    margin: 0;
    font-size: 100%;
    line-height: 1.55;
    font-weight: 500;
    color: #172033d7;
}

.hero-copy p strong {
    font-size: 130%;
    color: #e31e24;
    font-weight: 900;
}

.hero-trust-strip {
    width: 90%;
    position: absolute;
    bottom: 60px;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #ffffffde;
    border: 1px solid #0000000f;
    border-radius: 12px;
    box-shadow: 0 18px 45px #0f172a1a, inset 0 1px 0 #ffffffd9;
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.hero-trust-item {
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 18px;
    position: relative;
}

.hero-trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 22%;
    right: 0;
    width: 1px;
    height: 56%;
    background: #0f172a1a;
}

.hero-trust-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #007a3d14;
    color: #087b3f;
}

.hero-trust-icon i {
    font-size: 170%;
}

.hero-trust-icon i.fa.fa-user-md {
    font-size: 230%;
}

.hero-trust-icon img {
    height: auto;
    width: 100%;
    max-width: 50px;
}

.hero-trust-icon.red {
    background: rgba(227, 30, 36, 0.08);
    color: #e31e24;
}

.hero-trust-img {
    height: auto;
    width: 100%;
    max-width: 60%;
}

.hero-trust-content {
    min-width: 0;
}

.hero-trust-content h6 {
    margin: 0 0 4px;
    font-size: 90%;
    line-height: 1.3;
    font-weight: 700;
    color: #172033e1;
}

.hero-trust-content h6 span {
    font-size: 160%;
    color: #172033d2;
}

.hero-trust-content p {
    margin: 0;
    font-size: 75%;
    line-height: 1.4;
    font-weight: 400;
    color: #172033d7;
}

/*--------------------------------------------- CSS FOR LOGIN-HERO SECTION COMPLETE ---------------------------------------*/

/*--------------------------------------------- CSS FOR OWL-CAROUSEL START ---------------------------------------*/
.owl-carousel.carousel-masker {
    position: relative;
    z-index: 1;
}

.owl-carousel.carousel-masker::before,
.owl-carousel.carousel-masker::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 100px;
    z-index: 2;
}

.owl-carousel.carousel-masker::before {
    left: 0;
    background: linear-gradient(to right, var(--defaut-light-background), transparent);
}

.owl-carousel.carousel-masker::after {
    right: 0;
    background: linear-gradient(to left, var(--defaut-light-background), transparent);
}

.owl-dots {
    text-align: center;
    margin: 35px 0 0;
}

.owl-dot span {
    height: 8px;
    width: 20px;
    background: #f2f2f2;
    box-shadow: 0 0 2px 0 #00000010;
    display: block;
    border-radius: 20px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
}

.owl-dot.active span {
    background: linear-gradient(-45deg, var(--defaut-light-thinklab-theme), var(--defaut-dark-thinklab-theme));
    width: 40px;
    border-radius: 20px;
}

.login-hero .login-hero-carousel .owl-carousel .owl-item {
    transition: opacity 0.8s ease-in-out;
}

.login-hero .login-hero-carousel .owl-carousel .owl-item:not(.active) {
    opacity: 0;
}

.login-hero .login-hero-carousel .carousel-progress {
    height: 6px;
    width: 100%;
    max-width: 30%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    overflow: hidden;
}

.carousel-progress {
    height: 4px;
    background: #ddd;
    border-radius: 50px;
    overflow: hidden;
    margin: 16px 0;
}

.carousel-progress .progress-bar {
    height: 100%;
    width: 0;
    border-radius: 50px;
    background: linear-gradient(to right, var(--defaut-dark-thinklab-theme), var(--defaut-light-thinklab-theme));
}

/*--------------------------------------------- CSS FOR OWL-CAROUSEL COMPLETE ---------------------------------------*/

/*--------------------------------------------- CSS FOR MARQUEE START ---------------------------------------*/
.marquee {
    height: auto;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    max-width: 30px;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--defaut-light-thinklab-theme), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--defaut-light-thinklab-theme), transparent);
}

header.main-header .top-header-news .marquee {
    margin: 0 auto;
    max-width: 85%;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marqueeScroll 10s linear infinite;
    gap: 25px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

header.main-header .top-header-news .marquee-content span {
    font-size: 95%;
    font-weight: var(--defaut-font-weight);
}

header.main-header .top-header-news .marquee-content span em {
    font-weight: 600;
}

/*--------------------------------------------- CSS FOR MARQUEE COMPLETE ---------------------------------------*/

/*--------------------------------------------- CSS FOR PASSWORD-ICON START ---------------------------------------*/
.password-input {
    position: relative;
    z-index: 1;
}

.password-input .pass-eye-icon {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 110%;
    color: #ccc;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease-in-out;
    z-index: 2;
}

.password-input .pass-eye-icon:hover {
    color: var(--defaut-dark-color);
}
/*--------------------------------------------- CSS FOR PASSWORD-ICON COMPLETE ---------------------------------------*/