/* font family ***********************************************************************/
@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy/Gilroy-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/Gilroy/Gilroy-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy/Gilroy-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Black";
  src: url("../fonts/Gilroy/Gilroy-Black.ttf");
  font-display: swap;
}

:root {
  --alice-blue: #f3f7ff;
  --black: #070707;
  --blueberry: #36429e;
  --carrot-orange: #ff8527;
  --cloudy-grey: #696969;
  --dark-jungle-green: #212121;
  --gray: #919191;
  --iron: #d0d4db;
  --onyx: #141414;
  --pastel-grey: #cccccc;
  --platinum: #e2e2e2;
  --seashell: #eef0f4;
  --white: #ffffff;
}

/* 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 {
  font-family: "Gilroy-Regular";
}
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;
  color: var(--black);
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 68px;
}
h2, .h2 {
  font-size: 44px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
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%;
  object-fit: cover;
}
.cmn-btn {
  font-size: 18px;
  padding: 13px 46px;
  color: var(--white);
  background: var(--blueberry);
  /* border-radius: 10px; */
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Gilroy-Medium";
}
.cmn-btn img {
  max-width: 30px;
  margin-right: 10px;
}
section {
  padding: 80px 0;
  overflow: hidden;
}
.section-heading {
  text-align: center;
  margin-bottom: 80px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.owl-theme .owl-dots .owl-dot span {
  background: var(--pastel-grey);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--carrot-orange);
  outline: 2px solid var(--carrot-orange);
  outline-offset: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}
.owl-nav {
  margin-top: 0;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: -70px;;
}
.owl-nav button.owl-next {
  right: -60px;
}
.owl-nav button img {
    max-width: 40px;
    width: 100%;
}
.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;
}

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

#header {
  padding: 15px 0;
  transition: 0.5s all;
  z-index: 11;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
}
#header:after {
  position: absolute;
  content: "";
  bottom: 20px;
  left: 0;
  background-color: rgba(248, 221, 166, 0.4);
  width: 16%;
  height: 2px;
}
#header::before {
  position: absolute;
  content: "";
  bottom: 20px;
  right: 0;
  background-color: rgba(248, 221, 166, 0.4);
  width: 73%;
  height: 2px;
}
/* #header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  animation: smoothScroll 1s forwards;
  box-shadow: 0 0 10px 2px #000000;
} */
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 180px;
  width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: 0.5s all ease-in-out;
  border-radius: 5px;
  position: relative;
}
#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}
#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(--white);
  padding: 5px 5px;
}

/* Home banner css ***************************************************************************/
#home-banner {
  margin-top: -118px;
  padding: 0 0;
  position: relative;
}
#home-banner .text-box {
  position: absolute;
  top: 26%;
  left: 17%;
  width: 100%;
  max-width: 40%;
  z-index: 2;
}
#home-banner .text-box h1 {
  /* color: var(--platinum); */
  color: rgba(226, 226, 226, 0.8);
  text-transform: uppercase;
  line-height: 1;
  font-family: "Gilroy-Black";
}
#home-banner .button-box {
  position: absolute;
  right: 35%;
  bottom: 22%;
  z-index: 3;
}
#home-banner .button-box .explore-btn {
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
  padding: 12px 80px 12px 20px;
  border-radius: 18px;
  border: 1px solid var(--pastel-grey);
  position: relative;
  font-family: "Gilroy-Medium";
}
#home-banner .button-box .explore-btn img {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 60px;
  height: 60px;
}
/* video {
  position: absolute;
  border: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
} */

/* About us css ******************************************************************************/
#about-us {
  padding-bottom: 55px;
}
#about-us .text-box p {
  font-size: 22px;
  color: var(--cloudy-grey);
  text-align: center;
  max-width: 854px;
}

.section-heading h2 {
  text-transform: uppercase;
  font-family: "Gilroy-Black";
}

.section-heading h2.big-ttl-text {
  /* font-size: 400px; */
  color: var(--seashell);
  line-height: 0.7;
  font-family: "Gilroy-Black";
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: unset;
  font-size: clamp(44px, 20vw, 400px);
}

#attendees .section-heading h2.big-ttl-text {
  /* font-size: 360px; */
  font-size: clamp(44px, 18vw, 360px) !important;
}

