/* poppins  */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* praise  */
@import url("https://fonts.googleapis.com/css2?family=Praise&display=swap");

:root {
    --primary: #001936;
    --secondary: #626262;
    --black: #000000;
    --white: #ffffff;
    --black70: rgba(0, 0, 0, 0.7);

    --gradientHeader: radial-gradient(
            50% 330.23% at 50% 50%,
            #01aef2 44.43%,
            #015790 100%
    );
    --buttonGradient: radial-gradient(
            68.68% 453.63% at 50% 50%,
            #01aef2 0%,
            #015790 100%
    );
}
* {
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
}
html,
body {
    overflow-x: hidden;
    background-color: #f9fbff;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

img {
    width: 100%;
    height: auto;
}
h1 {
    font-size: 44px;
    color: var(--black);
    font-weight: bold;
}
li {
    color: var(--black70);
    font-size: 18px;
    font-weight: 500;
}
p {
    color: var(--secondary);
}

.site-btn {
    background-image: var(--buttonGradient);
    min-width: 200px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    z-index: 1;
    border-image: var(--buttonGradient);
    border-width: 1px;
    border-style: solid;
    color: var(--white);
    overflow: hidden;
    transition: 0.3s all ease;
    padding: 11px;
    display: inline-block;
    text-transform: capitalize;
    text-align: center;
}

.site-btn:hover span {
    background-image: var(--buttonGradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s all ease;
}

.site-btn:before {
    content: "";
    background-color: var(--white);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 100%;
    transition: 0.3s all ease;
}
.site-btn:hover::before {
    width: 100%;
    transition: 0.3s all ease;
}
.site-btn span {
    overflow: hidden;
    border: 5px;
}
.btn-2 {
    background: transparent;
    border-image: unset;
    border: 1px solid #002554;
    color: #002554;
    min-width: 220px;
}
.btn-2:hover {
    color: var(--white);
}
.btn-2:before {
    background-color: #002554;
}


.wrapper {
    max-width: 1170px;
    margin: auto;
}



.img-center img {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: max-content;
    margin: auto;
    width: auto;
}
/* banner */
@keyframes fadin {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.head .container{
    margin-top: 2px;
    padding: 30px 0 ;
    animation: fadin 1.5s ease-in-out;
}
.banner {
    padding: 30px 0 100px;
    animation: fadin 1.5s ease-in-out;
    background-image: var(--gradientHeader);
    position: relative;
    min-height: 80vh;
}

.banner .banner-txt,
.banner-txt-one,
.banner-txt-two,
.banner-txt-three{
    font-family: Poppins;
}
.banner .banner-txt-two{
    font-weight: 800;
    font-size: 84px;
}

.banner .banner-txt-three{
    font-weight: 500;
    font-size: 24px;
}
.banner-img{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}
.banner-img img{
    width: auto;
    max-width: 100%;
}

.banner .buttons {
    display: flex;
    justify-content: end;
    gap: 12px;
}
.banner .wrapper > .img img {
    border: 5px;
}
.banner .wrapper > .title h1 {
    margin-top: 25px;
}
.banner .banner-txt{
    font-family: Poppins, serif;
}
/* section 1  */
.section-1 {
    padding: 50px 0 78px;
}
.section-1 .text h2 {
    color: var(--black);
    font-size: 30px;
    font-weight: 600;
}
.section-1 .text ul li img {
    width: auto;
    margin-right: 6px;
}
.section-1 .text ul li {
    margin-top: 20px;
    display: flex;
    align-items: start;
    line-height: 1.3;
}
.section-1 .img img {
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.05));
}
.section-1 .inner-wrapper:nth-child(even) .row {
    flex-direction: row-reverse;
}
.section-1 .inner-wrapper:not(:last-child) {
    margin-bottom: 120px;
}
/* inner wrapper 2 */
@media (min-width: 1200px) {
    .section-1 .inner-wrapper:nth-child(2) .col-xl-5 {
        flex: 0 0 auto;
        width: 42.666667%;
    }
}

.section-1 .inner-wrapper:nth-child(2) ul li {
    align-items: center;
    margin-top: 25px;
}
.section-1 .inner-wrapper:nth-child(2) ul li img {
    background-color: rgba(180, 118, 205, 0.1);
    width: 50px;
    height: 50px;
    padding: 11px;
    border-radius: 5px;
}
.section-1 .inner-wrapper:nth-child(2) ul li:nth-child(2) img {
    background-color: rgba(70, 157, 208, 0.1);
}
.section-1 .inner-wrapper:nth-child(2) ul li:nth-child(3) img {
    background-color: rgba(244, 150, 11, 0.1);
}
/* inner wrapper 3  */
@media (min-width: 1200px) {
    .section-1 .inner-wrapper:nth-child(3) .col-xl-5 {
        flex: 0 0 auto;
        width: 43.666667%;
    }
}
.section-1 .inner-wrapper .text p {
    margin-top: 14px;
}
.section-1 .inner-wrapper:nth-child(3) ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 457px;
}
.section-1 .inner-wrapper:nth-child(3) ul li {
    flex: 0 0 auto;
}

