
@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Gobal Css */
*{  
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Tinos", serif !important;
    
}


body, html {
    overflow-x: hidden !important;
}

:root{
    --btn-1-color: hsl(2.55deg 85.45% 56.86%);
    --btn-2-color:#fff;
    --dark-color:rgb(8, 8, 8);
    --text-color:#7e7676;
    --dark-blue: hsl(247.14deg 46.67% 17.65%);
    --dark-black:rgb(8, 8, 8);
    --light-pink-color: hsl(359.35deg 95.83% 81.18%);
}

h1{
    font-family: "Tinos", serif !important;
    color: var(--dark-color) !important;
    font-size: 45px !important;
    font-weight: 800 !important;
}


.h1{
     font-family: "Tinos", serif !important;
    color: var(--dark-color) !important;
    font-weight: 800 !important;
    
}

h2{
    font-family: "Tinos", serif !important;
    font-size: 35px !important;
    color: var(--dark-color) !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
}
span.h2 {
    font-weight: 700 !important;
}
.form-h2{
    color: var(--btn-2-color) !important;
}
h3{
    font-family: "Tinos", serif !important;
    color: var(--dark-color) !important;
    font-weight: 600 !important;
    font-size: 23px !important;
}

p{
    color: var(--text-color);
    font-size: 16px;
    font-family: "Tinos", serif !important;
}

a{
    font-size: 16px;
    font-family: "Tinos", serif !important;
    text-decoration: none !important;
}
li{
    font-size: 16px;
    font-family: "Tinos", serif !important;
    color: var(--text-color);
}
span{
    font-family: "Tinos", serif !important;
}


.hh-btn,.ph-btn {
    width:170px;
    cursor: pointer;
    text-align: center !important;
    padding: 9px 0px;
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    justify-content: center;
}
@keyframes bounceUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.hh-btn {
  background-color: var(--btn-1-color);
  color: var(--btn-2-color);
  border: 1px solid var(--btn-1-color);
  /* padding: 12px 24px; */
  font-weight: 600;
  width: 235px;
  display: flex;
  gap: 15px;
  position: relative;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hh-btn::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.8);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: var(--btn-1-color) transparent transparent transparent;
  opacity: 0;
  pointer-events: none;
}

.hh-btn:hover::after {
  animation: bounceUp 0.5s forwards;
}
@keyframes textBounce {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}
.hh-btn-text {
  display: inline-block;
  transition: transform 0.3s ease;
}

.hh-btn:hover .hh-btn-text {
  animation: textBounce 0.5s ease;
}


a.hh-btn svg {
    width: 20px;
    fill: var(--btn-2-color);
}

a#footer-btn:hover {
    border: 1px solid var(--btn-2-color);
}

.ph-btn {
  background-color: var(--btn-2-color);
  border: 1px solid var(--btn-1-color);
  color: var(--btn-1-color);
  /* padding: 12px 24px; */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 235px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.ph-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 135%;
  height: 100%;
  background: var(--btn-1-color); /* background that slides in */
  z-index: 0;
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform: translate3d(-100%, 0, 0);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
}

.ph-btn:hover::before {
  transform: translate3d(0, 0, 0);
   color: var(--btn-2-color) !important;
}
a.ph-btn:hover{
    color: var(--btn-2-color);
    border: none;
}

.ph-btn span { 
  position: relative; 
  z-index: 1;
  transition: color 0.3s ease;
}

.ph-btn:hover span {
  color: var(--btn-2-color);
}

a.ph-btn svg {
    width: 20px;
    fill: var(--btn-1-color);
}
a.ph-btn:hover svg {
    filter: brightness(10);
}

a.ph-btn:hover span {
    color: var(--btn-2-color) ;
    border: none;
    z-index: 2;
}

/* NavBar  Section*/