/* Global css ******************************************************************************/
#global {
  position: relative;
}
#global:after {
  position: absolute;
  content: "";
  background: url("../images/border-line.png") no-repeat;
  background-size: 100% 100%;
  height: 18px;
  width: 100%;
  bottom: 0;
}
#global .section-heading {
  margin-bottom: 60px;
}
#global .section-heading h2 {
  font-size: 62px;
  color: var(--black);
  text-transform: uppercase;
}
#global .global-tab-main-bx {
  position: relative;
  padding-top: 92px;
}
#global .global-tab-main-bx::before {
  position: absolute;
  content: "";
  background: url("../images/elephant-left.png") no-repeat;
  background-size: 100% 100%;
  width: 148px;
  height: 117px;
  top: 0;
  left: 20%;
  transform: translateX(-20%);
}
#global .global-tab-main-bx::after {
  position: absolute;
  content: "";
  background: url("../images/elephant-right.png") no-repeat;
  background-size: 100% 100%;
  width: 148px;
  height: 117px;
  top: 0;
  right: 20%;
  transform: translateX(-20%);
}
#global .global-tab-nav {
  position: relative;
}
#global .global-tab-nav::after {
  position: absolute;
  content: "";
  background: url("../images/border-line.png") no-repeat;
  background-size: 100% 100%;
  height: 18px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
#global .global-tab-nav .nav-tabs {
  justify-content: center;
  background-color: var(--seashell);
  max-width: 530px;
  margin: 0 auto;
  border-radius: 50px;
  border: 0;
  position: relative;
}
#global .nav-tabs .nav-link.active {
  color: var(--white);
  background-color: var(--blueberry);
  border-radius: 50px;
}
#global .nav-tabs .nav-link {
  font-size: 40px;
  color: var(--iron);
  padding: 4px 20px;
  border: 0;
  font-family: "Gilroy-Bold";
  width: 100%;
  min-width: 265px;
  border-radius: 50px;
}
#global .global-tab-bx {
  padding: 100px 0 60px 0;
}
#global .global-tab-main-bx .global-tab-bx .text-box-title {
  margin-bottom: 80px;
}
#global .global-tab-main-bx .global-tab-bx .text-box-title p {
  font-size: 26px;
  color: var(--cloudy-grey);
  text-align: left;
  max-width: 1055px;
}
#global .global-tab-main-bx .box {
  position: relative;
}
#global .global-tab-main-bx .box::before {
    content: "";
    position: absolute;
    background-color: #00000069;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
}
#global .global-tab-main-bx .green::before {
    background-color: rgba(0, 86, 54, 0.7);
}
#global .global-tab-main-bx .yellow::before {
    background-color: rgba(112, 67, 15, 0.8);
}
#global .global-tab-main-bx .red::before {
    background-color: rgba(146, 0, 9, 0.8);
}
#global .global-tab-main-bx .blue::before {
    background-color: rgba(54, 66, 158, 0.8);
}
#global .global-tab-main-bx .box .img-box img {
  width: 100%;
}
#global .global-tab-main-bx .box .text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#global .global-tab-main-bx .box .text-box h3 {
  font-size: 80px;
  color: var(--alice-blue);
  font-family: "Gilroy-Black";
  text-align: center;
  display: inline-block;
}
.plus-icon{
  color: var(--alice-blue);
  font-family: "Gilroy-Black";
  font-size: 70px;
}
#global .global-tab-main-bx .box .text-box p {
  font-size: 28px;
  color: var(--alice-blue);
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  font-family: "Gilroy-Medium";
}

