/*

TemplateMo 575 Leadership Event

https://templatemo.com/tm-575-leadership-event

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #295b9c;
  --secondary-color:              #6289bb;
  --section-bg-color:             #f0f8ff;
  --dark-color:                   #000000;
  --navbar-bg-color:              #f0f8ff;
  --p-color:                      #717275;
  --button-disabled-color:        #d2d8e9;
  /* --highlight-icon-color:         #ff0100; */

  --body-font-family:             'DM Sans', sans-serif;

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               16px;
  --copyright-text-font-size:     16px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);
}


/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -2px;
  text-transform: uppercase;
}

h2 {
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  text-align: justify;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.custom-border-radius {
  border-radius: 20px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.small-title {
  text-transform: uppercase;
}

.text-highlight {
  color: var(--primary-color);
}

.avatar-image {
  border-radius: 100px;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.avatar-image-left {
  position: relative;
  left: -10px;
}

.avatar-image-left + .avatar-image-left {
  left: -20px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -30px;
}

.avatar-image-left + .avatar-image-left + .avatar-image-left + .avatar-image-left {
  left: -40px;
}

.avatar-info {
  display: inline-block;
  vertical-align: top;
}



/*===========================
  FEATURES css
===========================*/
.single-features {
  -webkit-box-shadow: 0px 8px 16px 0px rgba(41, 91, 156, 0.2);
  -moz-box-shadow: 0px 8px 16px 0px rgba(41, 91, 156, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(41, 91, 156, 0.2);
  background-color: var(--navbar-bg-color);
  /* background-color: var(--white-color); */
  padding: 20px;
  border-radius: 20px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  height: 100%; }
  .single-features::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-linear-gradient(left, var(--primary-color) 50%, var(--secondary-color) 100%);
    background: -o-linear-gradient(left, var(--primary-color) 50%, var(--secondary-color) 100%);
    background: linear-gradient(to right, var(--primary-color) 50%, var(--secondary-color) 100%);
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .single-features .features-icon {
    position: relative;
    display: inline-block;
    padding: 50px; }
    .single-features .features-icon i {
      font-size: 75px;
      color: var(--primary-color);
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 5;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
    .single-features .features-icon span {
      font-size: 124px;
      color: #1b273d;
      line-height: 100px;
      opacity: 0.08;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s;
      font-weight: 600; }
  .single-features .features-content {
    padding-top: 5px;
    position: relative;
    z-index: 9; }
    .single-features .features-content .features-content-card {
      padding: 20px;
      margin-top: 20px;
      background: var(--section-bg-color);
      border-radius: 20px;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; 
    }
      .single-features .features-content .features-title a {
      font-size: 24px;
      color: #1b273d;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
    .single-features .features-content .text {
      margin-top: 25px;
      text-align: center;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
  .single-features:hover::before {
    opacity: 1; }
  .single-features:hover .features-icon i,
  .single-features:hover .features-icon span {
    color: var(--white-color); }
  .single-features:hover .features-content .features-title {
    color: var(--white-color); }
  .single-features:hover .features-content .text {
    color: var(--white-color); }


  .features-sponsors-image {
    height: 100px;
    margin: -70px;
    max-width: 180px;
    object-fit: contain;
  }

  .features-avatar-image {
    width: 180px;
    height: 180px;
    margin-left: -70px;
    margin-right: -70px;
    border-radius: 100%;
    object-fit: cover;
    background-color: lightgray;
  }

  .sponsor-type{
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
  }

/*---------------------------------------
  CUSTOM ICON
-----------------------------------------*/
.custom-icon {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  border: 2px solid var(--white-color);
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  position: relative;
}

.custom-icon::before,
.custom-icon::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.custom-icon::before {
  border: 2px solid transparent;
}

.custom-icon::after {
  border: 0 solid transparent;
}

.custom-icon:hover {
  border-color: transparent;
}

.custom-icon:hover::before {
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  transition: border-top-color .15s linear,border-right-color .15s linear .1s,border-bottom-color .15s linear .2s;
}

.custom-icon:hover::after {
  border-top: 2px solid var(--primary-color);
  border-left-width: 2px;
  border-right-width: 2px;
  transform: rotate(270deg);
  transition: transform .4s linear 0s,border-left-width 0s linear .35s;
}


/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/
.custom-btn,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  background: var(--primary-color);
  border-radius: 100px;
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  font-weight: var(--font-weight-bold);
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  background: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn,
.navbar-nav .nav-link.custom-btn {
  margin-left: 20px;
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.custom-btn:hover,
.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.navbar-nav .nav-link.custom-btn:hover {
  background: var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--white-color);
}


.under-construction {
  font-size: 120px;
  color: var(--primary-color);
}


/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  width: 100%;
}

.navbar {
  background-color: var(--navbar-bg-color);
  z-index: 100;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(41, 91, 156, 0.2);
  -moz-box-shadow: 0px 0px 16px 0px rgba(41, 91, 156, 0.2);
  box-shadow: 0px 0px 16px 0px rgba(41, 91, 156, 0.2);
}

.navbar-brand {
  font-size: 20px;
  line-height: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  text-transform: uppercase;
}

.brand-logo {
  /* border-radius: 100px; */
  /* width: 55px; */
  height: 50px;
  object-fit: contain;
}

.brand-text {
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 20px;
  padding-left: 20px;
}

.navbar-nav .nav-link {
  color: var(--white-color);
  color: #000000;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}


.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--primary-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HIGHLIGHT
-----------------------------------------*/
.highlight {
  background: var(--white-color);
  margin-top: 80px;
  margin-bottom: 80px;
}

.highlight-thumb {
  position: relative;
  overflow: hidden;
  margin: 24px;
}

.highlight-thumb::after {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.highlight-thumb:hover .highlight-title {
  opacity: 0;
  visibility: hidden;
}

.highlight-thumb:hover .highlight-icon {
  opacity: 1;
  visibility: visible;
}

.highlight-thumb:hover .highlight-image {
  transform: scale(1.2);
}

.highlight-info {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.highlight-image {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 1s;
}

.highlight-title {
  color: var(--white-color);
  transition: opacity 1s;
  margin-bottom: 0;
}

.highlight-icon {
  color: var(--primary-color);
  font-size: var(--h1-font-size);
  opacity: 0;
  transition: transform 1s;
  visibility: hidden;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.highlight-icon:hover {
  color: var(--white-color);
}

.slick-slide{
  margin: 10px;
}

.slick-slide img{
  width: 100%;
  border: 0px solid var(--primary-color);
}

.slick .slick-dots li button:after,
.slick .slick-dots li button:before,
.slick .slick-dots li.slick-active button:after,
.slick .slick-dots li.slick-active button:before {
  color: var(--primary-color);
}

/*---------------------------------------
  HERO
-----------------------------------------*/
.hero {
  position: relative;
  top: 0;
  height: 100vh;
}

.hero::after {
  content: "";
  background: rgba(0, 0, 0, 0) linear-gradient(rgba(41, 91, 156, 0.1) 0%, rgb(41, 91, 156) 120%) repeat scroll 0% 0%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin-bottom: -5px;
}

.hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-arrow {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero .arrow-icon {
  position: relative;
  top: 50px;
}

.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.date-text,
.location-text {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  display: inline-block;
  padding: 10px 20px;
}

.date-text {
  border-right: 0;
}

/*---------------------------------------
  Misc Sections
-----------------------------------------*/

.team {
  background: var(--section-bg-color);
}

.speakers {
  background: var(--section-bg-color);
}

.event {
  background: var(--section-bg-color);
}

.about {
  background: var(--white-color);
}

.features {
  background: var(--section-bg-color);
}

/*---------------------------------------
  EVENT DETAILS
-----------------------------------------*/
.event-image {
  display: block;
  height: 300px;
  border-radius: 20px;
}


/*---------------------------------------
  cards
-----------------------------------------*/

.cards-thumb {
  position: relative;
}

.cards-thumb-small {
  margin-top: 24px;
}

.cards-thumb:hover .cards-info::before {
  background: var(--primary-color);
  width: 100%;
  padding: 15px;
}

.cards-thumb:hover .cards-title,
.cards-thumb:hover .cards-text {
  opacity: 0;
  transition: opacity all 1s;
}

.cards-info {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 10px 15px;
}

.cards-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--primary-color);
  width: 5px;
  height: 100%;
  transition: all 0.5s;
}

.cards-image {
  object-fit: cover;
  width: 100%;
  height: 350px;
  background-color: lightgray;
}

.cards-text-info {
  padding: 60px;
}

.cards-title,
.cards-text {
  position: relative;
}

.cards-text {
  font-size: 12px;
  text-transform: uppercase;
}

.cards-featured-text {
  background: var(--primary-color);
  border-radius: 4px;
  color: var(--white-color);
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  text-transform: uppercase;
  margin: 10px;
  padding: 4px 12px;
}

.cards-thumb .social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cards-thumb .social-icon {
  opacity: 0;
  transition: opacity all 0.5s;
}

.cards-thumb:hover .social-icon {
  opacity: 1;
  transition-delay: 0.2s;
  background-color: #000000;
}

.sponsor-image {
  max-width: 130px;
  margin: 10px auto;
  height: auto;
}


/*---------------------------------------
  SCHEDULE || EVENT
-----------------------------------------*/
.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link span {
  display: block;
  text-align: left;
}

.nav-tabs .nav-link span {
  display: block;
}

.nav-tabs .nav-link small {
  display: block;
  font-size: 18px;
  font-weight: normal;
  color: var(--p-color);
}

.nav-tabs .nav-link {
  background: var(--white-color);
  border-radius: 0;
  border: 0;
  border-left: 3px solid var(--section-bg-color);
  padding: 20px 30px;
  transition: all 0.3s;
  white-space: nowrap;
  width: 16.66%;
}

.nav-tabs .nav-link.disabled {
  background: var(--button-disabled-color);
  opacity: 0.3;
}

.nav-tabs .nav-link:first-child {
  border-left-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-left-color: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.2);
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5,
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}

.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu a.dropdown-item {
  color: black;
  padding: 10px 15px;
}

.schedule-image {
  border-radius: 20px;
  max-width: 280px;
}

/*---------------------------------------
  CALL TO ACTION
-----------------------------------------*/
.call-to-action {
  background-image: url('../images/backgrounds/speakers_bg.jpg');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.call-to-action::after {
  content: "";
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.call-to-action::before {
  content: "";
  display: block;
  -webkit-filter: blur(4px) brightness(0.5);
  -moz-filter: blur(4px) brightness(0.5);
  -ms-filter: blur(4px) brightness(0.5);
  -o-filter: blur(4px) brightness(0.5);
  filter: blur(4px) brightness(0.5);
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background: inherit;
  z-index: 0;
}

.call-to-action .row {
  position: relative;
  z-index: 2;
}

.call-to-action .custom-btn {
  background: var(--white-color);
  color: var(--dark-color);
}

.call-to-action .custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  Tickets
-----------------------------------------*/
.tickets {
  background: var(--section-bg-color);
}

.tickets-thumb {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.tickets-title-wrap,
.tickets-body {
  padding: 40px;
}

.tickets-title-wrap {
  background: var(--primary-color);
  padding: 20px 40px;
}

.tickets-title {
  color: var(--white-color);
}


/*---------------------------------------
  VENUE
-----------------------------------------*/
.venue {
  background: var(--section-bg-color);
}

.venue-thumb {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.venue-info-title,
.venue-info-body {
  padding: 40px;
}

.venue-info-title {
  background: var(--primary-color);
  padding: 20px 40px;
}

.google-map {
  border-radius: 20px;
}

/*---------------------------------------
  Register Banner
-----------------------------------------*/
.register-banner {
  height: 100px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 10px;
  padding-left: 10px;
  background: -webkit-linear-gradient(left, rgb(120, 255, 255) 10%, #ffeb99 50%,orange 100%);
  background: -o-linear-gradient(left, rgb(120, 255, 255) 10%, #ffeb99 50%,orange 100%);
  background: linear-gradient(to right, rgb(120, 255, 255) 10%, #ffeb99 50%,orange 100%);
  box-shadow: 0 8px 32px rgba(255, 235, 153, 0.5);
  margin-bottom: 40px;
}

.register-banner-btn {
  width: 100%;
  height: 100%;
  letter-spacing: 12px;
  color: black;
  font-weight: var(--font-weight-bold);
  font-size: var(--h6-font-size);
}

.register-banner-btn:hover {
  color: var(--white-color);
}

/*---------------------------------------
  CONTACT
-----------------------------------------*/
.contact {
  background-image: url('../images/backgrounds/contact_bg.jpg');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.contact::before {
  content: "";
  display: block;
  -webkit-filter: blur(4px) brightness(0.5);
  -moz-filter: blur(4px) brightness(0.5);
  -ms-filter: blur(4px) brightness(0.5);
  -o-filter: blur(4px) brightness(0.5);
  filter: blur(4px) brightness(0.5);
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background: inherit;
  z-index: 0;
}

.contact-form {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.contact-form h2 {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 30px 50px;
}

.contact-form .row {
  padding: 50px;
}

.arrow-icon {
  background: var(--section-bg-color);
  border-radius: 100px;
  color: var(--dark-color);
  font-size: var(--h5-font-size);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  margin: auto;
}

.arrow-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  CUSTOM FORM
-----------------------------------------*/
.custom-form .form-control {
  background: var(--section-bg-color);
  border: 0;
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.custom-form button[type="button"] {
  background: var(--primary-color);
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="button"]:hover {
  background: var(--secondary-color);
}


/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
  padding-top: 100px;
  padding-bottom: 100px;
}

.site-footer .navbar-brand {
  color: var(--primary-color);
}

.site-footer .social-icon-link {
  font-size: var(--h6-font-size);
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.site-footer .copyright-text {
  font-size: var(--copyright-text-font-size);
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
}

.footer-menu-link {
  font-size: var(--copyright-text-font-size);
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}


/*---------------------------------------
  SOCIAL ICON
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--white-color);
  border-radius: 100px;
  font-size: var(--p-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* remove the gap so it doesn't close */
}

.dropdown .dropdown-menu {
  display: none;
}

.dropdown-menu {
  border-width: 0;
  font-size: 15px;
  padding: 8px;
  margin-left: 10px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(41, 91, 156, 0.2);
  -moz-box-shadow: 0px 8px 16px 0px rgba(41, 91, 156, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(41, 91, 156, 0.2);
}

.dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
@media (max-width: 992px) {
  .dropdown-menu {
      display: block;
      position: relative;
      border-width: 0;
      padding: 10px;
      margin: 10px;
  }

  .dropdown-item {
      padding: .5rem 0rem;
      color: rgba(0,0,0,.5);
  }
}

@media screen and (max-width: 1500px) {
   .cards-text-info {
    padding: 50px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding,
  .site-footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
  }

  .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    height: calc(100vh - 140px);
  }

  .nav-tabs .nav-link {
    width: 50%;
  }

  .copyright-text-wrap {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .navbar-brand {
    font-size: 16px;
  }

  .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .nav-tabs .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding: 15px;
  }

  .hero-text {
    width: 100%;
  }

  .site-footer .social-icon-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .footer-menu-link {
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-menu,
  .copyright-text-wrap {
    justify-content: center;
  }
}