.sticky-head {
    padding: 10px 0 0 0;
    position: fixed;
    top: 0px;
    width: 100%;
    background: #ffebcd;
    z-index: 10;
    /* box-shadow: 15px -3px 20px 12px rgb(0 0 0 / 10%); */
    /* border-bottom: 1px solid #4a5a4a69; */
}
.sticky-head.scrolled {
    background-color: var(--btn-2-color);
    box-shadow: 15px -3px 20px 12px rgb(0 0 0 / 10%);
}

.g-logo img {
    width: 200px;
}

.offcanvas-body .dropdown-menu.show {
    margin-bottom: 15px !important; /* Adjust as needed */
}
.navdis {
    display: flex;
    align-items: flex-start !important;
}
.hh-footer-box a img {
    width: 250px;
    filter: brightness(10);
}

.rating-span {
    background: #002940;
    padding: 6px;
    border-radius: 4px;
    font-size: 13px;
    display: inline-table;
    margin-bottom: 4px;
    color: white;
    margin-top: 9px;
    margin-right: 6px;
}
.reviews-header {
    margin-top: -9px;
    text-align: center;
    margin-bottom: 50px;
}
.review-head {
    text-align: center;
}
.reviews-header img {
    filter: brightness(0);
}
ul.navbar-nav.hh-nav-bar {
    margin: 0 auto;
    align-items: center;
}

.hh-nav-item {
    font-weight: 500;
    /* margin: 0px 15px; */
    margin: 0px 3px;
    font-size: 14px;
    padding: 0 10px;
}

.hh-nav-item a {
    font-size: 15px;
    color: black;
}

.hh-nav-item .hh-btn{
    width: auto;
}

#nav-item-talk a {
    color:#fff;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    background: #fff;
    border-top: 2px solid #1A255F;
    left: 20px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    /* width: 150px; */
    z-index: 99;
    text-align: left;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}





.nav-item.dropdown .dropdown-menu {
    display: none; 
}



/* hero sec */
section.hero-sec {
    padding: 120px 0 120px 0;
    background-color: hsl(36deg 100% 90.2%);
}
.hero-sec-content p {
    margin-top: 25px;
}
.banner-list {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0px 10px;
    padding: 0 10px 0 0px;
}
.banner-list ul {
    padding: 0;
}
.banner-list ul li {
    display: flex;
    list-style: none;
    gap: 10px;
    padding-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
}

.hero-sec-image img {
    width: 70%;
    margin-top: 100px;
}

.hero-sec-image {
    text-align: center;
}
.banner-list ul li svg {
    width: 15px;
    fill: var(--btn-1-color);
}
.hh-con-sec-head-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

p.safe-tagline{
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
p.safe-tagline img {
    width: 25px;
}
/* form sec */
.form-banner {
    background-color: var(--dark-blue);
    padding: 20px 50px;
    border-radius: 10px;
    position: relative;
}
section.hero-form-bottom {
    margin-top: -120px;
}

.form-ban img {
    /* width: 70%; */
}

.form-ban {
    text-align: center;
}
.form-header h2 {
    color: var(--btn-2-color) !important;
    margin: 0 !important;
}


.form-group label {
    color: var(--btn-2-color);
    margin-bottom: 10px;
}

.form-group input {
    background: none;
    margin-bottom: 20px;
    border: 1px solid var(--btn-1-color);
    color: var(--btn-2-color);
}
.contact-form .form-group input{
    color: var(--dark-black);
}
.contact-form .form-group input:focus {
    color: var(--dark-black);
}
.form-group input:focus {
    background: none;
    color: var(--btn-2-color);
}
.form-group input::placeholder {
    color: var(--btn-2-color);
}
.form-group select {
    background: none;
    color: var(--btn-2-color);
    border: 1px solid var(--btn-1-color);
    padding-right: 0;
}
.form-group select option {
    color: var(--dark-black);
}
input#signup  {
    border-radius: 5px;
    /* width: 225px !important; */
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    font-size: 14px !important;
    background-color: transparent;
    background-color: hsl(36deg 100% 90.2%);
    font-family: poppins;
    margin-top: 35px;
    width: 100%;
    /* margin-left: 10px; */
    cursor: pointer;
    color: var(--dark-color);
    border: 1px solid var(--btn-1-color);
    padding: 8px 0;
}
input#signup:hover {
    background-color: var(--btn-1-color);
    color: var(--btn-2-color);
}

