@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --primarycolor:#174793;
    --primaryopacitycolor:#00a7fa73;
    --secondary-color:#fee005;
    --dark-gray:#eaeaea;
    --jost: "Inter", sans-serif;
    --lobster:"Lobster", serif;
    --ss:sans-serif;
    --white:#fff;
    --black:#000000;
    --default-transition:350ms;
}

*{padding: 0;margin: 0;box-sizing: border-box;text-decoration: none;font-family: var(--jost);}
h1,h2,h3,h4,h5,h6{color: var(--primarycolor);}
p{margin-bottom: 0;}
body{overflow-x: hidden ;}
ul{list-style: none;margin: 0;padding: 0;}
.list-alphabet{
    list-style: upper-alpha !important;
}
input:focus:not(input[type=checkbox]),
textarea:focus
{
    box-shadow: 0 0 1px 3px var(--primaryopacitycolor) ;
    border-color: var(--primarycolor) !important;
}
input:user-invalid,
textarea:user-invalid
{
    box-shadow: 0 0 1px 3px #f005 !important;
    border-color: #f00 !important;
}
.sans-serif{
    font-family: var(--ss);
}
.jost{
    font-family: var(--jost);
}
.lobster {font-family: var(--lobster);}
strong{
    font-family: inherit;
}
.fixed-btns .fixed-btn
{
    position: fixed;
    bottom: 4rem;
    left: 1rem;
    width: 45px;
    font-size: 1.75rem;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background: var(--primarycolor);
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
}
.fixed-btns .fixed-btn a{
    color: inherit;
}
.fixed-btns .fixed-btn.bottomtotop
{
    transition: 0.5s;
    opacity: 0;
    pointer-events: none;
}
.fixed-btns .fixed-btn.bottomtotop.active{
    opacity: 1;
    pointer-events: all;
}
.fixed-btns .fixed-btn.chatboxbtn{
    left: auto;
    right: 1rem;
    width: unset;
    aspect-ratio: unset;
    padding: 4px 26px;
    gap: 4px;
    border-radius: 1rem;
}
@media (max-width:768px){
    .fixed-btns .fixed-btn.chatboxbtn{
        left: auto;
        right: 1rem;
        width: 60px;
        aspect-ratio: 1;
        padding: 0px;
        gap: 0;
        border-radius: 50%;
    }
}

.chat-box{
    position: fixed;
    z-index: 1000;
    bottom: 4rem;
    right: calc(-100% - 1rem);
    max-height: 570px;
    max-width: 350px;
    height: 100%;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0,.45);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--default-transition);
}
.chat-box.active{
    right: 1rem;
}
.chat-box .chat-header
{
    position: relative;
    text-align: center;
}
.chat-box .chat-header img
{
    max-width: 50%;
}
.chat-box .chat-header .fa-xmark{
    position: absolute;
    right: 2rem;
    font-size: 1.5rem;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}
