@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --bs-primary: #12263e;
    --bs-secondary: #ff6600;
}

html {
    overflow-x: hidden;
}

html body {
    overflow-x: hidden;
}

.btnall {
    background-color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
    color: #fff;
    overflow: hidden;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 12px 15px;
    display: block;
    text-align: center;
    font-weight: 700;
    box-shadow: 1px 1px 3px 1px rgb(0 0 0 / 33%);
    border-radius: 4px;
    transition: 0.2s ease-in-out;
}

.btnall:hover {
    background-color: var(--bs-primary);
    transition: 0.2s;
}

.container {
    padding: 0 15px;
    width: 975px;
    margin: 0 auto;
}

body a {
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

ul li,
ol li {
    margin: 0;
}

img {
    max-width: 100%;
}

body {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    line-height: 1.64em;
    color: #000;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Domine", serif;
    font-weight: bold;
    margin: 1rem 0;
    line-height: 1.3;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 19px;
}

h6 {
    font-size: 18px;
}

p {
    margin-bottom: 1.5rem;
}

/* ----------------Header ---------------- */
.main-header {
    background: #0d1d30;
    padding: 25px 0;
    border-bottom: 2px solid #ff6600;
}

.main-header .inner-header img {
    width: 250px;
}

.main-header .inner-header a {
    font-family: "Domine", serif;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
}

.main-header .inner-header a:hover {
    color: #ff6600;
}

.main-header .inner-header a svg {
    position: relative;
    bottom: 2px;
    right: 5px;
    color: #fff;
    height: 30px;
    width: 20px;
    transition: 0.2s ease-in-out;
}

.main-header .inner-header a:hover svg {
    color: #ff6600;
}

/* ----------- Banner Section ------------- */
.banner-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 70px 0 30px;
}

.banner-section .inner-banner h1 {
    margin: 0 0 10px;
    color: #fff;
    text-align: center;
}

.banner-section .inner-banner p {
    text-align: center;
    color: #fff;
    font-size: 26px;
}
.banner-section .inner-banner .banner-box{
    border: 1px solid #fff;
    border-radius: 10px;
    background: rgb(13, 29, 48, 0.5);
    padding: 30px 15px 15px;
    margin: 70px auto 0;
}
.banner-section .inner-banner .banner-box p{
    font-size: 20px;
}

/* -------------Content sec ------------- */
.first-content-sec {
    padding: 30px 0;
    background-color: #12263e;
}

.first-content-sec p {
    color: #fff;
}

.second-content-sec {
    padding: 30px 0 15px;
}

.second-content-sec h2{
    font-size: 50px;
    text-align: center;
    color: #12263e;
    margin-bottom: 0;
}
.second-content-sec hr {
    color: #12263e;
    opacity: 1;
    margin-bottom: 25px;
}

select.form-select {
    width: 123px;
    border: none;
    color: #000;
    background-color: #dcecff;
    font-weight: 500;
    margin-left: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6H1.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2rem;
}

select.form-select:focus {
    box-shadow: none;
}
.second-content-sec .right-second-sec{
    background-color: #dcecff;
    border-radius: 10px;
    padding: 10px;
}
.second-content-sec .right-second-sec p{
   font-weight: 700;
   margin: 0;
   padding-left: 15px;
}
.second-content-sec .right-second-sec ul{
   margin: 0;
}
.second-content-sec .right-second-sec ul li{
   font-size: 16px;
   line-height: 1.5;
}

.task-table {
    width: 100%;
    overflow: hidden;
    border: 1px solid #000;
    border-spacing: 0;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.task-table thead th {
    background-color: #0f233d;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    vertical-align: middle;
    padding: 5px 12px;
    line-height: 1.5;
    border-right: 1px solid #fff;
}

.task-table tbody td {
    background-color: #dcecff;
    text-align: center;
    vertical-align: middle;
    padding: 0px;
    border: 1px solid #97beed;
}

.task-table tbody tr:first-child td {
    font-style: italic;
}

.task-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 0px;
}

.task-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0px;
}

.task-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #0f233d;
    white-space: normal;
    padding-left: 15px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.task-table input[type="number"] {
    width: 100%;
    padding: 4px 6px;
    text-align: center;
    border: none;
    border-radius: 4px;
    background-color: #dcecff;
}

input[type="number"]:focus {
    outline: none;
}

input[type=text]::-webkit-inner-spin-button,
input[type=text]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=text] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.task-table input[type="text"] {
    width: 100%;
    padding: 4px 6px;
    text-align: center;
    border: none;
    border-radius: 4px;
    background-color: #dcecff;
}

.task-table input[type="number"],
.task-table input[type="text"] {
    width: 100%;
    padding: 6px 8px;
    text-align: center;
    border: none;
    border-radius: 4px;
    background-color: #dcecff;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-table input::placeholder {
    font-size: 12px;
    color: #304f74;
    white-space: normal;
}


input[type="text"]:focus {
    outline: none;
}

.task-table th:nth-child(1),
.task-table td:nth-child(1) {
    width: 30%;
}

.task-table th:nth-child(2),
.task-table td:nth-child(2) {
    width: 15%;
}

.task-table th:nth-child(3),
.task-table td:nth-child(3) {
    width: 15%;
}

.task-table th:nth-child(4),
.task-table td:nth-child(4) {
    width: 15%;
}

.task-table th:nth-child(5),
.task-table td:nth-child(5) {
    width: 10%;
}

.total-view {
    margin-top: 30px;
}

.total-view hr {
    margin: 30px 0 15px;
    border-color: #a8d0ff;
    opacity: 1;
}

