@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: 'Roboto', sans-serif;

}



ul {

    list-style-type: none;

    padding-left: 0;

}



a {

    text-decoration: none;

}



p {

    margin-bottom: 0;

}



.p-60 {

    padding: 60px 0;

}



#header {

    background: #fff;

    box-shadow: 0 4px 10px #77777726;

}



.sticky {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}

.navbar-brand img{

    height: 70px;

    width: 165px;

}

.navbar .nav-item .nav-link {

    font-size: 18px;

    padding-left: 20px;

    color: #1B1A2E;

    transition: all .3s;

}



.navbar .nav-item .nav-link:hover {

    color: #00b1ef;

}



/* ===hero=== */

.hero {

    padding: 80px 0;

    

    position: relative;

}



.hero .hero_sub_para {

    font-size: 18px;

    font-weight: 600;

    color: #2f2d2d;

}



.hero .hero_title {

    color: #333;

    font-size: 42px;

    line-height: 130%;

    font-weight: 600;

    text-align: left;

    padding-bottom: 30px;

    position: relative;

    min-height: 140px;

    width: 100%;

}



.typed-cursor {

    display: none;

    opacity: 0;

}



.hero .hero_usp {

    margin-top: 40px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    grid-template-rows: repeat(2, 1fr);

    gap: 30px;

}



.hero .hero_usp .single_usp {

    display: flex;

}



.hero .hero_usp .usp_icon {

    max-width: 65px;

    width: 100%;

    height: 65px;

    background-color: #E4EDFA;

    border-radius: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 27px;

}

.hero .hero_usp .usp_icon img{

    height: 30px;

    width: 30px;

}

.hero .hero_usp .usp_title {

    font-size: 24px;

    font-weight: 700;

    color: #000;

}



.banner_btn {

    max-width: 250px;

    width: 100%;

    position: relative;

    text-align: center;

    color: #fff;

    background-color: #2D96EE;

    border-radius: 100px;

    display: block;

    padding: 18px 0px;

    margin-top: 2rem;

    font-weight: 500;

    font-size: 22px;

    line-height: 20px;

}

.banner_btn:hover{

    background-color: #1777c7;

    color: #fff;

}

.form-container {


    background-color: #e9f0f6;

    box-shadow: 3px 3px 0 5px #2D96EE;

    border: 1px solid #2D96EE;

    border-radius: 20px;
    overflow: hidden;
}



.form-container>form>input {

    width: 100%;

    border: 1px solid rgba(47, 47, 47, .5);

    caret-color: #2f2f2f;

    border-radius: 10px;

    padding: 10px;

    margin-bottom: 5px;

}



input:focus {

    outline: none;

}



::placeholder {

    color: #2f2f2f;

}



.form-check-input:checked {

    background-color: #2D96EE;

    border-color: white;

}



.form-check-input:focus {

    border: unset !important;

    outline: unset !important;

    box-shadow: unset !important;

}



.submit_btn {

    background: #2D96EE;

    padding: 15px 40px;

    font-weight: 400;

    font-size: 18px;

    border-radius: 7px;

    outline: none;

    border: none;

    transition: all .3s;

}



.submit_btn:hover {

    background: #0a8bf4;

    color: #fff;

}



.cta-form-button {

    text-decoration: none !important;

    color: #f2f2f2 !important;

    text-shadow: 1px 1px 1px rgba(47, 47, 47, .3);

    font-weight: 600;

}



/* Telephone number Input Style */

.iti {

    width: 100%;

}



.iti input,

.iti input[type=tel],

.iti input[type=text] {

    width: 100%;

    padding: 10px;

}



.iti--separate-dial-code .iti__selected-flag {

    background-color: unset !important;

}



.cta_content {

    padding: 20px;

    background-color: #CE0D19;

    display: flex;

    align-items: center;

    justify-content: center;

    grid-column-gap: 2rem;

}



.cta_content span p {

    font-size: 22px;

    color: #fff;

    font-weight: 500;

}



.cta_content span .span_blink {

    font-size: 26px;

    animation: blink 1s linear infinite;

}



