@media (min-width: 1200px){
    .container{
        max-width: 1220px;
    }
}
:root {
    --color-1: #B4A5FC;
    --color-2: #73D8FC;
    --color-3: #5f3ac5;
    --dark-grey: #363636;
    --black: #0d1216;
    --white-color: #ffffff;
    --light-grey: #F6F8FF;
    --medium-grey: #dee2e6;
    --divider-color: #D9D9D9;
    --grey: #808080;
    --danger-color: #ee4957;
    --border-radius-md: 25px;
}
body {
    color: var(--dark-grey);
    line-height: 1.6;
    font-family: Roboto, sans-serif;
    background: #F9F9F9;
}
.n_dld-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 2500px;
    margin: auto;
}
a {
    text-decoration: none;
    color: var(--color-3);
}
.bg-overlay:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--black);
    opacity: 0.8;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.bg-overlay {
    z-index: 1;
}
.text-dark {
    color: var(--dark-grey) !important;
}
.text-secondary {
    color: var(--grey) !important;
}
h1,
h2,
h3,
h4,
h5 {
    color: var(--black);
    font-weight: 600;
}
h1 {
    font-size: 42px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 22px;
}
h4 {
    font-size: 19px;
}
h5 {
    font-size: 17px;
}
.btn {
    padding: 8px 24px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    border-radius: 50px;
    transition: all .25s ease-in-out;
}
.btn-light{
    border: none;
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--black);
}
.btn-grad {
    background: linear-gradient(
            to bottom,
            var(--color-2) 0%,
            var(--color-1) 50%,
            var(--color-2) 100%
    );
    padding: 8px 24px;
    background-size: 100% 200%;
    background-position: top;
    transition: background-position 0.5s ease;
    color: var(--black);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    border-radius: 50px;
}

.btn-grad:hover {
    background-position: bottom;
}

.shadow {
    box-shadow: rgb(99 99 99 / 0.2) 0 2px 8px 0 !important;
}
.form-control {
    height: 42px;
    border-radius: 4px;
    font-size: 14px;
    border-color: var(--medium-grey);
    background-color: #fdfdfd;
}
textarea.form-control {
    min-height: 110px;
    padding: 15px;
    resize: none;
}
.form-check-input:checked {
    background-color: var(--color-1);
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--color-2);
}
.scroll-track::-webkit-scrollbar-track {
    background-color: var(--medium-grey);
    border-radius: 10px;
}
.scroll-track::-webkit-scrollbar {
    width: 8px;
    background-color: var(--color-2);
    border-radius: 6px;
}
.scroll-track::-webkit-scrollbar-thumb {
    background-color: var(--color-2);
    border-radius: 6px;
}
.spacing-padding {
    padding: 50px 0;
}
.spacing-margin {
    margin: 0 0 50px;
}
.n_dld-hero-sec{
    min-height: 590px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 50px 50px;
}
.n_dld-hero-details-caption{
    max-width: 500px;
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.n_dld-hero-details-caption .hero-badge{
    font-size:14px;
    padding: 4px 20px;
    background: var(--white-color);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.n_dld-hero-details{
    color: var(--white-color);
    backdrop-filter: blur(50px);
    -webkit-transition: all 500ms ease;
    background: rgba(0,0,0,.2);
    border-radius: 25px;
    padding: 19px 50px;
    font-size: 14px;
}
.n_dld-hero-details p{
    margin-bottom: 0;
}
.n_dld-hero-details-caption .btn-wrapp{
    gap: 15px;
}


.n_dld-guest-post-wrapp{
    display: grid;
    grid-template-columns:55% 45%;
    gap: 20px;
}
.n_dld-guest-post-form{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: var(--white-color);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
}
.n_dld-guest-post-form .form-control{
    height: 40px;
    background: var(--light-grey);
    border-radius: 40px;
    border: none;
    padding: 10px 8px 10px 40px;
}
.n_dld-guest-post-form .ico{
    position: absolute;
    top: 6px;
    left: 15px;
    color: var(--color-1);
}
.n_dld-guest-post-form textarea.form-control{
    min-height: 120px;
    border-radius: 25px;
}
.n_dld-guest-post-form .form-control::placeholder{
    color: #BBBCC0;
}
.n_dld-guest-post-form .btn-grad{
    font-size: 18px;
    margin-top: 30px;
    min-height: 50px;
}
.n_dld-guest-post-requirenment-wrapp{
    background:var(--white-color);
    border-radius: var(--border-radius-md);
    font-size: 14px;
}
.n_dld-guest-post-requirenment-wrapp .n_dld-post-requirenment-list{
    padding: 30px 20px;
}
.n_dld-post-requirenment-list ul{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}
.n_dld-post-requirenment-list li{
    position: relative;
    padding: 0 0 0 35px;
}
.n_dld-post-requirenment-list li::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 1px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23F8F8F8'/%3E%3Ccircle cx='10' cy='10' r='4' fill='url(%23paint0_linear)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='10' y1='6' x2='10' y2='14' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2373D8FC'/%3E%3Cstop offset='1' stop-color='%23B4A5FC'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.n_dld-guest-post-about-wrapp{
    background: linear-gradient(180deg, rgba(115, 216, 252, 1) 0%, rgba(180, 165, 252, 1) 100%);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    font-size: 14px;
}
.n_dld-guest-post-about-wrapp .readers-counter{
    font-size: 24px;
    line-height: 30px;
}

.n_dld-post-social-media{
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--divider-color);
    padding: 20px 15px;
}
.n_dld-post-social-media li{
    text-align: center;
}


