/* Fonts */

body {
  font-family: 'BR Segma', sans-serif;
  color: #222;
}

#mainHeader {
  height: 80px; width: 100%;
  background-color: #000;
  position: sticky; top: 0;
  color: #EEE;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}

#mainHeader #logo {
  width: 100px; height: 100%;
  background-image: url('/logo.svg');
  background-position: center center;
  background-repeat: no-repeat;
}

#mainHeader nav#mainNav {
  width: calc(100% - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
}

#mainHeader nav#mobileNav {
  display: none;
  position: absolute;
  right: 0;
  top: 80px;
  height: 100vh;
  width: 400px;
  background: rgba(255, 255, 255, 0.2);
}

#mainHeader #mobileNavButton {
  display: none;
  height: 43px; width: 60px;
  border: 2px solid #EEE;
  background: #EEE;
  border-radius: 10px;
  margin: auto 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#mainHeader #mobileNavButton:hover {
  background-color: transparent;
}

#mainHeader #mobileNavButton:hover .line {
  border-bottom-color: #EEE;
}

#mainHeader #mobileNavButton .line {
  display: block;
  width: 26px;
  border-bottom: 2px solid #000;
  height: 3px;
  margin-bottom: 3px;
}

#mainHeader nav .nav-dropdown {
  cursor: pointer;
  margin: 0;
}

#mainHeader nav .nav-dropdown a {
  display: block;
}

#mainHeader nav .nav-dropdown span {
  display: block;
  padding: 10px;
  cursor: initial;
}

#mainHeader nav .nav-dropdown.top {
  height: 50px;
  position: relative;
}

#mainHeader nav .nav-dropdown.top.active {
  background-color: rgba(200, 200, 200, 0.1);
}

#mainHeader nav .nav-dropdown.top.active .nav-dropdown-wrapper {
  background-color: rgba(200, 200, 200, 0.96);
}

#mainHeader nav .nav-dropdown.top a {
  line-height: 50px;
  padding: 0 1.75vw;
}

#mainHeader nav .nav-dropdown-wrapper {
  position: absolute;
  top: 50px;
  width: 100%;
  color: #000;
}

#mainHeader nav .nav-dropdown.sub {
  display: none;
  padding: 12px;
}

#mainHeader nav .nav-dropdown.sub a {
  font-size: .95rem;
  display: block;
  line-height: initial;
  padding: 10px;
}

#mainHeader nav .nav-dropdown.sub a:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

#mainHeader nav .nav-dropdown.sub.tier-2 {
  padding: 0 20px;
  font-style: italic;
  font-weight: 300;
}

#mainHeader #phone {
  width: 200px; height: 100%;
  text-decoration: none !important;
  color: #EEE;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  text-transform: uppercase;
  padding-right: 20px;
}

#mainHeader #phone .supertext {
  font-weight: 300;
  font-size: .75rem;
}

#mainHeader #phone .phone {
  font-weight: 700;
  font-size: 1.75rem;
}

#mainSplash {
  height: 900px;
  background-color: #000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #EEE;
  flex-wrap: wrap;
}

#mainSplash #caseResultsColumn {
  width: 30%; height: 700px;
}

#mainSplash #caseResultsColumn #resultsCarousel {
  height: 100%;
  position: relative;
  display: flex;
  align-content: center;
  flex-wrap: nowrap;
  padding-left: 2vw;
}

#mainSplash #caseResultsColumn #bigText {
  height: 100%; width: 100px;
  background: url('/static/img/case-results-text.png') center no-repeat;
  background-size: contain;
}

#mainSplash #caseResultsColumn #resultsCarousel .carousel {
  width: 300px;
  overflow: hidden;
  padding-left: 10px;
}

#mainSplash #caseResultsColumn #resultsCarousel .carousel-wrapper {
  overflow: hidden;
  position: relative;
}

#mainSplash #caseResultsColumn #resultsCarousel .carousel-wrapper #backgroundFade {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, black 0%, transparent, black 100%);
  height: 100%;
  width: 100%;
}