@keyframes blink {

    0% {

        opacity: 1;

    }



    100% {

        opacity: 0;

    }

}
    .assignment-title {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 15px;
      color: #111;
    }

    .assignment-intro {
      text-align: center;
      font-size: 1rem;
      margin-bottom: 40px;
      color: #555;
    }

    /* Feature Row Layout */
    .assignment-row {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 25px;
      border-radius: 12px;
      margin-bottom: 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .assignment-row:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .assignment-number {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: bold;
      color: #fff;
    }

    .assignment-content a {
      font-size: 1.3rem;
      margin-bottom: 8px;
      color: #222;
      transition: all .4s;
    }
    .assignment-content a:hover{
     text-decoration: underline;
    }
    .assignment-content p {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.6;
    }

    /* Alternating Backgrounds */
    .assignment-row-green {
      background: #e8fdf5;
    }

    .assignment-row-green .assignment-number {
      background: #2ecc71;
    }

    .assignment-row-blue {
      background: #eef5ff;
    }

    .assignment-row-blue .assignment-number {
      background: #3498db;
    }

    .assignment-row-purple {
      background: #f9f1fc;
    }

    .assignment-row-purple .assignment-number {
      background: #9b59b6;
    }

    /* Footer Note */
    .assignment-footer {
      background: #f6fdf7;
      padding: 18px;
      margin-top: 30px;
      border-radius: 10px;
      border-left: 5px solid #27ae60;
      text-align: center;
      font-size: 1rem;
      color: #333;
    }

    /* Responsive */
    @media (max-width: 700px) {
      .assignment-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .assignment-content h2 {
        font-size: 1.1rem;
      }

      .assignment-number {
        margin-bottom: 10px;
      }
    }

/* ==properties== */

.properties {

    padding: 70px 0;

    position: relative;

}



.properties h2 {

    color: #161616;

    font-size: 39px;

    line-height: 46px;

    text-transform: capitalize;

    text-align: center;

    font-weight: 700;

    padding-bottom: 40px;

}



.properties p {

    font-size: 1.1rem;

}



.properties .nav.nav-tabs {

    display: flex;

    align-items: center;

    justify-content: center;

    /* flex-wrap: wrap; */

    gap: 30px;

    border-bottom: unset;

    margin-bottom: 20px;

    margin-top: 40px;

}



.properties .nav-tabs .nav-item .nav-link {

    border: 2px solid transparent;

    background: none;

    padding: 8px 20px;

    font-weight: 500;

    font-size: 16px;

    line-height: 150%;

    color: #055fab;

    cursor: pointer;

    background-color: #e9f1ff;

    border-radius: 5px;

    width: 100%;

    display: block;

    text-align: center;

    border-bottom: 3px solid transparent;

}



.properties .nav-tabs .nav-item .nav-link:hover {

    color: #258de7;

}



.properties .nav-tabs .nav-item .nav-link.active {

    color: #1276ce;

    border-bottom: 3px solid #1276ce;

}

.properties .content_box {

    margin-top: 40px;

}

.properties .content_box h3 {

    font-weight: 700;

    font-size: 24px;

    line-height: 150%;

    padding-bottom: 15px;

    color: #4a4e57;

}

.ser_img img{

   max-height: 300px;

}

.properties .content_box p {

    font-weight: 500;

    font-size: 16px;

    line-height: 150%;

    color: #4a4e57;

    text-align: justify;

}

.content_img_box img{

    height: 300px;

}

/* ===services==== */

.services,

.reviews,

.faq {

    background: #f8f8f8;

}



.services .nav.nav-tabs {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    border-bottom: unset;

    gap: 5px;

    margin-bottom: 20px;

    margin-top: 40px;

    border-bottom: 3px solid #dadada;

}



.services .nav-tabs .nav-item .nav-link {

    border: 2px solid transparent;

    background: none;

    font-weight: 500;

    font-size: 16px;

    line-height: 150%;

    color: #2f2d2d;

    cursor: pointer;

    width: 100%;

    transition: all .3s;

    border-bottom: 3px solid transparent;

}



.services .nav-tabs .nav-item .nav-link:hover {

    color: #055fab;

    border-bottom-color: #0f3870;

}



.services .nav-tabs .nav-item .nav-link.active {

    color: #055fab;

    border-bottom-color: #00b1ef;

}



.services .tab_content h3 {

    font-size: 32px;

    line-height: 150%;

    color: #35414b;

    padding-bottom: 20px;

    font-weight: 600;

}



.services .tab_content p {

    font-size: 18px;

    font-weight: 500;

    line-height: 150%;

 text-align: justify;

    

}



/* ==steps== */

.steps h2,

.quality h2,

.reviews h2,

.faq .faq_title {

    color: #161616;

    font-size: 39px;

    line-height: 46px;

    text-transform: capitalize;

    text-align: center;

    font-weight: 700;

    padding-bottom: 20px;

}



.steps .step_subtitle,

.reviews .sub_para {

    text-align: center;

    font-size: 20px;

    line-height: 30px;

    color: #575E62;

    max-width: 90%;

    width: 100%;

    margin: 0 auto 40px;

    font-weight: 400;

}

.step_icon img{

    height: 70px;

}

.steps .h-40 {

    height: 40px;

}



.steps .single_step {

    position: relative;

    width: 100%;

    border-radius: 6px;

    box-sizing: border-box;

    text-align: center;

    padding: 0 48px;

    height: 340px;

    box-shadow: 2px 2px 10px rgb(124 124 124 / 25%);

    background-color: #fff;

}



.steps .single_step::before {

    position: absolute;

    content: '';

    width: 98px;

    height: 16px;

    background-color: #05396b;

    bottom: 0;

    left: 0;

    right: 0;

    margin: 0 auto;

    border-radius: 20px 20px 0 0;

}



.steps .single_step .step_head {

    max-width: 186px;

    margin: -17px auto;

    position: relative;

    background-color: #05396b;

    text-align: center;

    padding: 18px 0;

    border-radius: 0 0 30px 30px;

    color: #fff;

    font-size: 25px;

    line-height: 150%;

    transform: translateY(-17px);

}



.steps .single_step .step_head::before {

    position: absolute;

    content: '';

    width: 0;

    height: 0;

    right: -19px;

    top: 0;

    border-bottom: 17px solid #05396b;

    border-right: 19px solid transparent;

}



.steps .single_step .step_head::after {

    position: absolute;

    content: '';

    width: 0;

    height: 0;

    left: -18px;

    top: 0;

    border-bottom: 17px solid #05396b;

    border-left: 19px solid transparent;

}



.steps .single_step .stepsText {

    width: 100%;

    padding-top: 60px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

}



.steps .single_step .stepsText p {

    padding-top: 30px;

    color: #35414b;

    font-size: 20px;

    line-height: 150%;

}



.quality .quality_box {

    display: flex;

    align-items: center;

    gap: 0 20px;

    padding: 30px;

    box-shadow: 0 4px 10px rgb(119 119 119 / 15%);

    background-color: #fff;

    border-radius: 10px;

}

.quality .quality_box .icon img{

    height: 60px;

    width: 60px;

}

.quality .quality_box h3 {

    font-size: 22px;

    line-height: 150%;

    color: #01305C;

    font-weight: 700;

    text-align: left;

}



.quality .quality_box p {

    font-size: 18px;

    text-align: justify;

    line-height: 150%;

    font-weight: 450;

    color: #3f3d3d;

    padding-top: 16px;

    text-align: left;

    letter-spacing: .7px;

}



/* ===.reviews */

.reviews .nav.nav-tabs {

    display: flex;

    align-items: center;

    justify-content: center;

    border-bottom: unset;

    gap: 35px;

    margin-bottom: 20px;

    margin-top: 40px;

}



.reviews .nav-tabs .nav-item .nav-link {

    background: none;

    font-weight: 500;

    font-size: 16px;

    line-height: 150%;

    background-color: #fff;

    color: #2f2d2d;

    cursor: pointer;

    width: 100%;

    padding: 20px 100px;

    border: 1px solid transparent;

    border-radius: 8px;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

    transition: all .3s;

}



.reviews .nav-tabs .nav-item .nav-link .google {

    height: 30px;

}



.reviews .nav-tabs .nav-item .nav-link.home.active {

    border-color: #00b1ef;

    box-shadow: none;

}



.reviews .nav-tabs .nav-item .nav-link.site.active {

    border-color: red;

    box-shadow: none;

}



.reviews .nav-tabs .nav-item .nav-link.trust.active {

    border-color: green;

    box-shadow: none;

}



.swiper {

    width: 100%;

    height: 100%;

}



.swiper-slide {

    text-align: center;

    font-size: 18px;

    display: flex;

    justify-content: center;

    align-items: flex-start;

}



.reviews .reviewSlider {

    height: 500px;

    position: relative;

    background-color: transparent;

}



.reviews .review_box {

    background-color: #fff;

    border-radius: 8px;

    box-shadow: rgba(28, 211, 208, 0.05) 0px 6px 24px 0px, rgba(56, 221, 218, 0.08) 0px 0px 0px 1px;

}



.reviews .review_box .reviewer {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    padding: 35px 40px 20px;

    border-bottom: 2px solid #EBEBEC;

}



.reviews .review_box .reviewer_box span {

    color: #055fab;

    font-size: 22px;

    font-weight: 500;

}



.reviews .review_box .reviewer_box .reviewer_name {

    color: #7a7a7a;

    font-size: 16px;

    text-align: left;

    font-weight: 500;

}



.reviews .review_box .customer_review {

    padding: 20px 40px 35px;

}



.tranding-slider-control {

    position: relative;

    bottom: 20%;

    display: flex;

    align-items: center;

    justify-content: center;

}



.tranding-slider-control .swiper-button-next {

    left: 58% !important;

    transform: translateX(-58%) !important;

}





@media (max-width:450px) {

    .tranding-slider-control .swiper-button-next {

        left: 80% !important;

        transform: translateX(-80%) !important;

    }

}



@media (max-width:990px) {

    .tranding-slider-control .swiper-button-prev {

        left: 30% !important;

        transform: translateX(-30%) !important;

    }

    .tranding-slider-control .swiper-button-next {

        left: 68% !important;

        transform: translateX(-30%) !important;

    }

}



@media (max-width:450px) {

    .tranding-slider-control .swiper-button-prev {

        left: 20% !important;

        transform: translateX(-20%) !important;

    }

}



.tranding-slider-control .slider-arrow {

    background: #fff;

    width: 3.5rem;

    height: 3.5rem;

    border-radius: 50%;

    left: 42%;

    transform: translateX(-42%);

    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));

}



