* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  position: relative;
  font-family: "Lato";
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf");
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.ttf");
}

h1 {
  font-family: "Lato";
}
h2,
h3,
h4,
h5,
h6,
p,
a {
  font-family: "Lato";
}

html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}

/*============================================================= header ============================================== */

.active .header-scrolled {
  background-color: rgba(40, 58, 90, 0.9);
}
li.nav-item a {
  font-size: 14px;
}
.header {
  transition: all 0.5s;
}

nav a:hover {
  color: #47b2e4 !important;
}

nav a {
  color: #000000 !important;
}

/* .navbar .active {
  color: #47b2e4 !important;
} */
.navbar-toggler {
  border: 0 !important;
  color: transparent !important;
}
.navbar-toggler-icon {
  color: #fff;
}

/* =============================================== banner section =====================================================*/
#banner {
  width: 100%;
  background: #ffffff;
  padding: 14px;
}

#banner .container {
  padding-top: 100px;
}
#banner h1 {
    margin: 0 0 10px 0;
    font-size: 38px;
    font-weight: 700;
    font-family: "Lato";
     color: #0F1114;
}
#banner h1 span {
    color: #388ECD;
}
#banner h2 {
  color: #0F1114;
  margin-bottom: 25px;
  margin-top: 20px;
  font-size: 18px;
}
#banner .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #388ECD;
}

.common-btn{
    font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #388ECD;
}
#banner .btn-get-started:hover {
  background: #209dd8;
}
#banner .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}
#banner .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}
#banner .btn-watch-video:hover i {
  color: #47b2e4;
}
#banner .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
  #banner {
    text-align: center;
  }
  #banner .animated {
    -webkit-animation: none;
    animation: none;
  }
  #banner .banner-img {
    text-align: center;
  }
  #banner .banner-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #banner h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #banner h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #banner .banner-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #banner .banner-img img {
    width: 80%;
  }
  #banner .btn-get-started {
    font-size: 15px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*================================== about===============================================*/
#about {
  padding: 50px 0;
  transition: all 0.2s ease;
   background-color: #F9F9F9;

}
/* 
.heading-section h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
  text-align: center;
  margin: 2rem 0;
  font-family: "Lato";
} */

.heading-section h2 {
    color: #000000;
    font-size: 30px;
        text-align: center;
}
.heading-section h2 span {
    color: #388ECD;
}
/* .heading-section h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
} */

/* .heading-section h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
} */

.heading-section p {
  margin: 2rem 4rem;
  color: #212529;
  font-size: 16px;
}
.about-left-inner h2 {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  animation: text 5s ease 1;
  transition: 5s;
}
.about-left-inner p {
  font-weight: 600;
  color: grey;
  transition: 10s ease;
}

#about .btn-get-started {
  font-weight: 500;
  font-size: 16px;

  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}
#about .btn-get-started:hover {
  background: #209dd8;
}

/* #about img {
  transition: 5s;
  margin: auto;
  display: table;
  width: 370px;
} */

#about p {
    font-size: 16px;
}
/* ==================================================services====================================== */
#services {
  background: #22263f;
  transition: all 0.5s ease;
  padding: 50px 0;
  margin-top: 40px;
}
.services-box {
  position: relative;
  background: #fff;
  padding: 100px 40px 60px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
  border-radius: 30px;
}
.services-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s;
  background: #0675cf;
  border-radius: 30px;
}
.services-box:hover:before {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.5s;
}
.services-box h2 {
  position: absolute;
  left: 40px;
  top: 60px;
  font-size: 2rem;
  font-weight: 800;
  z-index: 1;
  opacity: 0.5;
  transition: 0.5s;
}
.services-box:hover h2 {
  opacity: 1;
  color: #fff;
  transform: translateY(-40px);
}
.services-box h3 {
  position: relative;
  z-index: 2;
  margin: 1rem 0;
  transition: 0.5s ease;
  color: #22263f;
  font-weight: 600;
}
.services-box:hover h3 {
  color: #fff;
}
.services-box p {
  position: relative;
  z-index: 2;
  transition: 0.5s ease;
  color: #212529;
}
.services-box:hover p {
  color: #fff;
}

/*-=====================================resume benifits========================================================*/
.benefits-section {
  padding: 50px 0;
  background: #f6f6f6;
}

.card {
  border: 0 !important;
  background: 0 !important;
}

