@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  background: #fff;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: #6a7382;
  font-weight: 400;
}

.img_box_content img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.img_box img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: .3s;
}

section, footer {
  padding-top: 60px;
  padding-bottom: 60px;
}


:root {
  --primary: #C23571;
  --secondary: #FFBE00;
  --white: #ffff;
  --black: #000001;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  color: #000001;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

p {
  margin: 0;
  color: #6a7382;
}

ul, ol {
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  transform: .3s;
  color: var(--black);
}

/* Navbar */

.navbar-nav li {
  padding: 10px 10px;
}

.navbar-nav li a {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black) !important;
  display: inline-block;
  position: relative;
}

.navbar-nav li a {
  font-size: 14px;
}

.navbar-nav li a:hover {
  color: var(--black) !important;
}

.navbar-nav .nav-link.active {
  color: var(--black) !important;
}

.header.sticky li a {
  color: white !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--secondary);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

ul.dropdown-menu {
  padding: 0;
}

.dropdown-menu li:hover,
.dropdown-menu li:hover a {
  background: var(--primary);
  color: white !important;
}

.navbar-brand img {
  /* width: 245px;
  height: 115px; */
  width: auto;
  transition: 0.6s;
}

.navbar-nav li a {
  font-size: 1rem;
  font-weight: 400;
  color: #000001;
  font-size: 14px;
}

.offcanvas {
  background-color: white;
}

.offcanvas .navbar-nav .dropdown-menu {
  margin-top: 10px;
  border-radius: 8px;
}

.offcanvas .navbar-nav .dropdown-menu li {
  padding: 10px 0;
}

.offcanvas .navbar-nav .dropdown-menu li:hover,
.offcanvas .navbar-nav .dropdown-menu li:hover a {
  border-radius: 8px;
}

.offcanvas .btn-close svg {
  fill: white;
}

.offcanvas-header>img {
  width: 15rem;
}

.dropdown-menu {
  background-color: var(--white);
  border-radius: 0px;
}

.dropdown-item {
  background: none !important;
}

.dropdown-menu li {
  padding: 6px 10px;
  background: #FBF6F8;
  border-bottom: 1px solid var(--primary);
}

.dropdown-menu li:last-child {
  border-bottom: 0;

}

/* section */



/* header */
.header {
  padding: 15px 0 15px 0;
  background: #000001;
  z-index: 999;
  transition: 0.6s;
}

header.sticky {
  padding: 0px 0px;
  position: fixed;
  width: 100%;
  z-index: 999;
  background: var(--primary);
  margin-top: -108px;
}

header.sticky #navbarNav {
  border-bottom: 0px !important;
}

header.sticky img {
  width: auto;
  transition: all 0.5s ease-in-out;
}

.navbar.navbar-expand-xl.navbar-dark.stroke.bg-transparent {
  box-shadow: 0px 2.99997px 5.99994px rgba(0, 0, 0, 0.16);
}

/* top banner */
.top-banner {
  background: url("../images/top-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.top-banner .right-col h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
  color: white;
}

.top-banner .right-col p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 0;
}