textarea#exampleFormControlTextarea1 {
    border: 1px solid var(--btn-1-color);
}
/* about section start */
section.about-sec-main {
    padding: 90px 0 70px 0;
    align-items: center;
}

.about-banner {
    text-align: center;
}


span.second-text {
    background-color: var(--btn-1-color);
    color: var(--btn-2-color);
    border-radius: 10px 20px;
    padding: 2px 12px 7px 12px;
}

.about-cus-support span {
    font-weight: 600;
    font-size: 19px;
    color: var(--btn-1-color);
}

.about-cus-support span span {
    font-size: 18px;
    color: var(--dark-color);
}

.about-cus-support {
    margin-bottom: 25px;
}



/* why choose us */
.card-box {
    display: flex;
    gap: 15px;
    padding: 15px 0;
}

.card-box-icon img {
    width: 80px;
}

.card-box-content span {
    font-weight: 600;
    font-size: 20px;
}

.why-choose-head {
    text-align: center;
    padding-bottom: 30px;
}


/* services section */
.services-sec {
    padding: 50px 0;
}

.title-head {
    text-align: center;
    margin-bottom: 40px !important;
}
.services-sec .degree-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.services-sec .degree-wrap:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background: hsl(247.14deg 46.67% 17.65% / 66%);
    z-index: 1;
}

.services-sec .degree-wrap img {
    width: 100%;
    display: block;
}

.services-sec .degree-wrap .title-part {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 30px 21px;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2;
}

.services-sec .degree-wrap .title-part .title {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
}

.services-sec .degree-wrap .content-part {
    position: absolute;
    top: 13px;
    left: 20px;
    right: 20px;
    height: 90%;
    /* width: 300px; */
    text-align: center;
    background: var(--btn-1-color);
    border-radius: 3px;
    padding: 30px 15px 0 15px;
    color: #ffffff;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
    z-index: 3;
}

.services-sec .degree-wrap:hover .content-part {
    opacity: 1;
    transform: scale(1);
}

