* {
    margin: 0px;
    box-sizing: border-box;
}
@import url('../css/fonts.css');
body {

    font-size: 16px;
    font-family: "Playfair Display", serif;
    line-height: 24px;
    color: #fff;
    font-weight: 400;

}

p {
    font-size: 16px;
    font-family: "Playfair Display", serif;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}

a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-size: 16px;
    font-family: "Playfair Display", serif;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
}

a:hover {
    text-decoration: none;
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

li {
    font-size: 16px;
    font-family: "Playfair Display", serif;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    margin: 0px;
    color: #fff;
}

p {
    margin: 0px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.pb-100 {
    padding-bottom: 100px;
}

.justify-center {
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

.align-item-center {
    align-items: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.site-width {
    max-width: 1250px;
    margin: 0px auto;
}

@media screen and (max-width:1518px) and (min-width:1368px) {
    .site-width {
        max-width: 1372px;
        padding: 0px 40px;
    }

}

@media screen and (max-width:1708px) and (min-width:1519px) {
    .site-width {
        max-width: 1552px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1920px) and (min-width:1709px) {
    .site-width {
        max-width: 1642px;
        padding: 0px 40px;
    }
}

@media screen and (max-width: 3000px) and (min-width: 2500px) {
    .site-width {
        max-width: 2400px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:2499px) and (min-width:1921px) {
    .site-width {
        max-width: 1842px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1280px) and (min-width:1024px) {
    .site-width {
        padding: 0px 40px;
        max-width: 1200px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1024px) and (min-width:888px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:888px) and (min-width:769px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:768px) {
    .site-width {
        padding: 0px 20px;
    }
}

/* CSS Start */
.pageWrapper {
    background: #000;
}

.headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoSection {
    transition: 0.4s ease-in-out;
    width: 150px;
}

.logoSection img {
    width: 100%;
}

.headerNavs ul {
    display: flex;
    gap: 22px;
}

.headerNavs ul li {}

.headerNavs ul li a {
    display: inline-block;
    padding: 2px 4px;
    position: relative;
}

.headerNavs ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #d7d7d7;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-radius: 35px;
    transition: 0.5s cubic-bezier(0.47, -0.7, 0.26, 1.39);
}
.headerNavs ul li a:hover:after, .headerNavs ul li a.active:after {
    width: 100%;
}
.headerSection.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 111;
    transition: 0.4s ease-in-out;
    background-color: #0000007a;
    backdrop-filter: blur(11px);
}
.headerSection.sticky .logoSection {
    width: 100px;
}

/* Banenr */
.banner-carousel {
    position: relative;
    height: 500px;
}
.banner-slider-wrapper {
    position: relative;
    height: 500px;
}

.banner-slider-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(#00000021, #000000);
    z-index: 1;
}

.banner-content-wrapper {
    z-index: 11;
    position: absolute;
    width: 100%;
    bottom: 50px;
  
}

.banner-content {
    position: relative;
    left: 4%;
    width: 44%;
}

.banner-content h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    line-height: 34px;
}

.banner-content p {
    color: #ededed;
    margin-top: 12px;
}

.banner-carousel .owl-item .item .banner-img img {
    transition: 2s ease-out;
    transform: scale(1);
}
.banner-carousel .owl-item .item {
    overflow: hidden;
}
.banner-carousel .owl-item .item .banner-img img.active {
    transform: scale(1.1);
    transition: 15s ease-out;
}

/* @-webkit-keyframes zoom {
    from {
      -webkit-transform: scale(1, 1);
    }
    to {
      -webkit-transform: scale(1.1, 1.1);
    }
  }
  
  @keyframes zoom {
    from {
      transform: scale(1,1);
    }
    to {
      transform: scale(1.1, 1.1);
    }
  }
.banner-carousel .owl-item.active  .item .banner-img img{
    -webkit-animation: zoom 15s;
    animation: zoom 15s;
    padding:0;
    width:100%;
} */

.banner-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 45%;
    color: #fff;
    left: 0.5%;
    font-size: 36px;
    background: #ffffff2e;
    width: 42px;
    height: 42px;
    line-height: 7px;
    visibility: hidden;
    transition: 0.4s ease-out;
    font-size: 14px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 100%;
}

.banner-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    color: #fff;
    right: 0.5%;
    font-size: 36px;
    background: #ffffff2e;
    width: 42px;
    height: 42px;
    line-height: 7px;
    visibility: hidden;
    transition: 0.4s ease-out;
    font-size: 14px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 100%;
}

.banner-carousel:hover .owl-nav button.owl-next {
    visibility: visible;
}

.banner-carousel:hover .owl-nav button.owl-prev {
    visibility: visible;
}
.owl-theme.banner-carousel .owl-nav {
    margin-top: 0px;
}

.aboutUs  {
    background: #34343440;
}
.aboutWrapper .aboutcontent {
    padding-right: 60px;
}
.aboutImg { 
    width: 100%;
    padding: 40px;
    border: 1px solid #fff;
    border-top-right-radius: 200px;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
}
.aboutImg img {
    width: 100%;
    border-top-right-radius: 200px;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
}
.authorDetails {
    margin-top: 30px;
}
.authorDetails img {
    width: 120px;
    margin-bottom: 10px;
}
.authorDetails h4 {
    font-size: 26px;
    font-weight: 600;
}
.authorDetails h5 {
    font-size: 16px;
    color: #ffa6ffdd;
    margin-top: 2px;
}

.aboutcontent .content h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffa6ffdd;
}
.aboutcontent .content h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}
.aboutcontent .content h2 span  {
    color: #fff700dd;
}
.aboutcontent .content h6 {
    font-size: 20px;
    background: #2222225c;
    padding: 9px 16px;
    margin-bottom: 9px;
    line-height: normal;
}
.aboutcontent .content p {
    line-height: 30px;
    text-align: justify;
    margin-bottom: 15px;
}



.imgAnimation {
    position: relative;
    overflow: hidden;
}
.imgAnimation::before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.mailCardAni:hover .imgAnimation:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}


