@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

:root {
  --primaryColor: #669900;
  --primaryLightColor: rgb(102, 153, 0, 0.05);
  --darkColor: #000000;
  --textColor: #444444;
  --whiteColor: #ffffff;
  --lightGrey: #f1f1f1;
  --danger: #ef4b4b;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 120%;
}

a,
p,
span {
  line-height: 150%;
  color: var(--textColor);
}

a {
  text-decoration: none;
}

/* /////////// Scrollbar //////////// */
/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--lightGrey);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primaryColor);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--textColor);
}
/* /////////// Scrollbar //////////// */

.sec-padding-lg {
  padding: 100px 0;
}

.sec-padding-md {
  padding: 80px 0;
}

.sec-padding-sm {
  padding: 60px 0;
}

.btn {
  transition: all 0.3s ease-in-out 0s;
  outline: none;
}

.btn-outline {
  border-radius: 30px;
  color: var(--whiteColor);
  border: 2px solid var(--whiteColor);
  line-height: 56px;
  padding: 0 30px;
  text-transform: capitalize;
  font-weight: 600;
}

.btn-outline:hover {
  color: var(--primaryColor);
  background: var(--whiteColor);
}

.read-more-btn {
  border-radius: 30px;
  color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
  line-height: 48px;
  padding: 0 30px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 20px;
}

.read-more-btn:hover {
  color: var(--whiteColor);
  background: var(--primaryColor);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* //////////////////// End Global Setup ///////////////////// */

/* --------- Start Navbar Css ---------- */
.navbar {
  background-color: var(--darkColor);
  padding: 15px 0;
}

.navbar .nav-link {
  color: var(--whiteColor);
}

.navbar .navbar-brand img {
  height: 80px;
}

.navbar .nav-link {
  line-height: 40px;
  padding: 0 15px !important;
}

.login-btn {
  border: 1px solid var(--whiteColor);
  text-align: center;
  min-width: 100px;
  border-radius: 30px;
  margin: 0 12px;
}

.join-btn {
  color: var(--whiteColor);
  background: var(--primaryColor);
  text-align: center;
  min-width: 100px;
  border-radius: 30px;
}

.menu-icon {
  position: relative;
  width: 36px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.menu-icon .line {
  width: 100%;
  height: 3px;
  background: var(--whiteColor);
}

/* --------- End Navbar Css ---------- */

/* --------- Start Hero Banner Css ---------- */
.hero-banner {
  padding: 150px 0;
  /* background: url(images/Hero_Banner.png) no-repeat; */
  background-position: center;
  background-size: cover;
}

.hero-banner .hero-content h1 {
  font-size: 64px;
  color: var(--primaryColor);
}

.label {
  text-transform: uppercase;
}

.hero-banner .hero-content p.description {
  width: 80%;
}

.hero-banner .hero-content .comming-soon {
  width: auto;
  color: var(--whiteColor);
  background-color: var(--primaryColor);
  padding: 12px 26px;
  float: left;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 30px;
  margin-top: 30px;
}

.hero-banner .hero-img-container {
  /* text-align: right; */
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-banner .video-wrapper {
  width: 540px;
  height: 340px;
  position: relative;
  margin-left: 20px;
  z-index: 1;
}

.hero-banner .video-wrapper::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: rgba(102, 153, 0, 0.15);
  border-radius: 12px;
  z-index: -1;
}

.hero-banner .inner-content-video {
  width: 100%;
  height: 100%;
  background: var(--lightGrey);
  overflow: hidden;
  border-radius: 12px;
}

.hero-banner .inner-content-video * {
  width: 100%;
  height: 100%;
}

.hero-banner .hero-img-container img {
  height: 340px;
  border-radius: 12px;
}

/* --------- End Hero Banner Css ---------- */

/* --------- Start Logo Bar Css ---------- */
.logo-bar {
  background: var(--primaryColor);
}

.logo-bar .logobar-content h5 {
  font-size: 28px;
  font-weight: 500;
  color: var(--whiteColor);
  margin-bottom: 0;
  line-height: normal;
}

.logobar-img-container {
  height: 120px;
}

.logobar-img-container img {
  height: 100%;
  margin-left: 50px;
}

/* --------- End Logo Bar Css ---------- */

/* --------- Start Fantasy Liineup (About) Css ---------- */
.sec-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.about .label {
  color: var(--primaryColor);
}

.about .about-img-container {
  height: 240px;
}
/* --------- End Fantasy Liineup (About) Css ---------- */

/* --------- Start CTA Css ---------- */
.call-to-action {
  background: var(--primaryColor);
  color: var(--whiteColor);
  position: relative;
  z-index: 0;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(images/CTA_Left_circle.png);
  width: 190px;
  height: 190px;
  z-index: 1;
}

.call-to-action::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(images/CTA_Right_circle.png);
  width: 220px;
  height: 180px;
  z-index: 1;
}

.call-to-action .row {
  width: 70%;
  margin: 0 auto;
}

.call-to-action .cta-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: normal;
  position: relative;
  z-index: 2;
}