.services-sec .degree-wrap .content-part .title {
    margin-bottom: 13px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.services-sec .degree-wrap .content-part .desc {
    margin-bottom: 15px;
    color: #fff;
}

.services-sec .degree-wrap .content-part .btn-part a {
    /* text-transform: uppercase; */
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    padding-bottom: 0;
    border-bottom: 1px solid #ffffff;
}

/* tabs section */
.ser-sec-features-head {
    padding-bottom: 80px;
}
.ser-sec-features-tabs {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 20px;
    background-color: var(--dark-blue);
    padding: 30px 50px 50px 50px;
    border-radius: 10px;
    margin-bottom: 70px;
    align-items: center;
}

.ser-sec-features-tabs ul.nav.nav-pills {
    display: block;
    background-color: blanchedalmond;
    padding: 30px 20px 15px 20px;
    border-radius: 10px;
    margin-top: -108px;
    /* border: 1px solid var(
    --text-color); */
}
.ser-sec-features-tabs .nav-pills .nav-link {
    border-radius: var(--bs-nav-pills-border-radius);
    color: var(--dark-color) !important;
    border: 1px solid var(--btn-1-color);
}

.tab-pane-sub-con ul {
    display: grid;
    grid-template-columns: 50% 50%;
}
span.tab-pane-head {
    font-size: 25px;
    font-weight: 700;
}

.ser-sec-features-tabs .nav-pills li.nav-item {border: 1px solid #b7b3b39e;margin-bottom: 20px;background-color: var(--btn-2-color);border-radius: 10px;}

.ser-sec-features-tabs .nav-pills li a.nav-link.active {
    background-color: var(--btn-2-color);
    color: var(--btn-2-color) !important;
    /* border: 1px solid var(--dark-black); */
    /* box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1); */
    background-color: var(
    --btn-1-color);
}

.tab-content.clearfix {
    background-color: var(--dark-blue);
    color: var(--btn-2-color);
    padding: 35px 0px 0 30px;
    border-radius: 10px;
    align-items: center;
}

.tab-pane-sub-con p {
    color: var(--btn-2-color);
}



/* writer sec */
.writer-content-center {
    display: grid;
    margin: 0;
    grid-template-columns: 50% 50%;
    padding: 15px 0;
}
.writer-head {
    display: grid;
    grid-template-columns: 50% 50%;
    margin-bottom: 25px;
}

.writer-card-sec {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 25px;
    text-align: center;
}

.writer-pro img {
    width: 130px;
}

.writer-rating {
    background-color: var(--btn-1-color);
    width: 60px;
    border-radius: 50px;
    height: 25px;
    padding-top: 2px;
    margin-top: -15px;
}


.writer-rating p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.writer-name {
    background-color: blanchedalmond;
    width: 60px;
    border-radius: 50px;
    height: 25px;
    padding-top: 2px;
    margin-top: -15px;
    margin-left: 70px;
}


span.writer-specaility {
    font-weight: 600;
    font-size: 18px;
}
.writer-name p {
    color: black;
    font-size: 14px;
    margin: 0;
}
.writer-details p {
    margin: 0;
    color: black;
}
.writer-box {
    padding-bottom: 50px;
}

span.writer-order {
    font-weight: 600;
}

.writer-num-exp span {
    font-weight: 600;
    font-size: 18px;
}

.writer-num-exp p {
    font-weight: 600;
    color: #4b56eb;
}

span.writer-guaranteed {
    font-weight: 700;
    font-size: 25px;
}
p.bottom-content {
    margin: 0;
    padding: 20px 0 30px 0;
}


/* call action */
section.call-action {
    background: var(--dark-blue);
    /* padding: 40px 0; */
    position: relative;
    color: var(--btn-2-color);
}
.call-action-content-sec h2 {
    color: var(--btn-2-color) !important;
}
.call-action-content-sec ul{
   padding: 0;
}
.call-action-content-sec ul li {
    list-style: none;
    margin: 15px 0;
    display: flex;
    gap: 20px;
    color: var(--btn-2-color);
}
.call-action-content-sec ul li svg{
    width: 15px;
    fill: var(--btn-2-color);
}
img.cta-pic {
    margin-top: -80px;
}


/* process sec start */
section.process-sec {
    padding: 50px 0;
}
.process-box {
    display: grid;
    grid-template-columns: 50% 50%;
    text-align: center;
    background-color: blanchedalmond;
    border: 0.5px solid var(--btn-1-color);
    padding: 5px;
    margin: 20px 0;
    border-radius: 15px;
}

.process-box-each {
    background-color: var(--btn-2-color);
    /* box-shadow: 0px -1px 0px 0px; */
    border: 0.5px solid var(--btn-1-color);
    border-radius: 15px;
    margin: 5px;
    padding: 13px;
}

.process-box-each img {
    width: 100px;
}
.process-box-each span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px;
}

span.process-pre-title {
    background-color: blanchedalmond;
    max-width: 390px;
    padding: 10px 15px;
    display: block;
    margin-bottom: 15px;
    border-radius: 20px;
}

span.process-pre-title span {
    background-color: var(--btn-1-color);
    color: var(--btn-2-color);
    padding: 7px 9px;
    border-radius: 20px;
}

.process-content h2 span {
    color: var(--btn-1-color);
}


/* review sec */
section.reviews-sec {
    background-color: var( --dark-blue);
    padding: 50px 0;
    /* color: var(--btn-2-color); */
}

/* .reviews-header {
    text-align: center;
} */

.reviews-header h2 {
    color: var(--btn-2-color) !important;
}

.reviews-header p {
    color: var(--btn-2-color);
    text-align: center;
}

.reviews-logo img {
    background-color: var(--btn-2-color) !important;
    padding: 10px 30px;
    max-width: 150px;
    min-height: 50px;
    border-radius: 40px;
}
.review-name {
    display: grid;
    grid-template-columns: 5% 95%;
    gap: 50px;
}

.review-card {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #C4D3F8;
    background: #FFF;
    box-shadow: 0px 2px 30px 0px rgba(34, 143, 224, 0.12);
    background-image: url(../images/reviews-box-bg.svg);
    background-repeat: no-repeat;
    background-position: right 28px center;
    margin: 0 8px;
    height: 370px;
    display: flex;
    flex-direction: column;
}
.review-card:hover{
    background-color: blanchedalmond;
}

.reviews-logo {
    margin-bottom: 40px;
}
.review-card-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebe1e1;
    margin-bottom: 10px;
}

