@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

:root {
    --primaryColor: #4A1B99;
    --lightBg: #e7e1fe;
    --secondaryColor: #FF3E3A;
    --blackColor: #111;
    --textColor: #747474;
    --whiteColor: #fff;
    --smPadding: 2rem 1.5rem;
    --lgPadding: 4rem 0
}


/* start font family */
@font-face {
    font-family: 'righteousregular';
    src: url('../font/righteous-regular-webfont.woff2') format('woff2'),
        url('../font/righteous-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'gilroyLight';
    src: url('../font/Gilroy-Light.eot');
    src: url('../font/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
        url('../font/Gilroy-Light.otf') format('otf'),
        url('../font/Gilroy-Light.svg#Gilroy-Light') format('svg'),
        url('../font/Gilroy-Light.ttf') format('truetype'),
        url('../font/Gilroy-Light.woff') format('woff'),
        url('../font/Gilroy-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'gilroyRegular';
    src: url('../font/Gilroy-Regular.eot');
    src: url('../font/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/Gilroy-Regular.otf') format('otf'),
        url('../font/Gilroy-Regular.svg#Gilroy-Regular') format('svg'),
        url('../font/Gilroy-Regular.woff') format('woff'),
        url('../font/Gilroy-Regular.ttf') format('truetype'),
        url('../font/Gilroy-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'gilroyMedium';
    src: url('../font/Gilroy-Medium.eot');
    src: url('../font/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
        url('../font/Gilroy-Medium.otf') format('otf'),
        url('../font/Gilroy-Medium.svg#Gilroy-Medium') format('svg'),
        url('../font/Gilroy-Medium.ttf') format('truetype'),
        url('../font/Gilroy-Medium.woff') format('woff'),
        url('../font/Gilroy-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'gilroyBold';
    src: url('../font/Gilroy-Bold.eot');
    src: url('../font/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../font/Gilroy-Bold.otf') format('otf'),
        url('../font/Gilroy-Bold.svg#Gilroy-Bold') format('svg'),
        url('../font/Gilroy-Bold.ttf') format('truetype'),
        url('../font/Gilroy-Bold.woff') format('woff'),
        url('../font/Gilroy-Bold.woff2') format('woff2');
}

body,
p,
a {
    font-family: gilroyMedium;
}

h1,
h2,
h3,
h4,
h5,
header .logo-container .container .menu-links ul .links-li .link,
header .login {
    font-family: righteousregular;
}

/* end font family */

html {
    scroll-behavior: smooth;
}

/* scroll */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: var(--whiteColor);
}

::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primaryColor);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* start common css section */

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    line-height: 1.4;
    margin-bottom: 0;
}

.font-righteous {
    font-family: righteousregular;
}

.text-primary {
    color: var(--primaryColor) !important;
}

.text-color {
    color: var(--textColor);
}

section,
footer {
    padding: var(--smPadding);
}

.btn-primary {
    background-color: var(--secondaryColor) !important;
    border: 0;
    font-family: "gilroyBold";
    border-radius: 3px 21px 3px 21px;
    padding: .5rem 1rem;
}

.cursor-pointer {
    cursor: pointer;
}

.carousel-indicators {
    bottom: -45px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primaryColor);
}

.w-fit {
    width: fit-content;
}

.ripple {
    position: absolute;
    text-decoration: none;
    color: var(--primaryColor);
    width: 60px;
    height: 60px;
    inset: 0;
    background-color: #e9e9e9;
    margin: auto;
    border-radius: 50%;
    -webkit-animation: ripple 3s linear infinite;
    animation: ripple 3s linear infinite;

}

a.play-btn {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--primaryColor);
    border-radius: 50%;
    line-height: 64px;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
}


/* end common css section */

/* start keyframe */
@keyframes ripple {
    0% {
        /* -webkit-box-shadow: 0 0 0 0 #bd8ed24d, 0 0 0 10px #bd8ed24d, 0 0 0 30px #bd8ed24d, 0 0 0 60px #bd8ed24d; */
        box-shadow: 0 0 0 0 #f0f0f04d, 0 0 0 10px #f0f0f04d, 0 0 0 30px #f0f0f04d;
    }

    100% {
        /* -webkit-box-shadow: 0 0 0 10px #bd8ed24d, 0 0 0 30px #bd8ed24d, 0 0 0 60px #bd8ed24d, 0 0 0 90px #bd8ed200; */
        box-shadow: 0 0 0 10px #f0f0f04d, 0 0 0 30px #f0f0f04d;
    }
}

/* end keyframe */

/* start scroll-top-wrapper */

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: var(--primaryColor);
    color: #eeeeee;
    width: 50px;
    height: 48px;
    line-height: 48px;
    right: 30px;
    bottom: 30px;
    padding-top: 2px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.scroll-top-wrapper:hover {
    background-color: var(--secondaryColor);
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1.0;
}

.scroll-top-wrapper i.fa {
    line-height: inherit;
}

/* end scroll-top-wrapper */


/* start header css */

.banner {
    background-image: url('../img/banner-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

header#topbar-menu {
    box-shadow: 0px 10px 10px 0px #ddd;
}

header .logo-container .logo {
    max-width: 150px;
}

header .logo-container .menu {
    border: 1px solid var(--secondaryColor);
    padding: 4px 0 0 10px;
    border-radius: 60px;
    width: 40px;
    height: 40px;
    font-size: 21px;
}

header .logo-container .menu-links {
    width: 0;
    transition: all 0.5s;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 15;
    background-color: var(--lightBg);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

header .logo-container .menu-links .menu-toggle {
    color: #F60707;
}

header .logo-container ul .links-li {
    padding: 16px 0;
    border-bottom: 1px dotted var(--secondaryColor);
    text-transform: uppercase;
}

header .logo-container ul .links-li:first-child {
    padding-top: 0;
}

header .logo-container ul .links-li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

header .call .icon {
    background: var(--primaryColor);
    width: 30px;
    height: 30px;
    display: flex;
    color: var(--whiteColor);
    border-radius: 75px;
    justify-content: center;
    align-items: center;
}

header .logo-container .menu.active {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

header .logo-container .menu.active+.menu-links {
    padding: 15px;
    width: 100%;
}

.logo-container .menu.active+.menu-links .menu-toggle {
    display: flex;
    font-size: 30px;
}

header .logo-container .login-icon {
    width: 40px;
    height: 40px;
    border: 1px solid black;
    border-radius: 50%;
    padding: 7px 7px 11px 12px;
}

header .sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    box-shadow: 0 0 10px grey;
    transition: 1s;
    background: var(--lightBg);
    border-bottom: 1px solid var(--primaryColor);
    padding: 1rem 1.5rem;
}

header .sticky-up {
    top: -100px;
}

header .sidebar-btn {
    position: relative;
    height: 55px;
    width: 55px;
    border: 2px solid var(--secondaryColor);
    border-radius: 50%;
    line-height: 54px;
    padding-top: 18px;
    cursor: pointer;
}

header .sidebar-btn .line {
    display: block;
    height: 2px;
    width: 21px;
    background: var(--secondaryColor);
    margin: auto;
    transition: .4s;
}

header .sidebar-btn .line:not(:last-child) {
    margin-bottom: 4px;
}

header .sidebar-btn:hover .line:nth-child(2) {
    width: 10px;
}

header .lang-switch .form-select {
    border: 0;
    background-color: transparent;
    font-weight: 600;
    padding: 5px 30px 5px 5px;
    box-shadow: none;
}

header .follow-us li a {
    background-color: var(--primaryColor);
    width: 30px;
    height: 30px;
    color: var(--whiteColor);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .download-icon a {
    width: 130px;
}

/* end header css */


/* start features css */
.features .item {
    background-color: #F6F6F6;
    border-radius: 10px;
    height: 90%;
}

.features .item span {
    background-color: #FED78C;
    border-radius: 10px 0 0 0;
    width: 70px;
    padding: 13px;
}

/* start about-us css */
.about-us {
    background-color: var(--lightBg);
}

/* end about-us css */


/* start process css */
.process .process-point .number {
    display: flex;
    background-color: #D6CCF4;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.process .process-point .content {
    width: calc(100% - 75px);
}

.process .process-list::before {
    content: '';
    height: 85%;
    width: 0;
    position: absolute;
    left: 31px;
    top: 0;
    border: 1px dashed #000;
    z-index: -1;
    bottom: 0;
    margin: auto;
}

/* end process css */

/* start features css */
.feature-row {
    background: var(--whiteColor);
    box-shadow: 0 0px 40px #d1d1d1;
    padding: 2.5rem 1rem;
    border-radius: 20px;
}

.product-features .item img {
    width: 90px;
    height: 90px;
}

/* end features css */


/* start download css */
.download {
    background: url('../img/dowload-bg.png') no-repeat;
    background-size: cover;
    background-position: center;
}

.download-icon a {
    width: 150px;
}

/* end download css */


/* start products css */
.products {
    background-color: #7A56E5;
}

/* end products css */


/* start testimonial css */
.testimonial .review {
    background-color: var(--whiteColor);
    box-shadow: 0 0 50px silver;
    border-radius: 10px;
    padding: 2.5rem 3rem;
}

.testimonial .quote {
    width: 150px;
    height: 60px;
}

.testimonial .owl-nav {
    background-color: var(--primaryColor);
    display: flex !important;
    align-items: center;
    justify-content: space-evenly;
    width: 150px;
    height: 50px;
    border-radius: 10px;
    margin: 1rem auto 0;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    background: url('../img/nav-arrow.png') no-repeat;
    background-size: 100%;
    width: 25px;
    height: 20px;
}

.testimonial .owl-nav .owl-prev {
    transform: scaleX(-1);
}

/* end testimonial css */

/* start footer css */
footer {
    background-color: var(--lightBg);
}

footer .info-icon {
    background-color: var(--primaryColor);
    width: 40px;
    height: 40px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 21px;

}

footer .nav-link a {
    font-family: 'Righteousregular';
}

footer .follow-us a {
    border: 1px solid black;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    text-align: center;
    padding-top: 7px;
    padding-top: 3px;
    font-size: 21px;
}

.copyright {
    background-color: var(--primaryColor);
}

/* end footer css */


/* start contact us page */

/* .contact_field .form-control::placeholder {
    font-size: 13px;
    letter-spacing: 1px;
} */

/* .contact_info_sec h4 {
    letter-spacing: 1px;
    padding-bottom: 15px;
} */

/* .info_single {
    margin: 30px 0px;
} */

/* .info_single i {
    margin-right: 15px;
} */

/* .info_single span {
    font-size: 14px;
    letter-spacing: 1px;
} */

.socil_item_inner li {
    list-style: none;
}

/* .socil_item_inner {
    padding-bottom: 10px;
} */

.contact_inner {
    background-color: #fff;
    position: relative;
    box-shadow: 2px 6px 44px #cccc;
}

.right_contact_social_icon {
    background: linear-gradient(to top right, var(--primaryColor) -5%, #72629e 100%);
    padding: 10px;
    height: 100%;
}

.contact_info_sec {
    background-color: #2d2d2d;
    height: 300px;
    width: 100%;
    padding: 30px;
    color: var(--whiteColor);
}

.contact_field {
    padding: 15px;
}

.socil_item_inner li a {
    color: #fff;
    margin: 0px 11px;
    font-size: 14px;
}

.contact_field .form-control:focus {
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid var(--primaryColor);
}


.contact_field .form-control {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ccc;
}

/* end contact us page */


/* our plans css */

.single-pricing {
    background: #fff;
    padding: 40px 20px;
    border-radius: 5px;
    position: relative;
    z-index: 0;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px -10px rgba(0, 64, 128, .09);
    transition: 0.3s;
}

@media only screen and (max-width:480px) {
    .single-pricing {
        margin-bottom: 30px;
    }
}

.single-pricing:hover {
    box-shadow: 0px 60px 60px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transform: translate(0, -10px);
}

.price-label {
    color: #fff;
    background: var(--primaryColor);
    font-size: 16px;
    width: 100px;
    margin-bottom: 15px;
    display: block;
    -webkit-clip-path: polygon(100% 0%, 90% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
    clip-path: polygon(100% 0%, 90% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);
    margin-left: -20px;
    position: absolute;
}

.price-head h2 {
    font-weight: 600;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-size: 26px;
}

.price-head span {
    display: inline-block;
    background: var(--primaryColor);
    width: 6px;
    height: 6px;
    border-radius: 30px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.price {
    font-weight: 500;
    font-size: 50px;
    margin-bottom: 0px;
}

.single-pricing h5 {
    font-size: 14px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.single-pricing ul {
    list-style: none;
    margin-bottom: 20px;
    margin-top: 30px;
}

.single-pricing ul li {
    line-height: 35px;
}

.single-pricing a {
    background: none;
    border: 2px solid var(--primaryColor);
    border-radius: 5000px;
    color: var(--primaryColor);
    display: inline-block;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 45px;
    text-transform: capitalize;
    transition: all 0.3s ease 0s;
}

.single-pricing a:hover,
.single-pricing a:focus {
    background: var(--primaryColor);
    color: #fff;
    border: 2px solid var(--primaryColor);
    z-index: 5;
}

.single-pricing-white {
    background: linear-gradient(105deg, rgba(40, 15, 83, 1) 13%, rgba(78, 32, 154, 1) 66%);
}

.single-pricing-white.single-pricing a {
    border-color: var(--secondaryColor);
    color: var(--secondaryColor);
}

.single-pricing-white .price-head span {
    background: var(--secondaryColor)
}

/* end our plans css */

/* start strip section */
.strip {
    background-color: var(--primaryColor);
}

.strip .download-icon a {
    width: 150px;
}

/* end strip section */

/* start egale gallery css */

.eagle-gallery .owl-carousel.mini-slider .owl-item img {
    height: 150px !important;
    border-radius: 7px;
    object-fit: cover;
}

.eagle-gallery .eagle-open-gallery .eagle-item img {
    width: fit-content;
}

.eagle-gallery .eagle-view-medium-img img {
    width: 100%;
    object-fit: cover;
    height: 300px;
    border-radius: 10px;
}

/* end eagle gallery css */

/* info css start */
footer .info {
    width: calc(100% - 50px);
}
/* info css end */