.call-to-action .about-content {
  text-align: right;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.call-to-action .cta-title,
.call-to-action .about-content {
  position: relative;
  z-index: 2;
}

/* --------- End CTA Css ---------- */

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

/* --------- Start Fanduel & Draftkings Optimizer Css ---------- */

.fdo-card {
  padding: 40px;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 12px;
  text-align: center;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.fdo-section .fdo-card:hover {
  transform: translateY(-20px);
  box-shadow: 0px 8px 30px 0px rgba(102, 153, 0, 0.15);
}

.fdo-card .box-container {
  height: 100%;
}

.fdo-card .img-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto;
  background: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 1s ease-in-out 0s;
}

.fdo-card:hover .img-container {
  transform: rotate(360deg);
}

.fdo-card h4 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.fdo-card p {
  margin-bottom: 0;
}

/* --------- End Fanduel & Draftkings Optimizer Css ---------- */

/* --------- Start Design Insight Css ---------- */
.dfs-insight {
  background: var(--primaryColor);
}

.dfs-insight .section-header h2,
.dfs-insight .section-header p {
  color: var(--whiteColor);
}

.dfs-insight .fdo-card {
  background: var(--whiteColor);
  height: auto;
}

.dfs-insight .fdo-card .img-container {
  transition: all 1s ease-in-out 0s;
  background: rgba(102, 153, 0, 0.1);
}

.dfs-insight .fdo-card .img-container .img-box {
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primaryColor);
  transition: all 1s ease-in-out 0s;
}

.dfs-insight .fdo-card:hover .img-container {
  background: var(--primaryColor);
}

.dfs-insight .fdo-card:hover .img-container .img-box {
  border: 4px solid var(--darkColor);
}

.dfs-insight .fdo-card .box-container {
  height: auto;
}

.dfs-insight .fdo-card:hover {
  transform: translateY(-20px);
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.3);
}

.dfs-insight .btn-box {
  margin-top: 60px;
}

/* --------- End Design Insight Css ---------- */

/* --------- Start DFS Strategy Guides Css ---------- */

.dfs-guide .fdo-card {
  border: 1px solid var(--primaryColor);
  min-height: 200px;
}

.dfs-guide .fdo-card h4 {
  color: var(--primaryColor);
  margin-bottom: 0;
  font-weight: 500;
}

.dfs-guide .fdo-card:hover {
  color: var(--whiteColor);
  background: var(--primaryColor);
}

.dfs-guide .fdo-card:hover h4 {
  color: var(--whiteColor);
}

.dfs-guide .fdo-card:hover {
  transform: translateY(-20px);
  box-shadow: 0px 8px 30px 0px rgba(102, 153, 0, 0.15);
}

/* --------- End DFS Strategy Guides Css ---------- */

/* --------- Start Footer Css ---------- */

.footer {
  background: var(--darkColor);
  text-align: center;
}

.footer .logo {
  height: 80px;
}

.footer .navbar-nav {
  width: 100%;
  margin-top: 40px;
  flex-direction: row;
  justify-content: center;
}

.footer .navbar-nav .nav-link {
  padding: 0 20px;
  color: var(--whiteColor);
  opacity: 0.7;
}

.footer p.description {
  width: 60%;
  color: var(--whiteColor);
  opacity: 0.7;
  font-size: 14px;
  margin: 0 auto;
  margin-top: 20px;
}
/* --------- End Footer Css ---------- */

/* --------- Start Copyright Css ---------- */
.copyright-section {
  background: var(--primaryColor);
  font-size: 16px;
  padding: 16px 0;
}

.copyright-section .inner-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-section .navbar-nav {
  flex-direction: row;
}