.card-icon,
.benefits-icon {
  text-align: center;
  width: 100px;
  max-width: 120px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 80px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.18);
  transition: all 0.22s ease-in-out;
}
p.card-text {
  color: #000;
}
/*=============================================  resume listing ==============================================*/
.resume-listing {
  padding: 50px 0;
  color: #fff;
  /* clip-path: polygon(0 0, 100% 0%, 100% 94%, 0 100%); */
}


.slick-slide img {
  display: block;
  position: relative;
  width: 100%;
  transition: 1s ease;
}

.slick-slide img:hover {
  transform: scale(1.2);

  box-shadow: 0 0 13px rgb(0 0 0 / 12%);
}
.resume-inner {
  position: relative;
  background: #fff;
  transform: scale(1.1);
  margin: 1rem 2rem;
}
.resume-inner img {
  max-height: 300px;
  max-width: 300px;
  object-fit: cover;
  display: block;
  object-position: top;
}
.show-button {
  background-color: #3b4b68;
  color: white;
  font-size: 16px;
  width: 80px;
  height: 40px;
  border: 0;
}

.middle {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

#resume-listing .resume-grid-item :hover .middle {
  opacity: 1;
}

#resume-listing .text {
  background-color: #3b4b68;
  color: white;
  font-size: 16px;
  border-radius: 30px;
  padding: 11px 11px;
}

.slick-prev:before {
  content: "<" !important;
  color: #fff !important;
  font-size: 20px !important;
  padding: 3px 7px;
  background: #3d4d6a;
  font-weight: 900;
}

.slick-next:before {
  content: ">" !important;
  color: #fff !important;
  font-size: 20px !important;
  padding: 3px 7px;
  background: #3d4d6a;
  font-weight: 900;
}

.resume-button a {
  text-decoration: none;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 9px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}
.resume-button a:hover {
  background: #37517e;
  color: #fff;
}

.resume-premium {
  list-style: none outside;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  z-index: 9;
  white-space: normal;
  font-family: "Lato", sans-serif;
  padding: 5px 10px;
  box-sizing: border-box;
  position: absolute;
  margin-top: 15px;
  background: #5462fb;
  color: #ffffff;
  font-size: 16px;
  right: 0px;
}

.resume-premium::before {
  right: 100%;
  bottom: 0;
  border-width: 0 0 12px 12px;
  position: absolute;
  border-color: transparent transparent #5462fb transparent;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 0;
}

.resume-premium::after {
  border-color: transparent #5462fb transparent transparent;
  right: 100%;
  top: 0;
  border-width: 0 12px 12px 0;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 0;
}
.resume-img-sec {
  position: relative;
  visibility: visible;
  animation-duration: 2s;
  animation-name: fadeIn;
  will-change: transform;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);
}
.cards-img-top {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: scale-down;
}

.cards {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 40, 100, 0.12);
  border-radius: 3px;
}

.cards > hr {
  margin-right: 0;
  margin-left: 0;
}

.cards > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.cards > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.cards-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.5rem;
}

.cards-title {
  margin-bottom: 1.5rem;
}

.list_teamplate .cards {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  margin: 0 0 10px;
  cursor: pointer;
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  overflow: hidden;
}

.list_teamplate .card {
  width: 20rem;
}

.list_btn {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.view-btn {
  background-color: #3b4b68;
  color: white;
  font-size: 16px;
  border: 2px solid #3b4b68;
  padding: 10px 32px;
  text-decoration: none;
  border-radius: 5px;
}
.use-btn {
  background-color: #3b4b68;
  color: white;
  font-size: 16px;
  border: 2px solid #3b4b68;
  padding: 10px 11px;
  text-decoration: none;
  border-radius: 5px;
}
.view-btn:hover {
  color: #fff;
}
.use-btn:hover {
  color: #fff;
}
.resume-listing .list_teamplate .cards:hover .list_btn {
  opacity: 1;
}
.resume-list .list_teamplate .cards:hover .list_btn {
  opacity: 1;
}

/* =======================================blog section============================================== */
#blog {
  transition: all 0.5s ease;
  padding: 50px 0;
}

.blog-box {
  box-shadow: 0px 2px 5px #ccc;
  overflow: hidden;
}
.blog-box img {
  transition: all 0.2s;
}
.blog-box img:hover {
  transform: scale(1.1);
}
.blog-text p {
  color: #969696;
}

/* ================================= feature section ===========================================*/
#features {
  padding: 50px 0;
}
.feature-img {
  margin: 1rem 0;
}
.feature-desc {
  margin: 2rem 2rem;
}
.feature-desc h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}
.feature-container {
  height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
}