#mainSplash #caseResultsColumn #resultsCarousel .group {
  animation: scrolling 24s linear infinite;
}

#mainSplash #caseResultsColumn #resultsCarousel .carousel-wrapper:hover .group {
  animation-play-state: paused;
}

@keyframes scrolling {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

#mainSplash #caseResultsColumn #resultsCarousel .card {
  height: 130px; width: 100%;
  background: url('/static/img/case-results-card-accent.png') bottom left / 90px no-repeat;
  margin-bottom: 15px;
  font-weight: 300;
  padding: 10px;
}

#mainSplash #caseResultsColumn #resultsCarousel .card .figure {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

#mainSplash #caseResultsColumn #resultsCarousel .card .figure super {
  font-size: 28px;
  vertical-align: super;
  margin-left: 2px;
}

#mainSplash #caseResultsColumn #resultsCarousel .card .stat {
  font-size: 20px;
  display: block;
  letter-spacing: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

#mainSplash #caseResultsColumn #resultsCarousel .card .additional-text {
  font-size: 18px;
  display: block;
  letter-spacing: 1px;
}

#mainSplash #centralLogoColumn {
  width: 40%; height: 80%;
  display: flex;
  flex-direction: column;
  align-content: center;
}

#mainSplash #centralLogoColumn #bigLogo {
  height: 100%;
  background: url('/logo.svg') center no-repeat;
  background-size: 100%;
  position: relative;
}

#mainSplash #portraitColumn {
  width: 30%; height: 80%;
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%),
    url('/static/img/FarbodJenabNoBg.png') center no-repeat;
  background-size: contain;
  position: relative;
}

#mainSplash #portraitColumn #signature {
  height: 60px; width: 75%;
  background: url('/static/img/signature.png') center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0; left: 0;
}

#mainSplash #lowerCallout {
  text-transform: uppercase;
  font-size: 1.25rem;
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: 6px;
}

body .section.accented {
  padding: 80px 0;
  background: 
    url('/static/img/gold-line-accent-TL.png') top 20px left / 400px auto no-repeat,
    url('/static/img/gold-line-accent-TR.png') top 20px right 0 / 400px auto no-repeat,
    url('/static/img/gold-line-accent-BL.png') bottom 20px left / 400px auto no-repeat,
    url('/static/img/gold-line-accent-BR.png') bottom 20px right 0 / 400px auto no-repeat;
}

body .section .section-title {
  font-size: 3rem;
  display: block;
  margin: 30px auto;
}

.gold-text {
  color: #b08b54;
}

.center-text {
  text-align: center;
}

.bold-text {
  font-weight: 700;
}

.thin-text {
  font-weight: 300;
}

#sectionTwoBackground {
  padding: 0 4vw;
  background: 
    linear-gradient(to bottom, rgba(255, 255, 255, 0.75) 0, transparent),
    url('/static/img/background-atlanta-skyline.png') center / cover no-repeat;
  box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, .75);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#sectionTwoBackground h2 {
  font-size: 3em;
  margin-bottom: 3vh;
}

#sectionTwoBackground .text-container {
  display: flex;
  padding: 2vw;
  width: 100%;
}

#sectionTwoBackground .text-container p {
  margin: auto 30px;
  line-height: 1.5;
  flex: 1 1 0;
}

#sectionTwoBackground button {
  background: white;
  height: 60px;
  width: 360px;
  text-transform: uppercase;
  border: 2px solid #b08b54;
  margin: 30px auto;
  cursor: pointer;
}

#sectionTwoBackground button:hover {
  background-color: #b08b54;
  color: #FFF;
}

.section#sectionTwo #phoneBand {
  height: 60px; width: 100%;
  background: #b08b54;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 60px;
  font-size: 1.25rem;
  letter-spacing: 8px;
  font-weight: 300;
}

.section#sectionTwo .text-section {
  padding: 4vw 25%;
}

.section#sectionTwo .text-section span {
  display: block;
  line-height: 1;
}