.chat-box .chat-body
{
    flex: 1;
    overflow: auto;
}
.chat-box .chat-body form
{
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: var(--default-transition);
    max-width: 70%;
    background: #fff;
    border-radius: 1rem;
    margin-bottom: 1rem;
}
.chat-box .chat-body form.active{
    opacity: 1;
    visibility: visible;
}
.chat-box .chat-list .user-chat .sent
{
    display: inline-block;
    max-width: 70%;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    border-radius: 1rem;
    padding: 0.5rem;
    color: #fff;
    background: var(--primaryopacitycolor);
}
.chat-box .chat-footer{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}
.chat-box .chat-footer input
{
    border: none;
    outline: none;
    padding: 0 8px;
    width: 85%;
}
.chat-box .chat-footer input:is(:focus,:active){
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.chat-box .chat-footer span{
    width: 15%;
    pointer-events: none;
    opacity: 0.5;
}
.chat-box .chat-footer span.valid{
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
}
.grid-5{
    gap: 0.5rem;
    display: grid;
    grid-template-columns: repeat(5,1fr);
}
@media(max-width:540px){
    .grid-5{grid-template-columns: repeat(3,1fr);}
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
a{color: var(--primarycolor);text-decoration: none !important;}
a:hover{color: var(--primarycolor);text-decoration: none !important;}
.btn{
    background: var(--primarycolor);
    color: var(--white);
    border: 2px solid var(--primaryopacitycolor);
    border-radius: 0;
    padding: 8px 30px;
    font-weight: 600;
    transition: var(--default-transition);
}
.btn:has(i) i{transition: 0.75s;}
.btn:is(:hover,:active,:focus) i{transform: translateX(10px);}
.btn:is(:hover,:active,:focus,.active){background: var(--primaryopacitycolor) !important;border-color:var(--primaryopacitycolor) !important;color: var(--white);}
.btn:is(:focus){box-shadow: 0 0 1px 3px var(--secondary-color);}

.theme-btn{
    background: var(--primarycolor);
    color: var(--white);
    border: none;
    display: inline-block;
    border-radius: 30px;
    padding: 8px 30px;
    font-weight: 600;
    transition: var(--default-transition);
}
.theme-btn:has(i) i{transition: 0.75s;}
.theme-btn:is(:hover,:active,:focus) i{transform: translateX(10px);}
.theme-btn:is(:hover,:active,:focus,.active){background: var(--black) !important;border-color:var(--primaryopacitycolor) !important;color: var(--white);}
.theme-btn:is(:focus){box-shadow: 0 0 1px 3px var(--secondary-color);}



/* Header Style */
header,
nav
{
    position: relative;
    border-bottom: 1px solid #e6e6e6;
}
.icon{
    min-width: 45px;
    width: 45px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primarycolor);
    border: none;
    outline: none;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
}
header .icon{
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

#sidebarmenu .offcanvas-body .top{flex-grow: 1;}
#sidebarmenu .offcanvas-body .bottom{justify-self: end;}
#sidemenu .nav-list a
{
    color: var(--black);
}
#sidemenu .nav-list li a
{
    position: relative;
    display: block;
    padding: 10px 20px;
    transition: var(--default-transition);
}
#sidemenu .nav-list li a:is(:hover,:active,:focus){
    background: var(--primaryopacitycolor);
    color: var(--white);
}
#sidemenu .nav-list li a.active{background: var(--primarycolor);color: var(--white);}
/* Section CSS */
.section .section-heading
{
    text-transform: uppercase;
} 

.owl-nav button
{
    position: absolute;
    width: 50px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white) !important;
    border-radius: 50%;
    left: 0.5rem;
    z-index: 2;
}
.owl-nav button.owl-next
{
    left: auto;
    right: 0.5rem;
}
.testmonials .owl-stage{display:flex;align-items: stretch;}
.testmonials.owl-drag .owl-item{
    height: unset;   
}
.testmonials .owl-nav
{
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
}
.testmonials .owl-nav button
{
    position: relative;
    display: inline-flex;
    top: auto;
    transform: translateY(0);
    left: auto;
    right: auto;

}
@media(max-width:540px){
    .owl-nav button
    {
        width: 30px;
    }
}