.sectionTitle {
    position: relative;
    width: 70%;
    margin: 0px auto;
    text-align: center;
    padding-top: 40px;
}
.sectionTitle h5 {
    text-transform: uppercase;
    letter-spacing: 12px;
    font-size: 12px;
    margin-bottom: 16px;
    color: #ffa6ffdd;
}
.sectionTitle h2 {
    font-size: 38px;
}
.sectionTitle::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 50px;
    top: -32px;
    background: #ddd;
    margin: auto;
    z-index: 2;
    left: 0px;
    right: 0px;
}


.modelsWrapper {
    margin-top: 30px;
}
.modelSlider {

}

.modelSlider .item {
    padding: 10px;
}
.modelCard {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.modelImg {
    width: 100%;
    position: relative;
    z-index: 1;
}
.modelImg::after {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: radial-gradient(#00000085, #000000de);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0, 0, 0.32, 1);
}
.modelCard:hover .modelImg::after {
    opacity: 1;
    visibility: visible;
}
.modelImg img{
    width: 100%;
}
.modelContent {
    position: absolute;
    z-index: 2;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: fit-content;
    height: fit-content;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0, 0, 0.32, 1);
}
.modelCard:hover .modelContent {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.modelContent h4 {

}
.modelContent p{
    
}


/* ======= Cursor & Drag style  ======= */
.cursor {
    position: fixed;
    top: -40px;
    left: -40px;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor:before {
    content: "";
    width: 75px;
    height: 75px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: white;
    border: 1px solid white;
    transition: all ease 0.15s;
    transform: scale(0.15);
}

.cursor.light:before {
    transform: scale(1);
    background: transparent;
}

.cursor.drag {
    mix-blend-mode: unset;
}

.cursor.drag:before {
    transform: scale(1);
    background: #ffa6ffdd;
    border-color: transparent;
}

.cursor.drag:before {
    content: "\f07e";
    font-family: 'Font Awesome 6 Free';
    font-size: 20px;
    color: #fff;
    font-weight: 900;
}

.line {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}



.featureContainer {
    margin-top: 40px;
}
.featurCard {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding: 8px;
    background: transparent;
    margin-bottom: 20px;
    min-height: 100px;
}

.featurCard:hover {
    cursor: pointer;
}

.fimg {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.fimg img {
    width: 100%;
}

.fContents {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 94%;
    height: 85%;
    background: linear-gradient(180deg, #ffffff0a, #28282840);
    transition: 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    top: 20%;
    border-radius: 8px;

}

.featurCard:hover .fContents {
    height: 94%;
    padding-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
}

.fContents h4 {
    text-align: center;
    color: #fff;
    position: relative;
    padding-bottom: 7px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
}

.fContents h4::after {
    position: absolute;
    content: '';
    left: 0px;
    right: 0px;
    width: 70px;
    height: 2px;
    top: 100%;
    background: #ffa6ffdd;
    margin: auto;

}

.fContents h4::before {
    position: absolute;
    content: '';
    left: 0px;
    right: 0px;
    width: 10px;
    height: 10px;
    top: 89%;
    background: #ffa6ffdd;
    margin: auto;
    border-radius: 100%;

}

.featurCrdline {
    position: absolute;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
}

.featurCrdline span {
    display: inline-flex;
    background: #fff;
    position: absolute;
    z-index: 2;
    transition: 0.4s ease-in-out;
}

.featurCrdline span:nth-child(1) {
    width: 0%;
    height: 1px;
    top: 14px;
    left: 0px;
    right: 0px;
    margin: auto;
}

.featurCard:hover .featurCrdline span:nth-child(1) {
    width: 90%;
}

.featurCrdline span:nth-child(2) {
    width: 1px;
    height: 0%;
    bottom: 0px;
    right: 14px;
    margin: auto;
    top: 0px;
}

.featurCard:hover .featurCrdline span:nth-child(2) {
    height: 86%;
}

.featurCrdline span:nth-child(3) {
    top: auto;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 0%;
    height: 1px;
    bottom: 14px;
}

.featurCard:hover .featurCrdline span:nth-child(3) {
    width: 90%;
}

.featurCrdline span:nth-child(4) {
    width: 1px;
    height: 0%;
    bottom: 0px;
    left: 14px;
    margin: auto;
    top: 0px;
}

.featurCard:hover .featurCrdline span:nth-child(4) {
    height: 86%;
}


.eventSlider {
    position: relative;
}
.eventSlider .item {
    padding: 5px;
}

.eventSlider.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 43%;
    left: -50px;
    width: 40px;
    height: 40px;
    background: #0c0c0c;
    border: none;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease-in-out;
}
.eventSlider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 43%;
    right: -50px;
    width: 40px;
    height: 40px;
    background: #0c0c0c;
    border: none;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease-in-out;
}
.eventSlider:hover .owl-nav button.owl-prev , .eventSlider:hover  .owl-nav button.owl-next {
    visibility: visible;
    opacity: 1;
}
.eventsSection {
    background: linear-gradient(180deg, #000000f5, #000000b3), url(../img/bg/bg1.png);
    background-size: cover;
}
.cta {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    display: inline-block;
}

.cta:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #fff700dd;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.cta span {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.cta i {
    position: relative;
    top: 0;
    margin-left: 7px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #234567;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    top: -1px;
}

.cta:hover:before {
    width: 100%;
    background: #181818;
}

.cta:hover i {
    transform: translateX(0);
}

.cta:active {
    transform: scale(0.95);
}


.eventWrapper {
    margin-top: 40px;
}
.eventCard {
    padding: 20px;
    background: #0000007d;
    border: 1px solid #dddddd17;
    backdrop-filter: blur(7px);
    border-radius: 10px;
}
.eventCard .eventImg {
    width: 100%;
    position: relative;
}
.eventImg img{
    width: 100%;
    border-radius: 6px;
}
.eventImg h4 {
    padding: 10px;
    position: absolute;
    z-index: 2;
    bottom: 6px;
    right: 5px;
    background: linear-gradient(1deg, #2a2a2a, transparent);
}
.eventContent {
    padding-left: 20px;
}
.eventContent h2 {
    font-size: 30px;
    line-height: normal;
    color: #fff700dd;
    font-weight: 600;
}
.eventContent h4 {
    font-size: 16px;
    color: #ffa6ffdd;
    margin: 12px 0px;
}
.eventContent h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.eventContent p {
    text-align: justify;
    margin-bottom: 10px;
}



.pasteventWrapper {
    margin-top: 40px;
}
.pastEventSlider .item {
    padding: 10px;
}
.pasteventCard {

}
.pasteventImg {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}
.pasteventImg img {
    width: 100%;
    border-radius: 8px;
    transition: 0.5s ease-in-out;
}
.pasteventCard:hover .pasteventImg img  {
    transform: scale(1.04);
}
.pasteventCard:hover .pasteventImg:before {
    -webkit-animation: zoom-hover 0.75s;
    animation: zoom-hover 0.75s;
}

.pasteventImg:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
}

@-webkit-keyframes zoom-hover {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes zoom-hover {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}


.pastEventContent {
    background: linear-gradient(360deg, #0c0c0c, #1e1e1ea8);
    padding: 13px;
    width: 95%;
    margin: auto;
    margin-top: -30px;
    position: relative;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding-top: 20px;
    text-align: center;
    min-height: 132px;
}
.pastEventTitle {
    width: 100%;
}
.pastEventTitle h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffa6ffdd;
}
.pastEventTitle p {
    font-size: 14px;
    margin-top: 9px;
    line-height: 22px;
}
.pastEventContent .viewBtn {
    position: absolute;
    top: -25px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 50px;
    height: 50px;
    background: #fff700dd;
    border-radius: 100%;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    transform: rotate(-43deg) ;
    transition: 0.5s cubic-bezier(0.47, -0.7, 0.26, 1.39);
    /* visibility: hidden;
    opacity: 0; */

}
/* .pasteventCard:hover .pastEventContent .viewBtn {
    transform: rotate(-43deg) translateY(0px);
    visibility: visible;
    opacity: 1;
} */


.col-reverse {
    flex-direction: row-reverse;
}
.founder.aboutWrapper .col-reverse  .aboutcontent {
    padding-left: 60px;
}


.ourAssoCelebs {
    margin-top: 40px;
}
.celebsSlider .item {
    padding: 10px;
}
.celebsCard {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.celebsImg {
    width: 100%;
    position: relative;
    z-index: 1;
}
.celebsImg::after {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: radial-gradient(#00000085, #000000de);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0, 0, 0.32, 1);
}
.celebsCard:hover .celebsImg::after {
    opacity: 1;
    visibility: visible;
}
.celebsImg img{
    width: 100%;
}
.celebsInfo {
    position: absolute;
    z-index: 2;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: fit-content;
    height: fit-content;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0, 0, 0.32, 1);
}
.celebsCard:hover .celebsInfo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.celebsInfo h4 {

}
.celebsSocial ul {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 9px;
}
.celebsSocial ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #0c0c0c6b;
    border-radius: 100%;
    text-align: center;
    font-size: 11px;
    line-height: 30px;
}
.celebsSocial ul li a:hover {
    background: #fff;
    color: #000;
}

.needhelpMail h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffa6ffdd;
}
.needhelpMail h2 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: normal;
}



.testimonials {
    background: linear-gradient(270deg, #141414d9, #111111), url(../img/bg/testib.jpg);
    background-size: cover;
    background-position: left -60px bottom 59%;
}
.testimonialSlider .item {
    position: relative;
    padding: 11px;
}
.testimonailWrapper {
    position: relative;
    background: #000;
    padding: 45px 30px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}
.testimonialCard {
    position: relative;
}
.testimonailWrapper:after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    background: -webkit-linear-gradient(310deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    background: -o-linear-gradient(310deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
    z-index: -1;
    pointer-events: none;
    border-radius: 5px;
}

.testimonailWrapper .wraptitle {
    margin-bottom: 6px;
    font-size: 18px;
    color: #ffa6ffdd;
}

.testimonailWrapper .wrapMainTitle {
    font-size: 22px;
    color: #fff;
    line-height: normal;
    margin-bottom: 20px;
}

.authorMessage {
    margin-bottom: 20px;
    border-bottom: 1px solid #fff70033;
    padding-bottom: 20px;
}
.authorMessage p {
    text-align: justify;
}

.authorInfo {
    display: flex;
    align-items: center;
}
.authorImg {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    overflow: hidden;
    padding: 5px;
    border: 1px solid #d7d7d7;
}
.owl-carousel .owl-item .authorImg img {
    display: block;
    width: 100%;
    border-radius: 100%;
    object-fit: cover;
    height: 100%;
}
.authorName {
    width: 70%;
    padding-left: 18px;
}
.authorName h4 {
    font-size: 22px;
    color: #fff700dd;
}
.authorName p {
    font-size: 15px;
}

.testimonialSlider .item .quote {
    position: absolute;
    right: 15px;
    bottom: -10px;
    margin: 0 auto 0px;
    font-size: 75px;
    color: #ffffff1c;
}


.registerFormWrapper {
    margin-top: 40px;
}
input[type="password"], input[type="email"], input[type="text"], input[type="file"], textarea {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-size: 16px;
    font-weight: 400;
    color: #ddd;
    background-image: none;
    border: 1px solid rgb(160 116 218 / 37%);
    border-radius: 5px;
}

.btn-link {
    color: #fff;
    background: transparent;
    border: none;
    text-decoration: none;
    border: 1px solid #ddd;
    padding: 10px 30px;
    border-radius: 10px;
}
.btn-link:hover {
    background: #34343440;
    color: #fff;
    border-color: transparent;
}


.footer .social {
    margin-top: 10px;
    gap: 10px;
    display: flex;
}
.footer .social a {
    width: 40px;
    display: inline-block;
    height: 40px;
    background: #34343440;
    text-align: center;
    line-height: 41px;
    border-radius: 100%;
}
.footerInfo .footerLogo {
    width: 173px;
}
.footerInfo p {
    font-size: 13px;
    color: #999
}

.contactInfo h4 {
    font-size: 22px;
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 20px;
    color: #c1c1c1;
    margin-top: 8px;
}
.contactInfo h4::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #fddd;
    bottom: -1px;
    left: 0;
    border-radius: 30px;
}
.contactInfo h4::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100px;
    height: 1px;
    background: #fff;
}
.contactInfo ul li i {
    margin-right: 10px;
    font-size: 14px;
    color: #fff;
}
.workinghours p{
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #878787;
}
.workinghours p strong {
    width: 100px;
}
.workinghours p span {
    width: 60px;
}
.footerNewletter {
    position: relative;
    margin-top: 18px;
}
.footerNewletter input {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 10px 15px;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-size: 16px;
    font-weight: 400;
    color: #ddd;
    background-image: none;
    border: 1px solid rgb(160 116 218 / 22%);
    border-radius: 5px;
}
input::placeholder {
    color: #dbdbdb91;
}
.footerNewletter input::placeholder{
    color: #dbdbdbb9;
}
.footerNewletter input:focus {
    background: #0d0d0d;
    color: #fff;
    box-shadow: none;
    border-color: #ddd;
}
.footerNewletter button {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    right: 2px;
    width: 60px;
    height: 44px;
    outline: none;
    border: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    background: #0d0d0d;
    color: #fff;
}
.footer {
    background: #0c0c0c;
}


.copyright-section {
    width: 100%;
    background: #000000;
    padding: 12px 0px;
}

.copyright-section p {
    margin: 0px;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}

.contactInfo ul li a {
    color: #ffa6ffdd;
}
.togglers {
    display: none;
}
.menuBtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
}
.menuBtn svg {
    width: 50px
}

.menuBtn .line {
    fill: none;
    stroke: rgb(255, 255, 255);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.menuBtn .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.menuBtn .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.menuBtn .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.menuBtn.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.menuBtn.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.menuBtn.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}


.mediaPartnerWrapper {
    margin-top: 40px;
}
.mediacarousel .item {
    padding: 0px 30px;
}
.mediaLogo  {
    width: 100%;
}
.mediaLogo img {
    width: 100%;
}


#whatsapp {
    position: fixed;
    right: 30px;
    text-align: center;
    height: 50px;
    width: 50px;
    font-size: 35px;
    background-color: #13a4e1;
    border-radius: 100%;
    top: 75%;
    z-index: 100000000000;
    -webkit-animation: mymove 3s;
    -webkit-animation-iteration-count: infinite;
    animation: mymove 3s;
    animation-iteration-count: infinite;
}