.tranding-slider-control .slider-arrow i {

    font-size: 2rem;

    color: #222224;

    transition: all .4s;

}



.tranding-slider-control .slider-arrow:hover i {

    color: #00b1ef;

}



.tranding-slider-control .slider-arrow::after {

    content: '';

}



.tranding-slider-control .swiper-pagination {

    position: relative;

    width: 15rem;

    bottom: 1rem;

}



.tranding-slider-control .swiper-pagination .swiper-pagination-bullet {

    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));

}



.tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {

    background: #00b1ef;

}



/* ===cta=== */

.cta .cta_wrap {

    display: flex;

    align-items: center;

    background-color: #1176CA;

    justify-content: space-between;

    padding: 50px 15px;

    flex-wrap: wrap;

    border-radius: 15px;

    position: relative;

}



.cta .cta_wrap .cta_left {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

}



.cta .cta_wrap .cta_left,

.cta .cta_wrap .cta_right {

    max-width: 50%;

    width: 100%;

}



.cta .cta_wrap .cta_title {

    font-size: 28px;

    line-height: 150%;

    color: #fff;

    font-weight: 500;

    max-width: 400px;

    padding-bottom: 15px;

    text-align: center;

}



.cta .cta_wrap .cta_des {

    text-align: center;

    font-size: 20px;

    line-height: 30px;

    color: #fff;

}



