:root {
  --theme-blue: #0080ff;
  --theme-white: #ffffff;
  --theme-black: #000000;
}


body, * {
	font-family: 'Poppins', sans-serif;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mb-40 {
	margin-bottom: 40px;
}
.mb-50 {
	margin-bottom: 50px;
}
a {
	text-decoration: none;
	color: var(--theme-blue);
}
.j-c-c {
	justify-content: center;
}
img {
    max-width: 100%;
}
section#header {
    padding: 10px 0;
    display: flex;
    position: absolute;
    width: 100%;
}
.mobile-menu-toggle,
.header-mobile-menu {
    display: none;
}
section#header .logo {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 100px;
}

section#header .header-menu {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
}

section#header .header-menu a {
    margin: 0 10px;
}
section#header .header-menu a:last-child {
    margin: 0;
}

section#header .header-btns {
    display: flex;
}

.theme-btn {
    padding: 10px 50px;
    background: white;
    border-radius: 10px;
    border: 2px solid var(--theme-white);
    text-decoration: none;
    font-size: 18px;
    transition: background linear 0.3s;
    text-transform: uppercase;
}

.theme-btn.theme-btn-outline {
    background: transparent;
    color: var(--theme-white);
}

.theme-btn:hover {
    background: transparent;
    color: var(--theme-white);
    text-decoration: none;
    transition: background linear 0.3s;
}

.theme-btn.theme-btn-outline:hover {
    background: var(--theme-white);
    color: var(--theme-blue);
}
.theme-btn.theme-btn-blue {
    background: var(--theme-blue);
    color: var(--theme-white);
    border: 2px solid var(--theme-blue);
}

.theme-btn.theme-btn-blue:hover {
    background: transparent;
    color: var(--theme-blue);
    border: 2px solid var(--theme-blue);
}
section#hero {
    padding: 160px 0 50px 0;
    background: var(--theme-blue);
}
.hero-content {
    padding-top: 100px;
}
.hero-btns {
    display: flex;
    margin:20px 0;
}

.hero-btns a {
    margin-right: 20px;
}
h1.hero-title {
    font-weight: bold;
    color: var(--theme-white);
    font-size: 40px;
}

h3.hero-subtitle {
    font-size: 26px;
    color: var(--theme-white);
    font-weight: 400;
}
p.hero-tagline {
    color: var(--theme-white);
    font-size: 16px;
}
section#recent-files {
    padding: 100px 0;
}

.section-title h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

.section-title {
    display: flex;
    justify-content: center;
}
.recent-file-card {
    display: flex;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 40px rgb(0 0 0 / 8%);
    margin: 30px 0;
}

.file-icon {
    width: 80px;
}

.file-info {
    display: flex;
    flex-direction: column;
    width: calc(90% - 80px);
    justify-content: center;
    padding-left: 10px;
}

.file-action {
    width: 10%;
    display: flex;
    justify-content: flex-end;
}
a.file-title {
    font-size: 18px;
    color: var(--theme-blue);
    font-weight: 500;
    transition: opacity linear 0.3s;
}

span.file-desc {
    font-size: 14px;
    color: #333333;
}

a.file-title:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: opacity linear 0.3s;
}

span.file-author {
    font-size: 15px;
    font-weight: 500;
    color: var(--theme-black);
    font-style: italic;
    padding: 5px 20px;
    display: inline-block;
    position: relative;
}

span.file-author:after {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    background: url("../img/user-icon.png");
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
}
span.file-show-icon {
    height: 20px;
    display: flex;
    width: 20px;
    justify-content: end;
    background: url(../img/show-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}
.file-action a {
	display: flex;
    justify-content: flex-end;
    height: 30px;
    width: 30px;
    padding: 5px;
    border-radius: 5px;
    transition: all linear 0.2s;
}
section#whyQindari {
    padding-bottom: 100px;
}

.file-action a:hover {
	background: #f1f1f1;
}
.icon-box .icon {
    display: flex;
    justify-content: center;
    padding: 10px 0 30px;
}

.icon-box-heading {
    text-align: center;
}

.icon-box-heading h3 {
    font-size: 24px;
    font-weight: bold;
}

