@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700;800&family=Poppins:wght@100;200;300;400;500;600;700&family=Raleway:wght@100;200;300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --poppins: 'Poppins', sans-serif;
    --raleway: 'Raleway', sans-serif;
    --monserret: 'Montserrat', sans-serif;
    --outfit: 'Outfit', sans-serif;
    --roboto: 'Roboto', sans-serif;
    --primary-color: #d8b641;
    --secondary-color: #fe5847;
    --blue-color: #000066;
    --dark-blue-color: #011a33;
    --white-color: #fff;
    --dark-saturated-orange: #ff6600;
    --gray-color: #c9c9c9;
    --dark-color: #131313;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: var(--poppins);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--outfit);
    margin: 0;
    padding: 0;
}

.guiedline {
    max-width: 1220px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

/* wrapper */
.wrapper-bg {
    background-image: url(../img/wrapper-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


/* header */
.header-bg {
    background-color: #011f38;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.logo img {
    width: 220px;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--outfit);
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    margin-left: -30px;
    padding: 10px 0;
    position: relative;
    padding-right: 50px;
}

nav ul::after {
    position: absolute;
    content: '';
    background-color: #07ecfe;
    height: 8px;
    border-radius: 5px;
    width: 120%;
    bottom: -24px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

nav ul span {
    color: white;
    font-size: 22px;
}

nav ul li a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

nav ul li a:hover {
    color: white;
    text-decoration: underline;
    transition: 0.2s;
}

.header-btn {
    background-color: #07ecfe;
    padding: 34px 20px;
    border-radius: 0 0 0 90px;
    border-left: 15px solid #153148;
}

.header-btn a {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #011f38;
    color: #ffcc19;
    font-size: 22px;
    font-weight: 700;
}

.header-btn a:hover {
    background-color: #1A72B9;
    transition: 0.2s;
    color: white;
}

/* banner */
.banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 10px;
    gap: 15px;
}

.banner h2 {
    color: #002b4f;
    font-size: 36px;
    text-align: center;
    font-weight: 600;
    max-width: 1150px;
    font-family: var(--outfit);
    line-height: 50px;
}

.banner h2 span {
    color: red;
    font-weight: 700;
}

.banner h4 {
    color: #002b4f;
    text-align: center;
    font-size: 30px;
    margin-top: -20px;
    font-family: var(--outfit);
}

.banner h3 {
    color: red;
    font-weight: 700;
    font-size: 38px;
    text-align: center;
    max-width: 1160px;
    line-height: 50px;
    font-family: var(--outfit);
}

.banner h3 span {
    background-color: #071c30;
    margin: 0;
    padding: 2px 20px 6px 20px;
    border: 3px solid red;
    border-radius: 10px;
    color: #07ecfe;
    font-weight: 600;
    font-size: 34px;
    max-width: 900px;
}

.banner h3.cakes {
    font-weight: 600;
    font-size: 32px;
    color: red;
    line-height: normal;
}

.make {
    background-color: #f9c547;
    padding: 6px 30px;
    border-radius: 6px;
    transform: skewX(10deg);
    border: 8px solid red;
    border-top: 0;
    border-left: 0;
}

.make p {
    color: black;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    transform: skewX(-10deg);
}

.banner-inner {
    padding-top: 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
}

.video iframe {
    width: 600px;
    height: 340px;
    border-radius: 15px;
}

.launch {
    background-color: #002b4f;
    padding: 0 15px;
    border-radius: 15px;
}

.launch-inner {
    background-color: white;
    padding: 15px 10px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.launch h2 {
    color: #071c30;
    font-size: 40px;
    font-weight: 700;
}

.launch p {
    color: red;
    margin: 0;
}

.time {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.time p {
    background-color: #002b4f;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 15px;
    border-radius: 20px;
    margin: 0;
}

.launch h3 {
    color: red;
    font-weight: 700;
    font-size: 40px;
}

.launch-date {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.launch-inner img {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 100%;
    z-index: -1;
}

.affliate-link {
    margin-top: 40px;
    padding: 30px 50px;
    border-radius: 130px;
    background-color: #071c30;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 10px solid red;
    border-top: 0;
    border-bottom: 0;
    gap: 10px;
}

.affliate-link h2 {
    font-size: 36px;
    color: white;
    font-weight: 700;
    text-align: center;
}

.affliate-link p {
    font-size: 20px;
    font-weight: 500;
    color: #fce22f;
    text-align: center;
}

.affliate-link a {
    text-decoration: none;
    color: black;
    font-size: 26px;
    font-weight: 700;
    padding: 6px 20px;
    background-color: #fce22f;
    text-align: center;
    z-index: 9;
    border-radius: 40px;
}

.affliate-link a:hover {
    color: black;
    background-color: #caaf00;
}

.affliate-link img {
    position: absolute;
    width: 104%;
    bottom: -20px;
    right: auto;
    left: auto;
}

.note {
    margin-top: 30px;
    text-align: center;
}

.note p {
    font-size: 18px;
    margin: 0;
}

.note span {
    background-color: #f4e900;
    color: black;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 700;
}

.note b {
    color: red;
    font-size: 20px;
    font-weight: 700;
}

/* advantage */
.advantage-bg {
    /* background: linear-gradient(0deg, rgba(7, 28, 48, 1) 30%, rgba(236, 105, 27, 1) 30%, rgba(236, 105, 27, 1) 70%, rgba(7, 28, 48, 1) 70%); */
    background-image: url(../img/advantage-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.advantage {
    background-image: url(../img/advantage-inner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 15px;
    border: 3px solid #ff5b52;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50px;
}

.advantage-inner {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.advantage-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.advantage-image img {
    width: 90%;
}

.advantage-cont {
    width: 100%;
}

.advantage-cont p {
    color: white;
    font-size: 20px;
}

.advantage-cont p b {
    font-weight: 700;
    color: red;
}

.product-heading {
    margin-top: 40px;
    padding: 8px 15px;
    border: 2px solid #fce22f;
    transform: skewX(-20deg);
    position: relative;
}

.product-heading::before {
    position: absolute;
    content: '';
    left: -4px;
    top: 50%;
    bottom: 0;
    background-color: #fce22f;
    width: 8px;
    height: 70%;
    transform: translate(0, -50%);
}

.product-heading::after {
    position: absolute;
    content: '';
    right: -4px;
    top: 50%;
    bottom: 0;
    background-color: #fce22f;
    width: 8px;
    height: 70%;
    transform: translate(0, -50%);
}

.product-hd-inr {
    background-color: white;
}

.advantage h2 {
    color: black;
    padding: 15px 20px;
    font-size: 26px;
    line-height: 24px;
    text-align: center;
    margin: 0;
    font-weight: 700;
    max-width: 700px;
    width: 100%;
    transform: skewX(20deg);
}

.advantage-point {
    padding-top: 50px;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.advantege-point-inner {
    border-radius: 30px;
    flex-basis: 38%;
    border-bottom: 2px solid #f4e900;
    padding-bottom: 6px;
}

.advantage-point p {
    font-size: 20px;
    color: black;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.advantage-item {
    background-color: white;
    border-top: 10px solid red;
    height: 100%;
    border-radius: 20px;
    padding: 10px 20px;
}

/* trend */
.trend-bg {
    background-image: url(../img/trend-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 50px 0;
}

.trend {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trend-inner {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trend-item {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trend-item-inner {
    padding: 40px 30px 20px 20px;
    background-color: #071c30;
    transform: skewX(-10deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.trend-img {
    max-width: 150px;
    z-index: 0;
    margin: 0 0 -50px 0;
}

.trend-img img {
    width: 100%;
}

.trend-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: skewX(10deg);
}

.trend-cont h3 {
    color: #071c30;
    background-color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

.trend-cont p {
    color: white;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}


























.ai-reels-bg {
    background-image: url(../img/ai-reels-academy-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -2px;
    padding: 60px 0;
    position: relative;
    margin-bottom: -3px;
}

.ai-reels h2 {
    color: white;
    text-align: center;
    font-size: 50px;
    line-height: 70px;
    width: 80%;
    margin: 0 auto;
}

.ai-reels h2 span.Company-name {
    font-weight: 700;
    color: #fe5847;
}

.ai-reels p {
    color: #d8b641;
    font-size: 26px;
    line-height: 40px;
    font-weight: 600;
    width: 69%;
    text-align: center;
    margin: 0 auto;
    padding-top: 15px;
}

.reel-video {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    background-color: #090429;
    padding: 10px 30px;
    margin-top: 70px;
    border-radius: 10px;
    flex-wrap: wrap;
    width: 85%;
}

.ai-reels {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-1 {
    width: 100%;
    flex-basis: 23%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
}

.video-1 video {
    width: 100%;
    border-radius: 20px;
    border: 3px dotted #153554;
    height: 100%;
}

.reel-academy {
    margin-top: 100px;
    text-align: center;
}

.images {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.img-1 {
    box-shadow: 0px 0px 25px -8px #002bff;
    background: #00000090;
    padding: 10px 22px;
    border-radius: 10px;
}

.img-1 img {
    width: 100%;
}

.reel-academy h3 {
    font-size: 90px;
    font-weight: 600;
    color: #d8b641;
    position: relative;
    margin: 0 auto;
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-color: white;
}

.reel-academy p {
    width: 62%;
    color: white;
    font-size: 22px;
    line-height: 40px;
    padding-top: 120px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-bottom: 50px;
}

.reel-academy p span.name {
    color: #ff6600;
}

.ai-reel .affliate-cont h2 {
    color: #d8b641;
}

.affliate-link-box-1 {
    justify-content: center;
    display: flex;
    background-color: black;
    margin: 0;
    padding: 0;
    padding: 50px 0 0 0;
}

.sect-1 {
    height: 12vh;
    width: 100%;
    background-color: black;
}

/* reel image sect property */

.reels-image-bg {
    background-image: url(../img/reels-image-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 20px;
}

.reels-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background-color: #090429;
    border-radius: 10px;
    padding: 48px 30px;
}

.image-1 {
    width: 25%;
}

.image-1 img {
    width: 100%;
    border-radius: 20px;
    border: 3px dotted #153554;
}













/* product advantage */

.product-advantage-bg {
    /* background: linear-gradient(180deg, rgba(48, 201, 205, 1) 21%, rgba(51, 16, 107, 1) 79%); */
    background-image: url(../img/plr-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}

.product-advantage {
    text-align: center;
}

.product-advantage h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 70px;
    background-image: url(../img/heading-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 200px;
}

.product-advantage h2 span {
    color: #fe5847;
}

.product-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    gap: 20px;
    flex-basis: 28%;
}

.product-item img {
    width: 120px;
}

.product-item h3 {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
}

.product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.product-item {
    height: 200px;
}

/* feature detail section */

.feature-details-bg {
    background-image: url(../img/section-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 60px 0;
}

.feature-detail h3 {
    font-size: 26px;
    line-height: 40px;
    text-align: center;
    background-image: url(../img/heading-bg-2.png);
    background-size: inherit;
    background-position: center;
    background-repeat: no-repeat;
    font-weight: 600;
    padding: 20px;
}

.feature-detail h3 span.second-line {
    font-size: 23px;
    color: #d04b0a;
    font-weight: 500;
}

.feature-detail h3 span.last-line {
    font-size: 20px;
    font-weight: 400;
    color: black;
    font-style: italic;
}

.feature-detail-boxs {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 70px;
}

.feature-detail-box {
    flex-basis: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-detail-box img {
    width: 100px;
}

.feature-detail-box h5 {
    color: #d8b641;
    font-size: 22px;
    padding-top: 10px;
    text-align: center;
}

.feature-detail-box p {
    color: white;
    font-size: 18px;
    text-align: center;
}

/* OTO section */

.oto-bg {
    background-color: #eeeffa;
    padding: 40px 0 70px 0;
}

.oto-sect h2 {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    color: #000066;
    padding-bottom: 40px;
}

.oto-boxs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.oto-box {
    border: 2px solid var(--blue-color);
    padding: 20px 15px;
    border-radius: 15px;
    background-image: url(../img/border-corner.png);
    background-repeat: no-repeat;
    background-position: top left;
}

.oto-cont {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background-color: var(--white-color);
    padding: 35px 55px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px #ccc;
}

.oto-cont img {
    width: 150px;
}

.oto-cont p {
    font-size: 45px;
    color: var(--blue-color);
    font-weight: 600;
    text-transform: capitalize;
    line-height: 55px;
    width: 215px;
}

.oto-cont h5 {
    font-size: 35px;
    color: var(--dark-saturated-orange);
    font-weight: 700;
}

.oto-cont h6 {
    font-size: 25px;
    color: var(--dark-saturated-orange);
    font-weight: 600;
    margin-top: -30px;
}

.oto-box-sect {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.oto-cont-1 {
    gap: 0px;
    padding: 20px 50px;
}

.oto-cont-1 h6 {
    margin-top: -15px;
    font-size: 16px;
}

.oto-cont-1 h5 {
    font-size: 18px;
}

.oto-cont-1 p {
    font-size: 25px;
    line-height: 35px;
    width: auto;
}

.oto-cont-1 img {
    width: 100px;
}

.oto-sect- {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.front-end-offer h3 {
    font-size: 35px;
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
}

.front-end-offer {
    padding: 0px 20px 20px 20px;
    background-color: #303084;
    border: 2px dashed var(--white-color);
    border-radius: 10px;
    box-shadow: -5px 5px 10px #999;
    margin-top: 60px;
    width: 80%;
}

.offer-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
}

.front-end-offer ul {
    display: flex;
    gap: 20px;
    padding-bottom: 12px;
    list-style: none;
    padding: 0;
}

.front-end-offer ul li {
    font-size: 20px;
    color: var(--white-color);
}

.front-end-offer ul li img {
    width: 20px;
}

.oto234 {
    width: 140%;
    margin-top: 50px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.oto2-3 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: -50px;
}

.oto-2 {
    padding: 20px 20px 20px 20px;
}

.oto-2 ul li {
    font-size: 18px;
}

.oto-2 ul {
    padding-bottom: 5px;
}

.oto-3 {
    padding: 20px 20px 20px 20px;
}

.oto-5-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: -50px;
}


/* academy offer sect property */

.academy-offer {
    padding: 50px 40px;
}

.academy-offer h3 {
    text-align: center;
    color: #ff4444;
    font-size: 35px;
    line-height: 50px;
    font-weight: 600;
    width: 100%;
    margin: 0 auto;
    max-width: 850px;
}

.academy-offer h3 span {
    color: #ffc500;
    font-size: 36px;
    font-weight: 700;
}

.offer-boxs {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.offer-box {
    background-color: #ff4444;
    padding: 20px;
    border-radius: 10px;
    width: 31.9%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.offer-box img {
    width: 250px;
}

.offer-box h5 {
    color: #3a135a;
    font-size: 24px;
    font-weight: 600;
}

.offer-box p {
    color: #3a135a;
    padding-top: 10px;
    font-size: 20px;
}

.offer-box-cont {
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 10px;
    margin-top: -100px;
}

.offer-box-cont-1 {
    padding: 25px;
}

.offer-box-sect {
    margin-top: 50px;
}

/* promo tools property */

.promo-tools {
    background-color: #1a0039;
    padding: 100px 40px 130px 40px;
    text-align: center;
}

.promo-tools h2 {
    font-size: 60px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 70px;
}

.promo-tool a {
    padding: 15px 50px;
    border-radius: 10px;
    font-size: 30px;
    color: var(--white-color);
    font-weight: 600;
    text-decoration: none;
}

.jv a {
    background: linear-gradient(120deg, rgba(127, 76, 188, 1) 21%, rgba(116, 0, 255, 1) 79%);
}

.sw a {
    background: linear-gradient(90deg, rgba(4, 248, 89, 1) 21%, rgba(50, 197, 241, 1) 79%);
}

.sp a {
    background: linear-gradient(100deg, rgba(246, 135, 35, 1) 21%, rgba(254, 190, 51, 1) 79%);
}

.jv a:hover {
    background: linear-gradient(320deg, rgba(127, 76, 188, 1) 21%, rgba(116, 0, 255, 1) 79%);
    transition: 0.5s ease-out;
    color: white;
}

.sw a:hover {
    background: linear-gradient(270deg, rgba(4, 248, 89, 1) 21%, rgba(50, 197, 241, 1) 79%);
    transition: 0.5s ease-out;
    color: white;
}

.sp a:hover {
    background: linear-gradient(290deg, rgba(246, 135, 35, 1) 21%, rgba(254, 190, 51, 1) 79%);
    transition: 0.5s ease-out;
    color: white;
}

.promo-tool-btn {
    display: flex;
    justify-content: space-evenly;
}

/* affliate box */

.affliate-sect-bg {
    background-color: black;
    padding-bottom: 50px;
}

.affliate-link-box-2 {
    position: static;
    margin-top: 0;
    text-align: center;
}

.affliate-sect .affliate-link-box-2 p {
    padding-top: 0;
    width: auto;
}

.affliate-sect p {
    font-size: 24px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
    line-height: 35px;
    font-weight: 500;
    padding-top: 30px;
    color: white;
}

/* resiprocate sect property */

.resiprocate-bg {
    background-color: #f3f5fe;
    padding: 80px 0;
}

.resiprocate {
    text-align: center;
}

.resiprocate h2 {
    font-size: 50px;
    font-weight: 700;
    color: #1a0039;
    margin-bottom: 50px;
}

.resiprocate img {
    width: 75%;
}

/* prize sect property */

.prize-sect {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prize-sect h3 {
    font-size: 40px;
    font-weight: 600;
    background-color: #0313ff;
    padding: 10px 15px;
    color: var(--white-color);
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.prize-sect h3 span {
    color: #ffc500;
}

.prize-sect .arrow {
    width: 80px;
    animation: bottom 1s infinite;
    animation-timing-function: linear;
    position: relative;
    animation-direction: alternate;
    margin-bottom: 0;
}

@keyframes bottom {
    from {
        top: 0px;
    }

    to {
        top: 30px;
    }
}

.prize-sect img {
    width: 45%;
    margin-bottom: 80px;
}

/* author detail */

.author-detail-bg {
    background-image: url(../img/ai-reels-academy-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 70px 0;
}

.author-detail h3 {
    font-size: 35px;
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
    width: 68%;
    margin: 0 auto;
    line-height: 50px;
}

.author-detail img {
    width: 300px;
    margin-bottom: -150px;
}

.author-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-detail p {
    font-size: 35px;
    font-weight: 600;
    background: linear-gradient(150deg, rgba(11, 178, 184, 1) 21%, rgba(72, 17, 255, 1) 79%);
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--white-color);
}

.facebook a {
    background-color: #04f2fb;
    padding: 15px 40px;
    font-size: 35px;
    font-weight: 600;
    border-radius: 10px;
    color: var(--white-color);
    text-decoration: none;
}

.facebook a:hover {
    color: white;
}

.facebook {
    margin-top: 40px;
}

.skype p {
    background-color: #4811ff;
    padding: 15px 40px;
    font-size: 35px;
    font-weight: 600;
    border-radius: 10px;
    color: var(--white-color);
    line-height: normal;
}

.skype {
    margin-top: 50px;
}

/* footer property */

.footer-bg {
    background-color: var(--white-color);
    padding: 60px 0;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    font-family: var(--raleway);
}

.footer img {
    width: 280px;
}

.footer p {
    font-size: 18px;
    color: #626060;
    text-align: center;
    line-height: 30px;
    width: 85%;
    margin: 0 auto;
    font-weight: 500;
}

.copyright p {
    width: auto;
}

.footer-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: -35px;
}

.footer-btn a {
    text-decoration: none;
    color: #626060;
    font-size: 22px;
    font-weight: 500;
}

.footer-btn a:hover {
    color: var(--orange-color);
    transition: 0.5s;
}


.affliate-link-box {
    justify-content: center;
    display: flex;
}

.affliate-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-color);
    border: 2px dashed var(--secondary-color);
    padding: 20px 60px;
    text-align: center;
}

.affliate-cont p {
    width: auto;
    padding-bottom: 15px;
    color: var(--white-color);
    font-size: 28px;
}

.affliate-cont h2 {
    color: #ffc500;
    font-size: 55px;
    font-weight: 800;
    padding-bottom: 5px;
}

.cmn-btn {
    font-size: 40px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 15px;
    background-color: var(--secondary-color);
    transition: 0.5s ease-out;
    color: var(--white-color);
    text-decoration: none;
}

.cmn-btn:hover {
    background-color: var(--dark-saturated-orange);
    color: white;
}