/* uniting css ******************************************************************************/
#uniting {
  padding-bottom: 40px;
}
#uniting .section-heading {
  text-align: left;
  display: block;
  margin: 0 auto;
  margin-bottom: 90px;
  max-width: 1260px;
}
#uniting .section-heading h2 {
  font-size: 86px;
  color: var(--blueberry);
  line-height: 0.8;
  margin-left: 0;
  max-width: 800px;
  font-family: "Gilroy-Black";
}
#uniting .row {
  background-color: var(--blueberry);
}
#uniting .box.box2 .img-box img {
  width: 100%;
}
#uniting .box.box1 .text-box {
  display: flex;
  flex-direction: column;
  row-gap: 70px;
  align-items: center;
  padding: 0px 80px;
  margin: 0 auto;
  width: 100%;
  /* max-width: 630px; */
}
#uniting .box.box1 .text-box h4 {
  font-size: 60px;
  text-transform: uppercase;
  font-family: "Gilroy-Bold";
  margin-bottom: 0px;
}
#uniting .box.box1 .text-box span {
  font-size: 30px;
  line-height: 1;
  font-family: "Gilroy-Bold";
}
#uniting .tag-line-bx {
  padding: 10px 0;
  z-index: 1;
  position: relative;
}
#uniting .tag-line-bx:after {
  position: absolute;
  content: "";
  background: url("../images/quote-sign-1.png") no-repeat;
  background-size: 80% 80%;
  left: -48px;
  top: -10px;
  width: 127px;
  height: 94px;
  z-index: -1;
}
#uniting .tag-line-bx::before {
  position: absolute;
  content: "";
  background: url("../images/quote-sign-2.png") no-repeat;
  background-size: 80% 80%;
  right: -30px;
  bottom: -35px;
  width: 127px;
  height: 94px;
  z-index: -1;
}
#uniting .tag-line-bx p {
  font-size: 36px;
  line-height: 1;
  color: var(--carrot-orange);
}

/* Guest css ******************************************************************************/
.guest {
  padding-top: 0;
  padding-bottom: 40px;
}
.guest .guest-box {
  padding: 0 160px;
}
.guest .img-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.guest .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.row-span {
  grid-row: span 2;
}
.column-span {
  grid-column: span 2;
}

/* Attendees css ****************************************************************************/
#attendees .nav-tabs {
  border-bottom: 0;
  margin-bottom: 70px;
}
#attendees .nav-tabs .nav-link {
  font-size: 20px;
  color: var(--onyx);
  line-height: 1;
  padding: 4px 20px;
  border: 0;
  text-transform: uppercase;
  min-width: 210px;
  max-width: 210px;
  font-family: "Gilroy-Bold";
}
#attendees .nav-tabs .nav-link.active {
  color: var(--blueberry);
}
#attendees .nav-tabs .nav-link .img-box img {
  max-width: 30%;
  margin-bottom: 10px;
}
#attendees .attendees-tab-bx .box .img-box {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#attendees .attendees-tab-bx .box .img-box img {
  height: 610px;
  object-fit: cover;
}
#attendees .attendees-tab-bx .box .img-box .text{
  position: absolute;
  top: 125%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: .5s all;
  width: 70%;
  padding: 0 15px;
  text-align: left;
}
#attendees .attendees-tab-bx .box .img-box:hover .text{
  top: 50%;
}
#attendees .attendees-tab-bx .box .img-box::after {
  content: "";
  width: 100%;
  height: 0;
  background: #000000c4;
  position: absolute;
  top: 0;
  left: 0;
  transition: .5s all;
}
#attendees .attendees-tab-bx .box .img-box:hover::after {
  height: 100%;
}
#attendees .attendees-tab-bx .box .img-box .text h4 {
    color: var(--white);
    font-family: "Gilroy-Bold";
    line-height: 33px;
}
#attendees .attendees-tab-bx .box .img-box .text p{
    color: var(--white);
}
#attendees .button-box {
  margin-top: 60px;
}

/* Footer css ******************************************************************************/
#footer {
  background-color: var(--dark-jungle-green);
}
#footer .top-box {
  padding-top: 60px;
}
#footer .button-box ul {
  column-gap: 20px;
  justify-content: space-between;
}
#footer .top-box .pgp-logo img {
  max-width: 85%;
}
#footer .top-box .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 34px;
  row-gap: 10px;
  margin-top: 40px;
  justify-content: center;
}
#footer .top-box .link-box ul img {
  max-width: 35px;
}
#footer .end-box {
  padding: 20px 0;
  margin-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}
#footer .end-box .text-box p {
  font-size: 18px;
  color: var(--gray);
  text-align: center;
}

/**/
#about-us .section-heading .img-box img {
  width: 105%;
  max-width: 110%;
  overflow: hidden;
  margin: 0 -40px;
}