span.rev-cap-icon {
    background-color: var(--btn-1-color);
    color: var(--btn-2-color);
    padding: 0px 35px 0 20px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
}
.review-card-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
}


/* service category sec */
section.service-category-sec {
    padding: 100px 0 50px 0;
}
.service-category-content ul li {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 7px 0;
    font-size: 16px;
    align-items: center;
}

.service-category-content ul li svg {
    width: 14px;
    height: 14px;
    background-color: var(--btn-1-color);
    fill: var(--btn-2-color);
    padding: 3px;
    border-radius: 30%;
}

.service-category-content ul {
    display: grid;
    grid-template-columns: 39% 38% 30%;
    padding: 0;
}


/* faq sec */

.hh-faq-sec{
    padding: 70px 0;
    background-image: url(../images/faqs-banner.webp);
    background-position: top center;
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%;
}


.faq-questions h2{
    margin: 0 !important;
    border-radius: 10px;
}
.accordion-button:not(.collapsed) {
    color: var(--btn-1-color) !important;
    background-color: #ffebcd !important;
    box-shadow: none !important;
}

/* content sec */
section.main-con-sec {
    border-top: 2px solid var(--btn-1-color);
    /* border-bottom: 2px solid var(--btn-1-color); */
    /* padding: 70px 0; */
   
}




.content-area {
    display: grid;
    grid-template-columns: 100%;
    /* border: 2px solid var(--btn-1-color); */
    overflow-y: scroll;
    height: 500px;
}
.content-area::-webkit-scrollbar {
  width: 12px;
}

.content-area::-webkit-scrollbar-track {
  background: #eee; 
}

.content-area::-webkit-scrollbar-thumb {
  background-color: var(--btn-1-color); 
  border-radius: 6px;
  border: 3px solid #eee; 
}






.content-area-each {
    box-shadow: 0px 1px 7px 0px #d0d0e3;
    margin: 10px;
    padding: 40px;
}
.content-area-each h2 {
    font-size: 30px !important;
}


/* footer sec */
section.hh-footer-counter-sec {
    background-color: var(--btn-1-color);
    color: var(
    --btn-2-color);
    padding: 40px 0 20px 0;
}

footer.hh-footer {
    background-color: var(--dark-blue);
    color: var(
    --btn-2-color);
    padding: 50px 0;
}

.row.align-items-center.hh-footer-counter-sec-botm {
    /* border-bottom: 1px solid #fff; */
    padding-bottom: 30px;
}

.hh-footer-counter-card-con span {
    font-size: 24px;
    font-weight: 700;
}

.hh-footer-box p {
    color: #fff;
}

.hh-footer-nav-list.footer-res-list ul {
    padding: 0;
}

.hh-footer-nav-list.footer-res-list ul li {
    list-style: none;
    padding: 5px 0;
}