.wrapper {
  width: 265px;
  height: 450px;
  position: sticky;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

/* Our image information */
.before,
.after {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-color: white;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.content-image {
  height: 100%;
}

.after {
  width: 125px;
}

.scroller {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: transparent;
  opacity: 0.9;
  pointer-events: auto;
  cursor: pointer;
}

.scroller:hover {
  opacity: 1;
}

.scrolling {
  pointer-events: none;
  opacity: 1;
}

.scroller__thumb {
  width: 100%;
  height: 100%;
  padding: 5px;
  background: #3b4b68;
}

.scroller:before,
.scroller:after {
  content: " ";
  display: block;
  width: 7px;
  height: 9999px;
  position: absolute;
  left: 50%;
  margin-left: -3.5px;
  z-index: 30;

  transition: 0.1s;
}
.scroller:before {
  top: 100%;
}
.scroller:after {
  bottom: 100%;
}

/* If you want to cahnge the colors, make sure you change the fill in the svgs to match */
.scroller {
  border: 5px solid #fff;
}
.scroller:before,
.scroller:after {
  background: #3b4b68;
}

.feature-desc p {
  color: #212529;
  font-size: 16px;
  font-weight: 600;
}

/* =========================================================faq section ============================================== */
#faq {
  transition: all 0.2s ease;
}
.accordion-item {
  margin: 2rem 0;
  box-shadow: 0 6px 10px 0 rgba(17, 17, 17, 0.06);
}
.accordion-button:focus {
  z-index: 3;
  border: none !important;
  outline: 0;
  box-shadow: none !important;
  color: #3b4b68 !important;
  font-weight: 900 !important;
}

/* =======================================testimonial section==================================== */
#testimonial {
  padding: 50px 0;
  transition: 0.2s ease;
}
.testimonial-inner {
  padding: 30px 0;
  color: #fff;
  border-radius: 20px;
}
#testimonials img {
  border-radius: 50%;
  height: 115px;
  width: 115px;
}
#testimonials ul {
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: center;
}
#tstimonials small {
  font-size: 1.3rem;
}
#testimonials .carousel-inner p {
  margin: 0 100px;
}

/*================================================ advantage of resume================================== */
.resume-advantage {
  padding: 50px 0;
  background: #f6f6f6;
  border-radius: 8px;
  transition: all 5s ease;
}

.benefits-item h3 {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
  padding: 0;
}
.benefits-item p {
  line-height: 26px;
  letter-spacing: 0.3px;
  color: grey;
}

/*===================================================== pricing section ========================================*/

.fa-check-double:before {
  content: "\f560";
  margin: 0px 0.4rem;
  color: #3b4b68;
}

.price-table {
  padding: 0 0px 40px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  border-radius: 6px;
  background-color:#fff;
  box-shadow: 0 5px 40px 0 rgb(0 0 0 / 11%);
}
.pricing-text {
  margin-bottom: 20px;
  padding: 8px 34px 54px;
  text-align: right;
  /* background: url("../images/price.png") no-repeat top right; */
  background-repeat: no-repeat;
  background-position: top right;
}
.pricing-text h3 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}
.pricing-text h4 {
  color: #3b4b68;
}
.pricing-bottom {
  padding: 0 40px;
}

.pricing-bottom ul {
  margin: 2rem 0 3rem;
}
.pricing-bottom ul li {
  margin: 1rem -1rem;
}
.pricing-bottom a {
  text-decoration: none;
}
.pricing-button {
  position: relative;

  padding: 14px 40px;
  font-size: 16px;

  color: #1d88ed;
  background: #fff;
  border: 2px solid #1d88ed;
  border-radius: 5px;
  font-weight: 600;

  text-align: center;
}
.pricing-button:hover {
  background: #3b4b68;
  color: #fff;
  text-align: center;
}
/* ===========================================contact us =======================================================*/

#contact {
  padding: 50px 0px 90px 0px;
  transition: all 0.2s ease;
}
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}
.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}
.contact .info .email p {
  padding-top: 5px;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}
.contact .contact-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .contact-form .form-group {
  padding-bottom: 8px;
}

.contact .contact-form .form-group {
  margin-bottom: 20px;
}
.contact .contact-form label {
  padding-bottom: 8px;
}
.contact .contact-form input,
.contact .contact-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: #47b2e4;
}
.contact .contact-form input {
  height: 44px;
}
.contact .contact-form textarea {
  padding: 10px 12px;
}
.contact .contact-form button[type="submit"] {
  background: #47b2e4;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  margin: auto;
  display: table;
}