@-webkit-keyframes mymove {
    from {
        bottom: 100px;
    }

    to {
        bottom: 100px;
        background-color: #01e675;
        transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        -moz-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
    }
}

@keyframes mymove {
    from {
        bottom: 100px;
    }

    to {
        bottom: 100px;
        background-color: #01e675;
        transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        -moz-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
    }
}


/* ======= Preloader style ======= */
.preloader-bg,
.preloader {
	background-color: #0c0c0c;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 1000;
	overflow: hidden;
}
.preloader * {
	transition: all 0.3s;
}
.preloader .item {
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
}
.preloader .item:after {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}
.preloader .item .wrap {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	font-size: 0;
}
.preloader .item .wrap img {
    width: 100px;
}
.preloader .item .wrap .circle {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px #c24aa80d;
	margin-left: -60px;
	margin-top: -60px;
}
.preloader .item .wrap .line-mask {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 50px;
	height: 120px;
	margin-left: -60px;
	margin-top: -60px;
	overflow: hidden;
	transform-origin: 60px 60px;
	-webkit-mask-image: -webkit-linear-gradient(top, #fff, rgba(255, 255, 255, 0.05));
	-webkit-animation: rotate 1s infinite linear;
	animation: rotate 1s infinite linear;
}
.preloader .item .wrap .line-mask .line {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 2px #ffa6ffdd;
}
@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}