.n_dld-post-social-media li a{
    display: inline-flex;
    position: relative;
    padding: 2px;
    border-radius: 100%;
    width: 45px;
    height: 43px;
    transition: all .3s ease-in-out;
}
.n_dld-post-social-media li a:hover {
    transform: translateY(-7px)
}
.n_dld-post-social-media li a:after {
    position: absolute;
    content: '';
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            var(--color-2) 0%,
            var(--color-1) 50%,
            var(--color-2) 100%
    );
    background-size: 100% 200%;
    background-position: top;
    border-radius: 50px;
    transition: background-position 0.5s ease;
}
.n_dld-post-social-media li a:hover:after {
    background-position: bottom;
}
.n_dld-post-social-media li .socail-svg {
    background: var(--white-color);
    position: relative;
    z-index: 1;
    display: inline-flex;
    border-radius: 50px;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    transition: background 0.5s ease;
}
.n_dld-post-social-media li a:hover .socail-svg{
    background:var(--light-grey);
}




.n_dld-keywords-accordian{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.n_dld-keywords-accordian .accordion-body{
    padding: 20px 0 0;
}
.n_dld-keywords-accordian .accordion-button{
    background: var(--white-color);
    border-radius: var(--border-radius-md) !important;
    box-shadow: none;
    gap: 18px;
    color: var(--black);
}
.n_dld-keywords-accordian .accordion-button::after{
    width: 15px;
    height: 15px;
    background-size: 15px;
    content: "";
}
.n_dld-keywords-accordian .accordion-item{
    background: transparent;
    border: none;
}
.n_dld-keywords-accordian .accordion-button .title{
    font-size: 18px;
    font-weight: 500;
}
.n_dld-keywords-accordian .accordion-button .caption{
    font-size: 14px;
    color: var(--grey);
}
.n_dld-guest-post-keyword-Wrapp{
    background: var(--white-color);
    border-radius: var(--border-radius-md);
}
.n_dld-guest-post-keyword-listing{
    padding: 30px 20px;
}
.n_dld-guest-post-keyword-listing:not(:last-child){
    border-bottom: 1px solid var(--divider-color);
}
.n_dld-guest-post-keyword-listing ul{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 0;
}
.n_dld-guest-post-keyword-listing li{
    position: relative;
    padding: 2px;
    border-radius: 50px;
    overflow: hidden;
}
.n_dld-guest-post-keyword-listing li .keyword-name{
    background: var(--white-color);
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 5px 18px;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
}
.n_dld-guest-post-keyword-listing li:after{
    position: absolute;
    content: '';
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            180deg,
            rgba(115, 216, 252, 1) 0%,
            rgba(180, 165, 252, 1) 100%
    );
    border-radius: 50px;
}
.n_dld-guest-post-keyword-listing .svg-icon {
    width: 18px;
    height: 18px;
    background: linear-gradient(
            180deg,
            rgba(115, 216, 252, 1) 0%,
            rgba(180, 165, 252, 1) 100%
    );
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M26.572 2.16H9.698A3.266 3.266 0 0 0 6.44 5.428v1.011H5.418A3.267 3.267 0 0 0 2.16 9.71v16.863a3.266 3.266 0 0 0 3.258 3.268h16.874a3.271 3.271 0 0 0 3.268-3.268v-1.011h1.012a3.272 3.272 0 0 0 3.268-3.269V5.428a3.272 3.272 0 0 0-3.268-3.268zM23.56 26.572c0 .7-.569 1.268-1.268 1.268H5.417a1.264 1.264 0 0 1-1.257-1.268V9.708c0-.7.564-1.269 1.257-1.269h16.875c.7 0 1.268.57 1.268 1.269V24.56zm4.28-4.28c0 .7-.569 1.269-1.268 1.269H25.56V9.708a3.272 3.272 0 0 0-3.268-3.269H8.44V5.428c0-.7.564-1.268 1.258-1.268h16.874c.7 0 1.268.568 1.268 1.268z'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: -webkit-mask;
    display: inline-block;
}
@media (max-width: 1199px) {}
@media (max-width: 991px) {}
@media (max-width: 767px) {}