* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--poppins-regular);
    scroll-behavior: smooth;
}

@font-face {
    font-family: poppins;
    src: url(../font/Poppins-Regular.ttf);
}

@font-face {
    font-family: poppins-semibold;
    src: url(../font/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: poppins-bold;
    src: url(../font/Poppins-Bold.ttf);
}

@font-face {
    font-family: poppins-extra-bold;
    src: url(../font/Poppins-ExtraBold.ttf);
}

:root {
    --primary-color: #422e75;
    --secondry-color: #e64bb0;
    --yellow-color: #fddf5b;
    --navy-blue: #77d8e1;
    --white-color: #fff;
    --poppins-regular: 'poppins', sans-serif;
    --poppins-semibold: 'poppins-semibold', sans-serif;
    --poppins-bold: 'poppins-bold', sans-serif;
    --poppins-extra-bold: 'poppins-extra-bold', sans-serif;
}

h1 {
    font-size: 90px;
    font-family: var(--poppins-extra-bold);
    line-height: 6rem;
}

h2 {
    font-size: 50px;
    color: var(--primary-color);
    font-family: var(--poppins-extra-bold);
    line-height: 4rem;
}

h3 {
    font-size: 24px;
    font-family: var(--poppins-semibold);
}

h5 {
    font-size: 16px;
    font-family: var(--poppins-bold);
    letter-spacing: 10px;
    text-transform: uppercase;
}

p {
    color: #b1a8c8;
}

ul {
    margin: 0px;
    padding: 0px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

img {
    width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.space-btwn {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}

.v-center {
    justify-content: center;
}

.center {
    align-items: center;
}

.btn {
    background: var(--primary-color);
    font-family: var(--font-family);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    transition: 0.5s;
}

.btn:hover {
    background: var(--secondry-color);
}

.text-center {
    text-align: center;
}

.wrap {
    flex-wrap: wrap;
}

.global-btn {
    padding: 14px 16px;
    background-color: var(--navy-blue);
    color: var(--white-color);
    text-transform: uppercase;
    display: inline-block;
    transition: 0.5s !important;
}

.global-btn:hover {
    padding: 14px 16px;
    background-color: var(--secondry-color);
    color: var(--white-color);
    text-transform: uppercase;
    display: inline-block;
    transition: 0.5s;
}

.trans {
    transition: 0.5s;
}

header {
    padding: 10px 70px;
    background: var(--white-color);
}

header .menu {
    width: 40%;
}

header .menu .navigation li a {
    font-family: var(--poppins-semibold);
    color: var(--primary-color);
    /* border-bottom: 1px solid #fff; */
    position: relative;

}

header .menu .navigation li a::after {
    content: '';
    background-color: var(--secondry-color);
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    transition: all ease-in-out .2s;
    /* display: inline-block; */
}

header .menu .navigation li a:hover::after {
    width: 100%;
}

header .menu .navigation .active{
    color: var(--secondry-color);
    position: relative;
}

header .menu .navigation .active::after{
    content: '';
    background-color: var(--secondry-color);
    /* color: var(--secondry-color); */
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
}



/* header .menu a:hover {
    color: var(--secondry-color);
    border-bottom: 1px solid var(--secondry-color);
} */

header .hdr-icons i:nth-child(1) {
    color: #4867AA;
    border: 2px solid #4867AA;
    border-radius: 50%;
    padding: 16px 19px;
}

header .hdr-icons i:nth-child(1):hover {
    color: var(--white-color);
    border: 2px solid #4867AA;
    background: #4867AA;
    border-radius: 50%;
    padding: 16px 19px;
}

header .hdr-icons i:nth-child(2) {
    color: #1DA1F2;
    border: 2px solid #1DA1F2;
    border-radius: 50%;
    padding: 16px 17px;
    margin: 0 10px
}

header .hdr-icons i:nth-child(2):hover {
    color: #fff;
    border: 2px solid #1DA1F2;
    background: #1DA1F2;
    border-radius: 50%;
    padding: 16px 17px;
    margin: 0 10px
}

header .hdr-icons i:nth-child(3) {
    color: #d94c3b;
    border: 2px solid #d94c3b;
    border-radius: 50%;
    padding: 16px 14px;
}

header .hdr-icons i:nth-child(3):hover {
    color: #fff;
    border: 2px solid #d94c3b;
    background: #d94c3b;
    border-radius: 50%;
    padding: 16px 14px;
}

/* nav toggle */


.bars-btns{
    display :none;
}


/* nav toggle */


.bnr {
    width: 100%;
}

.bnr .bnr-lft {
    background-image: url(../img/lft-bnr.png);
    width: 50%;
    background-size: cover;
}

.bnr .bnr-rgt {
    background-image: url(../img/rgt-bnr.jpg);
    padding: 200px 20px;
    background-size: cover;
    width: 50%;
    flex-direction: column;
}

.bnr .bnr-rgt p {
    color: var(--white-color);
    text-shadow: 1px 2px #736bc0;
    font-family: var(--poppins-bold);
    letter-spacing: 10px;
    margin-bottom: 15px;
}

.bnr .bnr-rgt h1 {
    color: var(--white-color);
    text-shadow: 1px 6px #736bc0;
}


.strip {
    background-color: var(--primary-color);
    padding: 80px 0;
}

.strip .strip-rgt p {
    color: var(--white-color);
    text-shadow: 1px 2px #736bc0;
    font-family: var(--poppins-bold);
    letter-spacing: 10px;
    margin-bottom: 15px;
}

.strip .strip-rgt h1 {
    color: var(--white-color);
    text-shadow: 1px 6px #736bc0;
}

.strip .strip-rgt p a {
    color: var(--white-color);
}

.about {
    padding: 120px 15px 70px;
    border-bottom: 1px solid #f7f7f9;
}

.about .lft-about {
    width: 60%;
    padding-top: 50px;
}

.about .lft-about h5 {
    margin-bottom: 25px;
    color: var(--navy-blue);
}

.about .lft-about p span {
    color: var(--primary-color);
    font-family: var(--poppins-semibold);
}

.about .lft-about .main-p {
    color: #b1a8c8;
    margin: 25px 0;
}

.about .lft-about .lft-one p {
    font-family: var(--poppins-bold);
    border-radius: 50%;
    padding: 3px 13px;
    color: var(--white-color);
    background: var(--secondry-color);
    margin-right: 10px;
}

.about .lft-about .lft-two p {
    font-family: var(--poppins-bold);
    border-radius: 50%;
    padding: 4px 13px;
    color: var(--white-color);
    background: var(--yellow-color);
    margin-right: 10px;
}

.about .lft-about .lft-three p {
    font-family: var(--poppins-bold);
    border-radius: 50%;
    padding: 5px 13px;
    color: var(--white-color);
    background: var(--secondry-color);
    margin-right: 10px;
}

.about .numbers {
    flex-direction: column;
    gap: 20px;
    color: var(--primary-color);
}

.about .rgt-about {
    width: 40%;
}


.services {
    padding: 100px 15px;
    position: relative;
}

.services .slider {
    background: var(--primary-color);
    border-bottom: 3px solid var(--secondry-color);
    color: var(--white-color);
    text-align: center;
}

.services .slider2 {
    background: var(--primary-color);
    border-bottom: 3px solid var(--navy-blue);
    color: var(--white-color);
    text-align: center;
}

.services .slider3 {
    background: var(--primary-color);
    border-bottom: 3px solid var(--yellow-color);
    color: var(--white-color);
    text-align: center;
}

.services .slider .slider-pnl,
.services .slider2 .slider-pnl,
.services .slider3 .slider-pnl {
    padding: 30px 0;
}

.services .owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block;
}

.services .owl-carousel .owl-nav .owl-prev span,
.services .owl-carousel .owl-nav .owl-next span {
    color: #aea6bb;
    font-size: 60px;
}

.services h5 {
    color: var(--yellow-color);
}

.services #service-slider {
    margin-top: 55px;
}

.services #service-slider .owl-nav .owl-prev {
    position: absolute;
    top: 39%;
    left: 0px;
}

