/*-----------------------------------------------------------------------------------*/
/* FONTS 
/*-----------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/*-----------------------------------------------------------------------------------*/
/* VARIABLES
/*-----------------------------------------------------------------------------------*/
:root {
    --primary: #6CA4CC;
    --secondary: #D44F74;
    --default: #434242;
}

/*-----------------------------------------------------------------------------------*/
/* RESET CSS 
/*-----------------------------------------------------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
.menu,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
input[type=button],
button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: 'Poppins', sans-serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    font-weight: 400;
}

body {
    position: relative;
    font-weight: 400;
    width: 100%;
    min-height: 100%;
    color: var(--default);
    background: #fff;
    font-size: 18px;
    direction: ltr;
    overflow-x: hidden;

}

body.home {
    background-image: url(../images/bg.png);
    background-position: top -50px center;
    background-repeat: no-repeat;
    background-size: auto;
}

body.home::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/btm-bg.png);
    background-size: auto;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: -1;
}

html {
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

a {
    outline: none;
    text-decoration: none;
    display: inline-block;
    color: var(--default);
    transition: all 0.3s ease;
    font-family: inherit;
}

select,
button,
input {
    outline: none;
}

p {
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 32px;
}

h3 {
    font-size: 26px;
    font-weight: 500;
}

h4 {
    font-size: 26px;
    font-weight: 500;
}

b {
    font-weight: 500;
}


/*-----------------------------------------------------------------------------------*/
/* HEADER
/*-----------------------------------------------------------------------------------*/
.wrapper {
    background-image: url(../images/bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    width: 85%;
    max-width: 1400px;
    position: relative;
    margin: 0 auto;
}

body.inner header,
body.inner footer {
    background-color: #f5fafe;
}

body.inner footer {
    padding-top: 20px;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

body.inner header .container {
    padding: 0;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-toggle {
    display: none;
}
.logo{
    width: 160px;
    margin: 10px 0;
}
.logo img {
    max-height: 115px;
}

.menu a {
    font-size: 16px;
    color: var(--default);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.menu a.active {
    font-weight: 600;
}

.menu a:hover {
    color: var(--secondary);
}

/*-----------------------------------------------------------------------------------*/
/* BANNER
/*-----------------------------------------------------------------------------------*/
.banner {
    padding: 100px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 50px;
}

.headline {
    width: 50%;
}

.headline .text {
    margin-bottom: 80px;
}

.headline p {
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
}

.btn {
    border-radius: 25px;
    padding: 5px 20px;
    height: 50px;
    min-width: 200px;
    box-sizing: border-box;
    background-color: var(--secondary);
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    position: relative;
    letter-spacing: 1px;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary);
}


.btn.border::before {
    content: '';
    border: 1px solid var(--primary);
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3px;
    top: -4px;
    left: -4px;
}

.circle-bg {
    position: relative;
    z-index: 1;
    right: -30px;
    opacity: 0;
    transition: all 0.5s ease;
}
.circle-bg .circle-image{
    opacity: 1;
    left: 0;
}

.circle-bg.animate,.float-img.animate {
    right: 0;
    opacity: 1;
}

.circle-image {
    display: block;
    width: 375px;
    height: 375px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    position: relative;
    flex-shrink: 0;
    transition: all 0.5s ease;
}

section .circle-image {
    left: -30px;
    opacity: 0;
}

section .circle-image.animate {
    left: 0;
    opacity: 1;
}

.circle-image::before,
.circle-image::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: inherit;
    border: 1px solid;
}

.circle-image::before {
    right: -5px;
    top: 5px;
    z-index: -1;
    border-color: var(--primary);
}

.circle-image::after {
    right: 10px;
    top: -5px;
    border-color: var(--secondary);
}

.ripple {
    position: absolute;
}

@keyframes ripple-lg {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes ripple-sm {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}


.circle-bg .ripple-pink {
    right: 0;
    z-index: -1;
    animation: ripple-lg 3s linear infinite;
}

.circle-bg .ripple-yellow-sm {
    left: 0;
    top: 0;

}

.circle-bg .ripple-blue-sm {
    right: 0;
    bottom: 0;

}

.circle-bg .ripple-blue-lg {
    left: -25px;
    bottom: -50px;
}

/*-----------------------------------------------------------------------------------*/
/* ABOUT 
/*-----------------------------------------------------------------------------------*/
section {
    padding: 50px 0;
}

.flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px 50px;
}

section.flex .text-content {
    max-width: 50%;
}

.title {
    font-weight: 700;
    font-size: 35px;
    letter-spacing: 0.35px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.title a {
    font: inherit;
}

.text-content p {
    line-height: 29px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    line-clamp: 10;
    -webkit-box-orient: vertical;
}

section .ripple-blue-lg {
    top: 5px;
    right: 0;
    z-index: -1;

}

section .ripple-yellow-sm {
    bottom: 40px;
    left: -10px;
    animation: ripple-sm 3s linear infinite;

}

/*-----------------------------------------------------------------------------------*/
/* FEATURES 
/*-----------------------------------------------------------------------------------*/
.center {
    text-align: center;
}

section.center .text-content {
    max-width: 70%;
    margin: 0 auto;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 50px;
}

.cards li {
    border-radius: 40px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    bottom: -30px;
}

.cards li.animate {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}

.icon-cards li {
    max-width: 250px;
    transition: all 0.3s ease;
    position: relative;
    transform: translateY(0);
    text-align: center;
}

.icon-cards li:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 2px rgba(41, 47, 56, .05), 0 4px 4px rgba(41, 47, 56, .05), 0 8px 8px rgba(41, 47, 56, .05), 0 16px 16px rgba(41, 47, 56, .05), 0 32px 32px rgba(41, 47, 56, .05);
}

.cards .card {
    display: block;
    padding: 20px;
    box-sizing: border-box;
}

.icon-cards .icon {
    width: 68px;
    height: 60px;
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 15px;
}
.icon-cards .icon img{
    max-height: 100%;
}
.icon-cards h3 {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 14px;
}

.icon-cards p {
    font-size: 15px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

/*-----------------------------------------------------------------------------------*/
/* PACKAGES 
/*-----------------------------------------------------------------------------------*/
.packages .card {
    text-align: left;
    min-width: 300px;
    padding: 30px;
}

.packages li {
    transition: all 0.5s ease;
    border: 3px solid transparent;
}

.packages li:hover {
    border-color: var(--primary);
}

.packages li:hover .btn {
    background-color: var(--secondary);
}

.packages .plan-name {
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.packages .price {
    font-weight: 400;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.packages .price span {
    font-size: 45px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 300;
}

.packages .price.sm span {
    font-size: 24px;
}

.packages .price strong {
    font-weight: 500;
}

.packages .btn {
    margin: 0 auto;
    margin-top: 30px;
    height: 45px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}


.packages .save-text {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
}

.packages .save-text span {
    font: inherit;
}

.packages .plan-offer {
    text-align: center;
    display: block;
    font-size: 18px;
    margin-top: 15px;
}

/*-----------------------------------------------------------------------------------*/
/* FOOTER 
/*-----------------------------------------------------------------------------------*/
footer {
    padding-top: 50px;
    margin-top: 20px;
    padding-bottom: 20px;
}

footer .logo {
    max-width: 140px;
}

footer .links {
    justify-content: center;
    flex: 1;
    position: relative;
    text-align: center;
}

footer .links li {
    display: inline-block;
    margin: 0 15px;
}

footer .links a {
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer .links a:hover {
    color: var(--secondary);
}

.social li {
    display: inline-block;
    margin-left: 5px;

}

.social a {
    border-radius: 50%;
    background-color: var(--default);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    transition: all 0.3s ease;
}

.social a:hover {
    background-color: var(--primary);
}

footer p {
    font-size: 12px;
    text-align: center;
    display: block;
    margin-top: 10px;
}

/*-----------------------------------------------------------------------------------*/
/* INNER PAGE
/*-----------------------------------------------------------------------------------*/
.clear {
    clear: both;
}

article {
    padding: 50px 0;
    min-height: calc(100vh - 387px);
}

article main {
    padding-top: 0;
    margin-bottom: 20px;
}

.inner-header {
    display: flex;
    justify-content: space-between;
}

.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs li {
    list-style: none;
    display: inline-block;
    margin-left: 5px;
}

.breadcrumbs li:not(:last-child)::after {
    display: inline-block;
    content: '/';
    margin-left: 5px;
    font-size: 14px;
}

.breadcrumbs li span {
    font-size: 14px;
}

.float-img {
    float: right;
    margin-left: 20px;
    right: -30px;
    opacity: 0;
}

.media a {
    display: block;
    width: 250px;
    height: 150px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
}

.media {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.files li {
    list-style: none;
}

.files {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.files a {
    display: block;
    background-color: #EDEDED;
    border-radius: 10px;
    font-size: 15px;
    padding: 20px;
    padding-left: 50px;
    box-sizing: border-box;
    position: relative;
    transition: all 0.3s ease;
}

.files a::after {
    font-family: 'Font Awesome 5 Pro';
    color: var(--primary);
    font-size: 30px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.files a:hover:after {
    content: '\f56d';
}

a.pdf::after {
    content: '\f1c1';
}

a.doc::after,
a.docx::after {
    content: '\f1c2';
}

.sub {
    margin: 30px 0;
}

.sub-title {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

iframe {
    width: 80%;
    height: 450px;
    border-radius: 5px;
    margin-bottom: 30px;
}
.text strong{
    font-weight: 500;
}
/*-----------------------------------------------------------------------------------*/
/* SUBSCRIBE FORM 
/*-----------------------------------------------------------------------------------*/
.dim::before {
    content: "";
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 10;
    transition: all 0.5s ease;
}

.subscription {
    position: fixed;
    top: 50%;
    left: 0;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    right: 0;
    width: 70%;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-60%);
    display: none;
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}
.subscription .close{
    cursor: pointer;
    position: absolute;
    right: 9px;
    top: 6px;
    display: block;
    width: 30px;
    height: 30px;
    background: #f3f5f7;
    text-align: center;
    border-radius: 5px;
    line-height: 33px;

}
.subscription.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

.subscription form {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.subscription h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.subscription .form-wrapper {
    width: 55%;
}

.subscription form .btn {
    margin-top: 50px;
    cursor: pointer;
}

.form-wrapper input:not([type="submit"]),
.form-wrapper select,
.form-wrapper textarea {
    background-color: #fff;
    border-radius: 10px;
    padding: 5px 20px;
    height: 40px;
    box-sizing: border-box;
    line-height: 40px;
    font-size: 15px;
    color: var(--default);
    border: 1px solid #e5e5e5;
    font-family: inherit;
    outline: none;
    width: 100%;
}

.form-wrapper label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.6;
}

.group-flex .form-group {
    width: 48%;
    flex-grow: 1;
}

.group-flex .form-group:first-child {
    width: 100%;
}

.group-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.plan-details {
    width: 45%;
}

.plan-details li {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background-color: #fff;
    cursor: pointer;
    flex-wrap: wrap;
}

.plan-details li.selected {
    transform: scale(1.2);
    background-color: var(--primary);
    color: #fff;
    transition: all 0.3s ease;
}

.plan-details li label {
    font-weight: 500;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    display: flex;
    text-transform: capitalize;
}

.plan-details li label span {
    font: inherit;
}

.plan-details li label input[type='radio'] {
    margin-right: 5px;
}

.plan-details li p {
    padding-left: 20px;
}

.plan-details .price {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 20px;
    margin-left: 20px;
}

.plan-details .price small {
    font-size: 18px;
}

.plan-options {
    display: flex;
    justify-content: space-between;
}

.plan-options .tabs {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f3f5f7;
    padding: 10px;
    box-sizing: border-box;
    width: fit-content;
    border-radius: 8px;
    margin-bottom: 30px;
    position: relative;
    top: -15px;
}

.plan-details a {
    color: var(--default);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 5px 10px;
    border-radius: inherit;
    box-sizing: border-box;
}

.plan-details .y {
    display: none;
}

.plan-details a.selected {
    background-color: var(--primary);
    color: #fff;
}

input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
}

input[type="radio"] {
    appearance: none;
    background-color: #e5e7eb;
    margin: 0;
    font: inherit;
    color: inherit;
    width: 25px;
    height: 25px;
    border: 3 solid;
    border-radius: 50%;
    display: grid;
    place-content: center;
}

input[type="radio"]::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    transform: scale(0);
    box-shadow: inset 15px 15px var(--primary);
}

input[type="radio"]:checked {
    background-color: #fff;
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

.alert {
    display: block;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    top: 25px;
}

.alert-success {
    color: #155724;
}

.alert-error {
    color: #721c24;

}

/*-----------------------------------------------------------------------------------*/
/*  MONGID | SOFTWARE HOUSE
/*-----------------------------------------------------------------------------------*/
.mongiddesigns {
    position: absolute;
    bottom: 15px;
    left: 15px;
    direction: ltr;
}
.mongiddesigns span {
    display: block;
    position: relative;
    width: 36px;
    height: 36px;
    background-image: url(https://mongid.com/designs/mongid/iconxl2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size:100%;
    border-radius: 50%;
    z-index: 10;
    transform: scale(0.85);
    transition: all 0.3s ease;
}
.mongiddesigns:hover span {
    transform: scale(1) rotate(360deg);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
}
.mongiddesigns h3 {
    display: block;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 3px;
    height: 30px;
    padding: 0 10px 0 30px;
    border-radius: 0 15px 15px 0px;
    z-index: 1;
    opacity: 0;
    transition: left 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    transition-delay: 0.1s;
}
.mongiddesigns h3 i {
    color: #902d72;
    display: block;
    text-transform: capitalize;
    font-size: 10px;
    height: 10px;
    line-height: 16px;
    font-style: normal;
}
.mongiddesigns h3 b {
    color: #333;
    display: block;
    font-size: 12px;
    line-height: 20px;
    height: 12px;
    white-space: nowrap;
}
.mongiddesigns:hover h3 {
    left: 15px;
    opacity: 1;
}
.mongiddesigns h3:hover {
    background-color: #00000017;
}

/*-----------------------------------------------------------------------------------*/
/* RESPONSIVE
/*-----------------------------------------------------------------------------------*/
@media screen and (max-width: 1280px) {
    .subscription {
        width: 85%;
    }
}

@media screen and (max-width: 900px) {
    .banner {
        flex-wrap: wrap;
        padding: 20px;
        margin-bottom: 0;
        flex-direction: column-reverse;
    }

    .headline {
        width: 100%;
    }

    .flex {
        flex-wrap: wrap;
    }

    section.flex .text-content,
    section.center .text-content {
        max-width: 100%;
    }

    .circle-bg .ripple-blue-lg {
        display: none;
    }

    .group-flex .form-group {
        width: 100%;
    }

    .plan-options {
        flex-wrap: wrap;
        position: relative;
        top: -9px;
    }

    .subscription form {
        gap: 50px;
    }
}

@media screen and (max-width: 780px) {
    article {
        padding-top: 0;
    }

    .packages .card {
        min-width: unset;
    }

    .logo {
        max-width: 130px;
    }

    .container {
        width: 90%;
    }

    .circle-image,
    .circle-bg {
        width: 270px;
        height: 270px;
    }

    .float-img {
        float: none;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .headline p {
        font-size: 32px;
    }

    .headline .text {
        margin-bottom: 20px;
        margin-top: 30px;
    }

    footer .flex {
        flex-direction: column;
    }

    header .container {
        margin-bottom: 30px;
    }

    .menu {
        display: none;
        width: 100%;
        background: #fff;
        padding: 20px;
        position: absolute;
        top: 100%;
        z-index: 100;
        left: 0;
        right: 0;
        margin: 0 auto;
        box-sizing: border-box;
        box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
        border-top: 3px solid var(--primary);
    }

    .menu a {
        display: block;
        margin-bottom: 5px;
        padding: 5px 0;
    }

    .menu-toggle {
        display: block;
        color: #fff;
        font-size: 21px;
        background: var(--primary);
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 3px;
    }

    .subscription .form-wrapper,
    .plan-details {
        width: 100%;
    }

    .subscription {
        width: 90%;
        padding: 30px;
    }

    .subscription form {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .plan-options .tabs {
        margin: 0 auto;
    }

    .plan-options {
        top: 0;
    }

    .subscription form .btn {
        margin: 50px auto 0 auto;
    }

    .plan-details li.selected {
        transform: scale(1.1);
    }

    .plan-details li {
        gap: 10px;
        padding: 10px;
    }

    .plan-details li label {
        margin-bottom: 5px;
    }

    .plan-details .price small {
        font-size: 15px;
    }

    .plan-details li label input[type='radio'] {
        transform: scale(0.8);
    }

    iframe {
        width: 100%;
    }

    .files {
        grid-template-columns: 1fr;
    }
    @keyframes ripple-lg {
        0% {
            transform: scale(0);
            opacity: 1;
        }
    
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }
}
@media screen and (max-width: 450px) {

    .plan-details .price{
        width: 100%;
    }
}