.cta .cta_wrap .cta_right {

    display: flex;

    align-items: flex-start;

    justify-content: space-around;

}



.cta .cta_wrap .cta_right p {

    font-size: 18px;

    line-height: 150%;

    color: #fff;

    font-weight: 500;

    padding-bottom: 15px;

    position: relative;

}



.cta .cta_wrap .cta_right p::before {

    content: '';

    position: absolute;

    width: 19px;

    height: 19px;

    background-image: url(../img/check.png);

    background-repeat: no-repeat;

    background-size: cover;

    position: relative;

    left: -18px;

    top: 4px;

    display: inline-block;

}



.cta .cta_wrap .free_img {

    position: absolute;

    top: 0;

    left: 0;

}



.cta .animated-button {

    margin-top: 30px;

    position: relative;

    display: flex;

    align-items: center;

    gap: 4px;

    padding: 16px 36px;

    border: 4px solid;

    border-color: transparent;

    font-size: 16px;

    border-radius: 100px;

    font-weight: 600;

    color: #1f387e;

    background-color: #fff;

    box-shadow: 0 0 0 2px #ffffff;

    cursor: pointer;

    overflow: hidden;

    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);

}



.cta .animated-button svg {

    position: absolute;

    width: 24px;

    fill: #1f387e;

    z-index: 9;

    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);

}



