/****************************************
* Typography
****************************************/

h1 {
  font-size: 53px;
}

/****************************************
* Header
****************************************/

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1rem;
}

header .d-flex {
  justify-content: center;
  margin: 0 auto;
  max-width: 955px;
}

header .nav-toggle {
  display: none;
}

header > div > .logo {
  display: block;
  position: unset;
  transform: none;
}

/****************************************
* Navigation
****************************************/

nav {
  position: unset;
  display: flex;
  margin-left: 2rem;
  box-shadow: none;
  background-color: transparent;
  width: unset;
  max-width: unset;
  max-height: 100%;
  overflow: visible;
}

nav .logo {
  display: none;
}

nav ul {
  flex-direction: row;
  border: none;
  padding: 0;
}

nav a,
nav button {
  margin: .5rem 0;
  font-size: 18px;
  color: #ffffff;
}

nav li:hover > button,
nav a:hover,
nav a.active {
  background-color: rgba(225, 225, 225, .2);
  color: #ffffff;
}

nav .btn + .btn {
  margin-left: 1rem;
}

nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, .2);
  background-color: #ffffff;
}

nav .dropdown-menu::before {
  border-color: transparent transparent #ffffff transparent;
}

nav li:hover .dropdown-menu {
  display: flex;
}

nav .dropdown-menu a:hover {
  background-color: var(--tt-color-1);
  color: #ffffff;
}

nav .dropdown-menu a:hover svg {
  fill: #ffffff;
}

/****************************************
* Banner
****************************************/

.banner .wrapper {
  transform: translateY(-50%);
}

/****************************************
* Inside banner
****************************************/

.inside-banner {
  height: 400px;
}

/****************************************
* Accents
****************************************/

.accent-1 .d-flex + .d-flex {
  margin: 0;
}

/* Defining 50% to prevent "grid blowout" with the flexbox */
.accent-5 .col-md-2 {
  grid-template-columns: 1fr 50%;
}

/****************************************
* Card
****************************************/

.gift-card:nth-of-type(1):not(.rounded) {
  border-radius: 30px 0 0 0;
}

.gift-card:nth-of-type(2) {
  border-radius: 0 30px 0 0;
}

.gift-card:nth-of-type(3) {
  border-radius: 0 0 0 30px;
}

.gift-card:nth-of-type(4) {
  border-radius: 0 0 30px 0;
}

.action-card .details {
  padding: 1rem;
}

.action-card h2 {
  font-size: calc(22px + (30 - 22) * (100vw - 767px) / (1140 - 768));
}

/****************************************
* Shorts
****************************************/

.shorts .d-flex > div {
  flex: 0 0 30%;
}

/****************************************
* Sermon
****************************************/

.sermonInfo {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0;
}

.sermonAudio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.sermonInfo > div:nth-of-type(2) {
  text-align: right;
}

.sermonInfo h1 {
  font-size: 40px;
}

.sermonInfo p {
  margin-top: 0;
}

/****************************************
* Contact
****************************************/

.contact-form {
  position: relative;
  z-index: 1;
}

/****************************************
* Give form
****************************************/


.amountWrapper.d-grid {
  grid-template-columns: 1fr 1fr;
}

.amountWrapper.d-grid label {
  grid-column: span 2;
}

/****************************************
* Footer
****************************************/

footer {
  text-align: left;
}

footer .socials {
  justify-content: flex-start;
}