/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
    font-family: "Outfit", serif;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #FFFFFF;
    z-index: 10000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.page-loader .water-drop {
    height: 80px;
    width: 80px;
    border: 7px solid #1228E1;
    transform: rotate(45deg);
    border-radius: 0 50% 50% 50%;
    position: relative;
    animation: move 0.5s linear infinite alternate-reverse;
}
.page-loader .water-drop::before {
    content: "";
    position: absolute;
    height: 55%;
    width: 55%;
    border-radius: 50%;
    border: 7px solid transparent;
    border-top-color: #1228E1;
    border-bottom-color: #1228E1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 1s linear infinite;
}
@keyframes rotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes move {
    to {
        transform: translateY(15px) rotate(45deg);
    }
}
.page-loader p {
    font-size: 40px;
    font-weight: 700;
    color: #FF2424;
    font-family: "Outfit", serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-top: 20px;
}
/*-----------------------[ 3.Section One CSS ]------------------------*/
.Main-section {
    background-image: linear-gradient(rgba(18, 40, 225, 0.8) 0%, rgba(18, 40, 225, 0.8) 100%), url('../images/main-bg.jpg') !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    z-index: 5;
}
.header-logo-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}
.color_darkblue {
    padding: 30px 0 10px 0;
    font-size: 48px;
    line-height: normal;
    font-weight: 700;
    color: #FFF;
    text-align: center;
}
.color_darkblue span {
    color: #FF2424;
}
.provide {
    text-align: center;
    font-size: 20px;
    line-height: 35px;
    font-weight: 400;
    color: #FFF;
    padding-bottom: 30px;
}
.LTR-img-RTL-img {
    max-width: 100%;
    border: 2px solid #1228E1;
    border-radius: 5px;
}
.text-ltr-rtl {
    font-size: 25px;
    color: #FFF;
    line-height: 35px;
    font-weight: 500;
    text-align: center;
    padding: 20px 0;
    text-transform: uppercase;
}
.buyNow-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-main {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding: 18px 30px;
    background: #FF2424;
    border-radius: 30px;
    display: inline-block;
    margin: 10px 0 30px;
    transition: all 0.3s ease-in-out;
}
.button-main:hover {
    border-radius: 30px 0 30px 30px;
}
.copyright-main {
    padding: 15px 0;
    background: var(--4, #222);
    position: fixed;
    bottom: 0;
    width: 100%;
}
.rights-reserved h2,
.rights-reserved a {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}
.inner-sub {
    height: 100%;
    overflow: auto;
    padding-bottom: 60px;
}
