/* import font family */
@import url('https://fonts.googleapis.com/css2?family=Livvic:wght@400;700&family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700&display=swap');

/* =================================
global css
===================================*/
:root {
    --bg: #1457B7;
    --primary-color: #444444;
    --text-color: #7F8489;
    --white: #ffff;
    --btn-bg: #FF4915;
    --primary-bg: #F8F9FB;
    --secondary-bg: #eaebed;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
    scroll-behavior: smooth;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-family: 'Nunito Sans', 'Livvic', sans-serif;
    overflow-x: hidden;
}

/*================================================
GENERAL CSS
==================================================*/
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 1.2rem;
}

a,
p,
input,
textarea {
    font-family: 'Nunito Sans';
}

h1,
h2,
h3,
h4 {
    font-family: 'Livvic';
}

p {
    font-size: 1.7rem;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.btn:link,
.btn:visited {
    display: inline-block;
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .5s linear;
    background: var(--btn-bg);
    color: var(--white);
}

.primary-heading {
    font-size: 3.6rem;
    margin-bottom: 6.4rem;
    text-transform: uppercase;
    text-align: center;
    color: var(--primary-color);
}

/* =================================
header
====================================*/
.header {
    position: relative;
    transition: all .5s linear;
    padding: 2rem 0 2.4rem 0;
    z-index: 9999;
}


.logo-box .logo-img {
    max-width: 32rem;
}

.header-container {
    display: flex;
    align-items: center;
}

.navbar {
    margin-left: auto;
}

.navbar .navbar-links {
    list-style-type: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav-link:link,
.main-nav-link:visited,
.services-item {
    text-transform: capitalize;
    font-size: 1.8rem;
    margin-right: 2.4rem;
    transition: all .3s linear;
    font-family: 'Nunito Sans';
    color: var(--white);
}


/*================================================
 mobile navigation
==================================================*/
.mobile-nav,
.close-outline {
    font-size: 3.6rem;
    color: var(--white);
    display: none;
    cursor: pointer;
}

.mobile-nav {
    margin-left: auto;
}

.close-outline {
    position: absolute;
    right: 2rem;
    top: 1rem;
}


/* ================================
hero-section
===================================*/
.hero-section {
    position: relative;
    padding: 12rem 0 10rem 0;
    width: 100%;
    background-image: url("../img/hero/hero-bg.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    margin-top: -10rem;
    transition: all .5s linear;
    z-index: 1;
}

.shape-1,
.shape-2 {
    position: absolute;
    z-index: -1;
}

.shape-1 {
    top: 0;
    left: 0;
}

.shape-2 {
    right: 0;
    bottom: 0;
    transform: translate(-50%, -50%);
    transition: all .5s linear;
    animation: showhidden 3s .5s infinite;
}

@keyframes showhidden {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }

    100% {
        opacity: .9;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3.2rem;
}

.hero-heading {
    font-size: 5.2rem;
    color: var(--white);
}

.hero-heading span {
    background-image: linear-gradient(to right, #ff2500, #ff7100);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    font-size: 2rem;
    color: var(--white);
    padding: 2.4rem 0;
}

.hero-content .btn-box .btn {
    border-radius: 3rem;
    background-image: linear-gradient(to right, #ff2500, #ff7100);
}

.hero-img {
    transition: all .7s linear;
    animation: moveupdown 5s infinite alternate-reverse;
}

@keyframes moveupdown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10%);
    }
}

/* ================================
band-section
===================================*/

.section-band {
    padding: 6.4rem 0;
    background: var(--primary-bg);
}

.brand-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    row-gap: 4.8rem;
    column-gap: 3.2rem;
    opacity: .6;
}

.brand-box a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-box img {
    /*max-height: 10.5rem;*/
    max-width: 32rem;
}

/* =================================
section-about
===================================*/
.section-about {
    padding: 6.4rem 0;
    background: var(--secondary-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 6.4rem;
    row-gap: 9.6rem;
}

.about-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.about-img {
    max-width: 30%;
}

.about-shape1,
.about-shape2,
.about-shape3 {
    position: absolute;
}

.about-shape1 {
    max-width: 55%;
    z-index: -1;
}

.about-shape3 {
    max-width: 60%;
    z-index: -2;
    transform: rotate(60deg);
}

.about-shape2 {
    max-width: 60%;
    z-index: -3;
    transform: rotate(25deg);

    animation: round 7s infinite ease-in-out;
}

@keyframes round {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(180deg);
    }
}

.text {
    color: var(--text-color);
    text-align: justify;
}

.sm-text {
    padding-top: 1.6rem;
}

/* ==================================
client-section
=====================================*/
.websites-section {
    padding: 9.6rem 0;
}

.websites-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 6.4rem;
    opacity: .7;
}

/* =====================================
frequently asked question
=========================================*/
.frequently-asked-section {
    padding: 9.6rem 0;
    background: var(--primary-bg);
}

/*================================================
accordian
==================================================*/
.accordian-heading {
    font-size: 2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1.6rem;
    background-color: var(--secondary-bg);
    font-weight: 600;
}

.accordian-content-box {
    margin: 1rem 0;
}

.accordian-heading span {
    margin-left: auto;
    transition: all .2s linear;
    max-width: 2rem;
    transform: rotate(180deg);
}

.accordian-text {
    max-height: 0;
    overflow: hidden;
    transition: all .5s linear;
    background-color: #F8F8FF;
}

.accordian-text p {
    padding: 2rem;
}

.accordian-content-box.active .accordian-text {
    max-height: 25rem;
}

.accordian-content-box.active .accordian-heading {
    background-color: #012559;
    color: var(--white);
}

.accordian-content-box.active .accordian-heading span {
    transform: rotate(0deg);
}


/* =============================
footer
===================================*/
.footer {
    padding: 9.6rem 0;
    background: var(--primary-bg);
    background-image: url("../img/footer/footer-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
    z-index: 1;
}

.back-home-box {
    position: fixed;
    bottom: 0;
    right: 3%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 50%;
    background: var(--btn-bg);
    cursor: pointer;
}

.back-home-box i {
    font-size: 3.2rem;
    color: var(--white);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.4rem;
}

.footer-box .logo-box .logo-img {
    max-width: 32rem;
}

.footer-box,
.footer-content {
    padding-top: 4.5rem;
}

.f-contact {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 500;
}

.f-address {
    padding: .5rem 0;
    color: var(--white);
}

.f-address a {
    color: var(--white);
    font-weight: 700;
}

.footer-icon-box {
    padding: 3.2rem 0 3.2rem 3rem;
}

.footer-icon-box i {
    font-size: 3.2rem;
    padding-right: 3.2rem;
    color: var(--white);
}

.author-box {
    text-align: center;
    margin-top: 4.8rem;
    border-top: 3px solid var(--btn-bg);
}