@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

:root {
  --primary-theme: #001d3d;
  --primary-clr: #3d52a0;
  --secondary-clr: #7091e6;
  --white-clr: #fff;
  --gray-clr: #8697c4;
  --light-gray-clr: #adbbda;
  --light-white-clr: #ede8f5;
  --dark-clr: #00173c;
  --black-clr: #000000;
  --yellow-clr: #f8a501;
  --orange-clr: #ff7c69;
}

.courses_hero {
  margin-top: 90px;
  background: url("../assets/marketing/marketing-hero-banner2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.rowWidth .row {
  /* border: 1px solid red; */
  width: 100% !important;
  margin: 0 auto;
}
.mc_hero_bg_light {
  /* background-color: #00000076; */
  border-radius: 10px;
}

.mc_hero_bg_light .mc_contact {
  /* border: 1px solid red; */

  display: flex;
  justify-content: end;
}
.mc_hero_bg_light .mc_contact .cta_button {
  /* border: 1px solid red; */

  margin-right: 10px;
}

/* ------------ tywriter css starts ------------ */
.main-heading {
  font-size: 54px;
  color: var(--dark-clr);
  /* color: var(--white-clr); */
  padding-top: 3.5rem;
  margin: auto 0;
  font-weight: bold;

  text-align: right;
}

.highlighted-text {
  /* color: #ca6728; */
  color: #fdd63d;
  font-weight: bold;
}

.cursor {
  display: inline-block;
  margin-left: 5px;
  opacity: 1;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive text size */
@media (max-width: 640px) {
  .main-heading {
    font-size: 3rem;
  }
}

/* ------------ tywriter css ends ------------ */

.marketing_form {
  /* border: 1px solid red; */
  background-color: #f4f4f4;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
  margin: 50px 0;
}
.formsectionFooter .marketing_form {
  /* border: 1px solid green; */
  width: 50%;
}

.marketing_form button {
  background-color: var(--dark-clr) !important;
  border: 2px solid var(--dark-clr) !important;
}
.marketing_form button:hover {
  color: var(--dark-clr) !important;
  background-color: var(--white-clr) !important;
}

.courses_section {
  background-color: var(--dark-clr);
  color: white;
  padding: 50px 0;
}

/*.cs_1 p {*/
/*  color: white;*/
/*}*/

.cs_1 h1 {
  font-weight: 600;
}

.cs_2 .training_module {
  display: flex;
  gap: 10px;
}

.cs_2 ul {
  list-style: none;
  padding-left: 0;
}
.cs_2 ul li {
  margin-bottom: 20px;

  display: flex;
  align-items: start;
  /* justify-content: start; */
  font-weight: 500;
  color: var(--black-clr);
}
.cs_2 ul li i {
  /* border: 1px solid red; */
  margin-right: 6px;
  padding-top: 4px;
  color: var(--dark-clr);
}
.cs_2 img {
  border-radius: 10px;
  /* width: 90%; */
}

.courses_section_white {
  padding: 50px 0;
}

.cs_3_body_wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.cs_3_body {
  /* border: 1px solid red; */
  padding: 0 20px;
}

.cs_3_body_card {
  border: 1px solid #646464;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: start;
  align-items: center;
  text-align: center;
  font-size: 14px;
  color: black;
  font-weight: 500;
  height: 170px;
  color: var(--white-clr);
  letter-spacing: 1px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;

  margin-bottom: 20px;

  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;   */
}
.cs_3_body_card:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: var(--white-clr);
  color: var(--dark-clr);
}

.cs_3_body_card img {
  height: 80px;
  width: 80px;
  border: 1px solid #646464;
  border-radius: 10px;
}

.mc_img_container {
  /* border: 1px solid #fff; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.mc_img_container img {
  width: 80%;
}
.mc_img_1 {
  /* border: 1px solid red; */
  width: 500px;
}

.cs_3_body_card_desc {
  color: white;
}
.cs_3_body_card:hover .cs_3_body_card_desc {
  color: black;
}

/* ------------ commented part style --------------- */
/* .list {
  display: flex;
  flex-direction: column;
}

.num {
  padding: 0.5rem 2rem;
  display: flex;
  align-items: flex-start;
  transition: 0.25s;
  position: relative;
}

.num:nth-child(1)::before { content: '1'; }
.num:nth-child(2)::before { content: '2'; }
.num:nth-child(3)::before { content: '3'; }
.num:nth-child(4)::before { content: '4'; }
.num:nth-child(5)::before { content: '5'; }

.num::before {
  font-size: 4rem;
  font-weight: bold;
  color: black;
  width: 2rem;
  opacity: 0.05;
  margin-right: 1rem;
  transition: 0.25s;
}

.num h3 {
  position: relative;
  color: #3d3d3d;
  font-size: 0.85rem;
  left: -1.5rem;
  transition: 0.25s;
}

.num:hover {
  background-color: #fafafa;
  cursor: pointer;
}

.num:hover::before {
  opacity: 0.2;
}

.num:hover h3 {
  left: 1rem;
}

.message {
  color: white;
  text-align: center;
  text-transform: uppercase;
  margin-top: 2rem;
} */

@media (max-width: 426px) {
  /* ------------ tywriter css starts ------------ */
  .main-heading {
    /* border: 1px solid red; */
    font-size: 30px !important;
    padding-top: 0rem;
  }
  /* Responsive text size */
  @media (max-width: 640px) {
    .main-heading {
      font-size: 3rem;
    }
  }
.responsive_col_reverse .row {
flex-direction: column-reverse;
}
  /* ------------ tywriter css ends ------------ */

  .marketing_form {
    margin: 0;
  }
  .formsectionFooter .marketing_form {
    /* border: 1px solid green; */
    width: 90%;
  }

  .courses_section {
    background-color: var(--dark-clr);
    color: white;
    padding: 50px 0;
  }

  .courses_section_white {
    padding: 50px 0;
  }

  .cs_1 .row {
    /* flex-direction: column-reverse; */
    /* border: 1px solid red; */
  }
  .cs_1 img {
    margin-bottom: 30px;
  }

  .cs_3_body_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }

  .cs_3_body {
    /* border: 1px solid red; */
    padding: 0 20px;
  }
  
  .cs_3_body_card_des{
      color: #fff !important;
  }

  .cs_3_body_card p {
    font-size: 13px;
  }

  .mc_img_container {
    /* border: 1px solid #fff; */
    display: flex;
    justify-content: center;
  }
  .mc_img_container img {
    width: 100%;
  }
  .mc_img_1 {
    /* border: 1px solid red; */
    width: 300px;
  }

  .mc_faq {
    padding: 0 20px !important;
  }

  .cs_2 h1 {
    font-size: 24px;
    font-weight: 600;
  }
  .cs_2 img {
    border-radius: 10px;
  }
  .cs_2 .training_module {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  /* ------------ tywriter css starts ------------ */
  .main-heading {
    /* border: 1px solid red; */
    font-size: 30px !important;
    padding-top: 0rem;
  }
  /* Responsive text size */
  @media (max-width: 640px) {
    .main-heading {
      font-size: 3rem;
    }
  }

  /* ------------ tywriter css ends ------------ */
.cs_2 .training_module_wrapper {
  /* border: 1px solid red; */
  flex-direction: column;
}
  .cs_2 .training_module {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .marketing_form {
    margin: 0;
  }
  .formsectionFooter .marketing_form {
    /* border: 1px solid green; */
    width: 90%;
  }

  .courses_section {
    background-color: var(--dark-clr);
    color: white;
    padding: 50px 0;
  }

  .courses_section_white {
    padding: 50px 0;
  }

  .cs_1 .row {
    /* flex-direction: column-reverse; */
    /* border: 1px solid red; */
  }
  .cs_1 img {
    margin-bottom: 30px;
  }

  .cs_3_body_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }

  .cs_3_body {
    /* border: 1px solid red; */
    padding: 0 20px;
  }

  .cs_3_body_card p {
    font-size: 13px;
  }

  .mc_img_container {
    /* border: 1px solid #fff; */
    display: flex;
    justify-content: center;
  }
  .mc_img_container img {
    width: 100%;
  }
  .mc_img_1 {
    /* border: 1px solid red; */
    width: 300px;
  }

  .mc_faq {
    padding: 0 20px !important;
  }

  .cs_2 h1 {
    font-size: 24px;
    font-weight: 600;
  }
  .cs_2 img {
    border-radius: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* ------------ tywriter css starts ------------ */
  .main-heading {
    font-size: 36px;
  }

  /* .cs_1_reponsive {
    border: 1px solid red;
  } */

  .cs_2 ul li {
    margin-bottom: 20px;
  }
  .cs_2 ul li i {
    /* border: 1px solid red; */
    margin-right: 6px;
    padding-top: 4px;
    color: var(--dark-clr);
  }
  .cs_2 img {
    border-radius: 10px;
    /* width: 90%; */
  }

  .courses_section_white {
    padding: 50px 0;
  }

  .cs_3_body_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }

  .cs_3_body_card img {
    height: 70px;
    width: 70px;
  }

  .mc_img_container {
    /* border: 1px solid #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mc_img_container img {
    width: 100%;
  }
  .mc_img_1 {
    /* border: 1px solid red; */
    width: 500px;
  }
  .mc_faq {
    /* border: 1px solid red !important; */
    padding: 0 30px 0 50px !important;
  }

  .cs_3_responsive {
    /* border: 1px solid red; */
  }
  .cs_3_responsive h1 {
    font-size: 20px;
  }
  .cs_3_responsive p {
    font-size: 15px;
  }
  .cs_3_responsive_imgContainer{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cs_3_responsive_imgContainer img {
    width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1500px) {
  .formsectionFooter {
    /* border: 1px solid red; */
    padding-bottom: 100px;
  }
  .cs_3_responsive_imgContainer{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cs_3_responsive_imgContainer img {
    width: 90%;
  }
  .cs_2 .training_module ul li {
    font-size: 12px;
  }
}

.mcStaticDiv {
  /* border: 1px solid red; */
  display: none;
}

/* ------------------ phone view buttons ----------------- */
@media (max-width: 426px) {
  .phoneViewStaticButton {
    position: relative;
  }
  .mcStaticDiv {
    /* border: 1px solid green; */
    position: fixed;
    display: block;
    bottom: 0;
    width: 100%;
    z-index: 999;
  }
  .mcStaticDivWrapper {
    /* border: 1px solid red; */
    background-color: var(--white-clr);

    display: flex;
  }
  .mcStaticDivWrapper a {
    text-align: center;
    font-weight: 600;
    background-color: #4dc85b;
    color: var(--white-clr);
    width: 50% !important;
    /* border: 1px solid red; */
    padding: 10px;
    /* bottom: 0; */
  }
  .mcStaticDivWrapper a:last-child {
    text-align: center;
    font-weight: 600;
    background-color: blue;
    color: var(--white-clr);
    width: 50% !important;
    /* border: 1px solid red; */
    padding: 10px;
    /* bottom: 0; */
  }
}

.formsectionFooter {
  /* border: 1px solid red; */
  /* width: 80%; */

  display: flex;
  justify-content: center;

  margin-bottom: -100px;
}

@media (max-width: 1024px) {
  .formsectionFooter {
    justify-content: center;
    margin-bottom: 10px;
  }
}