.hh-footer-nav-list.footer-res-list ul li a {
    text-decoration: none;
    color: var(--btn-2-color);
}

.hh-footer-list span {
    font-size: 22px;
    font-weight: 600;
}

.hh-footer-list ul {
    padding: 0;
    list-style: none;
}
.hh-footer-list ul li {
    font-size: 15px;
    margin: 8px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}
.hh-footer-list ul li a {
    gap: 10px;
    display: flex;
    font-size: 16px;
    color: #fff;
    transition: .3s;
    align-items: center;
}
.hh-footer-list svg {
    width: 20px;
    fill: #fff;
}


.copy-right-main {
    display: grid;
    grid-template-columns: 80% 20%;
}

section.footer-copyright {
    background-color: hsl(247.14deg 46.67% 17.65% / 96%);
    color: var(--btn-2-color);
    padding: 20px 0 10px 0;
}

.mh-social-icons svg {
    width: 20px;
    fill: var(--btn-2-color);
}

.mh-social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.copy-right-content p {
    color: var(--btn-2-color);
}

.policy ul li {
    list-style: none;
}

.policy ul {
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: space-evenly;
}

.policy ul li a {
    text-decoration: none;
    color: var(--btn-2-color);
}


/* about us page */
/* hero sec about */
section.hero-sec-about {
    background-color: var(--dark-blue);
    padding: 160px 0 80px 0;
    text-align: center;
}
.hero-content h1 {
    margin: 0;
    color: var(--btn-2-color) !important;
}
.hero-content p {
    margin-top: 20px;
    color: var(--btn-2-color) !important;
}

/* about second content section */
.about-second-content-con {
    background-color: var(--btn-1-color);
    padding: 30px;
    margin-top: 30px;
    border-radius: 0px 0px 30px 30px;
    text-align: center;
}
.about-second-content-con span {
    color: var(--btn-2-color);
    font-weight: 700;
    font-size: 25px;
}

.about-second-content-con p {
    color: #fff;
    margin-bottom: 0;
}

section.about-second-content-sec {
    padding-bottom: 70px;
}

.about-second-content-ban img {
    border-radius: 30px 30px 0 0;
}


/* contact us page */
/* contact form sec */

.contact-form-main {
    padding: 70px 0;
}

.contact-head {
    text-align: center;
}
.contact-box {
    display: grid;
    grid-template-columns: 100%;
    margin: 30px 0 40px 0;
    gap: 15px;
}

.contact-box-each {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    background-color: #fff;
    margin: 0 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px 10px 20px 20px;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--btn-1-color);
}
.contact-box-each-details a svg {
    width: 30px;
    padding: 6px;
    fill: var(--text-color);
}

.contact-box-each-icon svg {
    width: 25px;
    fill: var(--btn-2-color);
}

.contact-area-sec {
    padding-top: 40px;
    display: grid;
    grid-template-columns: 30% 50%;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.contact-box-each-icon {
    background-color: var(--btn-1-color);
    padding: 10px;
    border-radius: 100%;
}

.contact-box-each-details p {margin: 0;}

.contact-box-each-details a {
    text-decoration: none;
    color: var(--text-color);
}

.contact-box-each-details span {
    font-size: 20px;
    font-weight: 700;
}
.contact-form {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--btn-1-color);
}

.form-header span {
    font-size: 30px;
    font-weight: 600;
}

.form-header {
    margin-bottom: 20px;
    /* text-align: center; */
}


.contact-ban img {
    min-height: 450px;
    border-radius: 10px;
}
.contact-form .form-inner input::placeholder{
    color: var(--dark-black);
}
.contact-form .form-inner select{
    color: var(--dark-black);
    border: 1px solid var(--btn-1-color);
}



/* service page */
/* cta section */
.service-cta-sec{
    background: var(--dark-blue);
    padding: 40px 0 0 0;
    position: relative;
    color: var(--btn-2-color);
    margin-bottom: 70px;
}
.service-cta-discount-off {
    display: flex;
    gap: 10px;
    /* justify-content: center; */
    align-items: center;
}