.section#sectionTwo .text-section span:first-of-type {
  font-size: 1.2rem;
  margin-bottom: 30px;
  letter-spacing: 8px;
  color: #b08b54;
  text-transform: capitalize;
}

.section#sectionTwo .text-section span:nth-of-type(2) {
  font-size: 4.5rem;
  font-weight: 700;
  text-transform: capitalize;
  background: url('/static/img/grey-line-accent.png') bottom left / auto 15px no-repeat;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section#sectionTwo .text-section span:nth-of-type(3) {
  line-height: 1.5;
}

.section#sectionThree span.section-title {
  font-size: 3.5rem;
}

.section#sectionThree h2 {
  font-weight: 500;
}

.section#sectionThree .tiles-wrapper {
  padding: 2vw;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.section#sectionThree .tiles-wrapper .tile {
  width: 30%;
  background: #e4e4e4;
}

.section#sectionThree .tiles-wrapper .tile .img {
  height: 240px; width: 100%;
  border-bottom: 15px solid #FFF;
}

.section#sectionThree .tiles-wrapper .tile:nth-of-type(1) .img {
  background: url('/static/img/landlord-tenant-law.png') center / cover no-repeat;
}

.section#sectionThree .tiles-wrapper .tile:nth-of-type(2) .img {
  background: url('/static/img/real-estate.png') center / cover no-repeat;
}

.section#sectionThree .tiles-wrapper .tile:nth-of-type(3) .img {
  background: url('/static/img/post-judgment.png') center / cover no-repeat;
}

.section#sectionThree .tiles-wrapper .tile:nth-of-type(4) .img {
  background: url('/static/img/landlord-tenant-law.png') center / cover no-repeat;
}

.section#sectionThree .tiles-wrapper .tile:nth-of-type(5) .img {
  background: url('/static/img/landlord-tenant-law.png') center / cover no-repeat;
}

.section#sectionThree .tiles-wrapper .tile:nth-of-type(6) .img {
  background: url('/static/img/landlord-tenant-law.png') center / cover no-repeat;
}

.section#sectionThree .tiles-wrapper .tile .text-content-wrapper {
  padding: 20px;
}

.section#sectionThree .tiles-wrapper .tile .tile-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section#sectionThree .tiles-wrapper .tile .small-gold-accent-line {
  width: 55px;
  height: 15px;
  border-bottom: 2px solid #b08b54;
}

.section#sectionThree .tiles-wrapper .tile .tile-text {
  font-size: .9rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.section#sectionThree .tiles-wrapper .tile .buttons {
  display: flex;
  justify-content: space-evenly;
}

.section#sectionThree .tiles-wrapper .tile .buttons button {
  height: 50px;
  width: 40%;
  min-width: 160px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85rem;
  line-height: 50px;
  font-weight: 500;
}

.section#sectionThree .tiles-wrapper .tile .buttons button:first-of-type {
  background: #b08b54;
  color: #FFF;
  border: none;
}

.section#sectionThree .tiles-wrapper .tile .buttons button:first-of-type:hover {
  background: #8b6f43;
}

.section#sectionThree .tiles-wrapper .tile .buttons button:nth-of-type(2):hover {
  background: #b08b54;
}

.section#sectionThree .tiles-wrapper .tile .buttons button:nth-of-type(2) {
  background: transparent;
  color: black;
  border: 1px solid #b08b54;
}

.section#sectionThree .tiles-wrapper .tile:nth-of-type(2n) {
  background: black;
  color: white;
}

.section#sectionThree .tiles-wrapper .tile:nth-of-type(2n) button:nth-of-type(2) {
  color: white;
}

.section#sectionThree .tiles-wrapper .tile:nth-of-type(2n) button:nth-of-type(2):hover {
  color: white;
}

footer {
  height: 40px;
  width: 100%;
  line-height: 40px;
  background: #000;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
}

/* Mobile Styles */

@media only screen and (max-width: 1650px) {
  nav#mainNav {
    display: none !important;
  }

  #mobileNavButton {
    display: flex !important;
  }
}