/**
* Template Name: Maritime
* Updated: Sept 22 2024 with Bootstrap v5.3.3
* Author: The week
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: Bootstrap v5.3.3
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #000; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --red-color:#d62027;
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --linear-gradient-color : #03cbf3;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000;  /* The default color of the main navmenu links */
  --nav-hover-color: #4A529D; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #4A529D; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #770619;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;  
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

.scrolled .navmenu li a {
  color: #fff;
}
.scrolled .navmenu li a:hover {
  color: #645a5a;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
/* @media (min-width: 1200px) { */
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu li:not(:last-child) {
    border-right:1px solid rgb(235, 228, 228);
	 
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 8px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }
/* } */

/* Navmenu - Mobile */

@media (max-width: 1199px) {
  .navmenu {
    float: none;
    overflow: auto;
  }  
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  scroll-margin-top: 27px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 30px;
  position: relative;
  text-align: center;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
.banner{
  background: linear-gradient(#5F2E61, #520d55);
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}
.banner .banner-item-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 70vh;
  padding-top: 10px;
}
.banner .banner-item-container h2{
  font-size: 72px;
  margin: 10px 0px 0px 0px;
  text-transform: uppercase;
  color:  #fff;
  font-weight: bold;
  text-shadow: 1px 1px 2px #520d55;
  
}
.banner .banner-item-container h6{
  font-size:18px;
  color: #fff;
  
}
.banner .banner-item-container h3{
  font-size: 36px;
  text-transform: uppercase;
  color:  var(--accent-color);
  font-weight: bold;
	
}
.banner .banner-item-container h3 span{
  
  color: #d62027;

}
.banner .banner-item-container .subtitle-1{
  	font-size: 24px;
 	color:  #fff;
	font-weight: light;
	padding:0 20px;
	margin: 15px;
    border:solid 1px #fff;
	border-radius:5px;
	
}
.banner .banner-item-container .subtitle-2{
  font-size: 24px;
  color:  var(--accent-color);
  font-weight: 500;
  margin-bottom: 0px;
}

.banner .banner-item-container .btn-register {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  transition: 0.5s;
  line-height: 1;
  margin: 25px 10px;
  animation-delay: 0.8s;
  background: #300432;
  color: var(--default-color);
  
  
}

.banner .banner-item-container .btn-register:hover {
  color: #fff;
  background: #7d0b82;
  text-decoration: none;
  border-radius: 10px;
 
}

.banner .banner-item-container .btn-join-as-partner {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  transition: 0.5s;
  line-height: 1;
  margin: 25px 10px;
  animation-delay: 0.8s;
  color: var(--red-color);
  border: 1px solid var(--accent-color);
}

.banner .banner-item-container .btn-join-as-partner:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .banner .banner-item-container p {
    max-width: 80%;
  }

}

@media (max-width: 768px) {
  .banner .banner-item-container h2 {
    font-size: 52px;
  }
	  .banner .banner-item-container h3 {
    font-size: 28px;
  }
	.banner-item-container img{width:95%;}
	.banner .banner-item-container .subtitle-1
{
	font-size: 24px;
}

}

/*--------------------------------------------------------------
 #Hero waves section
--------------------------------------------------------------*/

.banner .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.banner .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.banner .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.banner .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# keypoints Section
--------------------------------------------------------------*/
.keypoints {
  padding: 40px 0;
  position: relative;
  clip-path: inset(0);
}

.keypoints .container {
  position: relative;
  z-index: 3;
}

.keypoints h2 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.keypoints ul {
  color: var(--default-color);
  text-align: left;
}
.keypoints ul li {
  padding-bottom: 16px;
}
/*--------------------------------------------------------------
# overview Section
--------------------------------------------------------------*/
.overview {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.overview .container {
  position: relative;
  z-index: 3;
}

.overview h3 {
  color: var(--accent-color);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.overview p {
  color: var(--surface-color);
	margin: auto;
	max-width: 70%;
	text-align: center;
	font-size: 18px;
	padding: 15px 0 0 0;
}


/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden; 
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.agenda article {
  /* background: var(--surface-color); */
  padding: 10px;
  height: 100%;
  overflow: hidden;
  text-align: center;
}
.agenda .agenda-section:nth-child(odd) {
  background: #f0f0f0 !important;
}
.agenda .agenda-section:nth-child(even) {
  background: #ffffff !important;
}
.agenda .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.agenda .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.agenda .title a:hover {
  color: var(--accent-color);
}

.agenda .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item div{
  width: 100%;
  text-align: center;
  line-height: 28px;
}

.contact .info-item div p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners h4 {
  font-size: 18px;
  text-align: center;
}
.partners article {
  background-color: var(--surface-color);
  padding: 30px;
  height: 100%;
  overflow: hidden;
}
.partners .post-img {
 /* max-height: 240px;*/
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}
.session-main-head{
	  color: #fff;
	font-size: 20px;
	padding: 20px 0 0 0;
	margin: 20px 0 0 0;
	text-transform: uppercase;
}
.session-sub-head{
	  color: #fff;
	font-size: 15px;
	padding: 0;
	margin: 0 0 15px 0;
}
.session-sub-head-with{color: #fff;
	font-size: 15px;
	padding: 0;
	margin: 0 0 15px 0;
    
}
.session-name{
	 color: #e9d4ba;
	font-size: 18px;
	padding: 0;
	font-weight: bold;
	margin: 5px 0 0 0;
}
.session-name-sub{
	color: #fff;
	font-size: 14px;
	padding: 0;
    font-weight: 200;
	
}
.border-dot-top{
	border-top: dotted 1px #e5cfcf;
}
.business-enquiry{
	font-size: 18px;
	color: var(--red-color);
	
}
.invited{font-size:10px; color: var(--red-color);}


.custom-accordion .accordion-item {
  background-color: none;
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
	border-bottom: dotted 1px #fff;
}
.custom-accordion .accordion-item:last-child{border: none;}

.custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: var(--default-color);
  border: none;
  padding-left: 22px;
  border-radius: 0;
  position: relative;
	font-weight: bold;
  
}
.custom-accordion .accordion-item .btn-link span{font-weight: normal; font-family:var(--nav-font); float: right; font-size: 12px; line-height: 24px;}

.custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}

.custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--default-color);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: var(--default-color);
	border-top: dotted 1px #e5cfcf;
}
.corner-radius{border-radius:50%;}
.contact-details{font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"; font-size: 18px; font-weight: normal;}
.contact-details span{font-weight: bold; border-bottom: solid 1px #fff; }