.btn-close.text-reset {
  background: black;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close.text-reset:after {
  color: white;
}

/* End */

/* partner */
.client {
  padding-top: 25px;
  padding-bottom: 24px;
  margin-top: -98px;
  background: white;
  backdrop-filter: blur(50px);
}

.client img {
  margin: auto;
}

/* end */

/* contact us */

.contact-us {
  padding-top: 60px;
  padding-bottom: 70px;
  background: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

/* end */

/* form */
/* Works for Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control {
  resize: none;
  display: block;
  width: 100%;
  padding: 16px 15px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #1e1e1e42;
  color: #1e1e1e !important;
  background-color: transparent;
}

.form-control:focus {
  background-color: transparent;
  border-color: var(--secondary);
  box-shadow: none !important;
  outline: none !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1e1e1e !important;
  font-weight: 400;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: white !important;
  font-weight: 400;
}

.header_icon_main p {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--secondary);
  height: 16px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 12px;
  border-radius: 50%;
}

/* end */

/* Button */

.btn-theme {
  border: 2px solid var(--secondary);
  padding: 10px 35px;
  display: inline-block;
  font-weight: 500;
  background: var(--secondary);
  color: #212121;
  transition: all ease-in-out 0.3s;
  font-size: 1rem;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
}

.primary_btn {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.border_white_hover:hover {
  border-color: var(--white) !important;
  color: var(--white) !important;
}

.whatsapp_btn {
  background-color: #07B501;
  color: var(--white);
  border-color: #07B501;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}


.whatsapp_btn i {
  font-size: 22px;
}

.header_2_nav {
  background: var(--primary) !important;
  display: block !important;
}

.header_2_nav .navbar-nav li {
  padding: 0;
}

.header_2_nav .navbar-nav li a {
  color: white !important;
}

.btn-theme:hover {
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
}

.btn-check:focus+.btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

/* end */

/* footer */
.footer {
  padding-top: 35px;
  padding-bottom: 25px;
  background: #2A2A2A;
  margin-top: 40px;
}

.footer-logo p {
  color: white;
  margin-top: 20px;
  font-size: 1rem;
}

footer_logo .footer-links>h6 {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-top: 20px;
}

.footer-links ul {
  flex-direction: column;
  gap: 0;
}

.footer-links>p {
  color: white;
  font-size: 1rem;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-links>ul {
  padding-left: 18px;
}

.footer-links>ul>li {
  padding: 20px 0px 0 0px;
  list-style-type: disclosure-closed;
  color: white;
  transition: all ease-in-out 0.3s;
}

.footer-links>ul>li:hover {
  color: var(--secondary);
}

.footer-links>ul>li>a {
  text-decoration: none;
  font-size: 1rem;
  color: white;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
}

.footer-links>ul>li>a:hover {
  color: var(--secondary);
}

.social>p>span {
  margin: 0;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.social>p>a {
  color: var(--secondary);
  margin: 0 5px;
  font-size: 1.2rem;
  transition: all ease-in-out 0.3s;
  background: white;
  padding: 10px 16px;
  border-radius: 30px;
}

.social>p>a:hover {
  color: #ffffff;
  background: var(--secondary);
}

.footer-bootom-links>span {
  margin: 0;
  margin-right: 15px;
  color: white;
  font-size: 1rem;
  font-weight: 400;
}

.footer_content ul {
  flex-direction: column;
  gap: 11px;
  margin-top: 20px;
}

.footer_content h4 {
  font-size: 16px;
  line-height: 1.2;
  color: white;
}

.footer_content ul li a {
  color: #DCDCDC;
  transition: .3s;
}

.footer_content ul li a:hover {
  color: var(--secondary);
}

.footer_social_media {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social_media {
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  width: 40px;
  flex: 0 0 40px;
  background: #D2D2D2;
  font-size: 18px;
  transition: .3s;
}


.social_media:hover {
  background: var(--secondary);
  color: var(--black);
}

.footer_bottom {
  padding: 10px 0;
  border-top: 1px solid #ffffff61;
  border-bottom: 1px solid #ffffff61;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer_content {
  margin-bottom: 30px;
}

.footer_bottom a {
  color: #DCDCDC;
  transition: .3s;
}

.footer_bottom a:not(:first-child) {
  padding-left: 10px;
  border-left: 1px solid #DCDCDC;
}

.footer_bottom_2 {
  margin-top: 30px;
}

.footer_bottom_2 p {
  color: #DCDCDC;
  font-size: 13px;
}

.copy_right span {
  color: #DCDCDC;
  font-size: 13px;
}

.copy_right {
  display: flex;
  justify-content: space-between;
  margin-top: 21px;
  flex-wrap: wrap;
}

.copy_right p {
  font-size: 14px;
}

.footer_bottom a:hover {
  color: var(--secondary);
}

.footer_upper_main {
  padding: 15px;
  background: var(--primary);
  border-radius: 15px;
  margin-top: -75px;
  margin-bottom: 50px;
}

.footer_upper_heading span {
  font-size: 14px;
  color: var(--white);
}

.footer_upper_heading h4 {
  color: white;
  font-weight: 500;
  font-size: 20px;
}

.footer_uper_content {
  display: flex;
  align-items: center;
  gap: 11px;
  color: white;
  font-size: 16px;
}

.footer_upper_heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 0px;
  border-right: 1px solid #00000063;
  justify-content: flex-start;
  max-width: 313px;
}

/* end */

.animate-up {
  animation: up 3s ease-in-out infinite;
}

@keyframes up {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }

  100% {
    transform: translateY(0);
  }
}

.animate-zoom {
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

@keyframes nothing {
  0% {
    transform: translateY(0);
    transition: .3s;
  }

  50% {
    transition: .3s;
    transform: translateY(0px);
  }

  100% {
    transition: .3s;
    transform: translateY(0);
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.9);
    transition: all 0.5s ease-in-out;
  }

  30% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  100% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }
}

.animate-side {
  animation: side-in-side 3s ease-out infinite;
}

@keyframes side-in-side {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }
}

.animate-move-up {
  animation: move-up-in-move-up 3s ease-out infinite;
}

@keyframes move-up-in-move-up {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.footer-logo .trust-img {
  width: 10rem;
}

/*scroll*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-color: var(--secondary);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #000001;
}

/* ==========Header_Start========== */
.header {
  background-color: white;
  padding-top: 0%;
  margin: 0;
  transition: .3s;
  padding-bottom: 0;
}

.header_top {
  background-color: var(--primary);
  padding: 5px;
}

.header_top_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_top_content p {
  margin: 0;
  color: var(--white);

  a {
    color: var(--secondary);

  }
}

.header_top_content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  font-size: 14px;

  li:not(:first-child) {
    padding-left: 13px;
    border-left: 1px solid white;
  }

  li a {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.header_middle {
  padding: .5rem;
  border-bottom: 1px solid #0002;
}

.header_miidle_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky .navbar-nav .nav-link.active {
  color: white !important;
}

.sticky .header_miidle_content a h2 {
  color: white;
}

.sticky .header_middle {
  border-color: white;
}

.header.sticky .btn-theme:hover {
  color: white;
  border-color: white;
}

.header_form {
  background: white;
  border: 1px solid #0001;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;

  input {
    border: 0;
    padding: 5px 12px;
    width: 100%;
  }

  input:focus {
    border: 0;
    box-shadow: none;
    outline: none;
  }



  ;
  width: 100%;
}

.header_form .icon {
  margin-right: 15px;
}

.header_icons_main {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header_icon_main {
  flex-direction: column;
  display: flex;
  align-items: center;
  position: relative;
}

.header_icon_main i {
  font-size: 18px;
  transition: .3s;
}

.header_icon_main span {
  font-size: 13px;
}

.header_middle_search_main {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

a.navbar-brand {
  flex: 0 0 380px;
}

.header_icon_main:hover i {
  color: var(--secondary);
}

.header_icon_main:hover span {
  color: var(--secondary);
  transition: .3s;
}

.responsive_logo h2 {
  color: black;
}

header.sticky .header_icons_main .header_icon_main i, header.sticky .header_icons_main .header_icon_main span {
  color: white;
}

.navbar-toggler {
  display: none;
  background-color: var(--secondary);
  height: 35px;
  width: 35px;

}

/* ==========Header_End========== */



/* ==========Hero_Start========== */
.hero_section {
  background-image: url(../images/hero_bacground_img.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 49px;
  /* padding-bottom: 100px; */
}

.hero_img_content {
  display: flex;
  align-items: center;
  background: white;
  padding: 20px 10px;
  gap: 30px 20px;
  justify-content: center;
  border-radius: 5px;
  flex-wrap: wrap;
}



.hero_content h1 {
  font-size: 44px;
  font-weight: 600;
}

.hero_card {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero_card_content h6 {
  font-size: 15px;
  font-weight: 700;
}

.hero_card_content p {
  font-size: 13px;
}

.hero_content>p {
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 17px;
}

.list-group {
  flex-direction: row;
  max-width: 450px;
  justify-content: center;
  margin-top: auto;
  border-radius: inherit;
}

.hero_tab_main {
  margin-top: 80px;
  margin-bottom: -109px;
}

.list-group-item+.list-group-item {
  text-align: center !important;
  font-weight: 700 !important;
}

.list-group-item.active {
  background: var(--primary);
  border-color: var(--primary);
  text-align: center;
}

#nav-tabContent {
  background: white;
  padding: 10px;
  border-radius: 5px;
  height: auto;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.07);
}


.header_miidle_content .header_middle_search_main.header_2_middle {
  justify-content: flex-end;
}

.list-group-item:nth-child(2) {
  flex: 0 0 220px;
}

.list-group-item:nth-child(1) {
  border-radius: 10px 0 0 0;
  text-align: center !important;
  font-weight: 700;
}

.list-group-item:nth-child(3) {
  border-radius: 0 10px 0 0;
}


.tab_price_content {
  flex-direction: column;
  display: flex;
  /* gap: 3px; */
  flex: 0 0 auto;
}

.tab_price_content h4 {
  color: #2DB261;
  font-size: 40px;
}

.tab_price_content h4 span {
  font-size: 15px;
  font-weight: 600;
}

.tab_form_content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-control {
  padding: 10px;
  border-color: #CED4DA;
  color: #CED4DA !important;
}

.tab_form_content select option, .tab_form_content select option {
  color: #949494;
}

.tab_form_content .btn-theme {
  flex: 0 0 200px;
}

/* ==========Hero_End========== */



/* ==========assignment_Start========== */

.assignment_content {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.assignment_content h4 {
  font-size: 40px;
  font-weight: 600;
}

.assignment_img.img_box_content {
  height: 370px;
  border-radius: 10px;
  overflow: hidden;
}

.assignment_img.img_box_content iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ==========assignment_End========== */



/* ==========number_Start========== */
.number {
  background-color: #FFF5F9;
  margin-bottom: 90px;
}

.number_heading {
  text-align: center;
  margin-bottom: 40px;
}

.number_heading h4 {
  font-size: 30px;
}

.number_card {
  border: 2px solid var(--primary);
  border-radius: 10px;
  align-items: center !important;
  padding: 32px;
  background: white;
  flex-direction: column;
  display: flex;
  gap: 16px;
  text-align: center;
}

.number_card_content h6 {
  font-size: 22px;
  color: var(--primary);
  font-weight: 600;
}

.number_main {
  margin-bottom: -150px;
}

/* ==========number_End========== */



/* ==========assignment_writing_Start========== */
.assignment_writing_heading {
  max-width: 580px;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
}

.assignment_writing_group {
  max-width: 100%;
  padding: 11px;
  /* background: red; */
  gap: 20px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.07);
  justify-content: center;
  flex-wrap: wrap;
}

.assignment_writing_group .list-group-item {
  border-radius: 5px;
  border: 1px solid #0004;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 202px;
  justify-content: center;
  border-radius: 0 !important;
}

.assignment_writing #nav-tabContent {
  box-shadow: none;
  padding: 20px 50px;
  height: auto;
  padding-top: 0;
}


.assignment_writing #nav-tabContent .tab-pane.active {
  background: #FBFBFB;
  padding: 40px 20px;
  flex-direction: column;
  display: flex;
  gap: 17px;
  align-items: flex-start;
}

.assignment_writing_group .list-group-item .icon {
  padding: 2px;
  border-radius: 5px;
}

.assignment_writing_group .list-group-item .icon svg {
  height: 30px;
  width: 31px;
}

.assignment_writing_group .list-group-item.active .icon {
  background: white;
}

.assignment_writing_group .list-group-item.active .icon svg {
  color: var(--primary);
}


.assignment_writing #nav-tabContent .tab-pane.active h4 {
  font-size: 32px;
  color: var(--primary);
  font-weight: 600;
}

.assignment_writing_btn_main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 20px;
}

.assignment_writing_content_list {
  display: flex;
  align-items: center;
  flex: 1 1 136px;
}

.assignment_writing_content_list span {
  font-size: 13px;
}

.assignment_writing_content_list .icon {
  height: 25px;
  width: 25px;
  flex: 0 0 25px;
  background: #2DB261;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 6px;
}

.assignment_writing_content_list_main {
  grid-template-columns: repeat(auto-fill, minmax(185px, 0fr));
  display: grid;
  flex-wrap: wrap;
  flex: 1 1 602px;
  gap: 10px 20px;
}

/* ==========assignment_writing_End========== */



/* ==========Sec_1_Start========== */
.sec_1 {
  background-image: url(../images/sec_1_background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sec_1_content {
  flex-direction: column;
  display: flex;
  gap: 21px;
  align-items: flex-start;
}

.sec_1_content h4 {
  font-size: 27px;
  color: white;
  font-weight: 700;
}

.sec_1_content p {
  color: lightgrey;
}

.sec_1_content_btn_list {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ==========Sec_1_End========== */




/* ==========Sec_2_Start========== */
.sec_2_main {
  background-image: url(../images/sec_2_background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sec_2_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 490px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  padding: 20px 0;
  padding-bottom: 0;
}

.sec_2_heading h4 {
  font-size: 27px;
  font-weight: 600;
}

.sec_2 .list-group {
  flex-direction: column;
  gap: 20px;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.sec_2 .list-group .list-group-item.active {
  background: white;
  text-align: left !important;
  /* padding: 20px; */
  border: 2px solid var(--primary);
  transition: .3s;
  border-radius: 10px;
}

.sec_2 .list-group .list-group-item span {
  background: var(--primary);
  text-align: left !important;
  color: white;
  padding: 4px 11px;
  border-radius: 15px;
  display: flex;
  font-size: 14px;
}

.sec_2 .list-group .list-group-item {
  text-align: left !important;
}

.sec_2 .list-group .list-group-item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 2px solid #0001;
  padding: 20px;
  border-radius: 10px;
  flex: 0 0 auto;
  overflow: hidden;
}

.sec_2 .list-group .list-group-item p {
  height: 0px;
  opacity: 0;
  transition: .3s;
}

.sec_2 .list-group .list-group-item.active p {
  height: auto;
  opacity: 1;
}

.sec_2 #nav-tabContent {
  box-shadow: none;
  background: transparent;
  height: auto;
}

.step_img {
  height: 370px;
}

.sec_3_heading {
  max-width: 641px;
  margin-bottom: 40px;
}

.sec_3_heading h4 {
  font-size: 44px;
  font-weight: 700;
}

.sec_list_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* flex-wrap: wrap; */
}

.sec_list_main ul {
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}


.sec_list_main ul li {
  list-style: disc;
  list-style-position: inside;
}

.sec_list_main ul li::marker {
  color: var(--primary);
}

.sec_3_content {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.sec_3_btn_main {
  padding: 10px 20px;
  background: #FFF5F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  /* flex-wrap: wrap; */
}

.sec_3_btn_main h4 {
  font-size: 18px;
  flex: 0 0 280px;
}

/* ==========Sec_2_End========== */



/* ==========Sec_4_End========== */
.sec_4 {
  background-image: url(../images/sec_4_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sec_4_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.sec_4_main h4 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.sec_4_content_btn_list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec_5_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  gap: 11px;
  margin: 0 auto;
  max-width: 730px;
  margin-bottom: 30px;
}

.sec_5_heading h4 {
  font-size: 38px;
  font-weight: 600;
}

.sec_5_card {
  border: 1px solid #0001;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  background: white;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.sec_5 {
  background: #FBFBFB;
}

.sec_5_card_content {
  flex-direction: column;
  display: flex;
  gap: 5px;
}

.sec_5_card_content h6 {
  font-size: 19px;
  font-weight: 600;
}

.sec_5_heading p {
  font-size: 14px !important;
}

/* ==========Sec_4_End========== */



/* ==========Blog_section_Start========== */
.blog_section_heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
  gap: 10px;
  margin-bottom: 40px;
}

.blog_section_heading h4 {
  font-size: 35px;
  font-weight: 600;
}

.blog_card_img {
  width: 100%;
  height: 208px;
  border-radius: 10px;
  overflow: hidden;
}

.blog_card {
  padding: 15px;
  background: #FBFBFB;
  border-radius: 15px;
  flex-direction: column;
  display: flex;
  gap: 18px;
}


.blog_card_content {
  flex-direction: column;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.blog_card_content a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
  margin-top: 20px;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  font-weight: 600;
}

.blog_card_content a i {
  display: flex;
  transform: rotateZ(-45deg);
  margin-bottom: 3px;
}

.blog_card_content span {
  font-size: 14px;
  color: var(--black);
}


.blog_mini_card_img {
  height: 120px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog_mini_card {
  padding: 15px;
  background: #fbfbfb;
  margin-bottom: 17px;
  border-radius: 15px;
  flex-direction: column;
  display: flex;
  gap: 8px;
}

.blog_mini_card h6 {
  font-size: 17px;
  font-weight: 500;
}

/* ==========Blog_section_Start========== */



/* ==========popular_question_Start========== */
.popular_question {
  background: #fbfbfb;
}

.popular_question_heading {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.popular_question_heading h4 {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}

#accordionFlushExample, #accordian-2 {
  flex-direction: column;
  display: flex;
  gap: 20px;
}


.accordion-button.collapsed {
  /* border: 1px solid #0003; */
  border-radius: 10px !important;
  overflow: hidden;
}


.accordion-flush .accordion-item {
  border-radius: 10px;
  border-bottom: 0;
}

.accordion-button:focus {
  outline: none !important;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: #c2357147;
  box-shadow: none;
  border-radius: 10px 10px 0 0 !important;
  color: var(--black);
}


/* ==========popular_question_End========== */



/* ==========testimonial_Start========== */
.testimonial_heading {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.testimonial_heading h4 {
  font-size: 35px;
  font-weight: 600;
}

.testimonial_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  padding: 20px;
  border: 2px solid #0001;
  border-radius: 10px;
}

.testimonial_card .icon {
  margin-top: -50px;
}

.testimonial_rating {
  margin-top: 20px;
}

.testimonial_rating i {
  color: orange;
  font-size: 19px;
}

.testimonial_rating .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.testimonial_rating h6 {
  font-size: 18px;
  margin-top: 4px;
}

.sec_list_main ul {
  margin-bottom: 20px;
}



/* ==========testimonial_End========== */



/* ==========about_us_section_Start========== */
.about_us_section {
  margin: 0;
}

.hero_form_main {
  background-color: var(--white);
  padding: 20px;
  border-radius: 20px;
  width: 100%;
  flex-direction: column;
  display: flex;
  align-items: center;
  transition: .3s;
  justify-content: center;
}

.hero_form_main h4 {
  color: #2DB261;
  font-size: 25px;
}

.hero_form_main h6 {
  font-size: 20px;
  font-weight: 600;
}

.hero_form_main span {
  color: #949494;
  font-size: 18px;
}

.hero_form {
  margin: 20px 0;
  width: 100%;
  flex-direction: column;
  display: flex;
  gap: 11px;
}

.hero_form select {
  width: 100%;
  max-width: 100%;
}

.hero_form_main:hover {
  animation: nothing 3s ease-out infinite;
}

.assignment_about_list {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
  gap: 11px;
}

.assignment_about_list .assignment_writing_content_list {
  flex: 0 0 auto;
}

.assignment_about_content {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.assignment_about_list .assignment_writing_content_list span {
  font-size: 15px;
  color: #949494;
}

.assingment_img {
  height: 452px;
  overflow: hidden;
  border-radius: 15px;
}

.about_us_section {
  background-image: url(../images/about_us_bg.png);
}

.hero_section.about_us_section .hero_content h1 {
  color: white;
}

.hero_section.about_us_section .hero_content p {
  color: #b1b1b1;
}

.sec_5_heading.about_sec_5_heading {
  margin: 0;
  text-align: left;
  align-items: flex-start;
  margin-bottom: 40px;
}


.sec_5_heading.about_sec_5_heading h4 {
  max-width: 470px;
}

.our_mission_content {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.our_mission_content h4 {
  font-size: 35px;
  font-weight: 600;
}

.mession_img {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}

.sec_6_content_list {
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.sec_6_content_list .assignment_writing_content_list {
  flex: 0 0 auto;
  align-items: flex-start;
}

.sec_6_content_list .assignment_writing_content_list span {
  font-size: 15px;
}

.sec_6_content {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.sec_6_content h4 {
  font-size: 30px;
  font-weight: 500;
}

.animate-move-up.sec_6_img.img_box {
  height: 440px;
  overflow: hidden;
  border-radius: 15px;
}

.sec_7_content {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.sec_7_content h4 {
  font-size: 35px;
  font-weight: 600;
  text-transform: capitalize;
}

.animate-move-up.sec_7_img.img_box {
  overflow: hidden;
  border-radius: 15px;
  height: 441px;
}

/* ==========about_us_section_End========== */



/* ==========assignment_writing_Start========== */
.sec_8_img {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}

.sec_8_content {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.sec_8_content h4 {
  font-size: 35px;
  font-weight: 600;
}

.sec_5_heading.why_choose_heading {
  margin: 0;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 40px;
}

.sec_9_content {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.sec_9_content h4 {
  font-size: 30px;
  font-weight: 600;
}

.sec_9_img {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.sec_10_img {
  overflow: hidden;
  border-radius: 10px;
  height: 621px;
}

.sec_10_content {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.sec_10_content h4 {
  font-size: 35px;
  font-weight: 600;
}

.sec_10_content h6 {
  font-weight: 600;
  font-size: 25px;
}

.Our_mission_heading {
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 40px;
}

.Our_mission_heading h4 {
  font-size: 35px;
}

.Our_mission_heading p {
  font-size: 14px;
}

.Our_mission_card {
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 261px; */
  text-align: center;
  height: 261px;
  padding: 40px;
}

.Our_mission_card h4 {
  color: var(--primary);
  font-weight: 600;
}

.our_mission_2_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.our_mission_2_content h4 {
  font-size: 35px;
  font-weight: 600;

}

.our_mission_2_content ul {
  flex-direction: column;
  gap: 10px;

  li {
    list-style-type: disc;
    color: 949494;
    list-style-position: inside;
  }
}

.our_mission_2_img {
  border-radius: 15px;
  height: 400px;
  overflow: hidden;
}

/* ==========assignment_writing_End========== */



/* ==========How_it_works_Start========== */
.how_it_works_card_content ul {
  flex-direction: column;
  padding: 20px;
  border: 1px solid #0001;
  border-radius: 10px;
  background: #FBFBFB;
}

.how_it_works_card_content span {
  padding: 9px 35px;
  background: var(--primary);
  border-radius: 15px;
  color: white;
  font-size: 15px;
  text-align: center;
}

.how_it_works_card_content {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.how_it_works_card_content h4 {
  font-size: 35px;
  font-weight: 600;
}

.how_it_works_card_content ul h6 {
  font-size: 25px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.how_it_works_card_content ul li {
  list-style: disc;
  list-style-position: inside;
  font-size: 14px;
  margin-bottom: 10px;
}

.how_it_works_img {
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
}

.how_it_works_card:not(:last-child) {
  margin-bottom: 50px;
}

/* ==========How_it_works_End========== */


/* ==========Faq_Start========== */
.faq_sec_4_main p {
  text-align: center;
  color: rgb(224, 224, 224);
  margin-bottom: 20px;
}

.faq_sec_4_main h4 {
  font-size: 35px;
  max-width: 400px;
}


/* ==========Faq_End========== */


/* ==========Contact_us_Start========== */
.contact_us {
  background-color: #FFF5F9;
}

.contact_us_heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.contact_us_heading h4 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact_us_card {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 15px;
  border: 1px solid #0001;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact_us_card_content {
  flex-direction: column;
  display: flex;
}

.contact_us_card_content h6 {
  margin-bottom: 5px;
  font-size: 19px;
  font-weight: 700;
}

.contact_us_card_content span {
  font-size: 13px;
}

.contact_parent {
  padding-top: 40px;
}

.contact_us_main {
  padding: 20px;
  background: white;
  border: 2px solid #0001;
  border-radius: 10px;
  flex-direction: column;
  display: flex;
  gap: 15px;
}

.contact_page_heading {
  font-weight: 600;
}

.img_box.contact_img.contact_img {
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
}

.contact_us_form {
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.contact_us_form .input_main {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.contact_us_form .input_main .form-control {
  width: 100%;
  flex: 1;
}

.country_input input::placeholder, .contact_us_form textarea::placeholder {
  border-color: #CED4DA;
  color: #CED4DA !important;
}

.country_input select {
  border: 0;
  flex: 0 0 116px;
  border-right: 1px solid;
  border-radius: 0;
}

.country_input input {
  border: 0;
}

.country_input {
  display: flex;
  border-color: #CED4DA;
  border: 1px solid #CED4DA;
  border-radius: 10px;
  gap: 10px;
  transition: .3s;
}

.country_input:focus-within, .country_input:focus-within select {
  border-color: var(--secondary);
  /* Border color on input focus */
}

.country_input:focus select {
  border-color: var(--secondary);
}

.contact_us_form textarea {
  min-height: 130px;
}

.country_input .icon {
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #CED4DA;
}

/* ==========Contact_us_End========== */


/* ==========Assignment_Rating__Start========== */

.sec_12_content {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.sec_12_content h4 {
  font-size: 30px;
  font-weight: 600;
}

.sec_12_img {
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
}

.sec_13_button_main {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.sec_13_button_main .btn.btn-theme {
  flex: 0 0 160px;
}

.sec_13_button_main>* {
  flex: 1 1 268px;
}

.sec_13_card_main {
  margin-top: 30px;
}

.sec_13_card {
  flex-direction: column;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border: 1px solid #0001;
  padding: 20px;
  border-radius: 10px;
}

.sec_13_card_head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec_13_card_head_rating {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}

.sec_13_img {
  height: 70px;
  flex: 0 0 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  padding: 4px;
}

.sec_13_img img {
  border-radius: 50%;
}

.sec_13_card_head_rating h4 {
  font-size: 19px;
  font-weight: 600;
}

.sec_13_card_head_rating .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: orange;
  font-size: 16px;
}

.sec_13_card_content_middle {
  padding: 10px 0;
  margin-top: 10px;
  border-bottom: 2px dashed #0001;
  border-top: 2px dashed #0001;
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.sec_13_bottom_main {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.sec_13_bottom_main .btn-theme {
  width: 100%;
  /* flex: 0 0 140px; */
  padding: 10px 20px;
  flex: 1 1 122px;
  padding: 6px 12px;
  font-size: 15px;
}

.orders {
  display: flex;
  justify-content: space-between;
}


.orders.complete_orders p {
  color: #14B400;
}

.orders.in_progress_orders p {
  color: #FFA603;
}

.sec_13_more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.sec_13_more_btn .btn-theme {
  width: 200px;
}

.sec_14 {
  background-color: #FBFBFB;
}

.sec_14_heading {
  flex-direction: column;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.sec_14_heading h4 {
  font-size: 35px;
  font-weight: 600;
  max-width: 500px;
}

.sec_14_heading p {
  max-width: 790px;
}

.sec_14_card {
  flex-direction: column;
  display: flex;
  gap: 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.sec_14_card_content {
  flex-direction: column;
  display: flex;
  gap: 6px;
  padding: 15px;
}

.sec_14_card_content h6 {
  font-size: 16px;
  font-weight: 600;
}

.sec_14_card_content p {
  font-size: 13px;
}

.sec_14_card_img {
  height: 190px;
}

.sec_14_more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.sec_4_main p {
  text-align: center;
  color: white;
  margin-bottom: 20px;
  font-size: 14px;
}

/* ==========Assignment_Rating__End========== */



/* ==========Hire_writer_Start========== */
.hire_writer {
  background-color: #FBFBFB;
}

.hire_writer_main {
  background-color: white;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.144);
  border-radius: 10px;
}

.main_sidebar {
  position: sticky;
  top: 10px;
}

.hire_img_main {
  padding: 15px;
  background: #FBFBFB;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.144);
  border-radius: 10px;
}

.hire_img_main .hire_img {
  height: 60px;
  flex: 0 0 62px;
  width: 60px;
  border-radius: 10px;
}

.hire_img_main .hire_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hire_content {
  background-color: #0C9743;
  padding: 10px;
  border-radius: 10px;
}

.hire_content p {
  color: white;
  font-size: 14px;
}

.hire_img_content span {
  padding-left: 10px;
  position: relative;
  color: #14B400;
}

.hire_img_content span:after {
  height: 5px;
  width: 5px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #14B400;
  border-radius: 50%;
}

.hire_select_service {
  background-color: #0c97442b;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hire_select_service h6 {
  flex: 0 0 200px;
}

.hire_select_service .form-control {
  flex: 0 0 541px;
  border-color: #0c9743;
  color: black !important;
}

.hire_selects_main {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hire_upload_main {
  margin-top: 20px;
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.hire_selects {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 10px;

}

.hire_upload_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  height: 210px;
  justify-content: center;
  border: 1px dashed rgba(0, 0, 0, 0.144);
  border-radius: 10px;
  font-size: 14px;
}

.form-check {
  color: #6C757D;
  font-size: 14px;
}

.form-check a {
  color: #6C757D;
  text-decoration: underline;
}

.hire_upload_box .icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBFBFB;
  border-radius: 10px;
  font-size: 21px;
}

.hire_list {
  margin-top: 20px;
}

.hire_list ul {
  flex-direction: column;
  margin-top: 20px;
  gap: 10px;
}

.hire_list h6 {
  font-size: 19px;
  font-weight: 600;
}


.hire_list ul li .assignment_writing_content_list .icon {
  height: 20px;
  width: 20px;
  flex: 0 0 20px;
  font-size: 11px;
}

.hire_list ul li .assignment_writing_content_list span {
  font-size: 15px;
}

.form-check-input:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.hire_sidebar_theme {
  background-color: white;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.144);
  border-radius: 10px;
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.hire_writer_sidebar {
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.hire_coupon_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hire_coupon_top h6 {
  font-size: 13px;
}

.hire_coupon_top span {
  font-size: 12px;
  color: #2196F5;
}

.coupon_input {
  display: flex;
  align-items: center;
  border: 1px solid #0002;
  border-radius: 5px;
  padding-right: 12px;
}

.coupon_inputs span {
  color: var(--primary);
}

.coupon_input span {
  color: var(--secondary);
  font-size: 11px;
  text-decoration: underline;
}

.coupon_input input {
  border: 0;
  padding: 8px;
  font-size: 13px;
  color: black !important;
}

.coupon_input input::placeholder {
  color: #adadad !important;
  font-size: 12px;
}

.hire_order_summary.hire_sidebar_theme {
  padding: 0;
  gap: 0;
}

.hire_order_summary.hire_sidebar_theme h6 {
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.144);
  font-size: 14px;
}

.hire_order_summary_content {
  padding: 15px;
}

.hire_order_summary_content span {
  color: #6C757D;
  font-size: 13px;
}

.hire_order_summary_content span:nth-child(1) {
  font-size: 15px;
  color: var(--primary);
}

.hire_order_summary_content {
  flex-direction: column;
  display: flex;
  gap: 5px;
}

.hire_price_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hire_price {
  padding: 15px;
  background: #FFF5F9;
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.hire_price_list.discount span strong {
  font-weight: 600;
  font-size: 11px;
  background: var(--secondary);
  padding: 5px 7px;
  border-radius: 10px;
}

.hire_price_list.best_price p {
  font-size: 12px;
  color: #14B400;
}

.hire_price_list.discount p {
  font-size: 12px;
  color: #14B400;
}

.hire_price_list span {
  font-size: 13px;
}

.total_amount_main {
  flex-direction: column;
  display: flex;
  gap: 15px;
  /* align-items: center; */
  width: 100%;
  padding: 15px;
}

.total_amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total_amount_main .btn-theme {
  border-radius: 5px;
  font-size: 13px;
}

.total_amount span {
  font-size: 14px;
  color: black;
}

.total_amount strong {
  font-size: 13px;
}

.hire_selects_main .hire_selects {
  flex: 1 1 250px;
}

.payment.img_box_content {
  height: 143px;
  width: 100%;
}

.verified {
  background-color: #E8FFF1;
  padding: 10px 15px;
  border-radius: 10px;
  color: #2DB261;
}

.verified_main {
  display: flex;
  justify-content: flex-end;
}

.verified i {
  font-size: 19px;
}

/* ==========Hire_writer_End========== */



/* ==========pricing_Start========== */
.pricing_hero {
  background-color: #FBFBFB;
  background-image: none;
}

.pricing_hero .hero_content h1 {
  max-width: 400px;
}

.img_box_content {
  height: 327px;
}

.pricing_payment_content {
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.pricing_payment_content h4 {
  font-size: 35px;
  font-weight: 600;
}

.subject_cover_tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subject_cover h6 {
  font-size: 22px;
  color: var(--primary);
}

.subject_cover {
  flex-direction: column;
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.subject_cover_tags .tag {
  padding: 7px 12px;
  background-color: #F5F5F5;
  font-size: 13px;
  color: #6C757D;
}

.about_writer_inner_content {
  flex-direction: column;
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.about_writer_inner_content h6 {
  font-size: 22px;
  color: var(--primary);
}

.about_writer_order {
  border-top: 2px solid #D8D8D8;
  margin-top: 20px;
  padding-top: 20px;
}

.about_writer_card {
  flex-direction: column;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.about_writer_card h6 {
  font-size: 20px;
}

.about_writer_card span {
  color: var(--black);
  font-weight: 600;
}

.subject_rating {
  background-color: white;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.144);
  border-radius: 10px;
  margin-top: 20px;

}

.subject_rating>h6 {
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.subject_rating_card_head .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: orange;
  font-size: 16px;
}

.subject_rating_card_head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subject_rating_card {
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.144);
  border-radius: 10px;
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.subject_rating_card_content {
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.subject_rating_card_content h6 {
  font-size: 19px;
  font-weight: 600;
}

.subject_rating_card_head h6 {
  font-size: 15px;
  font-weight: 600;
}

.subject_rating_card_main {
  gap: 20px;
  flex-direction: column;
  display: flex;
  max-height: 500px;
  overflow: auto;
  padding-right: 10px;
}

.free_features {
  border: 1px solid rgba(0, 0, 0, 0.144);
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
  flex-direction: column;
  display: flex;
  /* gap: 10px; */
}

.free_feature_top {
  padding: 10px 15px;
  background-color: #333333;
}

.free_feature_top h5 {
  color: var(--secondary);
  text-align: center;
}

.free_feature_top h5 span {
  color: white;
  text-decoration: line-through;
}

.free_feature_middle {
  flex-direction: column;
  padding: 15px;
}

.free_feature_middle li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px;
  background: #F5F5F5;
}

.free_feature_middle li:nth-child(even) {
  background-color: white;
}

.free_feature_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px;
}

.free_feature_bottom h4 {
  font-size: 19px;
}

.free_feature_bottom h4 {
  color: #2DB261;
}

.free_feature_bottom h4 span {
  text-decoration: line-through;
}

.free_feature_bottom>span {
  font-size: 13px;
}

.free_feature_bottom .btn-theme {
  width: 100%;
}

/* ==========pricing_End========== */


/* ==========Deal_Start========== */
.deal_img.img_box {
  border-radius: 10px;
  overflow: hidden;
  max-height: 300px;
}

.deal {
  background-color: #FBFBFB;
}

.deal_card {
  background-color: white;
  padding: 15px;
  border: 1px solid #0001;
  border-radius: 10px;
  display: flex;
  gap: 20px;
}

.deal_cards_main {
  margin-top: 30px;
  flex-direction: column;
  display: flex;
  gap: 20px;
  align-items: center;
}

.deal_btn_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.deal_btn_content p {
  color: var(--primary);
}

.deal_btn_content span {
  color: black;
}

.deaL_card_img_main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.deal_card_img.img_box_content {
  height: 72px;
  flex: 0 0 72px;
}

.deal_btn_main {
  flex-direction: column;
  display: flex;
  gap: 5px;
  flex: 0 0 210px;
  align-items: center;
}

.deal_btn_main .primary_btn {
  width: 100%;
}

.deal_card_content h4 {
  font-size: 21px;
  font-weight: 500;
}

.deal_card_content p a {
  color: #6a7382;
  text-decoration: underline;
}

.deal_card_content p a:hover {
  color: var(--primary);
}

.blog_main_card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog_main_card .blog_card_content {
  align-items: flex-start;
  padding: 17px;
  padding-top: 0;
  flex: 1;
}

.blog_main_card .blog_card_content a {
  margin-left: 0;
}


.blog_main_card .blog_card_content h4 {
  font-size: 29px;
  font-weight: 600;
}


.blog_main_card_img {
  height: 330px;
  /* width: 100%; */
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
}

.blog_page_card_img {
  height: 250px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog_main_card.blog_page_card {
  flex-direction: column;
  margin-top: 40px;
  border: 1px solid #0001;
  border-radius: 10px;
}

.blog_main_card.blog_page_card .blog_card_content h4 {
  font-size: 20px;
}

.inner_blog_content h4 {
  font-size: 35px;
}

.inner_blog_content {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

.inner_blog_content_main {
  margin-top: 40px;
}

.inner_blog_card_img.img_box {
  height: 429px;
  overflow: hidden;
  border-radius: 10px;
}

.sidebar_blogs {
  position: sticky;
  top: 10px;
}

.inner_blog_contents {
  flex-direction: column;
  display: flex;
  gap: 15px;
}

.inner_blog_contents h4 {
  font-size: 20px;
  font-weight: 700;
}

.iner_side {
  position: sticky;
  top: 10px;
}


/* ==========Deal_End========== */



/* ==========Cart_Start========== */
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link {
  border: 0;
  color: #6C757D;
  position: relative;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background: transparent;
  color: var(--primary);
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  left: 0;
  background: var(--primary);
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:hover {
  color: var(--primary);
}

ul#myTab {
  max-width: 610px;
  justify-content: center;
}

.tab_content_main {
  margin-top: 40px;
}

.my_cart {
  background: #FBFBFB;
}

.order_list_main {
  border: 1px solid rgba(0, 0, 0, 0.144);
  background: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.order_list_top {
  display: flex;
  justify-content: space-between;
  background: #fbfbfb;
  align-items: center;
  padding: 21px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.144);
  flex-wrap: wrap;
  gap: 30px 10px;
  /* justify-content: center; */
}

.order_card:not(:last-child) {
  padding-right: 20px;
  border-right: 1px solid #0004;
}

.order_card_inner_content_main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.order_card .order_id {
  display: flex;
  align-items: center;
  gap: 7px;
}

.order_card h6 {
  font-size: 15px;
  font-weight: 500;
  font-weight: 600;
}

.order_date h6 {
  font-size: 15px;
  font-weight: 500;
}

.order_date span {
  font-size: 14px;
  color: #0C9743;
}

.order_date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.order_card span {
  font-size: 14px;
}

.order_list_content ul {
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  /* max-width: 410px; */
}

.order_list_content ul li {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.order_list_tags_main {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}



.order_list_content ul li strong {
  flex: 0 0 140px;
}

.order_list_content ul li span {
  display: flex;
  gap: 6px;
}

.order_list_content ul li span p {
  text-decoration: line-through;
  color: #d5d5d5;
}

.p_green {
  color: #2DB261 !important;
  text-decoration: none !important;
}

.hire_sidebar_theme.order_total_detail {
  margin-top: 30px;
  padding: 0;
  gap: 0;
}

.hire_sidebar_theme.order_total_detail h6 {
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.144);
  font-size: 17px;
  font-weight: 700;
}

.sub_total_main {
  flex-direction: column;
  display: flex;
  gap: 5px;
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.144);
}

.sub_total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total_amoount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.144);
}

.form-check-input:checked[type=radio] {
  background-image: none;
  position: relative;
  overflow: hidden;
  z-index: 5;
  background: var(--secondary);
  border-color: var(--secondary);
}

.debit_card {
  padding: 15px;
  display: flex;
  justify-content: space-between;
}

.debit_card a {
  color: var(--primary);
  font-size: 13px;
  text-decoration: underline;
}

.proceed_btn {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proceed_btn .btn-theme {
  width: 100%;
}

.side_get_in_touch_main {
  flex-direction: column;
  display: flex;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #D8D8D8;
}

.side_get_in_touch_main h6 {
  font-size: 23px;
}

.side_get_in_touch_btn_main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.side_get_in_touch_btn_main .btn-theme {
  width: 100%;
}

.hire_sidebar_theme.side_get_in_touch {
  margin-top: 30px;
}

.touch_margin_0 {
  margin: 0 !important;
}

.not_found {
  flex-direction: column;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 50px;
}

.not_found_content {
  flex-direction: column;
  display: flex;
  align-items: center;
  gap: 10px;
}

.not_found_content .btn-theme {
  width: 200px;
}

.cart_see_more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.cart_see_more h6 {
  font-size: 20px;
  font-weight: 600;
}

/* ==========Cart_End========== */


/* ==========Wallet_Start========== */
.wallet_heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

.wallet_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fbfbfb;
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.144);
}

.my_wallet {
  border: 1px solid rgba(0, 0, 0, 0.144);
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

.wallet_balance {
  gap: 10px;
  display: flex;
  align-items: center;
}

.wallet_balance span {
  font-size: 15px;
  font-weight: 600;
  color: black;
}

.wallet_top h6 {
  font-size: 18px;
}

.my_wallet_content {
  padding: 35px;
}

.total_price_wallet {
  height: 45px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--primary);
  border-radius: 10px;
}

.wallet_table .table thead tr th:not(:first-child) {
  border: 0;
}

.wallet_table .table thead tr th:first-child {
  border-right: 0px;
}

.wallet_table .table thead tr th:last-child {
  border-right: 1px solid #0001 !important;
}

.wallet_table .table>tbody tr th {
  color: #c1c1c1;
  font-weight: 300;
  font-size: 14px;
}


table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: white;
  border: 1px solid #ddd;
  padding: .35em;
}

table th,
table td {
  padding: .625em;
  text-align: center;
  text-align: left;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
}

table>tbody {
  color: #c1c1c1;
  font-weight: 300;
  font-size: 14px;
}






tbody, td, tfoot, th, thead, tr {
  color: black;
}





.wallet_card {
  display: flex;
  align-items: center;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.wallet_card_content h4 {
  font-size: 20px;
  font-weight: 500;
}

.wallet_card_content p {
  font-size: 14px;
  color: #6C757D;
}

.wallet_card_content {
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.wallet_card_icon {
  height: 50px;
  flex: 0 0 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D9D9D9;
}

.wallet_card_maim {
  padding: 35px;
  background: white;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.144);
  margin-top: 30px;
}

.wallet_list_main {
  margin-top: 30px;
  padding: 25px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.144);
  border-radius: 10px;
  flex-direction: column;
  display: flex;
  gap: 20px;
}

.wallet_list_main ol {
  flex-direction: column;
  gap: 11px;
}

.wallet_list_main ol li {
  list-style: auto;
  list-style-position: inside;
}

.wallet_list_main ol li:after {
  color: black;
}

/* ==========Wallet_End========== */



/* ==========Profile_Start========== */
.profile_heading {
  padding-bottom: 10px;
  border-bottom: 1px solid #0002;
}

.profil_pic {
  height: 80px;
  width: 80px;
}

.profile_main {
  max-width: 490px;
  margin: 0 auto;
  margin-top: 40px;
}

.profile_pic_main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.profile_pic_main span {
  font-size: 16px;
  color: black;
}

.hidden {
  opacity: 0;
}

.profile-pic {
  width: 200px;
  max-height: 200px;
  display: inline-block;
}

.file-upload {
  display: none;
}

.circle {
  border-radius: 100% !important;
  overflow: hidden;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

img {
  max-width: 100%;
  height: auto;
}

.p-image {
  position: absolute;
  right: -2px;
  color: #666666;
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  bottom: 0;
  background: gray;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}

.p-image:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}

.upload-button {
  font-size: 1.2em;
  margin-top: 2px;
}

.upload-button:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  color: white;
}

.profile_pic_img_main {
  position: relative;
  height: 80px;
  width: 80px;
}

.profile_pic_main h4 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.edit_profile {
  border: 1px solid #0002;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}


.edit_profile_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px;
  background: #FBFBFB;
  /* margin-bottom: 30px; */
  border-bottom: 1px solid #0002;
  margin-bottom: 10px;
}

.edit_profile_top h4 {
  font-size: 17px;
  font-weight: 600;
}

.edit_profile_top a {
  font-size: 14px;
  color: #3180F5;
}

.edit_profile_field {
  flex-direction: column;
  display: flex;
  gap: 5px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #0002;
}

.edit_profile_content {
  padding: 25px;
}

.edit_profile_field p {
  font-size: 15px;
  color: black;
}

.edit_profile_field span {
  font-size: 14px;
  color: #6C757D;
}

.privacy_border {
  border: 2px solid #0002;
}

.privacy_cotent_main {
  flex-direction: column;
  display: flex;
  gap: 30px;
}

.privacy_cotent {
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.privacy_cotent h4 {
  font-size: 35px;
  font-weight: 600;
}

.privacy_cotent h6 {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
}

.privacy_cotent ul {
  flex-direction: column;
}

.privacy_cotent ul li {
  list-style: disc;
  list-style-position: inside;
}

/* ==========Profile_End========== */



/* ==========Essay_Start========== */
.why_choose_us_content {
  flex-direction: column;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.why_choose_us_content h4 {
  font-size: 35px;
  max-width: 940px;
}

.why_choose_us_content p {
  font-size: 14px;
  max-width: 1070px;
}

.why_choose_us_card_main {
  margin-top: 40px;
}

.essay_cards_section_heading h4 {
  font-size: 35px;
  font-weight: 500;
  text-transform: capitalize;
}

.essay_cards_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.why_choose_us_content.essay_help_content p {
  max-width: 870px;
}

.help_card {
  margin-top: 50px;
  padding: 30px 25px;
  border: 1px solid #0002;
  border-radius: 10px;
  position: relative;
}

.help_card_top {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #0002;
}

.help_content {
  flex-direction: column;
  margin-bottom: 20px;
}

.help_content li {
  display: flex;
  align-items: center;
}

.help_content li strong {
  flex: 0 0 200px;
}

.help_card img {
  position: absolute;
  top: -22px;
  left: 20px;
}

.primary_border {
  background-color: white;
  border-color: var(--primary);

}

.hire_list ul li span {
  font-size: 13px;
}

.primary_border:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.help_card_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.help_card_btn .btn {
  width: 100%;
}


/* ==========Essay_End========== */


/* ==========Services_Start========== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-list-img.img_box {
  height: 190px;
  overflow: hidden;
}

.service-list-content {
  flex-direction: column;
  display: flex;
  gap: 8px;
}

.service-list-content h6 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
}

.service-list-content p {
  font-size: 14px;
}

.content-list .list-name::before {
  content: "";
  background: url(../images/check.svg) no-repeat;
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: sub;
  margin: 2px 8px 0 0;
}

.service-list .content-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service-list .content-list .list-name {
  font-size: 14px;
  line-height: 18px;
  width: 49%;
  display: inherit;
}

.service-list:hover .service-list-img.img_box img {
  scale: 1.1;
}

/* ==========Services_End========== */


/* ==========Login_modal_Start========== */
.modal-content {
  background: white;
  padding: 15px;
  border-radius: 15px;
}

.login_img.img_box {
  height: 426px;
  border-radius: 10px;
  overflow: hidden;
}

.login_img_main h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 600;
  font-size: 29px;
}

.login_img_main {
  position: relative;
}

.google-button {
  all: unset;
  height: 40px;
  height: 100%;
  border-radius: 2px;
  /* box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25); */
  background: white;
  transition: all 300ms ease-in-out;
  display: flex;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  border: 1px solid #0001;
}

.google-button .google-icon-wrapper {
  margin: 1px;
  width: 40px;
  height: 40px;
  border-radius: 1px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid #0001; */
  border-radius: 50%;
  flex: 0 0 40px;
}

.google-button .google-button-text {
  display: flex;
  color: var(--black);
  font-size: 16px;
  letter-spacing: 0.2px;
  /* font-family: "Roboto"; */
  margin-left: 1em;
  margin-right: 1em;
  font-size: 14px;
  transition: .3s;
}

.signin_btn_main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.signin_btn_main>* {
  flex: 1;
}

.google-button:hover {
  background: var(--primary);
}


.google-button:hover .google-button-text {
  color: white;
}

.signin_btn_content {
  flex-direction: column;
  display: flex;
  gap: 10px;
  align-items: center;
}

.under-line-text {
  position: relative;
  padding: 5px 52px;
  background: white;
  z-index: 5;
}

.under-line-text:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #D8D8D8;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.signin_btn_content h6 {
  z-index: 1;
  position: relative;
  background: white;
  padding: 0 30px;
}

.signin_btn_content h6 span {
  position: relative;
  z-index: 5555;
}

.sign-up-form .form-control {
  color: black;
}

.sign-up-form .form-control::placeholder {
  color: #CED4DA !important;
}

.sign-up-form {
  flex-direction: column;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.signin_heading {
  margin-bottom: 20px;
  flex-direction: column;
  display: flex;
  gap: 10px;
}

.signin_heading h4 {
  font-size: 24px;
  font-weight: 500;
}

.signin_heading p {
  font-size: 14px;
}

.modal_close_btn {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: black;
  color: white;
  border-radius: 50%;

}

.reviews {
  background-color: #f5f5f5;
}

/* ==========Login_modal_End========== */



/* ==========reviews_Start========== */
.reviews_hero {
  margin-bottom: 0;
}

.filer_sidebar_heading {
  background: white;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.filer_sidebar_heading h4 {
  font-size: 19px;
}

.filter_sidebar_main {
  box-shadow: 0 3px 6px rgba(0, 0, 0, .1607843137);
  margin-bottom: 20px;
}

.siderbar_filter {
  background: white;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.siderbar_filter h6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2a2a2a;
  font-size: 15px;
  cursor: pointer;
}

.siderbar_filter i {
  font-size: 13px;
  transition: .3s;
  transform: rotate(0deg);
}

.siderbar_filter ul {
  flex-direction: column;
  margin-top: 19px;
  max-height: 180px;
  overflow: auto;
}

.siderbar_filter ul li .circle {
  height: 14px;
  width: 14px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.siderbar_filter ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter_heading.active i {
  transform: rotate(180deg);
}

.siderbar_filter ul li.active .circle {
  background: var(--primary);
}

.siderbar_filter ul::-webkit-scrollbar {
  display: none !important;
  /* Safari and Chrome */
}

.user_header_heading {
  justify-content: space-between;
  display: flex;
  gap: 7px;
}

.user_header_heading h6 {
  font-size: 15px;
  font-weight: 700;
}

.user_header_heading span {
  font-size: 13px;
}

.user_card_head {
  padding: 15px;
  /* background: white; */
  /* box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137); */
  padding-bottom: 10px;
  border-bottom: 2px solid #dddddd;
  margin-bottom: 10px;
}

.user_card {
  display: flex;
  border-radius: 10px;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.user_card_head .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 18px;
  color: orange;
}

.user_card {
  background: white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16078431);
  /* padding: 15px; */
  margin-bottom: 20px;
}

.user_card_content p {
  font-size: 14px;
  margin-bottom: 10px;
}

.user_card_content_bottom {
  flex-direction: column;
  display: flex;
  gap: 1px;
}

.user_card_content_bottom strong {
  font-size: 14px;
}

.user_card_content_bottom span {
  font-size: 13px;
}

.user_card_content {
  padding: 16px;
  padding-top: 0;
}


/* ==========reviews_End========== */


/* ==================================================assignmentsubject_Start================================================== */
.free_feature_bottom.assignment-subjects-sidebar-box h4 {
  font-size: 26px;
  font-weight: 600;
}

.free_feature_bottom.assignment-subjects-sidebar-box .hero_form {
  margin: 0;
}

.assingment-subject-offer-img {
  margin-top: 20px;
  height: 420px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
}

.assingment-subject-offer-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.assingment-subject-feature {
  margin-top: 20px;
}

.assingment-subject-list-head {
  padding: 10px 15px;
  background-color: #333333;
}

.assignment-subjects-list {
  margin-top: 20px;
  border: 1px solid rgba(0, 0, 0, 0.144);
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
  flex-direction: column;
  display: flex;
}


.assingment-subject-list-head h6 {
  color: var(--secondary);

  font-size: 18px;
}

.assignment-subjects-list-content {
  flex-direction: column;
  padding: 15px;
  gap: 3px;
}

.assignment-subjects-list-content li a {
  font-size: 13px;
  color: gray;
}

.assignment-subjects-list-content li {
  list-style: disc;
  list-style-position: inside;
}


.assignment-subjects-list-content li:hover a, .assignment-subjects-list-content li:hover::marker {
  color: var(--primary);
}

.assignment-subjects-list-content.related-page-list {
  max-height: 224px;
  overflow: auto;
}

.assignment-subjects-list-content.related-page-list::-webkit-scrollbar-thumb {
  background-color: #333333;
}

.assignment-subjects_content {
  flex-direction: column;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.assignment-subjects_content h4 {
  font-size: 26px;
  font-weight: 500;
}

.table-wrapper table tbody tr td {
  color: var(--primary);
  font-weight: 400;
}

.assignment-subjects_content ul {
  flex-direction: column;
  gap: 10px;
}

.assignment-subjects_content ul li {
  list-style: disc;
  list-style-position: inside;
}

.assignment-subjects_content ul li::marker {
  color: var(--primary);
}

#dropdownMenuLink {
  border: 1px solid #0001;
  color: gray;
  display: none;
}

/* ==================================================assignmentsubject_End================================================== */