/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    scroll-behavior: smooth;
    transition: 0.3s all;
}

.container1 {
    max-width: 1400px;
    margin: auto;
}

.container {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

body::before,
body::after {
    width: 500px;
    content: "";
    z-index: 1;
    position: absolute;
}

body::after {
    height: 800px;
    background: url('../svg/shadow-blue.svg') no-repeat 100% 0;
    left: 0;
    top: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.flex {
    display: flex;
    align-items: center;
}

header {

    position: sticky;
    top: 0;
    padding: 30px;
    z-index: 99999;
    transition: 0.3s all;
}

#header.scrolled {
    background-color: #fff;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
    padding: 15px;
}

header nav {
    position: relative;
    justify-content: space-between;
}

.logo {
    gap: 10px;
}

.logo .logoimg {
    width: 30px;
    height: 30px;
}

.logo .logoimg img {
    width: 100%;
    height: 100%;
}

.logo h1 {
    font-family: sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #555;
}

.navlist ul {
    gap: 40px;
    font-family: Noto Sans, sans-serif;
}

.navlist ul li {
    font-size: 16px;
    color: #94a9c9;
    cursor: pointer;
    display: flex;
}

.navlist ul li a {
    color: #94a9c9;
}

.navlist ul li .liactive {
    color: #1cc2e7;
    font-weight: 600;
}

.navlist ul li i {
    font-size: 15px;
    margin-left: 6px;
    margin-top: 2px;
}

.searchdarksub {
    gap: 20px;
}

.searchbar i {
    font-size: 20px;
    color: #94a9c9;
    cursor: pointer;
}

.searchclick {
    position: absolute;
    right: 13%;
    margin-top: 20px;
    width: 350px;
    background-color: #e8edf5;
    border: 1px solid #e9eef5;
    border-radius: 10px;
    padding: 5px;
    overflow: hidden;
    z-index: 1;
    display: none;
}

.searchbar form {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1;
    padding: 20px 15px 10px 20px;
}

.searchbar form input {
    width: 100%;
    line-height: 25px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
}

.searchbar form i {
    background-color: white;
    position: absolute;
    width: 25px;
    top: 32px;
    right: 25px;
}

.tagssec {
    padding: 10px 23px;
}

.tagssec h3 {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.tegs {
    gap: 10px;
    padding: 10px 0;
}

.tegs a {
    font-size: 14px;
    color: #94a9c9;
    transition: 0.3s all;
}

.tegs a:hover {
    color: #3b5377;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
}

.l {
    display: block;
    margin-bottom: 1.5em;
    font-size: 1em;
}

.l {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0.75em;
    box-shadow: 0.125em 0.125em 0 0.125em rgba(0, 0, 0, 0.3) inset;
    color: #fdea7b;
    display: inline-flex;
    align-items: center;
    margin: auto;
    padding: 0.15em;
    width: 3em;
    height: 1.5em;
    transition: background-color 0.1s 0.3s ease-out, box-shadow 0.1s 0.3s ease-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.l:before,
.l:after {
    content: "";
    display: block;
}

.l:before {
    background-color: #d7d7d7;
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    transition: background-color 0.1s 0.3s ease-out, transform 0.3s ease-out;
    z-index: 1;
}

.l:after {
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.15) 0) 0 50% / 50% 100%,
        repeating-linear-gradient(90deg, #bbb 0, #bbb, #bbb 20%, #999 20%, #999 40%) 0 50% / 50% 100%,
        radial-gradient(circle at 50% 50%, #888 25%, transparent 26%);
    background-repeat: no-repeat;
    border: 0.25em solid transparent;
    border-left: 0.4em solid #d8d8d8;
    border-right: 0 solid transparent;
    transition: border-left-color 0.1s 0.3s ease-out, transform 0.3s ease-out;
    transform: translateX(-22.5%);
    transform-origin: 25% 50%;
    width: 1.2em;
    height: 1em;
    box-sizing: border-box;
}

/* Checked */
.l:checked {
    background-color: rgb(215 202 202 / 45%);
    box-shadow: 0.125em 0.125em 0 0.125em rgba(0, 0, 0, 0.1) inset;
    border: 1px solid #999;
}

.l:checked:before {
    background-color: currentColor;
    transform: translateX(125%)
}

.l:checked:after {
    border-left-color: currentColor;
    transform: translateX(-2.5%) rotateY(180deg);
}

.l:focus {
    outline: 0;
}

.searchdarksub button {
    padding: 12px 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    perspective: 30rem;
    border-radius: 6px;
}

.searchdarksub button::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 6px;
    background: linear-gradient(320deg, #0ea5ea, #0bd1d1 51%, #0ea5ea) var(--x, 0)/200%;
    z-index: 1;
    transition: background 3s;
    z-index: -1;
}

.searchdarksub button:hover::before {
    animation: rotate 1s;
    transition: all .5s;
}

@keyframes rotate {
    0% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.searchdarksub button a {
    z-index: 1;
    color: white;
}

#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition-duration: .3s;
    display: none;
}

.bars {
    width: 100%;
    height: 4px;
    background: linear-gradient(to top, #0ea5ea 30%, #0bd1d1 70%) 50%;
    border-radius: 5px;
    transition-duration: .3s;
}

#checkbox:checked+.toggle .bars {
    margin-left: 13px;
}

#checkbox:checked+.toggle #bar2 {
    transform: rotate(135deg);
    margin-left: 0;
    transform-origin: center;
    transition-duration: .3s;
}

#checkbox:checked+.toggle #bar1 {
    transform: rotate(45deg);
    transition-duration: .3s;
    transform-origin: left center;
}

#checkbox:checked+.toggle #bar3 {
    transform: rotate(-45deg);
    transition-duration: .3s;
    transform-origin: left center;
}