/* HERO SECTION */
.hero-section-home
{    
    background:linear-gradient(#0009,#0009),url(../img/banner/printerest_bg.jpg);
    aspect-ratio: 3;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-wrapper h1
{
    font-size: 55px;
    font-weight: 800;
}
@media(max-width:568px){
    .hero-section-home
    {
        aspect-ratio: unset;
        background:linear-gradient(#0009,#0009),url(../img/banner/pintereste.png);
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .hero-wrapper h1{
        font-size: 30px;
    }
}

.hero-section
{
    position: relative;
    background:var(--primarycolor);
    /* min-height: 700px; */
}
.hero-section :is(h4,a){color: var(--white);}

/* Grid List Container */
.grid-list-container
{
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--col), 1fr);
    gap: 1rem;
}
.grid-list-container.col4
{
    grid-template-columns: repeat(4, 1fr);
}
.grid-list-container.col3
{
    grid-template-columns: repeat(3, 1fr);
}
.grid-list-container.col2
{
    grid-template-columns: repeat(2, 1fr);
}
.grid-list-container.col1
{
    grid-template-columns: repeat(1, 1fr);
}
@media(max-width:540px){
    .grid-list-container{grid-template-columns: repeat(2,1fr);}
}

/* Why Choose Us */
.why-choose-us .card
{
    height: 100%;
    padding: 1rem;
    cursor: pointer;
}
.why-choose-us .card h2
{
    display: flex;
    font-size: 1.5rem;
    gap: 4px;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
}
.why-choose-us .card h2 i{
    color: #fff;
    font-size: 3rem;
    transition: var(--default-transition);
}
.why-choose-us .card:hover h2 i
{
    transform: rotate(360deg);
}

form label
{
    position: relative;
    display: block;
}
form input
{
    position: relative;
    width: 100%;
    outline: none;
    border-radius: 0 !important;
    border: none !important;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--primarycolor) !important;
}
form input:hover
{
    border-bottom: 2px solid var(--primarycolor) !important;
}
form input:is(:active,:focus)
{
    border: none !important;
    border-bottom: 2px solid var(--secondary-color) !important;
    box-shadow: none !important;
}
form input:is(:user-invalid)
{
    border: none !important;
    border-bottom: 2px solid #f005 !important;
    box-shadow: none !important;
}


/* Footer */
footer{
    border-top: 1px solid #ddd;
    background: url(../img/footer_bg.jpg);
    background: #001c4b;
}
.footer-logo
{
    filter: drop-shadow(2px 2px 1px #fff);
}
.footer-links li a
{
    font-size: 1.3rem;
}
.footer-links li a:hover
{
    text-decoration: underline !important;
}
.footer-links .pay-icons
{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-links .pay-icons img
{
    width: 80px;
    aspect-ratio: 2;
    object-fit: contain;
    background: #fff;
    padding: 5px;
}
.social-link a i{
    font-size: 2rem;
}
.about-us-para p
{
    font-size: 20px;
    margin-bottom: 2rem;
}


.plans-wrapper
{
    position: relative;
    border-radius: 0;
    height: 100%;
}
.plans-wrapper:has(.plans-card.active)::before
{
    content: 'Best Value';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    background: var(--primarycolor);
    color: var(--white);
    padding: 3px 8px;
}
.plans-wrapper .plans-card
{
    position: relative;
    text-align: center;
    padding: 1rem 0;
}
.plans-wrapper .plans-card.active
{
    background: #15459022;
}
.plans-wrapper .plans-card:not(:last-child){
    border-bottom: inherit;
}
.plans-wrapper .plans-card > p
{
    max-width: 80%;
    margin-bottom: 1.25rem;
    margin-inline: auto;
    text-align: center;
}
.plans-wrapper .plans-card > h4
{
    font-size: 2rem;
    color: var(--black);
}
.plans-wrapper .plans-card > h4 sup
{
    color: var(--primarycolor);
}
.plans-wrapper .plans-card > button
{
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: .5rem 3.25rem;
}
.plans-wrapper .plans-card > ul li{
    margin-bottom: 1.25rem;
}

.testimonials-slider .item
{
    position: relative;
    /* border: 10px solid #212121; */
    /* background: #212121; */
    /* border-radius: 8px; */
}
.testimonials-slider .item img
{
    aspect-ratio: 1;
    object-fit: contain;
}
.testmonials .item
{
    position: relative;
    border: 1px solid #ddd;
    z-index: 0;
    cursor: pointer;
    height: 100%;
}
/*.testmonials .item::after*/
/*{*/
/*    content: '';*/
/*    position: absolute;*/
/*    inset: 2px;*/
/*    background: #fff9;*/
/*    z-index: -1;*/
/*    border-radius: 14px;*/
/*    transform: scale(0);*/
/*    transition: var(--default-transition);*/
/*}*/
.testmonials .center .item::after,
.testmonials .item:hover::after
{
    transform: scale(1);
}
.testmonials .owl-nav button
{
    background: var(--primarycolor) !important;
    color: #fff !important;
}
.counter-section .card-counter
{
    padding: 2rem 0.5rem;
}
.counter-section{
    background: linear-gradient(#17479390,#17479390),url(../img/background_feature.jpg);
    background-size: 100%;
    background-position: center;
}
.counter-section h1
{
    font-weight: 700;
    font-size: 2.5rem;
    /* color: var(--black); */
}
.counter-section h6{
    color: var(--black);
}
.credit {
    background: #3fb0fc !important;
}
#freeclaimform
{
    position: relative;
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid #eee;
    box-shadow: 0 0 6px #eee;
}

#freeclaimform input{
    margin-top: 6px;
    border-radius: 10px !important;
    border: 1px solid #eee !important;
}