body {
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
}
header {
    padding: 12px 0px;
    background: white;
    position: fixed;
    width: 100%;
    z-index: 999;
}
header .header-buttons {
  text-align: end;
}
.header-buttons a {
  background: #3B56A6;
  color: white;
  padding: 13px 25px;
  border-radius: 3px;
  border: 1px solid #3B56A6;
  font-weight: 500;
  transition: 0.5s all;
  margin: 0 10px;
}
.header-buttons a.second-btn{
  background-color: #354682;
    border: 1px solid #3B56A6;
}
.header-buttons a:hover {
  background: transparent;
  color: black;
}
/* hero-banner-start */
section.hero-banner {
    padding: 160px 0px;
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
section.hero-banner::before {
    content: url(../images/banner-ribbon.png);
    /* background-image: url(); */
    position: absolute;
    height: auto;
    width: 100%;
    z-index: 0;
    top: 142px;
    left: -12px;
}
.banner-content h1 {
  color: white;
  font-weight: 800;
  font-size: 50px;
  text-transform: uppercase;
  line-height: 53px;
}

.banner-content h1 span {
  font-size: 100px;
}

.banner-content h4 {
  color: white;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
.banner-content p {
  color: white;
  font-size: 16px;
  margin-bottom: 10px;
}
.banner-content ul {
  padding-left: 20px;
}

.banner-content ul li {
  color: white;
  font-size: 15px;
  margin-bottom: 9px;
}
.banner-content .buttons {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.img-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.img-flex img {
    width: 130px;
    margin-bottom: 40px;
}
.banner-content .buttons a {
  background: #FFFFFF;
  color: #151515;
  padding: 13px 35px;
  border-radius: 3px;
  border: 1px solid #FFFFFF;
  font-weight: 500;
  transition: 0.5s all;
}
.banner-content .buttons a.second-btn {
  background: #3B56A6;
  color: #fff;
  padding: 13px 35px;
  border-radius: 3px;
  border: 1px solid #3B56A6;
  font-weight: 500;
  transition: 0.5s all;
}
/* .banner-content .buttons a:hover {
  background: transparent;
  color: white;
  border-color: white;
} */
.banner-forms {
    background: white;
    padding: 20px;
    width: 77%;
    border-radius: 26px;
    text-align: center;
    margin: 0 0 0 auto;
    position: relative;
    margin-right: -62px;
    box-shadow: 6px 6px 10px 0px #1c1c1c7a;
}
/* .banner-forms::after{
  content: url(../images/phone.png);
  position: absolute;
  left: -8px;
  top: -70px;
  width: 100%;
  z-index: 0;
} */
.banner-forms form#publishingForm {
    position: relative;
    z-index: 1;
}
.banner-forms form#publishingForm img {
  margin-bottom: 30px;
}
.banner-forms form#publishingForm select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #00000040;
  border-radius: 5px;
}
h3.service-choose {
  text-align: left;
  font-size: 15px;
}
form#publishingForm label {
  font-size: 13px;
  font-weight: 500;
  color: black;
}