.copyright-section .nav-link {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.copyright-section .nav-item:last-child .nav-link {
  border-right: 0;
}

.copyright-section .nav-link,
.copyright-section p {
  color: var(--whiteColor) !important;
  padding: 0 12px;
  position: relative;
  line-height: normal;
}

.copyright-section p {
  margin-bottom: 0;
}

/* --------- End Copyright Css ---------- */

/* --------- Start Importatn links ---------- */

.important-links {
  background-color: var(--primaryColor);
}

.important-links ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.important-links ul li {
  color: var(--whiteColor);
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  padding-left: 24px;
  margin-bottom: 20px;
}

.important-links ul li:nth-last-child(1) {
  margin-bottom: 0;
}

.important-links ul li:hover {
  padding-left: 32px;
}

.important-links ul li::before {
  content: "✦";
  position: absolute;
  top: 1px;
  left: 0;
}

.important-links ul li a {
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: 500;
}

/* --------- End Importatn links ---------- */

/* --------- Start Main content ---------- */

a.dropdown-item {
  font-size: 15px;
  line-height: 24px;
}

a.dropdown-item:hover {
  color: var(--whiteColor);
  background: var(--primaryColor);
}

.main-content-section {
  font-size: 16px;
}

.main-content-section a {
  color: var(--primaryColor);
  font-weight: bold;
}

.main-content-section p {
  line-height: 1.5;
}

.main-content-section .sec-title {
  font-size: 40px;
}

.main-content-section .section:nth-child(even) {
  background: var(--primaryLightColor);
}

.main-content-section h3 {
  font-weight: 500;
}

.main-content-section .about-img-container {
  float: left;
  margin-bottom: 20px;
  margin-right: 40px;
}

.main-content-section .section {
  overflow: auto;
}

.main-content-section .about-img-container.logo-img {
  height: 150px;
}

.main-content-section img {
  height: 100%;
}

.about ul,
.main-content-section ul {
  padding-left: 40px;
  list-style: unset;
  font-size: 17px;
  color: var(--textColor);
}

/* .about ul li, */
.section .about-content .list-group ul li {
  list-style: circle;
  margin-bottom: 20px !important;
  line-height: 40px;
}

/* --------- End Main content ---------- */

/* --------- Start pricing-offer  ---------- */
.pricing-offer {
  background: var(--danger);
  padding: 20px 0;
  overflow: hidden;
}

.pricing-offer .cta-title {
  font-size: 24px;
}

.pricing-wrapper .pricing-container {
  display: flex;
  width: 70%;
  justify-content: center;
  margin: 0 auto;
  gap: 30px;
}

.pricing-wrapper .section-header {
  margin-bottom: 50px;
}

.pricing-wrapper .pricing-container .pricing-box {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
  border: 1px solid var(--lightGrey);
  /* background: var(--lightGrey); */
}

.pricing-wrapper .pricing-container .pricing-box:hover {
  transform: translateY(-20px);
  box-shadow: 0px 8px 30px 0px rgb(102, 153, 0, 0.15);
}

.pricing-wrapper .pricing-container .pricing-box .inner-box {
  padding: 50px 60px;
}

.pricing-wrapper .price {
  color: var(--primaryColor);
  margin-bottom: 10px;
}

.pricing-wrapper .old-price {
  font-weight: normal;
  font-size: 32px;
  color: var(--textColor);
  /* opacity: 0.7; */
  /* text-decoration-line: line-through;
  text-decoration-color: red; */
}

.strikethrough {
  position: relative;
}

.strikethrough:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 3px solid;
  border-color: var(--danger);

  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  transform: rotate(-10deg);
}

.pricing-wrapper p {
  margin-bottom: 0;
}

.pricing-wrapper .read-more-btn {
  line-height: 40px;
  padding: 0 20px;
}

.pricing-wrapper .save {
  font-size: 14px;
  color: var(--danger);
  background: var(--primaryColor);
  padding: 8px;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing-wrapper .save p {
  color: var(--whiteColor);
}

.pricing-wrapper .already-member a {
  font-weight: 600;
  color: var(--primaryColor);
  /* transition: all 0.3s ease-in-out 0s; */
}

.pricing-wrapper .already-member a:hover {
  text-decoration: underline;
}

/* --------- End pricing-offer  ---------- */

/* --------- End servicing ---------- */
.servicing,
.servicing p {
  color: var(--whiteColor);
}

.servicing .section-header {
  margin-bottom: 50px;
}
/* --------- End servicing ---------- */

/* --------- End features ---------- */
.features .section-header {
  margin-bottom: 50px;
}

.features .fdo-card {
  display: block;
  min-height: unset;
  border: 1px solid var(--lightGrey);
  margin-bottom: 30px;
}

.features .fdo-card:hover {
  color: unset;
  background: unset;
  transform: scale(1.1);
}

.features .fdo-card:hover h4 {
  color: var(--primaryColor);
}

.features .fdo-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.features .fdo-card p {
  font-size: 16px;
}
/* --------- End features ---------- */

/* --------- End servicing ---------- */
/* --------- End servicing ---------- */
