/* font family ***********************************************************************/

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Regular.eot');
    src: url('../fonts/Gilroy/Gilroy-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy/Gilroy-Regular.woff2') format('woff2'),
        url('../fonts/Gilroy/Gilroy-Regular.woff') format('woff'),
        url('../fonts/Gilroy/Gilroy-Regular.ttf') format('truetype'),
        url('../fonts/Gilroy/Gilroy-Regular.svg#Gilroy-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Medium.eot');
    src: url('../fonts/Gilroy/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy/Gilroy-Medium.woff2') format('woff2'),
        url('../fonts/Gilroy/Gilroy-Medium.woff') format('woff'),
        url('../fonts/Gilroy/Gilroy-Medium.ttf') format('truetype'),
        url('../fonts/Gilroy/Gilroy-Medium.svg#Gilroy-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Black.eot');
    src: url('../fonts/Gilroy/Gilroy-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy/Gilroy-Black.woff2') format('woff2'),
        url('../fonts/Gilroy/Gilroy-Black.woff') format('woff'),
        url('../fonts/Gilroy/Gilroy-Black.ttf') format('truetype'),
        url('../fonts/Gilroy/Gilroy-Black.svg#Gilroy-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Light.eot');
    src: url('../fonts/Gilroy/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy/Gilroy-Light.woff2') format('woff2'),
        url('../fonts/Gilroy/Gilroy-Light.woff') format('woff'),
        url('../fonts/Gilroy/Gilroy-Light.ttf') format('truetype'),
        url('../fonts/Gilroy/Gilroy-Light.svg#Gilroy-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Bold.eot');
    src: url('../fonts/Gilroy/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy/Gilroy-Bold.woff2') format('woff2'),
        url('../fonts/Gilroy/Gilroy-Bold.woff') format('woff'),
        url('../fonts/Gilroy/Gilroy-Bold.ttf') format('truetype'),
        url('../fonts/Gilroy/Gilroy-Bold.svg#Gilroy-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


:root {
  --black: #070707;
  --black-1:#212121;
  --blueberry: #36429e;
  --cloudy-grey: #696969;
  --pastel-grey: #cccccc;
  --smokey-grey:#707070;
  --white: #ffffff;
  --theme-orange:#F26E41;
  --warm-grey:#919191;
  --white-lilac: #F5F7FC;
  --sunny-yellow: #FFEE35;
}

/* Common class Start ****************************************************************/
.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}

.bg {
  padding: 100px 0;
}
.white {
  color: var(--white);
}
.black {
  color: var(--black);
}

.x-small {
  font-size: 10px;
}
.small {
  font-size: 12px;
}

/* Common class End ******************************************************************/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
.common::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}
body {
  background: var(--white);
  font-family: "Gilroy";
}
body.show {
  position: fixed;
  top: 0;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
}
h1, h2, h3, h4{
    text-transform: uppercase;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 80px;
}
h2, .h2 {
  font-size: 70px;
}
h3 {
  font-size: 50px;
}
h4 {
  font-size: 40px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}
span {
  display: inline-block;
}
img,
video {
  max-width: 100%;
}
video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.cmn-btn {
  font-size: 20px;
  padding: 12px 40px;
  background: var(--blueberry);
  color: var(--white-lilac);
  font-weight: 500;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cmn-btn img {
  max-width: 30px;
  margin-right: 10px;
}

section {
  padding: 80px 0;
  overflow: hidden;
}
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-family: "Gilroy";
  font-weight: 900;
}

.button-box {
  padding-top: 30px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.owl-theme .owl-dots .owl-dot span {
  background: var(--theme-orange);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--theme-orange);
  outline: 2px solid var(--theme-orange);
  outline-offset: 3px;
}
.owl-nav {
  margin-top: 0;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}
.form-control-common {
  font-size: 20px;
  color: var(--black);
  background: var(--white);
  padding: 15px 50px 15px 20px;
  border: 1px solid var(--black);
  border-radius: 0;
  width: 100%;
  appearance: textfield;
  box-shadow: none;
  resize: none;
  outline: none;
}
.input-group {
  padding-bottom: 20px;
}
.owl-nav button.owl-prev {
    left: -70px;
}
.owl-nav button.owl-next {
    right: -60px;
}
.owl-nav button img {
    max-width: 40px;
    width: 100%;
}
.owl-theme .owl-nav [class*=owl-]:hover{
  background-color: transparent;
}