.banner-forms form#publishingForm .forn-icons input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #00000040;
  border-radius: 5px;
}
.banner-forms form#publishingForm .forn-icons input.formsubmit {
  margin: 0px;
  background: #3B56A6;
  color: white;
  padding: 13px 35px;
  border-radius: 3px;
  border: 1px solid #3B56A6;
  font-weight: 500;
  transition: 0.5s all;
}
.banner-forms form#publishingForm .forn-icons input.formsubmit:hover {
  background: transparent;
  color: #3B56A6;
}
.blackslogos {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.blackslogos img {
  transition: 0.3s;
}

.blackslogos img:hover {
  transform: scale(1.1);
}
section.below-banner {
  padding: 30px 0;
  background-color: #3B56A6;
}
section.below-banner h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
section.publishing {
  padding: 60px 0 ;
  position: relative;
}
section.publishing::before {
    content: "";
    position: absolute;
    top: 147px;
    background: linear-gradient(45deg, #3B56A6 30%, white 60%);
    width: 100%;
    height: 100px;
    z-index: -1;
}
.publishing_content h2 {
    font-size: 70px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: "Bebas Neue", sans-serif;
    line-height: 70px;
}

.publishing_content h3 {
    font-size: 29px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 13px;
}
.publishing_content p {
    font-size: 15px;
    color: black;
    margin-bottom: 30px;
}
.publishing_content ul {
    margin-bottom: 40px;
}
.publishing_content ul li{
  font-size: 15px;
}
.buttons {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.publishing_content .buttons a.first-btn {
  background: #7E7E7E;
  color: white;
  padding: 13px 35px;
  border-radius: 3px;
  border: 1px solid #7E7E7E;
  font-weight: 500;
  transition: 0.5s all;
  text-transform: uppercase;
}
.publishing_content .buttons a.first-btn:hover {
  background: transparent;
  color: black;
}
.publishing_content .buttons a.second-btn {
  background: #3B56A6;
  color: white;
  padding: 13px 35px;
  border-radius: 3px;
  border: 1px solid #3B56A6;
  font-weight: 500;
  transition: 0.5s all;
  text-transform: uppercase;
}
.publishing_content .buttons a.second-btn:hover {
  background: transparent;
  color: white;
  background: #7E7E7E;
  border-color: #7E7E7E;
}

section.process {
  padding: 70px 0;
}

.pro-content {
  text-align: -webkit-center;
}
.pro-content h2 {
    text-transform: uppercase;
    font-size: 70px;
    font-family: 'Bebas Neue';
    margin: 0px;
}
.pro-content p {
  width: 90%;
  margin: 0 auto 40px;
  font-size: 15px;
}
.process-boxes {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 25px;
  justify-content: center;
}
.process-boxes .box {
    width: 31%;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    background: white;
    border: 2px solid #3B56A6;
}
.process-boxes .box img {
  height: 60px;
  margin-bottom: 30px;
}
.process-boxes .box h6 {
    font-size: 100px;
    font-weight: 800;
    position: absolute;
    right: 30px;
    top: 0;
    color: #3b56a670;
}

.process-boxes .box h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 17px;
}

.process-boxes .box p {
    font-size: 14px;
    height: 100px;
    overflow-x: auto;
    padding-right: 8px;
    /* text-align: justify; */
    line-height: 22px;
    margin: 0px;
}
.process-boxes .box p::-webkit-scrollbar {
  width: 5px;
  border-radius: 30px;
}
.process-boxes .box p::-webkit-scrollbar-track {
  background: #cdcdcd;
}
.process-boxes .box p::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}
.process-boxes .box p::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* 
.process-boxes .box::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  z-index: -1;
  border-radius: 24px;
  background: linear-gradient(270deg, #1c6bb5, #fee210, #cd2027, #1c6bb5);
  background-size: 600% 600%;
  animation: gradientBorder 6s ease infinite;
}

@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
} */

section.contact_us_sec {
    padding: 80px 0;
}
.form-col {
  /* background: #fff; */
  /* padding: 30px 50px; */
}
.form-col h4 {
  color: #4368AD;
  font-weight: 700;
  font-size: 38px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.form-col form input {
  width: 100%;
  margin-bottom: 20px;
  padding: 13px;
  border: 2px solid #4368AD;
}
.form-col form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 13px;
  border: 2px solid #4368AD;
}
.form-col form button {
  margin: 0px;
  background: #4368AD;
  color: white;
  padding: 13px 35px;
  border-radius: 3px;
  border: 1px solid #4368AD;
  font-weight: 500;
  transition: 0.5s all;
  width: 100%;
}
.form-col form button:hover {
  background: transparent;
  color: black;
}
section.faqs {
  padding: 70px 0;
}
section.faqs {
  padding: 70px 0;
}

section.faqs div#accordionExample {
  margin-top: 20px;
}
section.faqs .accordion-item {
  border: none;
}
section.faqs .accordion-item button.accordion-button.collapsed {
  background: #6376AD;
  margin-top: 20px;
  margin-bottom: 20px;
  color: white;
  font-weight: 500;
  font-size: 16px;
  padding: 25px 28px;
}
section.faqs .accordion-item h2 {
  border: none !important;
}
section.faqs .accordion-item .accordion-collapse.collapse {
  border: none;
}
.accordion-button:not(.collapsed) {
  color: white;
  background-color: #3B56A6;
  border: none;
  padding: 25px 28px;
}
.accordion-body {
  background: #3B56A6;
  color: white;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none;
}
.accordion-button::after {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: auto;
  content: "";
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out;
  background-color: white;
  border-radius: 100px;
  padding: 14px;
  background-position: center;
  background-size: 18px;
}