.section-1 .inner-wrapper:nth-child(3) > p {
    margin-top: 30px;
}

/* inner wrapper 4  */
.section-1 .inner-wrapper:nth-child(4) .text h2 {
    font-size: 29px;
}
.section-1 .inner-wrapper:nth-child(4) .text p {
    font-size: 15px;
    max-width: 550px;
}
.section-1 .inner-wrapper:nth-child(4) .text ul {
    max-width: 490px;
}
/* footer  */
.footer {
    padding: 10px 0;
    background-image: var(--gradientHeader);
}
.footer img {
    width: auto;
}
.footer .text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .text h3 {
    color: var(--white);
    font-size: 25px;
    font-family: "Praise", cursive;
}
.footer .wrapper {
    max-width: 1140px;
}
/* mediaquairy */
@media (max-width: 991px) {
    h1 {
        font-size: 30px;
    }
    .banner {
        padding: 50px 0;
    }
    .section-1 .text h2 {
        font-size: 20px;
    }
    li {
        font-size: 15px;
    }
    .section-1 .inner-wrapper:not(:last-child) {
        margin-bottom: 50px;
    }
    .section-1 {
        padding-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .header,
    .footer {
        padding: 15px 0;
    }
    .header .img {
        text-align: center;
    }
    .header .text {
        justify-content: center;
    }
    .banner .wrapper > .title h1 {
        margin-top: 20px;
        font-size: 26px;
    }
    .banner .buttons {
        margin: 20px 0;
    }
    .banner .buttons .site-btn {
        font-size: 14px;
        min-width: unset;
        width: 100%;
        padding: 9px 10px;
    }
    .banner .row .img {
        display: block;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .banner {
        padding: 25px 0;
    }
    .section-1 .text h2 {
        font-size: 18px;
    }
    .section-1 .text ul li img {
        max-width: 15px;
        width: 100%;
    }
    .section-1 {
        padding: 25px 0;
    }
    .section-1 .text ul li {
        margin-top: 15px;
        font-size: 14px;
    }
    .section-1 .inner-wrapper p {
        font-size: 14px !important;
    }
    .section-1 .inner-wrapper:nth-child(odd) .row {
        flex-direction: column-reverse;
    }

    .section-1 .inner-wrapper:nth-child(2) ul li img {
        max-width: unset;
        width: 30px;
        height: 30px;
        padding: 5px;
    }
    .section-1 .inner-wrapper:nth-child(even) .row {
        flex-direction: column-reverse;
    }
    .section-1 .inner-wrapper:nth-child(3) > p {
        margin-top: 15px;
        font-size: 14px;
    }
    .footer img {
        max-width: 120px;
    }
}