.contact .contact-form button[type="submit"]:hover {
  background: #209dd8;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*======================================================= footer ============================================  */
ul {
  list-style: none;
}

.footer a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer p a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer p :hover {
  color: #ffffff;
  padding-left: 8px;
  transition: all 0.3s ease;
}

/* --------------card-box---------------  */
.detail-box .card-box {
  background-color: #e9e9e9;
  border-radius: 5px;
  margin: auto;
  padding: 26px 13px;
  text-align: center;
  box-shadow: 0px 0px 3px #b1b1b1;
  margin: 15px 0 15px 0;
}

/* a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
} */

.detail-box .card-box h2 {
  font-size: 20px;
  padding: 10px 0px 0px;
  margin-bottom: 0px;
  color: #333;
}

.card-form-btn {
  margin: auto;
  display: table;
  margin-top: 30px;
}
.card-form-btn button {
  background-color: #388ecd;
  padding: 10px 40px;
  border-radius: 5px;
}
.pad-tb {
  padding-top: 0px;
  padding-bottom: 80px;
}
.detail-box .card-box h2:hover {
  color: #fff;
}
/* login */

.bg-user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo img {
  height: 4rem;
  margin-right: 0.5rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  transition: 0.3s opacity;
}

button#save_resume {
  background-color: #5eba00;
  color: #fff;
}

.webName span{
  font-size: 30px;
  font-weight: 700;
    color: #388ECD !important;
}
.main.bg-light {
    background-color: #F2F5F7;
}
.advice-sec ul {
  padding-left: 0px;
  margin-top: 30px;
}
.advice-sec h3 {
  font-size: 24px;
}

.advice-sec p{color: #333;
  font-size: 16px;}



 /* Sample template */
 .head-title h2{color: #000000;} 
 .head-title p {
    color: #6D6D6D;
    text-align: center;
    font-size: 16px;
}
.resources-list h5 {
    color: #364E67;
    font-size: 20px;
}

.resources-list ul li a {
    color: #6D6D6D;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}
.resources-list ul li {
    padding: 7px 0px;
    border-bottom: 1px solid #ECECEC;
}




    .sidebar {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #ddd;
      height: 100%;
    }

    .template-card {
      border: 1px solid #dee2e6;
      border-radius: 6px;
      padding: 10px;
      background: #fff;
      text-align: center;
    }

    .template-card img {
      width: 100%;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    .template-card h6 {
      font-size: 14px;
    }

    .filter-heading {
      font-weight: 600;
      font-size: 16px;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    #filterSec {
    background-color: #fff;
    padding: 50px 0px;
}
.cta-section {
  background-color: #3498db;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-section .justify-content {
    justify-content: center;
}

.footer-sec h6 {
    color: #272626;
    font-size: 21px;
}
.footer-sec ul li {
    color: #272626;
    font-size: 15px;
    font-weight: 500;
    padding: 7px 0px;
}
.contact-info p {
    font-size: 15px;
    padding-bottom: 15px;
    color: #272626;
}
.footer-sec {
    background-color: #FFFFFF !important;
}
.contact-info .btn {
    background-color: #388ECD;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 17px;
}
.subscribe-sec a {
    color: #333;
    font-size: 32px;
}
.subscribe-sec .gap-3 {
    padding-top: 30px;
}
.breadcrumb-sec{
  margin-bottom: 20px;
}
.filterSec ul li {
    color: #00000080;
    font-size: 15px;
    padding: 10px 0px;
    border-bottom: 1px solid #ccc;
}



/* template detail  */
.resume-temp{background-color: #fff !important;}
.resume-temp h4 {
    font-size: 30px;
}
.resume-temp p {
    color: #6D6D6D;
    font-size: 17px;
}
.temp-list {
    background-color: #F2F5F7;
}
.temp-list h6 {
    color: #6D6D6D;
    font-size: 20px;
}
.temp-list ul li {
    color: #6D6D6D;
    padding: 10px 0px;
    border-bottom: 1px solid #ccc;
}
.resume-temp .img-bg{
  background-color: #388ECD33 ;
}
.resume-designsec h5{    font-size: 30px;
    color: #364E67;
  }
  .resume-designsec p {
    color: #6D6D6D;
    font-size: 16px;
}
.resume-designsec h6 {
    font-size: 19px;
    padding-top: 25px;
}
.resume-designsec ul {
    padding-left: 0px;
}
.resume-designsec ul li {
    padding: 8px 0px;
}
.testimonials-bg { background-color: #fff;}