/* bio sec */



.biosec {
    position: relative;
    justify-content: space-between;
    margin-top: 100px;
    width: 100%;
    height: auto;
    /* border-bottom: 1px solid red; */
    /* overflow: hidden; */
}

.bio {
    margin-top: 40px;
}

.bio h4 {
    font-size: 15px;
    font-weight: 700;
    color: #7f92b0;
}

.bio h1 {
    color: #344161;
    font-size: 64px;
    margin: 20px 0;
}

.multi-text {
    background: linear-gradient(90deg, #0ea5ea, #0bd1d1 51%, #0ea5ea) var(--x, 0)/200%;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.blink {
    border: 4px solid #344161;
    margin-left: 15px;
    animation: blink .8s infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.bio p {
    width: 65%;
    color: #7f92b0;
    font-size: 14px;
    line-height: 24px;
    margin: 15px 0;
}

.emailsub {
    width: 50%;
    background: linear-gradient(#e9eef5, #e9eef5) padding-box, linear-gradient(90deg, #e9eef5, #e9eef5) border-box;
    border-radius: 8px;
    border: 1px solid transparent;
    background-color: #e9eef5;
    padding: 10px 10px 10px 20px;
    margin: 40px 0;
}

.bio form {
    width: 100%;
}

.bio form input {
    font-family: 'Noto Sans', sans-serif;
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.bio form button {
    padding: 10px 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    perspective: 30rem;
    border-radius: 6px;
}

.bio form button::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 6px;
    background: linear-gradient(320deg, #0ea5ea, #0bd1d1 51%, #0ea5ea) var(--x, 0)/200%;
    z-index: 1;
    z-index: -1;
}

.bioimg {
    position: relative;
    width: 800px;
}

.bioimg img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all .3s ease 0s;
}

.bioimg::before {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    height: 500px;
    width: 500px;
    background: url('../svg/shadow-blue-round.svg') no-repeat 50%;
    background-size: contain;
    z-index: 1;
}

.pattern-1 {
    position: absolute;
    top: 33%;
    left: -17%;
}

.pattern-1 img {
    animation: animationFramesOne 20s linear infinite alternate;
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        transform: translate(0) rotate(0deg);
    }
}

.pattern-2 {
    position: absolute;
    top: 18%;
    right: 2%;
    animation: hero-thumb-animation 2s linear infinite alternate;
}

.pattern-2 img {
    animation: rotateMe 10s linear infinite alternate;
}

@keyframes hero-thumb-animation {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes rotateMe {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(1turn);
    }
}

.pattern-3 {
    position: absolute;
    bottom: 25%;
    left: -19%;
    animation: animationFramesOne 15s linear infinite alternate;
}

.pattern-4 {
    position: absolute;
    bottom: 20%;
    right: 50%;
    animation: animationFramesOne 10s linear infinite alternate;
}

/* hot topics */

.hottopicssec {
    position: relative;
    margin-top: -5px;
    align-items: self-start;
    justify-content: space-between;
    height: 290px;
    background-color: #e8edf5;
    border-radius: 8px;
    border: 1px solid #c2d4ee;
    padding: 24px;
}

.hottopics {
    width: 70%;
}

.hottopics h3 {
    color: #344161;
    margin-top: 5px;
    margin-bottom: 10px;
}

.hottopics p {
    font-size: 14px;
    color: #708ab0;
    margin: 20px 0;
    width: 80%;
}

.lrbtn {
    padding: 10px;
}

.lrbtn button {
    padding: 10px 12px;
    border-radius: 50%;
    background-color: #94a9c9;
    border: none;
    outline: none;
    margin-right: 8px;
    cursor: pointer;
    transition: 0.3s linear;
}

.lrbtn button i {
    color: rgb(66, 63, 63);
    font-size: 15px;
}

.lrbtn button:hover {
    background: linear-gradient(320deg, #0ea5ea, #0bd1d1 51%, #0ea5ea) var(--x, 0)/200%;
}

.hotcards {
    position: relative;
    height: 100%;
    gap: 20px;
    overflow: auto;
    scroll-behavior: smooth;
}

.hotcards::-webkit-scrollbar {
    display: none;
}

.hcard {
    position: relative;
    max-width: 200px;
    min-width: 200px;
    height: 100%;
    border-radius: 8px;
    border: none;
    outline: none;
    overflow: hidden;
    cursor: pointer;
    z-index: 2;
}

.hcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hcard .hdetails {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: url('../svg/bottom\ black.png') repeat-x 0 100%;
}

.hcard .hdetails .hdetail {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
}

.hdetail h4 {
    color: #fff;
    font-weight: 600;
}

.hdetail p {
    font-size: 13px;
    color: #708ab0;
    margin: 5px 0;
}

.bigtitle {
    margin: 60px auto;
}

.bigtitle h2 {
    font-size: 45px;
}

.textcolor {
    font-size: 36px;
    background: linear-gradient(to top, #0ea5ea 30%, #0bd1d1 70%) 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bigtitle p {
    color: #708ab0;
    margin: 10px 0;
    font-size: 18px;
}

/* edcard */

.editorcards {
    position: relative;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.rightshadowimg {
    position: relative;
    width: 100%;
}

.rightshadowimg::before,
.rightshadowimg::after {
    width: 500px;
    content: "";
    z-index: 1;
    position: absolute;
}

.rightshadowimg::after {
    height: 800px;
    background: url('../svg/shadow-blue.svg') no-repeat 100% 0;
    transform: rotate(180deg);
    right: 0;
    top: 0;
}

.edcard {
    margin: 20px 0;
    border: 1px solid #e9eef5;
    background-color: #e8edf5;
}

.edcard:nth-child(1) {
    overflow: hidden;
    border-radius: 15px;
    padding: 30px;
    min-width: 48%;
    max-width: 48%;
    height: 600px;
}

.edcard:nth-child(2) {
    overflow: hidden;
    border-radius: 15px;
    padding: 30px;
    min-width: 48%;
    max-width: 48%;
    height: 600px;
}

.edcard:nth-child(3),
.edcard:nth-child(4),
.edcard:nth-child(5) {
    border: 1px solid #e9eef5;
    background-color: #e8edf5;
    overflow: hidden;
    border-radius: 15px;
    padding: 30px;
    min-width: 32%;
    max-width: 32%;
    height: 450px;
}

.edcard a img {
    width: 100%;
    height: 63%;
    object-fit: cover;
    border-radius: 14px;
}

.edcard:nth-child(3) a img,
.edcard:nth-child(4) a img,
.edcard:nth-child(5) a img {
    height: 55%;
}

.edcard:nth-child(3) a h2,
.edcard:nth-child(4) a h2,
.edcard:nth-child(5) a h2 {
    font-size: 20px;
}

.edcarddetl a h2 {
    color: #344161;
    margin: 20px 0;
    transition: 0.3s linear;
}

.edcarddetl a h2:hover {
    color: #0ea5ea;
}

.tegtime {
    justify-content: space-between;
    margin: 20px 0;
}

.tegtime h5 {
    color: #6e81a0;
}

.tegtime h5 i {
    font-size: 17px;
    margin-right: 5px;
}

.tegtime h5 span {
    margin-right: 5px;
}

.tegtime h5:hover {
    color: #0ea5ea;
}

.postby {
    justify-content: space-between;
}

.readmore {
    position: relative;
    padding-top: 13px;
    padding-left: 24px;
}


.readmore::before {
    content: "";
    position: absolute;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    left: 0;
    top: 0;
    background-color: #cfd5e482;
    z-index: 1;
}

.readmore span {
    position: relative;
    color: #7f92b0;
    z-index: 2;
}

.readmore span:hover {
    color: #0ea5ea;
}

.authorbx {
    gap: 15px;
}

.authorbx img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* showmorepost button */

.showmorepost {
    width: 100%;
    justify-content: center;
    margin: 20px 0;
}

.showmorepost a {
    border-radius: 80px;
    padding: 18px 30px;
    background: linear-gradient(90deg, #0ea5ea, #0bd1d1 51%, #0ea5ea) var(--x, 0) / 200%;
    color: #fff;
    transition: background 0.4s ease-in-out;
}

.showmorepost a:hover {
    --x: 100%;
}

.showmorepost a i {
    margin-left: 5px;
}

/* left shadow img */
.leftshadowimg {
    position: relative;
    width: 100%;
}

.leftshadowimg::before,
.leftshadowimg::after {
    width: 300px;
    content: "";
    z-index: 1;
    position: absolute;
}

.leftshadowimg::after {
    height: 800px;
    background: url('../svg/shadow-blue.svg') no-repeat 100% 0;
    left: 0;
    top: 0;
}

.contactbanner {
    width: 100%;
    margin: 40px auto;
    padding-bottom: 50px;
    justify-content: center;
}

.contactbanner img {
    width: 75%;
    height: 170px;
    object-fit: cover;
}

.tegsec {
    justify-content: space-between;
    overflow: hidden;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding: 10px 0;
}

.tegsec a {
    flex: 0 0 auto;
    width: 14.6666666667%;
    transition: all .25s cubic-bezier(.02, .01, .47, 1);
    border: 1px solid #e9eef5;
    background-color: #e8edf5;
    padding: 19px;
    position: relative;
    display: flex;
    border-radius: 16px;
    align-items: center;
    margin-bottom: 30px;
}

.tegsec a img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.tegsec a {
    color: #6e81a0;
}

.tegsec a:hover {
    background-color: #fff;
    transform: translateY(-5px);
}

/* recentpostsec */

.recentpostsec {
    position: relative;
    width: 100%;
    margin-top: 30px;
    align-items: flex-start;
}

.recentposts {
    width: 100%;
}

.posts {
    margin-top: 30px;
}

.post {
    align-items: self-start;
    transition: 0.3s all;
    margin: 40px 0;
}

.post img {
    width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: 20px;
}

.postdetails {
    padding: 5px 30px;
}

.postlabel {
    transition: 0.2s all;
    display: inline-block;
}

.postlabel a {
    background-color: #e9eef5;
    color: #7f92b0;
    border-radius: 50px;
    padding: 6px 15px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s linear;
}

.postlabel a:hover {
    background-color: #0ea5ea;
    color: #fff;
}

.postlabel:hover {
    transform: translateY(-5px);
}

.postdetails h2 {
    color: #344161;
    margin: 20px 0;
}

.postdetails h2:hover {
    color: #0ea5ea;
}

.postdetails p {
    color: #708ab0;
    margin-bottom: 10px;
    font-size: 14px;
}

.posttimeteg {
    margin: 20px 0;
    justify-content: space-between;
}

.posttimeteg h5 {
    margin-right: 5px;
    color: #94a9c9;
    font-weight: 500;
}

.posttimeteg h5:hover {
    color: #0ea5ea;
}

.postslider {
    width: 45%;
    height: auto;
    margin-top: 60px;
}

.popularposts {
    width: 100%;
    background-color: #e8edf5;
    border: 1px solid #c2d4ee;
    border-radius: 16px;
    padding: 25px 25px 0;
    margin-bottom: 30px;
}

.poptitle h3 {
    position: relative;
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 40px;
    background: linear-gradient(82.19deg, #0ea5ea 5.2%, #0bd1d1 100.36%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.poptitle h3:before {
    height: 3px;
    width: 96px;
    content: "";
    background-color: #0ea5ea;
    position: absolute;
    bottom: 0;
    left: 0;
}

.popupost {
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.popupost img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.popupostde {
    border-bottom: 1px solid #99999971;
}

.popupost:last-child .popupostde {
    border: none;
}

.popupostde h4 {
    margin-bottom: 14px;
    color: #344161;
    transition: 0.3s;
}

.popupostde h4:hover {
    color: #0ea5ea;
}

.poputime {
    justify-content: space-between;
    margin-bottom: 10px;
}

.poputime h5 {
    color: #708ab0;
    font-weight: 400;
}

.poputime span {
    margin-right: 5px;
}

/* comments */
.comment {
    border-bottom: 1px solid #17131329;
    margin: 20px 0;
}

.comment p {
    font-size: 14px;
    color: #708ab0;
    margin-bottom: 18px;
    text-align: left;
}

.authorcomment img {
    width: 35px;
    height: 35px;
}

.authorcomment {
    gap: 10px;
    margin-bottom: 15px;
}

.authorcomment h5 {
    font-size: 14px;
    font-weight: 500;
    color: #4e658a;
}

.authorcomment span {
    font-size: 12px;
    color: #6e81a0;
}

.comment:last-child {
    border: none;
}



/* footer start */

footer {
    height: auto;
    padding: 80px 80px 0px 80px;
    border: 1px solid #c2d4ee;
    background-color: #e8edf5;
    border-radius: 40px;
}

.footersec {
    align-items: flex-start;
    border-bottom: 1px solid #344161;
}

.logofooter {
    padding: 30px 0;
    padding-right: 30px;
}

.logof {
    margin-bottom: 20px;
}

.logofooter .logof a img {
    width: 40px;
}

.logofooter .logof a h1 {
    color: #555;
    font-size: 30px;
    font-weight: 800;
    margin-left: 5px;
}

.logofooter p {
    width: 350px;
    color: #708ab0;
    font-size: 14px;
}

.logofooter h4 {
    color: #344161;
    margin-top: 20px;
    margin-bottom: 5px;
}

.categoriesfooter {
    padding: 30px 0;
}

.categoriesfooter h3 {
    color: #344161;
    font-weight: 600;
    margin-bottom: 20px;
}

.catefbx ul li {
    margin: 14px 0;
}

.catefbx ul li a {
    color: #3b5377;
}

.catefbx ul li a:hover {
    color: #0ea5ea;
}

.catefbx {
    margin-right: 100px;
}

.newsletterfooter {
    padding: 30px 0;
}

.newsletterfooter h3 {
    color: #344161;
    font-weight: 600;
    margin-bottom: 20px;
}

.newsletterfooter p {
    color: #708ab0;
    font-size: 14px;
}

.newsletterfooter form {
    width: 100%;
    margin: 20px 0;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
}

.newsletterfooter form div {
    border-bottom: 1px solid #899fc0;
    width: 100%;
}

.newsletterfooter form div i {
    color: #708ab0;
}

.newsletterfooter form input {
    width: 100%;
    border: none;
    padding: 10px;
    font-weight: 600;
    color: black;
    background-color: transparent;
    outline: none;
}

.newsletterfooter button {
    margin-top: 10px;
    padding: 12px 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    perspective: 30rem;
    border-radius: 6px;
}

.newsletterfooter button::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, #0ea5ea, #0bd1d1 51%, #0ea5ea) var(--x, 0) / 200%;
    z-index: 1;
    transition: background 0.3s;
    z-index: -1;
}

.newsletterfooter button:hover {
    --x: 100%;
}

.newsletterfooter button i {
    font-size: 10px;
    margin-left: 3px;
}


.themeauthor {
    justify-content: space-between;
    padding: 40px 0;
}

.createdby h4 {
    color: #4e658a;
    font-weight: 500;
}

.createdby h4 a {
    color: #0ea5ea;
}

.createdby h4 a:hover {
    color: #0bd1d1;
}

.social {
    gap: 30px;
}

.socialicon {
    display: flex;
    align-items: center;
    gap: 5px;
}

.socialicon h4 {
    color: #708ab0;
}

.socialicon h4:hover {
    color: #0ea5ea;
}

.socialicon i {
    color: #708ab0;
    font-size: 18px;
}