.service-cta img {
    width: 500px;
    margin-top: -26%;
}

.service-cta {
    text-align: center;
}



.service-cta-content p {
    margin-bottom: 0;
}
.cta-satisfaction {/* text-align: center; */margin-top: -20px;}

span.cta-num {
    font-size: 120px;
    font-weight: bold;
}

span.cta-discount {
    font-size: 30px;
    font-weight: bold;
}

span.cta-main-head {
    font-size: 22px;
    font-weight: 700;
}
.cta-satisfaction span {
    font-size: 27px;
    font-weight: 500;
}

.cta-satisfaction span span {
    background-color: var(--btn-1-color);
    padding: 0px 15px;
    border-radius: 100%;
    font-size: 30px;
}
.service-cta-content p {
    color: var(--btn-2-color);
}

/* feature sec */
.feature-main {display: grid;grid-template-columns: 60% 40%;align-items: center;}

.feature-card-box{
    box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 24px;
    border-radius: 10px;
    padding: 20px;
}
.feature-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-list ul li {list-style: none;display: flex;gap: 15px;margin: 20px 0;}

.feature-list ul {
    padding: 0;
}

.feature-content ul {
    display: block;
   
   
}
.feature-content p {
    margin-top: 20px;
}

.feature-content ul li {
    /* list-style: none; */
    /* margin: 10px 0 10px 0; */
    list-style: lower-roman;
	margin-left:-18px;
}

.feature-list ul li span.price {
   text-decoration: line-through;
}

.feature-list ul li span.free {
    color: var(--btn-1-color);
}

section.feature-section {
    padding: 50px 0 80px 0;
}


.indicator__icon {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    flex: none;
    width: 10px;
    height: 20px;
    margin-top: 5px;
    background-color: var(--dark-blue);
}

.feature-head{
    text-align: center;
    border-bottom: 1px solid var(--btn-1-color);
}
.feature-head span {
    font-size: 24px;
    font-weight: 500;
}


/* quality icon sec */
.qualty-icon-main {
    display: grid;
    grid-template-columns: 24% 24% 24% 23%;
    gap: 20px;
}

.quality-icon-each {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 6px 24px;
    display: grid;
    border-radius: 10px;
    justify-items: center;
    padding: 25px 0;
}

.quality-icon-each img {
    width: 80px;
}


.quality-icon-each span {
    margin-top: 15px;
}

section.quality-icon-sec {
    padding: 60px 0;
}

/* process section */
section.process-section {
    padding: 50px 0;
}
.who-we-are-1 .box {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 34px 0 rgba(0,0,0,.078);
    margin-top: 100px;
    padding: 40px 20px;
}
.box-1 {
    position: relative;
    text-align: center;
    display: grid;
    gap: 15px;
}
.box-1 span{
    margin: 0;
}
.box-1 p{
    margin: 0;
}
#box-2::before{
    background-image: none;
}
.box-1:before {
    background-repeat: no-repeat;
    bottom: 0;
    content: "";
    height: 64px;
    margin: auto;
    position: absolute;
    top: -6px;
    width: 80px;
    background-image: url(../images/arrow.webp);
    left: -60px;
}


/* reviews page */
section#review {
    padding: 70px 0 0 0;
}

.single-review.card {
    box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125);
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    height: 280px;
}
/* .card-top{
    margin-top: auto;
} */

.section-heading{
    padding-bottom: 70px;
}

img.rating-img {
    width: 100px;
    height: auto;
}


.card-top-pro{
    position: relative;
}
.card-top-pro img {
    left: 0;
    position: absolute;
    top: -95px;
    width: 90px;
}   


/* call action thanks */

section#call-action-thanks {
    background: hsl(36deg 100% 90.2%);
    /* padding: 40px 0; */
    position: relative;
    color: var(--dark-black);
}