/* header css start **********************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

#header {
  padding: 10px 0;
  transition: 0.5s all;
  z-index: 11;
   background: linear-gradient(
    90deg,
    rgba(251, 251, 252, 1) 0%,
    rgba(217, 221, 228, 1) 100%
  );
  position: relative;
}

#header:after {
  position: absolute;
  content: "";
  bottom: 20px;
  left: 0;
  background-color: #F8DDA6;
  width: 13%;
  height: 1px;
}
#header::before {
  position: absolute;
  content: "";
  bottom: 20px;
  right: 0;
  background-color: #F8DDA6;
  width: 74%;
  height: 1px;
}
#header::before, #header::after{
  content: none;
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .header-box .logo-box {
    display: flex;
    align-items: center;
    z-index: 1;
}
#header .logo-box img {
  max-width: 120px;
  width: 100%;
}
#header .main-nav .click-menu, #header .main-nav .cancel-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 40px;
    height: 30px;
}
#header .main-nav .click-menu span, #header .main-nav .cancel-menu span{
    width: 30px;
    height: 3px;
    background: var(--black);
    transition: 0.5s all ease-in-out;
    position: relative;
    border-radius: 5px;
}
#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
} 
#header .main-nav .click-menu span:nth-child(2) {
    background: #ffb100;
    width: 45px;
}
 #header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
} 
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
}
#header .main-nav nav ul li a {
  font-size: 18px;
  color: var(--black);
  padding: 5px 5px;
}

/* homeBanner css ***************************************************************************/
#home-banner {
  /* margin-top: -130px; */
  padding: 0 0;
  position: relative;
}
.border-line-img {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
}
.border-line-img img{
    width: 100%;
}
#home-banner .text-box h1 {
  color: var(--sunny-yellow);
  text-transform: uppercase;
  line-height: 1;
  font-family: "Gilroy";
  font-weight: 900;
}
#home-banner .button-box .explore-btn {
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
  padding: 14px 50px;
  letter-spacing: 1px;
  border-radius: 24px;
  border: 1px solid var(--pastel-grey);
  position: relative;
  font-family: "Gilroy";
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
   transition: all .5s ease;
}
#home-banner .button-box .explore-btn:hover {
    background-color: var(--white);
    color: var(--black);
}
/* .banner video{
    position: absolute;
} */
.home-content {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
   z-index: 1;
}

/* section css ******************************************************************************/
.about-us-box .box {
    background-image: url(../images/about.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 312px 0 250px;
    margin-top: -332px;
}
#about-us .text-box p {
  font-size: 25px;
  color: var(--white);
}
#about-us .text-box {
    padding: 270px 110px 0;
    padding-right: 0;
}
#about-us .text-box-inner {
    max-width: 680px;
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
}