.cta .animated-button .arr-1 {

    right: 16px;

}



.cta .animated-button .arr-2 {

    left: -25%;

}



.cta .animated-button .circle {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 20px;

    height: 20px;

    background-color: #c5e5e4;

    border-radius: 50%;

    opacity: 0;

    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);

}



.cta .animated-button .text {

    position: relative;

    z-index: 1;

    transform: translateX(-12px);

    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);

}



.cta .animated-button:hover {

    box-shadow: 0 0 0 12px transparent;

    color: #212121;

    border-radius: 12px;

}



.cta .animated-button:hover .arr-1 {

    right: -25%;

}



.cta .animated-button:hover .arr-2 {

    left: 16px;

}



.cta .animated-button:hover .text {

    transform: translateX(12px);

}



.cta .animated-button:hover svg {

    fill: #1f387e;

}



.cta .animated-button:active {

    scale: 0.95;

    box-shadow: 0 0 0 4px greenyellow;

}



.cta .animated-button:hover .circle {

    width: 220px;

    height: 220px;

    opacity: 1;

}



/* ===faq=== */

.faq .nav.nav-tabs {

    display: flex;

    flex-direction: column;

    justify-content: center;

    border: unset;

}



.faq .nav.nav-tabs .nav-link {

    border: none;

    outline: none;

    transition: 0.3s;

    max-width: 230px;

    width: 100%;

    margin-bottom: 10px;

    display: block;

    background-color: #f3f3f3;

    border-radius: 7px;

    padding: 15px 30px;

    font-weight: 500;

    cursor: pointer;

    font-size: 18px;

    line-height: 130%;

    color: #141a27;

    text-align: center;

}



.faq .nav.nav-tabs .nav-link.active {

    background-color: #05396b;

    color: #fff;

}



.faq .accordion-item {

    border: 0;

    margin-top: 15px;

    border-radius: 7px;

    overflow: hidden;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}



.faq .accordion-collapse {

    border: 0;

}



.faq .accordion-button {

    padding: 20px 40px 20px 70px;

    font-weight: 600;

    border: 0;

    font-size: 20px;

    color: #35414b;

    text-align: left;

    background: #fff;

    box-shadow: none;

    text-transform: capitalize;

    border-radius: 5px;

}



.faq .accordion-button i {

    height: 40px;

    width: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 20px;

    color: #05396b;

}



.faq .accordion-button:not(.collapsed) i {

    background-color: #05396b;

    color: #fff;

}



.faq .accordion-button:not(.collapsed) {

    color: #7a7a7a;

    border-bottom: 0;

    box-shadow: none;

}



.faq .fa-question {

    position: absolute;

    top: 14px;

    left: 25px;

    font-size: 20px;

    color: #7a7a7a;

}



