* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
:root {
    --color-orange: #ff9500;
    --color-gray: #555C75;
    --color-blue: #161d27;
    --color-light-green: #f4f8ff;
    --light-gray: #666;
    --color-white: #fff;
}
a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
}

section {
    padding: 80px 0;
}

header .navbar{
    align-items:start;
}
header .nav-link { color: var(--color-gray);}
.gray-bg {
    background-color: #fcfcfc;
}
/*--banner--*/
.banner {
    position: relative;
    background-color: #e2f9ee;
    overflow: hidden;
}
.banner-top { padding-top: 44px;}
.banner-text {
    padding: 50px;
}

.banner h1 {
    font-size: 2.8rem;
    color: #005025;
}
.s-rating { padding: 2px 5px; border-radius: 10px; background-color: #fffaec; margin: 20px 10px 0 0; line-height: 50px; min-height: 50px;}
.banRt form{background:#fff;padding:25px 25px 25px;border-radius:7px;box-shadow:2px 2px 7px #666;margin:0px}

.thanks {
    min-height: calc(100vh - 190px); display: flex; align-items: center; justify-content: center;
}
  .counter-number {
    margin-top: 10px;
    font-size: 18px;
    color: var(--color-gray);
  }
  .counter-number {
    margin-top: 10px;
    font-size: 18px;
    color: var(--color-gray);
  }
  form .form-control {
    width: 99%;
    height: 42px;
    border: solid 1px #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-style: italic;
}
form textarea.form-control {
    height: 80px;
}
.contact-inner {
    margin-bottom: 1rem;
}
.btn-five {
    font-weight: 500;
    padding: 13px 16px;
    text-align: center;
    border-radius: 50px;
    color: #fff;
    background: var(--color-orange);
    transition: all .3s ease-in-out 0s;
    display: inline-block;
}
.btn-five:hover {
    color: #e7f7fe;
}

/* .factSlide-container .col-md-3 { width: 20%; } */
.tab-content>.active { border-radius: 10px; padding: 20px; background-color: #e8f7e9; min-height: 250px;}
.tab-content>.active h6 { font-weight: 400; line-height: 28px;}
.about .nav { display: block; background: #fff;}

.about .nav-pills .nav-link { color: #9b9b9b; border-left: 1px solid #d0d1d1; border-radius: 0;}
.about .nav-pills .nav-link.active, .about .nav-pills .nav-link:hover, .about .nav-pills .show>.nav-link {
    background: 0 0;
    border-left-color: #FF913B;
    color: #FF913B;
}
.about .accordion { display: none; }
.about .accordion-body {
    border-radius: 10px;
    padding: 20px;
    background-color: #e8f7e9;
    min-height: 250px;    
}
.about .accordion-body h6{
    font-weight: 400;
    line-height: 28px;
}

.accordion-button:not(.collapsed) {
    background: 0 0;
    border-left-color: #FF913B;
    color: #FF913B;
}


.owl-controls .owl-buttons .owl-prev, .owl-controls .owl-buttons .owl-next {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: #FFFFFF;
    margin: 5px;
    color: #3C3C3C;
    text-align: center;
    border: 1px dashed #fff;
    box-shadow: 0 0px 10px 5px rgba(213, 213, 213, 0.2), 0 6px 10px 0 rgba(217, 217, 217, 0.19);
}
.owl-controls .owl-buttons .owl-next { right:30px; transform: translate(100%, 50%); top:35%; position: absolute;     line-height: 30px;}
.owl-controls .owl-buttons .owl-prev { left:30px; position: absolute; top:35%; transform: translate(-100%, 50%);    line-height: 30px;}

/*--gallery--*/
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    grid-gap: 2rem;
  }
  .gallery__item {
    box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border-radius: 10px;
    background-color: #FFFAEC;
    padding: 15px;
  }
  .gallery__image {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    height: 100%;
    width: 100%;
  }
  .gallery__image:hover {
    cursor: pointer;
    opacity: 0.7;
    transform: scale(1.15);
  }
  .gallery__image:hover + .gallery__image__caption {
    display: block;
  }
  .gallery__image__caption {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background: #222;
    border-radius: 0.375rem;
    color: #fefefe;
    font-weight: 600;
    margin-top: 1.25rem;
    padding: 1rem;
    white-space: nowrap;
    z-index: 1;
  }
  .gallery__navigation--next, .gallery__navigation--prev, .gallery__navigation--close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0;
    height: 42px;
    opacity: 0.5;
    overflow: hidden;
    padding: 0;
    transition: opacity 0.2s ease-in-out;
    width: 42px;
  }
  .gallery__navigation--next:hover, .gallery__navigation--prev:hover, .gallery__navigation--close:hover {
    opacity: 1;
  }
  .gallery__navigation--next::before, .gallery__navigation--prev::before {
    display: flex;
    content: "";
    border: solid #fff;
    border-width: 0 0.25rem 0.25rem 0;
    padding: 0.5rem;
  }
  .gallery__navigation--next {
    right: 1.5rem;
    transform: rotate(-45deg);
  }
  .gallery__navigation--prev {
    left: 1.5rem;
    transform: rotate(135deg);
  }
  .gallery__navigation--close {
    top: 2rem;
    right: 2rem;
  }
  .gallery__navigation--close::before {
    position: absolute;
    left: 1rem;
    background-color: #fff;
    content: " ";
    height: 33px;
    transform: rotate(45deg);
    width: 2px;
  }
  .gallery__navigation--close::after {
    position: absolute;
    left: 1rem;
    background-color: #fff;
    content: " ";
    height: 33px;
    transform: rotate(-45deg);
    width: 2px;
  }
  .gallery__modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    inset: 0;
    width: 100%;
    z-index: 1;
  }
  .gallery__modal img {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
  }
  .gallery__modal[aria-hidden=true] {
    display: none;
  }
  .gallery__modal[aria-hidden=false] {
    display: flex;
  }
  
.factSlide-container .factSlide { text-align: center; border-radius: 50px;
    padding: 5px 15px; margin-bottom: 20px;
    background-color: #EAFBFD;}
    
.factSlide strong {
    font-size: 34px;
    text-transform: uppercase;
    line-height: 40px;    
    color: #FF913B;
}

.factSlide p {
    width: 100%;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    transition: background-color 0.5s, padding 1s;
  }
  
header.sticky {
    background-color: #f2fff9;
    padding: 0;
    margin-bottom: 120px;
    z-index: 1;
    min-height: 50px;
}

#navbarNav ul {
    padding: 0;
    list-style: none;
    border-radius: 10px;
}
#navbarNav ul li {
    display: inline-block;
    position: relative;
    line-height: 21px;
    text-align: left;
}
#navbarNav ul li a {
    display: block;
    padding: 12px 12px;
    color: #333;
    text-decoration: none;

}
#navbarNav ul li a:hover {
    color: #005025;
}
#navbarNav ul li ul.dropdown {
    min-width: 100%; /* Set width of the dropdown */
    background: #fff;
    display: none;
    position: absolute;
    z-index: 999;
    left: 0;
    overflow: hidden;
    min-width: 240px;
}
#navbarNav ul li:hover ul.dropdown {
    display: block; /* Display the dropdown */
}
#navbarNav ul li ul.dropdown li {
    display: block;
}
#navbarNav ul li .dropdown li a:hover {
    background-color: #f7f7f7;
}
.dropdown_menu-6 {
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
  }