.total-view ul {
    list-style: none;
    padding-left: 25px;
}

.total-view ul li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 10px;
    color: #12263e;
    font-weight: 700;
    font-size: 24px;
}

.total-view li::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 17px;
    transform: translateY(-50%);
    width: 18px;
    height: 8px;
    background-image: url('../images/orange-arrow.png');
    background-size: cover;
}

.total-view input[type="number"] {
    padding: 4px 6px;
    border: none;
}

.total-view input[type="text"] {
    padding: 4px 6px;
    border: none;
}

.value-of-your-time {
    width: 54%;
    overflow: hidden;
    border: 1px solid #000;
    border-spacing: 0;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.value-of-your-time tbody td {
    background-color: #dcecff;
    text-align: center;
    vertical-align: middle;
    padding: 0px;
    border: 1px solid #97beed;
}

.value-of-your-time input[type="number"] {
    width: 100%;
    padding: 4px 6px;
    text-align: center;
    border: none;
    border-radius: 4px;
    background-color: #dcecff;
}

.value-of-your-time input[type="text"] {
    width: 100%;
    padding: 4px 6px;
    text-align: center;
    border: none;
    border-radius: 4px;
    background-color: #dcecff;
}

.value-of-your-time td:first-child {
    text-align: left;
    font-weight: 500;
    color: #0f233d;
    white-space: normal;
    padding-left: 10px;
}

.value-of-your-time td:nth-child(1) {
    width: 30%;
}

.value-of-your-time td:nth-child(2) {
    width: 15%;
}

.value-of-your-time ul {
    list-style: none;
    padding-left: 25px;
    margin: 0;
}

.value-of-your-time ul li {
    position: relative;
    margin-bottom: 0;
    font-size: 18px;
}

.value-of-your-time li::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 15px;
    transform: translateY(-50%);
    width: 18px;
    height: 8px;
    background-image: url('../images/orange-arrow.png');
    background-size: cover;
}

.third-content-sec hr {
    margin: 30px 0;
    border-color: #a8d0ff;
    opacity: 1;
}

.compare-options-table {
    width: 54%;
    overflow: hidden;
    border: 1px solid #000;
    border-spacing: 0;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.compare-options-table thead th {
    background-color: #0f233d;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    vertical-align: middle;
    padding: 15px 12px;
    line-height: 1.5;
    border-right: 1px solid #fff;
}

.compare-options-table tbody td {
    background-color: #dcecff;
    text-align: center;
    vertical-align: middle;
    padding: 0px;
    border: 1px solid #97beed;
}

.compare-options-table tbody tr:first-child td {
    font-style: italic;
}

.compare-options-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 0px;
}

.compare-options-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0px;
}

.compare-options-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #0f233d;
    white-space: normal;
    padding-left: 15px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.compare-options-table input[type="number"] {
    width: 100%;
    padding: 4px 6px;
    text-align: center;
    border: none;
    border-radius: 4px;
    background-color: #dcecff;
}

input[type=text]::-webkit-inner-spin-button,
input[type=text]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.compare-options-table input[type="text"] {
    width: 100%;
    padding: 4px 6px;
    text-align: center;
    border: none;
    border-radius: 4px;
    background-color: #dcecff;
}

.compare-options-table th:nth-child(1),
.compare-options-table td:nth-child(1) {
    width: 30%;
}

.compare-options-table th:nth-child(2),
.compare-options-table td:nth-child(2) {
    width: 15%;
}

.compare-options-table th:nth-child(3),
.compare-options-table td:nth-child(3) {
    width: 15%;
}

.compare-options-table th:nth-child(4),
.compare-options-table td:nth-child(4) {
    width: 15%;
}

.compare-options-table th:nth-child(5),
.compare-options-table td:nth-child(5) {
    width: 10%;
}

.fourth-content-sec hr {
    margin: 30px 0;
    border-color: #a8d0ff;
    opacity: 1;
}

.clendly-box{
    background-color: #12263e;
    color: #fff;
    text-align: center;
    padding: 30px 30px 40px 30px;
    border-radius: 10px;
}
.clendly-box h2{
    font-size: 40px;
    margin: 10px 0 20px;
}
.clendly-box a{
    width: 529px;
    margin: 0 auto;
    display: block;
    font-size: 24px;
    border-radius: 10px;
}
.clendly-box p{
    margin: 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.sixth-content-sec {
    padding-bottom: 60px;
}

.sixth-content-sec h2 {
    color: #12263e;
    border-radius: 10px;
}

/* --------------- Footer ----------------- */
.currency-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 100%;
}

.currency-wrap .currency-sign {
    font-weight: 700;
    color: #12263e;
    line-height: 1;
}

.currency-wrap.no-value .currency-sign {
    display: none;
}

.currency-wrap .currency-value {
    display: inline-block;
    min-width: 0;
    text-align: left;
}

.numeric-display {
    display: inline-block;
    width: 100%;
    padding: 4px 6px;
    text-align: center;
    background-color: #dcecff;
    border-radius: 4px;
    font-weight: 500;
    color: #0f233d;
}

.currency-input {
    width: 100%;
    padding: 4px 6px;
    text-align: left;
    border: none;
    border-radius: 4px;
    background-color: #dcecff;
    font-weight: 500;
    color: #0f233d;
}

.currency-input:focus {
    outline: none;
}

.footer {
    background: #0e0e0e;
    padding: 25px 0;
    color: #fff;
}

.footer p {
    margin: 0;
    padding: 0;
    text-align: center;
}

.clendly-sett .modal-header .btn-close{
    position: absolute;
    right: 15px;
    top: 23px;
}
.modal-header {
    justify-content: center;
}