.faq .accordion-button::after {

    position: absolute;

    right: 25px;

    top: 15px;

    color: #7a7a7a;

}



.faq .accordion-body {

    padding: 0 30px 25px 60px;

    border: 0;

    border-radius: 5px;

    background: #fff;

    box-shadow: none;

    font-size: 16px;

    text-align: justify;

    color: #000;

}



/* ===content=== */

.content_wrapper {

    position: relative;

    padding: 0 12%;

}



.angle-up {

    width: 54px;

    height: 54px;

    color: #c8d9ee;

    cursor: pointer;

    border-radius: 50%;

    justify-content: center;

    align-items: center;

    transition: all .25s ease-in-out;

    display: flex;

    position: absolute;

    bottom: auto;

    left: auto;

    top: 20%;

    right: 7%;

    box-shadow: inset 0 0 0 1px #c8d9ee;

}



.angle-down {

    width: 54px;

    height: 54px;

    color: #c8d9ee;

    cursor: pointer;

    border-radius: 50%;

    justify-content: center;

    align-items: center;

    transition: all .25s ease-in-out;

    display: flex;

    position: absolute;

    bottom: auto;

    left: auto;

    bottom: 6%;

    right: 7%;

    box-shadow: inset 0 0 0 1px #c8d9ee;

}



.angle-up:hover,

.angle-down:hover {

    color: #87ceeb;

    border: 1px solid #87ceeb;

}



.intro-heading {

    font-size: 2rem;

    font-weight: 700;

}



.service-heading {

    font-size: 1.4rem;

    font-weight: 600;

}



.service-para {

    padding: 0 1rem;

    text-align: justify;

    line-height: 24px;

}



.service-list {

    padding: 0 1rem;

}



.service-list li {

    padding-bottom: 1rem;

    list-style-type: disc;

}



.seo-row {

    border-top: 2px solid skyblue;

    border-bottom: 4px solid rgb(105, 165, 243);

    height: 400px;

}



.seo-row::-webkit-scrollbar {

    display: none;

}



/* ===batch== */

.batch_wrap {

    display: flex;

    align-items: center;

    justify-content: space-around;

}



.batch_wrap .batch_item {

    position: relative;

    width: 200px;

    height: 245px;

    background-image: url("../img/batch.png");

    background-repeat: no-repeat;

    background-size: cover;

}

.batch_wrap .batch_item p{

    position: absolute;

    top: 15%;

    color: #fff;

    left: 0;

    text-align: center;

    font-size: 20px;

    font-weight: 800;

    line-height: 130%;

    align-self: center;

    width: 100%;

}

/* ===payment=== */

.payment_wrap{

    max-width: 100%;

    margin: 0 auto;

    background: #e4edfa;

    padding: 44px 134px 44px 134px;

    border-radius: 10px;

}

.payment_wrap h3{

    font-size: 38px;

    line-height: 45px;

    text-align: center;

    color: #161616;

    font-weight: 500;

}

.payment_wrap h4{

    display: block;

    font-size: 28px;

    line-height: 36px;

    text-align: center;

    color: #11142d;

    padding-top: 40px;

    font-weight: 450;

}

.payment_wrap img{

    margin-top: 26px;

    max-width: 525px;

    width: 100%;

    max-height: 70px;

    height: 100%;

}

/* ===footer=== */

footer {

    padding: 40px 0 0;

    color: #fff;

    background-color: #0f3870;

}

footer h5{

    font-size: 22px;

    font-weight: 600;

}

footer p{

    text-align: justify;

}

.logo-footer{

    height: 70px;

    width: 165px;

}

footer ul li a {

 color: #fff;

}footer ul li i,

footer ul li a i{

 margin-right:  10px;

}

#copy-right{

    background-color: #0f487f;

    padding: 6px 0;

}

/* ===error==== */

.error{

    max-height: 700px;

    padding-top: 20px;

    position: relative;

}

.error_btn{

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 30px;

}

.error-page img{

    max-height: 500px;

}