@-moz-keyframes growDown {
    0% {
      transform: scaleY(0);
    }
    80% {
      transform: scaleY(1.1);
    }
    100% {
      transform: scaleY(1);
    }
  }
  @-webkit-keyframes growDown {
    0% {
      transform: scaleY(0);
    }
    80% {
      transform: scaleY(1.1);
    }
    100% {
      transform: scaleY(1);
    }
  }
  @-o-keyframes growDown {
    0% {
      transform: scaleY(0);
    }
    80% {
      transform: scaleY(1.1);
    }
    100% {
      transform: scaleY(1);
    }
  }
  @keyframes growDown {
    0% {
      transform: scaleY(0);
    }
    80% {
      transform: scaleY(1.1);
    }
    100% {
      transform: scaleY(1);
    }
  }

  
/*--happ-user--*/
.small-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

/* .cat-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 12px;
} */

/*--experts--*/
    .experts h2{width:100%;text-align:center;font-weight:700;font-size:40px;margin:0 0 20px}
    .experts .cont{text-align:center;font-size:20px;width:80%;margin:0 auto 60px}
    .experts .r1,.experts .r2,.experts .r3{width:100%;display:inline-block}
    .experts .r2{margin:-80px 0 -100px}
    .experts ul{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between; padding-left: 0px;}
    .experts ul li{width:180px;text-align:center;     list-style: none;}
    .experts ul li span{width:165px;height:165px;display:inline-block;background:#ccc;border-radius:100px;position:relative;overflow:hidden;transition:ease all 1s}
    .experts span strong{background:rgba(10, 122, 135, 0.9);width:100%;height:100%;display:inline-block;position:absolute;left:0;right:0;margin:0 auto;transition:ease all .5s;top:-100%;padding:30px 0 0}
    .experts ul li span:hover strong{transition:ease all .5s;top:0}
    .experts ul li span img{width:100%}
    .experts span strong .icon{width:28px;height:30px;fill:#ffd700;display:inline-block;vertical-align:top;margin:5px 0 0}
    .experts span strong i{width:100%;display:inline-block;font-style:normal;color:#fff;font-weight:400}
    .experts span strong .expName{font-size:17px}
    .experts span strong .expRate{font-size:24px;margin:4px 0}
    .experts span strong .exprivw{font-size:15px}
    .experts a{width:230px;text-align:center;display:inline-block;background:#FF913B;color:#fff;padding:15px 5px 11px;font-size:23px;border-radius:100px}
    .experts a:hover{background:#000}

/*--resume-slider--*/
.resume-slider {
    background-color: #e2f9ee;
}

.resume-slider .resume-pic {
    border-radius: 10px;
    background-color: #FFFAEC;
    padding: 15px;
}
.resume-slider .resume-pic img { width: 100%;}

.resume-container {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 0 20px;
}

/*--fancy-banner--*/
.fancy-banner {
    background: url("../images/guarantee.jpg");
    position: relative; background-size: cover;
}

.fancy-banner::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(269.96deg, rgba(0, 0, 0, .74) 1.09%, rgba(0, 0, 0, .5) 58.13%, transparent 99.96%);
    opacity: .8;
}

.fancy-banner .title h2 {
    font-size: 4rem;
    color: #fff;
}

.title h2 span {
    color: var(--color-orange);
}

.fancy-banner .title h5 {
    line-height: 35px;
    margin-top: 25px;
}

.card-style-nine {
    background: #fff;
    border-radius: 10px;
    padding: 15px 10px;
}

.card-style-nine .icon {
    width: 52px;
    height: 52px;
    background: var(--color-orange);
}

.text-lg {
    font-size: 20px; color: var(--color-orange);
}

.card-style-nine a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}

.card-style-nine .text {
    width: calc(100% - 52px);
}

/*--whyus--*/
.whyus h5 {
    color: var(--color-orange);
}

h2 {
    font-size: 3rem;
    color: #505452;
}
.fancy-inner { display: none;}
.feature .item, .textimonials-slider .item, .samle-slider .item { margin: 5px 10px; }

.features-groupss ul li {
    list-style: none;
    font-weight: 800;
    font-size: 14px;
    margin-top: 10px;
}
/*--reviews--*/
.gray {
    background: #f7f9fc;
    background-image: url(../images/testimonials-bg.jpg);
    position: relative;
}
.gray .sec-heading { position: relative; color: #fff;}
.gray .sec-heading h2 { color: #ff9500;}
.gray::before {
    position: absolute;
    background: rgba(0, 0, 0, .60);
    inset: 0;
    content: "";
}
/*----------------- Testimonials Design -----------------*/
.ewriting-reviews-box {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 2px solid #f1f3f7;
    border-radius: 10px;
}

.ewriting-reviews-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
}

.ewriting-reviews-thumb {
    position: relative;
    width: auto;
    display: block;
}

.ewriting-reviews-thumb .ewriting-reviews-figure {
    width: 70px;
    padding: 4px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e1e5ec;
    border-radius: 50%;
}

.ewriting-reviews-thumb .ewriting-reviews-figure img {
    border-radius: 50%;
}

.ewriting-reviews-title h4 {
    font-size: 16px;
    margin: 0;
    line-height: 1.2;
    color: #103a87;
}

.ewriting-reviews-rates {
    display: flex;
    align-items: center;
    margin-top: 4px;
    font-size: 9px;
    color: #ff9800;
}

.ewriting-reviews-rates i {
    margin-right: 4px;
}

.ewriting-reviews-rates i.deactive {
    color: #c7d2dd;
}

.ewriting-reviews-desc {
    padding: 1rem 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.ewriting-reviews-desc p {
    font-size: 14px;
    margin: 0;
}

.ewriting-reviews-designation {
    font-size: 12px;
    font-weight: 500;
    color: #1ca774;
}
.testRate .icon {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin: 0 3px 0 0;
    fill: #FF913B;
}
/*--faq--*/
.faq .accordion-button {
    font-size: 20px;
    color: #005025;
    font-weight: bold;
}

.faq .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.faq .accordion-item {
    border: none;
}

/*--cv-score--*/
.cv-score h2{ color: #ff9500; }
.cv-score {
    background-color: #e8f7e9;
    color: #000;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding: 25px;
}
.cv-score::before {
    content: "";
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: hsla(0,0%,100%,.60);
    position: absolute;
    top: -15px;
    right: -75px;
}
.cv-score::after {
    content: "";
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: hsla(0,0%,100%,.60);
    position: absolute;
    bottom: -65px;
    right: -75px;
}

.cv-score .text-sec {
    padding-top: 30px;
}


.rquestCall{width:auto;border-radius:100px;padding:15px;background:#FF913B;position:fixed;bottom:10px;right:10px;z-index:20;transition:ease all .5s}
    .rquestCall .icon{width:30px;height:30px;fill:#fff}
    .rquestCall span{width:14px;height:14px;background:#20E82A;display:inline-block;position:absolute;left:4px;top:0;border-radius:100px;animation:blink 1s infinite}
    @keyframes blink { 
        0%{background:#09D313}
    50%{background:#fff}
    100%{background:#09D313}
    }
    .whatsapp{position:fixed;bottom:85px;right:20px;z-index:9;background:#25d366;height:50px;padding:5px;border-radius:7px;transition:ease all 1s;width:50px;overflow:hidden}
    .whatsapp-inner{text-align:center;}
    .whatsapp .icon{width:36px;height:40px}

    .liveFeed {
        position: fixed;
        bottom: 10px;
        left: 10px;
        background: #fbfbfb;
        border-radius: 10px;
        z-index: 9;
        box-shadow: 10px 10px 10px #00000014;
        border: 3px solid #0a7a87;
        width: 280px;
        z-index: 9;
        padding: 10px 45px 10px 10px;
        min-height: 85px;
      }
      .bellIcon {
        position: absolute;
        width: 40px;
        height: 40px;
        display: flex;
        right: -20px;
        top: 50%;
        background: #606060;
        border-radius: 100px;
        padding: 3px;
        transform: translateY(-50%);
      }
      .heading h5 {
        font-size: 17px;
        margin: 0;
        color: #FF913B;
      }
      .shake-top {
          -webkit-animation: shake-top 1.5s ease-in-out 1s infinite both;
                  animation: shake-top 1.5s ease-in-out 1s infinite both;
      }
      
      @-webkit-keyframes shake-top {
        0%,
        100% {
          -webkit-transform: rotate(0deg);
                  transform: rotate(0deg);
          -webkit-transform-origin: 50% 0;
                  transform-origin: 50% 0;
        }
        10% {
          -webkit-transform: rotate(2deg);
                  transform: rotate(2deg);
        }
        20%,
        40%,
        60% {
          -webkit-transform: rotate(-4deg);
                  transform: rotate(-4deg);
        }
        30%,
        50%,
        70% {
          -webkit-transform: rotate(4deg);
                  transform: rotate(4deg);
        }
        80% {
          -webkit-transform: rotate(-2deg);
                  transform: rotate(-2deg);
        }
        90% {
          -webkit-transform: rotate(2deg);
                  transform: rotate(2deg);
        }
      }
      @keyframes shake-top {
        0%,
        100% {
          -webkit-transform: rotate(0deg);
                  transform: rotate(0deg);
          -webkit-transform-origin: 50% 0;
                  transform-origin: 50% 0;
        }
        10% {
          -webkit-transform: rotate(2deg);
                  transform: rotate(2deg);
        }
        20%,
        40%,
        60% {
          -webkit-transform: rotate(-4deg);
                  transform: rotate(-4deg);
        }
        30%,
        50%,
        70% {
          -webkit-transform: rotate(4deg);
                  transform: rotate(4deg);
        }
        80% {
          -webkit-transform: rotate(-2deg);
                  transform: rotate(-2deg);
        }
        90% {
          -webkit-transform: rotate(2deg);
                  transform: rotate(2deg);
        }
      }

      /* modal-style */
.modal-content {
    border-radius: 15px;
}

.btn-close {
    float: right;
    width: 12px;
    height: 12px;
    line-height: 12px;
    background-image: linear-gradient(131deg, #ffd340, #ff923c, #ff923c, #ff923c);
    background-size: 300% 100%;
    border-radius: 100px;
    font-weight: 800;
    opacity: 1;
    /* color: black; */
    color: #fff;
    font-size: 14px;
    box-shadow: 0 0 2px #f8933c, 0 0 8px #fbcc3f;
    outline: none;
}

.btn-close:hover {
    color: #fff;
}

.btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(253, 154, 49, 0.5);
}

.modal h4 {
    color: black;
    font-size: 16px;
    font-weight: bolder;
}

.modal img {
    width: 100%;
}


.modal form .input-wrapper input {
    font-size: 13px;
    color: #555;
    border: 1px solid #bbb;
    padding: 10px;
    border: none;
    /* border-radius: 20px; */
    position: relative;
    width: 100%;
    box-shadow: -1px -1px 15px #ddd, 1px 1px 15px #ddd;
    margin-bottom: 1pc;
}

.modal form .input-wrapper input:focus {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
    border: 1px solid #ced4da;
    box-shadow: -1px -1px 15px #ddd, 1px 1px 15px #ddd;
}

.modal form .input-wrapper textarea {
    font-size: 13px;
    color: #555;
    border: 1px solid #bbb;
    box-shadow: -1px -1px 15px #ddd, 1px 1px 15px #ddd !important;
}

.modal .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
    box-shadow: -1px -1px 15px #ddd, 1px 1px 15px #ddd;
    border: 1px solid #bbb;
}
/*--footer--*/
footer {
    background: #FFFAEC;
    padding: 20px 0 10px;
}

footer hr {
    color: #fff;
    margin: 30px 0;
}

footer ul li {
    padding-top: 10px;
    list-style: none;
}

footer ul li a {
    color: #fff;
}

.note {
    color: hsla(0, 0%, 100%, .7);
    margin-top: 10px;
}

.footer-newsletter form {
    position: relative;
    height: 60px;
    background: rgba(0, 0, 0, .04);
    border-radius: 7px;
}

.footer-newsletter form input {
    background: hsla(0, 0%, 100%, .04);
    color: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid hsla(0, 0%, 100%, .7);
    padding: 0 50px 0 20px;
    border-radius: 7px;
}

.footer-newsletter form button {
    background: var(--color-orange);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    position: absolute;
    width: 75px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 6px;
    border: none;
    color: #fff;
    transition: all .2s ease-in-out 0s;
}

@media (max-width:1024px) {
    .banner h1 {
        font-size: 2.2rem;
    }
}
@media (max-width:991px) {
    .d-n-mob { display: none !important;}
    .fancy-inner { display: block;}
    .navbar-toggler .icon {
        width: 25px;
        height: 25px;
        fill: #ff913b;
    }
    .navbar-collapse { border-radius: 10px; padding: 10px; background-color: #F7F5FF;}
    
    header {
        padding: 0;
    }
   
    
}
@media (max-width:768px) {
    .modal img {     max-width: 180px;    margin-bottom: 25px;} .modal-img { text-align: center; }
    .about .accordion { display: block; } .ab-dnone { display: none;}
    .experts a {     width: 180px;       font-size: 18px;  padding: 10px 5px 8px;}
    .experts h2{font-size:30px;margin:0 0 20px}
    .factSlide{margin:0;overflow:hidden}
    .experts .cont{font-size:18px;width:90%;margin:0 auto 50px;line-height:24px}
    .experts ul li span strong{display:none}
    .experts ul li span{width:80px;height:80px}
    .experts ul li{width:80px;text-align:center;margin:0 20px;font-size:14px;line-height:18px}
    .experts .r2{margin:-40px 0}
    .experts ul{flex-wrap:nowrap;justify-content:center; overflow: hidden;}
    .experts .r1, .experts .r2, .experts .r3 { padding: 0;}
    .navbar-light .navbar-brand { margin-top: 9px;} .cv-score { padding-top: 40px;}
    .cv-score .text-sec {
        padding: 0px 20px 0px 25px;
    }
    .header-btn {
        min-width: auto;
        padding: 10px 18px;
    }
   
    header .navbar-nav li {
        font-size: 14px;
    }
    .logo img { width: 120px;}
    .accordion-button {
        padding-left: 10px;
    }
    section {
        padding: 60px 0;
    }

    .small-title {
        margin-bottom: 20px;
        line-height: 40px;
    }

    .banner-text {
        padding: 20px 0;
    }

    .fancy-banner .title h2 {
        font-size: 2.4rem;
    }

    .whyus h2 {
        font-size: 2.3rem;
    }

    .banner {
        height: auto;
    }

    h2 {
        font-size: 2.2rem;
    }

    .od-1 {
        order: 1;
        margin-bottom: 25px;
    }
    .od-2 {
        order: 2;
    }
    .faq .accordion-button {
        font-size: 16px; }
    .fancy-banner .title h5 {
        line-height: 30px; } .whyus img { margin-bottom: 25px;}
}

@media (max-width:580px) {
    .banner-top { padding-top: 50px; } .cv-score { padding: 40px 10px 30px;}
    .s-rating img { width: 140px;} .navbar-toggler, .navbar .container-fluid { padding: 0;}
    .navbar-brand img { width: 180px;} footer { font-size: 13px;} footer h6 { font-size: 14px;}
    .navbar-brand { padding: 0; } .liveFeed { width: 220px;} .s-rating { max-width: 150px; display: inline-block; margin: 10px 8px 0 0;}
    .whyus h2 {
        font-size: 2rem;
    }

    section {
        padding: 40px 0;
    }


    .banner h1 {
        font-size: 1.8rem;
    }
}