.services #service-slider .owl-nav .owl-next {
    position: absolute;
    top: 39%;
    right: 0px;
}


.testimonials {
    background: url(../img/bg.jpg);
    padding: 150px;
    background-size: cover;
    text-align: center;
    position: relative;
}

.testimonials h5 {
    color: var(--secondry-color);
}

.testimonials .test-lft {
    background: url(../img/test.png);
    background-size: cover;
    width: 50%;
}

.testimonials .test-rgt {
    padding: 70px 0;
    width: 50%;
    background: url(../img/right-quote-sign.png) center no-repeat;
    background-size: 200px;
}

.testimonials .main-test {
    background: #52b5c4;
}

.testimonials .item {
    width: 100%;
}

.testimonials .item .test-rgt {
    width: 50%;
}

.testimonials .item .testimonial-slider p {
    color: var(--white-color);
    font-style: italic;
    padding: 30px 40px;
    line-height: 1.5;
}

.testimonials .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    background-color: var(--secondry-color);
    color: var(--white-color);
    height: 30px;
    width: 30px;
    font-size: 30px;
}

.testimonials .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -100%;
    transform: translate(-50%, -50%);
    background-color: var(--secondry-color);
    color: var(--white-color);
    height: 30px;
    width: 30px;
    font-size: 30px;
}

.testimonials .owl-carousel .owl-nav button.owl-next span,
.testimonials .owl-carousel .owl-nav button.owl-prev span {
    font-size: 20px;
}

.testimonials .owl-carousel .owl-item img {
    max-width: 80px;
    margin: auto;
}

.testimonials .item h3 {
    color: var(--white-color);
    padding-top: 10px;
}

.testimonials .item span {
    color: var(--yellow-color);
    text-transform: uppercase;
    font-size: 14px;
    display: block;
}



.products {
    padding: 100px 15px;
    position: relative;
}

.products h3 {
    color: var(--primary-color);
    text-align: center;
    margin-top: 25px;
}