section.publishing-cta {
  padding: 50px 0;
  background-image: url(../images/publishing-cta.png);
  text-align: center;
  color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.publishing-cta h2 {
  font-weight: 800;
  width: 70%;
  margin: 0 auto 20px;
  font-size: 42px;
}

section.publishing-cta p {
  font-size: 16px;
  width: 60%;
  margin: 0 auto 30px;
}

section.publishing-cta .buttons {
  justify-content: center;
  display: flex;
  align-items: center;
}

section.publishing-cta .buttons a.first-btn {
  background: white;
  color: black;
  padding: 14px 30px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid white;
}

section.publishing-cta .buttons a.second-btn {
  background: #3B56A6;
  color: white;
  padding: 14px 30px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid white;
}

section.publishing-cta .buttons a.third-btn {
  background: white;
  color: black;
  padding: 14px 30px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid white;
}

section.testimonial-sec {
  background-image: url(../images/testimonial-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 20px;
  text-align: center;
}
.reviews-content h2 {
  color: white;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 30px;
}

.reviews-content h3 {
  font-size: 25px;
  color: white;
  font-weight: 400;
}

.reviews-content p {
  color: white;
  margin: 0 auto;
  width: 50%;
}

.testimonial-slider {
  margin-top: 70px;
}

.testimonial-slider img {
  display: inline;
}
.testimonial-slider .testimonial-item {
  background: white;
  margin: 60px 14px;
  border-radius: 30px;
  padding: 20px;
  transform: scale(0.9);
  transition: 0.6s all ease-in-out;
}
.testimonial-slider .testimonial-item img.quote-icon {
  margin-top: -50px;
  border: 10px solid white;
  background: white;
  border-radius: 16px;
}
.testimonial-slider .testimonial-item img.quote-icon {
  margin-top: -50px;
  border: 10px solid white;
  background: white;
  border-radius: 16px;
}

.testimonial-slider .testimonial-item p {
  font-size: 15px;
  font-weight: 500;
  margin: 10px 0;
  height: 160px;
}

.testimonial-slider .testimonial-item h5 {
  font-size: 22px;
  margin: 15px 0 0;
  font-weight: 600;
  color: #415BA9;
}

.testimonial-slider .testimonial-item span {
  font-size: 14px;
}
.testimonial-slider .testimonial-item img.stars {
  width: 100px;
}
.testimonial-slider .testimonial-item.slick-current.slick-active.slick-center {
  transform: scale(1.1);
}
.testimonial-slider button.slick-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 99;
  font-size: 0px;
  background-color: transparent;
  border: none;
  width: 50px;
  height: 50px;
}
.testimonial-slider button.slick-arrow.slick-next {
  left: 95%;
  background: url(../images/icons/right-arrow.png) 0 0 / 100% no-repeat;
}
.testimonial-slider button.slick-arrow.slick-prev {
  left: 2%;
  background: url(../images/icons/left-arrow.png) 0 0 / 100% no-repeat;
}
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 350px;
  height: 500px;
}
.swiper-slide img {
  display: block;
  width: 100%;
}
section.portfolio {
    padding: 70px 0;
    text-align: center;
    background: radial-gradient(#fff, #e7e6e6 80%);
}
.portfolio-content h2 {
    font-size: 60px;
    font-weight: 400;
    color: #3b55a4;
    font-family: 'Bebas Neue';
}
.portfolio-content p {
  font-size: 16px;
}

footer {
  padding: 90px 0;
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
footer img {
  margin-bottom: 40px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer ul li a {
  color: black;
  font-size: 16px;
  font-weight: 500;
}
footer ul li a:hover {
  color: black;
}
footer img {
  margin-bottom: 40px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.copy-right {
  background: #3B56A6;
  padding: 40px 0 10px;
  text-align: center;
}
.copy-right .img-flex {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: center;
  margin-bottom: 30px;
}

.copy-right p.copyright {
  color: white;
  font-size: 15px;
}

.copy-right .terms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.copy-right .terms a {
  color: white;
}

.modal-dialog {
  max-width: 930px;
}

.logo {
  text-align: center;
}

.popup-work h2 {
  text-align: center;
  font-size: 40px;
  color: #000;
  text-transform: uppercase;
  font-weight: 800;
  margin: 20px 0 15px;
}

.popup-work h2 span {
  color: #3B56A6;
}

.popup-work p {
  text-align: center;
  margin-bottom: 13px;
  font-size: 19px;
  font-weight: 600;
  color: #000;
}

.modal-body {
  background-image: url(../images/popupbg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px;
  position: relative;
}

.modal-body::after {
  content: url(../images/popup-before.png);
  position: absolute;
  right: 0;
  bottom: 0;
}

.popup-work input {
  background: white !important;
  border: 1px solid #3B56A6 !important;
  color: #3B56A6 !important;
  padding: 14px;
  font-weight: 500;
  margin: 10px 0 !important;
  width: 100%;
}

img.img-pop {
  height: 369px;
  padding: 10px;
  border: 1px solid #3B56A6;
}
.popup-work .cta label {
  width: 100%;
}
.popup-work button.btn.submitbtn {
  width: 100%;
  background: #3B56A6;
  margin: 0px !important;
  color: white;
  font-family: "Lato";
  font-size: 17px;
  padding: 9px 0;
}
.modal-body button.close {
  background: #3B56A6;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 20px;
  padding: 0px !important;
  right: 30px;
  position: absolute;
}
.modal-body button.close span {
  font-size: 25px;
}
.popup-work textarea {
  background: white !important;
  border: 1px solid #000 !important;
  color: #000 !important;
  padding: 14px;
  font-family: "Lato" !important;
  font-weight: 500;
  margin: 10px 0 !important;
  width: 100%;
}

.mobile-version {
  display: none;
}
.accordion-body {
  padding: 25px 28px;
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: none;
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #3B55A4;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 130px);
    left: auto;
    color: #3B55A4;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 110px);
    right: auto;
        color: #3B55A4;
}

section.prominent{
  background-image: url(../images/promp-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}
section.prominent h2 {
    color: white;
    font-family: 'Bebas Neue';
    font-size: 52px;
    line-height: 50px;
    font-weight: 400;
}

section.prominent p {
    color: white;
    margin-bottom: 60px;
}



section.quote-sec {
  padding: 60px 0;
}

section.quote-sec h2 {
  font-size: 50px;
  font-family: "Bebas Neue";
  color: #3B56A6;
  text-align: center;
}

section.quote-sec form input {
  width: 100%;
  background: white !important;
  border: 2px solid #a6a6a6;
  padding: 15px 20px;
  color: #000;
}

section.quote-sec form .form-group {
  width: 95%;
  margin: 0 auto;
}
section.quote-sec form button.btn.bgbtn {
    font-family: "Poppins";
    background: #3B56A6;
    padding: 12px 40px;
    width: 300px;
    margin-top: 20px;
    color: white;
}

section.choose-us{
  background-image: url(../images/choose-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px 0;
}
.content-choose {
    text-align: center;
    color: white;
}
.content-choose h2 {
    font-family: 'Bebas Neue';
    font-size: 63px;
}
.content-choose p {
    font-size: 15px;
    line-height: 24px;
    width: 74%;
    margin: 0 auto;
}
.main-box {
    margin-top: 50px;
    background-color: white;
    padding: 30px;
    border-radius: 5px;
}
.choose-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 13px;
    justify-content: center;
}

.choose-box .choose-choose {
    width: 49%;
    border: 5px solid #3B55A4;
    border-radius: 5px;
    padding: 20px;
}

.choose-box .choose-choose h5 {
    font-size: 17px;
    font-weight: 600;
}

.choose-box .choose-choose p {
    margin: 0px;
}

.main-box  .main-col {
    border: 5px solid #3B55A4;
    border-radius: 5px;
}
section.choose-us .buttons {
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 50px;
}
section.choose-us .buttons a.first-btn {
  background: white;
  color: black;
  padding: 14px 30px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid white;
}

section.choose-us .buttons a.second-btn {
  background: #878787;
  color: white;
  padding: 14px 30px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid white;
}
section.choose-us .buttons a.third-btn {
  background: white;
  color: black;
  padding: 14px 30px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid white;
}
section.top-notch {
    background-image: url(../images/top-botch-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0;
    color: white;
}
section.top-notch h2 {
    font-family: 'Bebas Neue';
    font-size: 55px;
}
section.top-notch h2 {
    font-family: 'Bebas Neue';
    font-size: 55px;
}

section.top-notch h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

section.top-notch p {
    font-size: 14px;
    margin-bottom: 23px;
}
section.top-notch .buttons a {
    color: white;
    padding: 13px 30px;
    font-size: 14px;
    transition: 0.5s all;
     border: 2px solid white;
}
section.top-notch .buttons a.first-btn {
}
section.top-notch .buttons a.first-btn:hover {
    background: white;
    color: black;
}
section.top-notch .buttons a.second-btn{
  background-color: #fff;
  color: black;
}
section.top-notch .buttons a.second-btn:hover{
  background-color: transparent;
  color: white;
}
section.contact_us_sec {
    padding: 80px 0;
}

.contact-content {
    text-align: center;
}

.contact-content h2 {
    color: #4368AD;
    font-family: 'Bebas Neue';
    font-size: 70px;
    margin-bottom: 10px;
}

.contact-content h3 {
    font-size: 35px;
    width: 65%;
    margin: 0 auto 5px;
}

.contact-content p {
    width: 70%;
    margin: 0 auto;
}

.contact-content .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 60px;
}

.contact-content .buttons a {
    font-size: 15px;
    padding: 12px 30px;
}

.contact-content .buttons a.second-btn {
    color: black;
    background: #A5A5A5;
}

.contact-content .buttons a.first-btn {
    background: #3B56A6;
    color: white;
}

section.servuice {
  padding: 40px 0 90px;
}
.serve-head {
  text-align: center;
}
.serve-head h2 {
    font-size: 60px;
    font-family: "Bebas Neue";
    color: black;
    width: 45%;
    margin: 0 auto;
    line-height: 60px;
}
.serve-head p {
    font-size: 15px;
    margin: 10px auto 20px;
    line-height: 20px;
    width: 60%;
}
ul#pills-tab {
    background: #3B56A6;
    justify-content: center;
    padding: 15px 0;
    font-size: 16px;
}
ul#pills-tab  .nav-link.active, .nav-pills .show>.nav-link {
    color: #3B56A6;
    background: white;
    border-radius: 100px;
}
ul#pills-tab button {
    color: white;
    border-radius: 100px;
}
.tab-content {
    margin-top: 50px;
}
.tab-content h3 {
    font-size: 29px;
    font-weight: 600;
}
.tab-content p {
  margin-bottom: 30px;
}
.tab-content a.view-more {
    background: #3B56A6;
    color: white;
    padding: 13px 35px;
    border-radius: 3px;
    border: 1px solid #3B56A6;
    font-weight: 500;
    transition: 0.5s all;
    text-transform: uppercase;
}
.process-mbl{
  display: none;
}

.process-content {
    text-align: center;
}

.publishing-proces {
    padding: 20px 0 70px;
}

.process-content h2 {
    font-family: 'Bebas Neue';
    font-size: 54px;
    color: black;
}

.process-content p {
    width: 80%;
    margin: 0 auto;
}

.process-desktop {
    margin-top: 100px;
    text-align: center;
    position: relative;
}

.steps h4 {
    font-size: 17px;
    font-weight: 700;
}

.steps p {
    font-size: 14px;
}

.top-proc .step01 {
    width: 270px;
    position: absolute;
    left: 0;
    top: 0;
}

.top-proc  .step03 {
    width: 260px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0px;
}

.top-proc .step05 {
    width: 270px;
    position: absolute;
    right: -20px;
}

.process-desktop img {
    margin-top: -130px;
}
.bottom-proc {
  position: relative;
}
.bottom-proc .step02{
    width: 260px;
    position: absolute;
    left: 261px;
    bottom: 90px;
}
.bottom-proc .step04{
    width: 260px;
    position: absolute;
    right: 263px;
    bottom: 90px;
}