#call-action-thanks ul li{
    color: var(--dark-color);
}
#call-action-thanks h2 {
    color: var(--dark-black) !important;
}
#call-action-thanks ul li svg {
    width: 15px;
    fill: var(--dark-black);
}


.whatsapp-number {
	font-weight: 600;
	vertical-align: middle;
	padding: 8px 12px;
	position: fixed;
	bottom: 10px;
	left: 10px;
	background-color:#ef3b33;
	color: white;
	border-radius: 50px;
	border:1px solid white;
	text-decoration:none;
	text-align: center;
	font-size: 16px;
	z-index: 100;
}

.whatsapp-number:hover {
	font-weight: 600;
	vertical-align: middle;
	padding: 8px 12px;
	position: fixed;
	bottom: 10px;
	left: 10px;
	background-color: #1d1842;
	border:1px solid white;
	text-decoration:none;
	color:white;
	border-radius: 50px;
	text-align: center;
	font-size: 16px;
	z-index: 100;
}



/* our writer page */
  /* writer sec */

section.hh-writer-sec {
    padding-top: 60px;
}
.writer-tabs {
    border-radius: 10px 10px 10px 10px;
    padding: 20px;
    background-color: #ffebcd;
    display: flex;
    align-items: start;
    cursor: pointer;
}

.writer-tabs-p {
    color: var( --dark-color);
    font-size: 14px;
    line-height: 25px;
}

.writer-tabs .nav-pills .nav-link.active {
    background-color: var(--btn-1-color);
    color: var(--btn-2-color);
}
.writer-tabs .nav-pills .nav-link.active p {
    color: var(--btn-2-color);
}

.writer-card {
    color: #fff;
    display: flex;
    align-items: center;
}

.writer-card-head {
    margin-right: 15px;
}

.wirter-card-body {
    color: var( --dark-color);
}

.writer-tabs .nav-pills .nav-link.active .wirter-card-body {
    color: var(--btn-2-color);
}

.wirter-card-body span {
    font-size: 18px;
    font-weight: 600;
}

.wirter-card-body p {
    margin: 0px;
    font-size: 14px;
    color: var( --dark-color);
}

.writer-info {
    display: flex;
    align-items: center;
}

.writer-bio__info {
    margin-left: 24px;
}

.writer-bio__info__rating {
    margin-bottom: 20px;
}

.writer-bio__info__rating .value {
    color: var( --dark-color);
}

.writer-bio__info__rating .reviews {
    color: var( --dark-color) !important;
    font-size: 13px;
}

.writer-bio__info__text {
    color: var( --dark-color);
    font-size: 14px;
}

.writer-bio__info__rating .stars i {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-right: 1px;
    background: url(../images/rating-star.svg) 50%/contain no-repeat;
}

.writer-bio__info__name {
    color: var( --dark-color);
}

.writer-bio__info__statistic {
    display: flex;
    color: var(--btn-2-color);
    border-top: 1px solid var(--secondary-color);
    padding-top: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    gap: 30px;
}

.writer-bio__info__statistic p {
    font-size: 14px;
    color: var( --dark-color);
}

.writer-bio__info__statistic b {
    color: var( --dark-color);
}
.hh-writer-wrapper {
    text-align: center;
}
.writer-info img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: contain;
}



/* writer cta 2 */

section.writers-cta-2 {
    padding: 40px 0;
background: white;}




.writers-cta-2-content span {
    font-size: 30px;
    font-weight: 700;
    
}

.writers-cta-2-content p {
    font-size: 16px;
   
}

.writers-cta-2-img{
	text-align:center;
}

.writers-cta-2-img img {
    width: 100%;
}
.writers {
    padding: 40px 0;
    background:#f2faff;
}

.writerpage-box {
    display: flex;
    gap: 25px;
}


.scroll-writer {
    width: 35%;
    max-height: 550px; 
}