.products h5 {
    color: #8e80fb;
}

.products p {
    color: #b1a8c8;
    text-align: center;
    font-size: 12px;
    font-family: var(--poppins-semibold);
}

.products .owl-carousel .owl-nav .owl-prev span,
.products .owl-carousel .owl-nav .owl-next span {
    color: #aea6bb;
    font-size: 60px;
}

.products #products-slider {
    margin-top: 55px;
}

.products #products-slider .owl-nav .owl-prev {
    position: absolute;
    top: 39%;
    left: 0px;
}

.products #products-slider .owl-nav .owl-next {
    position: absolute;
    top: 39%;
    right: 0px;
}

.cta {
    background: #f6f5fa;
}

.cta .lft-cta {
    width: 60%;
    flex-direction: column;
}

.cta .rgt-cta {
    width: 40%;
}

.rgt-cta img {
    margin-top: -50px;
    display: block;
}

.cta p {
    color: #b1a8c8;
    margin-bottom: 15px;
}

.cta a {
    width: 21%;
}

.cta .lft-cta .contact-btn {
    width: 21%;
}


footer {
    background: var(--primary-color);
    padding: 70px 15px;
}

footer .main-ftr {
    gap: 10px;
}

footer h3 {
    margin-bottom: 25px;
    color: var(--white-color);
}

footer p {
    color: #b1a8c8;
}

footer a {
    color: #b1a8c8;
}

footer a:hover,
footer .links a:hover {
    color: #d0cbdc;
}

footer .ftr-logo {
    width: 30%;
}

footer .lft-pnl {
    width: 33%;
}

footer .links {
    width: 33%;
    padding-left: 70px;
}

footer .Contact {
    width: 33%
}

footer .ftr-navigation a {
    color: #b1a8c8;
    padding: 5px 0;
}

footer .Contact p {
    margin: 5px 0;
}

/*footer .Contact p:nth-child(3){margin-bottom:15px;}*/


footer .hdr-icons i:nth-child(1) {
    color: #4867AA;
    border: 2px solid #4867AA;
    border-radius: 50%;
    padding: 16px 19px;
}

footer .hdr-icons i:nth-child(1):hover {
    color: var(--white-color);
    border: 2px solid #4867AA;
    background: #4867AA;
    border-radius: 50%;
    padding: 16px 19px;
}

footer .hdr-icons i:nth-child(2) {
    color: #1DA1F2;
    border: 2px solid #1DA1F2;
    border-radius: 50%;
    padding: 16px 17px;
    margin: 0 10px
}

footer .hdr-icons i:nth-child(2):hover {
    color: #fff;
    border: 2px solid #1DA1F2;
    background: #1DA1F2;
    border-radius: 50%;
    padding: 16px 17px;
    margin: 0 10px
}

footer .hdr-icons i:nth-child(3) {
    color: #d94c3b;
    border: 2px solid #d94c3b;
    border-radius: 50%;
    padding: 16px 14px;
}

footer .hdr-icons i:nth-child(3):hover {
    color: #fff;
    border: 2px solid #d94c3b;
    background: #d94c3b;
    border-radius: 50%;
    padding: 16px 14px;
}

.copyright {
    background: var(--secondry-color);
    text-align: center;
    font-size: 14px;
    color: var(--white-color);
    padding: 20px 15px
}

.copyright p,
.copyright p a {
    color: var(--white-color)
}

.contact {
    padding: 100px 15px;
}

.contact h5 {
    color: var(--secondry-color);
}

.contact form .flex {
    gap: 20px;
    margin: 20px 0;
}

.contact input {
    border: none;
    background: #f4f5f8;
    padding: 13px 20px;
    font-size: 16px;
}

.contact input:focus {
    border: 1px solid red;
}

.contact form textarea {
    border: none;
    background: #f4f5f8;
    padding: 13px 20px;
    font-size: 16px;
    width: 100%;
    resize: none;
}

/* Chrome, Safari, Edge, Opera */
.contact form input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.contact form input[type=number] {
    -moz-appearance: textfield;
}

.contact form input[type=submit] {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    margin-top: 20px;
}

.contact .container {
    gap: 50px;
}

.contact .get-in-touch>p {
    line-height: 1.5;
    padding-block: 20px;
    color: #b1a8c8;
}

.contact .get-in-touch i {
    display: inline-block;
    background-color: var(--secondry-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-right: 20px;
    color: var(--white-color);
}

.contact .get-in-touch span:nth-child(1) {
    font-weight: bold;
}

.contact .get-in-touch span:nth-child(2) {
    color: #b1a8c8;
}

.contact .get-in-touch span:nth-child(2) a {
    color: #b1a8c8;
}

.contact .get-in-touch span {
    display: block;
    font-size: 18px;
}

.contact .get-in-touch .flex {
    margin: 20px 0;
}

.contact .get-in-touch .second-icon i {
    background-color: var(--primary-color);
}

.contact .get-in-touch .third-icon i {
    background-color: #1DA1F2;
    color: #ffffff;
}

.contact iframe {
    width: 100%;
}