.icon-box-desc {
    text-align: center;
}
.icon-box-desc.short-desc {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.read-more-link {
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.read-more-link a:hover {
	text-decoration: none;
	opacity: 0.7;
	cursor: pointer;
}

section#google-section {
    padding: 100px 0;
    background: #f7f7f7;
}

.cta-section {
    padding-top: 50px;
}

.section-content.short-desc {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cta-section h3.cta-heading {
    font-size: 28px;
    font-weight: bold;
}

.cta-section p {
    font-size: 22px;
    font-weight: 400;
}

.cta-section p span {
    display: block;
    font-weight: 500;
    font-size: 24px;
}
.cta-btn-wrapper {
    display: flex;
}
section#pricing {
    padding: 100px 0;
}

.pricing-content {
    padding-top: 70px;
}

.pricing-content h2 {
    font-size: 32px;
    font-weight: bold;
}

.pricing-content h2 span {
    font-size: 45px;
    color: var(--theme-blue);
}

.pricing-content p {
    font-size: 18px;
    line-height: 32px;
}
section#survey {
    padding: 100px 0;
    background: var(--theme-black);
}

section#survey h2 {
    color: var(--theme-white);
    font-size: 32px;
    line-height: 50px;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
}

#mainFooter .footer-menu ul {
    display: flex;
    padding: 0;
    list-style: none;
    justify-content: flex-end;
    margin-bottom: 0;
}

#mainFooter .footer-menu ul a {
    color: white;
    text-transform: uppercase;
    transition: all linear 0.3s;
}

#mainFooter .footer-menu ul li {
    margin: 10px 14px;
}

#mainFooter .footer-menu ul a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: all linear 0.3s;
}
.copyright-text {
    display: flex;
    justify-content: center;
    color: var(--theme-white);
    font-size: 14px;
}
footer#mainFooter hr {
    border-color: var(--theme-white);
    opacity: 0.4;
}

footer#mainFooter {
    padding: 50px 0 20px;
    background: var(--theme-blue);
}
.footer-logo {
    max-width: 100px;
}


/* Profile Styling */

section#header.header-inner {
    position: relative;
    background: var(--theme-blue);
}
.header-inner-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-username p {
    margin: 0;
    color: white;
}

.header-username p span {
    font-weight: bold;
}

.header-search input[type="text"] {
    height: 45px;
    width: 100%;
    border: 2px solid white;
    border-radius: 50px;
    background: transparent;
}

.header-search, .header-search form {
    display: block;
    width: 70%;
}

.header-search form {
    width: 100%;
    display: block;
    position: relative;
}
.header-search form input[type="submit"] {
    position: absolute;
    right: 10px;
    top: 50%;
    background: url(../img/search-icon.png);
    border: none;
    height: 30px;
    width: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}
.dashboard-menu ul {
    padding: 0;
    list-style: none;
    display: flex;
    border-bottom: 2px solid #f2f2f2;
    margin-top: 20px;
}

.dashboard-menu ul li a {
    padding: 10px 20px 10px;
    display: block;
    color: var(--theme-black);
    transition: all linear 0.3s;
    position: relative;
}

.dashboard-menu ul li a:hover {
    text-decoration: none;
    background: #f1f1f1;
    transition: all linear 0.3s;
    border-radius: 4px 4px 0 0;
}
.dashboard-menu ul li.active a:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--theme-blue);
    content: "";
}
.dashboard-heading h2 {
    font-size: 24px;
    font-weight: 500;
}
form.profile-form {
    display: flex;
    flex-wrap: wrap;
}

form.profile-form .form-group {
    width: calc(100% - 30px);
    margin-right: 30px;
    margin-bottom: 0;
    margin-top: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

form.profile-form .form-group input {
    height: 50px;
    border-radius: 5px;
    border: 2px solid #b7b7b7;
}
form.profile-form .form-group textarea {
    border-radius: 5px;
    border: 2px solid #b7b7b7;
}
form.profile-form {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.btn {
    padding: 10px 50px;
    border-radius: 10px;
    font-size: 18px;
}
.btn-outline-primary {
    border-width: 2px;
}
.forgot-password-link {
    display: flex;
    justify-content: center;
    padding: 0 0 50px;
}

.forgot-password-link a {
    color: var(--theme-black);
}

.forgot-password-link a:hover {
    opacity: 0.6;
    text-decoration: none;
    transition: all linear 0.3s;
}
