@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: 1030px;
    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: 31px;
}

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: 85px 0;
}

.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;
}

/* -------------Content sec ------------- */
.first-content-sec{
    background-color: #0e1d30;
    padding: 30px 0;
    text-align: center;
    color: #fff;
}
.first-content-sec h2{
    color: #fff;
    text-align: center;
    font-size: 35px;
}
.first-content-sec iframe{
    width: 100%;
    height: 665px;
}

.first-content-sec p{
    margin-top: 25px;
}
.first-content-sec p a{
    color: #ff6600;
    text-decoration: underline;
}
.first-content-sec p a:hover{
    color: #fff;
}
.calendly-cls{
    position: relative;
    min-width: 320px;
    height: 645px;
    margin-top: -35px;
}
.second-content-sec{
    padding: 60px 0;
}
.second-content-sec ul li::marker{
    color: #ff6600;
}
.testimonials-box{
    background-color: #12263f;
    text-align: center;
    padding: 30px 90px;
    border-radius: 5px;
}
.testimonials-box h2{
   color: #fff;
   font-size: 35px;
}
.testimonials-box p{
   color: #fff;
}
.testimonials-box p span{
   color: #ff6600;
}
.footer {
    background: #0e0e0e;
    padding: 25px 0;
    color: #fff;
}

.footer p {
    margin: 0;
    padding: 0;
    text-align: center;
}

/* ---------------Model----------------- */
.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
    border: 1px solid transparent;
    border-radius: 4px;
    padding-left: 10px;
    font-size: 14px;
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
    border: 1px solid transparent;
    border-radius: 4px;
    padding-left: 10px;
    font-size: 14px;
}

::placeholder {
    color: #000;
}

textarea:focus,
input:focus,
textarea:active,
input:active,
select:focus,
select:active {
    outline: none;
}

.model-setting .modal-content {
    background: #f3f3f3;
}

.model-setting .form_box {
    width: 100%;
    margin-bottom: 10px;
    padding-left: 15px;
    height: 40px;
    border: 1px solid #c0c0c0;
    border-radius: 5px;
    font-size: 14px;
}

.form_btn {
    margin: 0 auto;
    display: block;
    padding: 9px 0;
    width: 270px;
    border: none;
    background-color: var(--bs-secondary);
    color: #fff;
    font-size: 17px;
    text-transform: capitalize;
    transition: 0.2s ease-in-out;
    border-radius: 5px;
}
.form_btn:hover {
    background-color: var(--bs-primary);
    transition: 0.2s ease-in-out;
    color: #fff;
}

.model-setting .modal-header .btn-close {
    position: absolute;
    right: 15px;
    top: 14px;
}

@keyframes onAutoFillStart {}
input:-webkit-autofill {
    animation-name: onAutoFillStart;
    animation-duration: 0.1s;
}