.video-player {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    width: fit-content;
    height: fit-content;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #fff;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse i {
    background-color: #000f2d94;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 28px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    columns: #fff;
    -webkit-animation: video-pulse-presentation 2s linear infinite;
    animation: video-pulse-presentation 2s linear infinite;
    transition: 0.4s ease;
}

.pulse i:hover {
    background: #ffffff54;
    color: #fff;
    backdrop-filter: blur(7px);
}

.blogviewBtn {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.blogviewBtn {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

@-webkit-keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}

@keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}




/* Media */

@media screen and (max-width:767px) {
    .headerNavs ul li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .testimonailWrapper {
        margin-top: 30px;
    }
    .needhelpMail {
        text-align: center;
    }
    .testimonials {
        background-position: center;
    }
    .col-reverse {
        flex-direction: column-reverse;
         gap: 30px;
    }
    .eventContent  {
        margin-top: 30px;
    }
    .eventContent {
        text-align: center;
        padding-left: 0px;
    }
    .row-reverse {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .content {
        text-align: center;
    }
    .banner-carousel {
        height: auto;
    }
    .banner-slider-wrapper {
        height: auto;
    }
    .banner-content {
        width: 90%;
        right: 0px;
        left: 0px;
        margin: auto;
        text-align: center;
    }
    .togglers {
        display: block;
    }
    .headerNavs {
        display: none;
        position: fixed;
        top: 75px;
        left: 0px;
        right: 0px;
        width: 100%;
        background: #000;
        z-index: 3;
        height: 100vh;
    }
    .headerSection.sticky   .headerNavs{
        top: 51px;
    }
    .headerNavs ul {
        flex-direction: column;
        padding: 0px 22px;
        gap: 10px;
    }
    .aboutWrapper .aboutcontent {
        padding-right: 0px;
    }
    .founder.aboutWrapper .col-reverse .aboutcontent {
        padding-left: 0px;
    }
    .ltn__copyright-menu.text-end {
        text-align: center!important;
    }
    .col-md-6.aks-logo {
        text-align: center!important;
    }
    .eventSlider.owl-carousel .owl-nav button.owl-next {
        right: 0px;
    }
    .eventSlider.owl-carousel .owl-nav button.owl-prev {
        left: 0px;
    }
}

@media screen and (max-width:480px) and (min-width:200px) {
    .eventContent h2 {
        font-size: 20px;
    }
    .eventContent h4 {
        font-size: 14px;
    }
    .needhelpMail h2 {
        font-size: 22px;
    }
    .aboutcontent .content h4 {
        font-size: 14px;
    }
    .aboutcontent .content h2 {
        font-size: 30px;
    }
    .sectionTitle {
        width: 100%;
    }
}