/* section css ******************************************************************************/
.nav-tabs {
  justify-content: center;
  border: 0;
}
.tabs-section .nav-tabs{
    position: relative;
    margin-bottom: 110px;
}
.tabs-section .nav-tabs::after, .tabs-section .nav-tabs::before{
    content: "";
    height: 1px;
    width: 50%;
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
    z-index: -1;
}
.tabs-section .nav-tabs::before{
    background: var(--blueberry);
    left: 0;
    top: 35%;
}
.tabs-section .nav-tabs::after{
    background: var(--theme-orange);
    right: 0;
    top: 65%;

}
.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border: 0;
}
.nav-tabs .nav-link {
    margin: 0;
    border: 0;
}
.nav-link:focus-visible{
    box-shadow:none;
}
.tab-main-bx {
    padding: 80px 0 10px;
}
.tab-main-bx .nav-tabs .nav-link.active {
    color: var(--white);
    background-color: var(--blueberry);
    border-radius: 16px;
    /* margin-top: -30px;
    margin-right: -50px; */
    /* z-index: 2;
    position: relative; */
}
.tab-main-bx .nav-item{
    position: relative;
}
.tab-main-bx .nav-item:not(:last-child)::before {
    content: "";
    background-image: url(../images/nature.png);
    background-size: contain;
    width: 175px;
    height: 253px;
    position: absolute;
    right: -60px;
    top: 35%;
    transform: translate(0, -50%);
    z-index: 4;
}
.tab-main-bx .nav-tabs .nav-link {
    font-size: 50px;
    line-height: 60px;
    color: var(--white);
    padding: 10px 20px;
    background-color: var(--theme-orange);
    border: 0;
    font-family: "Gilroy";
    font-weight: bold;
    width: 100%;
    min-width: 280px;
    border-radius: 16px;
}
.tabs-section .section-heading h4 {
    font-weight: 300;
    font-size: 50px;
}
.tabs-section .section-heading h3 {
    font-family: "Gilroy";
    font-weight: 900;
}
.tabs-section .counter{
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.tabs-section .stat-number {
    display: inline-block;
    font-weight: 900;
}
.tabs-section .stat-number, .plus-icon{
    margin-bottom: 0;
}
.plus-icon, .stat-wrap .stat-number{
  font-weight: 900;
}
.tabs-section .stat-number, .plus-icon, .tabs-section .counter h5{
    color: var(--white);
}
.tabs-section .counter h5{
    text-transform: uppercase;
    font-weight: 500;
}
.stat-wrap-col {
  overflow: hidden;
}
.stat-wrap .bg-img{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 320px;
  position: relative;
  z-index: 1;
}
.stat-wrap-col .attendees-bg-image {
    filter: blur(8px);
    transition: filter 0.3s ease;
}
.stat-wrap-col:hover .attendees-bg-image {
    filter: blur(0px);
}
.counter-full-bg{
    background-image: url(../images/dilip-joshi.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px 0;
    position: relative;
}
.counter-full-bg::before{
    content: "";
    background-color: rgba(0,0,0, 0.47); 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.counter-full-bg .counter {
    position: relative;
    align-items: flex-start;
    text-align: left;
}
.bg-text {
    background-color: rgba(0,0,0, 0.25); 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 20px;
    text-align: center;
    height: 320px;
}
.stat-wrap {
    margin-top: -200px;
    position: relative;
}
.counter-full-bg .stat-number {
    font-size: 100px;
}
.tabs-section .counter-full-bg h5 {
    font-size: 35px;
}
.tabs-section #year2-tab {
    margin-top: 40px;
}


/* empowering-global-collaboration-section css ******************************************************************************/
.empowering-global-collaboration-section .section-heading h2, .attendees-tabs-section .section-heading h2{
    color: var(--theme-orange);
    line-height: 65px;
}
.empowering-global-collaboration-section .section-heading h2{
    padding: 0 20px;
}
.empowering-global-collaboration-section .left-text-col-section{
    background-image: url(../images/pattern-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 140px;
}
.empowering-global-collaboration-section .two-col-bg-section {
    position: relative;
    padding: 70px 0;
}
.empowering-global-collaboration-section .left-text-col-section h3, 
.empowering-global-collaboration-section .left-text-col-section h5{
    color: var(--white);
}
.empowering-global-collaboration-section .testimonial-text-box p {
    display: inline-block;
    color: var(--theme-orange);
    font-size: 20px;
    max-width: 460px;
    width: 100%;
    line-height: 25px;
    position: relative;
}
.empowering-global-collaboration-section .right-col-img {
    position: absolute;
    top: -40px;
    right: 0;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    left: 40%;
}
.empowering-global-collaboration-section .left-text-col-inner {
    max-width: 70%;
    margin-left: auto;
    width: 100%;
}
.empowering-global-collaboration-section {
    padding-top: 30px;
    padding-bottom: 70px;
}
.testimonial-text-box {
    position: relative;
    margin-top: 60px;
    z-index: 1;
}
.quote-left {
    position: absolute;
    z-index: -1;
    left: -80px;
    top: -50px;
}
.quote-right {
    position: absolute;
    z-index: -1;
    right: 35%;
    bottom: -50px;
    transform: rotate(180deg);
}

/* gallery-section css ******************************************************************************/


.parent {
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
    grid-auto-rows: 150px;
}
.parent.desktop{
    display: grid !important;
}
.gallery-section {
    padding-bottom: 150px;
    padding-top: 40px;
}
.div1 { grid-column: span 2; grid-row: span 2; }
.div2 { grid-column: span 5; grid-row: span 2; }
.div3 { grid-column: span 2; grid-row: span 2; }
.div4 { grid-column: span 1; grid-row: span 1;height: 150px; }
.div5 { grid-column: span 2; grid-row: span 2; height: 310px; }
.div6 {
    grid-column: span 3;
    grid-row: span 1;
    height: 220px;
}
.div7 { grid-column: span 2; grid-row: span 2;  height: 310px;}
.div8 { grid-column: span 1; grid-row: span 1; height: 150px;}
.div9 { grid-column: span 1; grid-row: span 1; }
.div10 { grid-column: span 1; grid-row: span 1; }
.div11, .div12, .div13 { grid-column: span 3;    height: 380px;}
.div11 {
    margin-top: 70px;
}
.div13 {
    grid-column: span 2;
    height: 290px;
    max-width: 250px;
    margin-left: 40%;
}
.gallery-section .parent .img14 {
    max-width: 280px;
    height: 290px;
}
.gallery-section .parent .mb-10{
    margin-bottom: 10px;
}
.blank-div{
    width: 200px;
}
.gallery-section .parent div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.gallery-section .parent .div6 img {
    object-position: center;
}

/* attendees-tabs-section css ******************************************************************************/
.attendees-tabs-section .btn-bottom{
    margin-top: 80px;
}
.attendees-tabs-section .nav-tabs .nav-link {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 191px;
    height: 200px;
    padding: 0;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeRight 1s ease-out forwards;
    animation-delay:  1.5s;
}
.attendees-tabs-section .nav-tabs .nav-link::before {
    content: "";
    background-image: url(../images/peacock-pattern.png);
    width: 221px;
    position: absolute;
    height: 201px;
    background-repeat: no-repeat;
    background-size: contain;
}
.attendees-tabs-section .nav-tabs .nav-item:nth-child(1) .nav-link{animation-delay: 1s;}
.attendees-tabs-section .nav-tabs .nav-item:nth-child(2) .nav-link{animation-delay: 2s;}
.attendees-tabs-section .nav-tabs .nav-item:nth-child(3) .nav-link{animation-delay: 3s;}
.attendees-tabs-section .nav-tabs .nav-item:nth-child(4) .nav-link{animation-delay: 4s;}
.attendees-tabs-section .nav-tabs .nav-item:nth-child(5) .nav-link{animation-delay: 5s;}

@keyframes fadeRight {
  to {
        opacity: 1;
        transform: translateX(0);
    }
}
.attendees-tabs-section .nav-tabs {
    margin-bottom: 60px;
}
#sports-tab {
    background-image: url(../images/Image-50.png);
}
#business-tab {
    background-image: url(../images/yellow.png);
}
#spiritual-tab{
    background-image: url(../images/orange.png);
}
#politics-tab{
    background-image: url(../images/green.png);
}
#entertainment-tab{
    background-image: url(../images/blue.png);
}
.attendees-tabs-section .nav-item {
    min-width: 225px;
    margin-right: 30px;
}
.attendees-tabs-section .nav-item:last-child{
    margin-right: 0;
}
.attendees-tabs-section .owl-carousel .owl-item img{
    height: 595px;
    object-fit: cover;
    max-width: 412px;
}

/* footer css ******************************************************************************/
#footer{
    background-color: var(--black-1);
    padding: 50px 0 0;
}
.aiana-association-box img {
    max-width: 350px;
    width: 100%;
}
#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 20px;
}
#footer .top-box .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
  margin-top: 40px;
  justify-content: center;
}
#footer .top-box .link-box ul a {
  transition: all ease .5s;
}
#footer .top-box .link-box ul a:hover{
  transform: scale(1.2);
}
.aiana-association-box{
    margin-right: 80px;
}
#footer .top-box .link-box ul i {
  max-width: 40px;
}
#footer .logo-box {
    margin-right: 30px;
}
#foote .logo-box img {
    max-width: 140px;
    width: 100%;
}
#footer .end-box {
    padding: 30px 20px;
    margin-top: 30px;
    border-top: 1px solid var(--smokey-grey);
    text-align: center;
}
#footer .end-box p {
    color: var(--warm-grey);
}
#footer .end-box .link-box ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
#footer .end-box .link-box ul li:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 2px solid var(--black);
  line-height: 1;
}
