html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  outline: none;
}

/* font family */
.odi {
    font-family: "Odibee Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.epi {
  font-family: "Epilogue", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
  

/* annimation */
.fadeinleft {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
  }
  
  .fadeinright {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
  }
  
  .fadeindown {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
  }
  
  .fadeinup {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s ease-out;
  }
  
  .fade-in {
    opacity: 0;
    transition: all 1.3s ease-in;
  }
  
  .active-left,
  .active,
  .active-right,
  .active-down,
  .active-up {
    opacity: 1;
    transform: translateX(0);
    transform: translateY(0);
  }
  
  .fadein {
    opacity: 0;
  }
  
  @mixin white-gradient {
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  /*  Animation */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  .slider {
    background: white;
    height: 300px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    &::before,
    &::after {
      @include white-gradient;
      content: "";
      height: 100px;
      position: absolute;
      width: 200px;
      z-index: 2;
    }
    &::after {
      right: 0;
      top: 0;
      transform: rotateZ(180deg);
    }
    &::before {
      left: 0;
      top: 0;
    }
    .slide-track {
      animation: scroll linear infinite;
      animation-duration: 35s;
      display: flex;
      width: calc(250px * 14);
    }
  }
  .slide {
    margin-right: 15px !important;
  }
  
  /* footer */
  :root {
    /* Background Color */
    --primary-color: #212122b9;
    --secondary-color: #a3a190;
    --bg-color: #f4f4f4;
    --bg-white: #fff;
    --bg-black: #000;
    /* Text Style */
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Oswald", sans-serif;
    --tertiary-font: "Cinzel", serif;
    --primary-text: #212122b9;
    --secondary-text: #cea356;
    --text-white: #fff;
    --text-black: rgb(79, 79, 79);
    --text-gray: #e4e4e4;
  }
  
  .footer_wrapper {
    background-color: #1d1f25;
  }
  .footer_wrapper h5 {
    color: white;
    margin-bottom: 1.25rem;
  }
  .footer_wrapper ul li {
    margin-bottom: 0.5rem;
    list-style: none;
  }
  .footer_wrapper .contact-info li a {
    color: white;
  }
  .footer_wrapper .link-widget li a,
  .footer_wrapper p {
    color: white;
    font-size: 14px;
    padding-left: 1.5rem;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
  }
  .footer_wrapper .link-widget li a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0.3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .footer_wrapper .link-widget li a:hover {
    margin-left: 0.625rem;
    color: #ffee02;
  }
  .footer_wrapper .social-network a {
    width: 2.1rem;
    height: 2.1rem;
    margin: 0.6rem;
    line-height: 2rem;
    font-size: 0.875rem;
    display: inline-block;
    border: 0.125rem solid var(--text-gray);
    color: var(--text-gray);
    text-align: center;
    border-radius: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .footer_wrapper .social-network a:hover {
    background-color: var(--secondary-text);
    border-color: var(--secondary-text);
    color: var(--text-white);
    box-shadow: 0 0.625rem 0.9375rem 0 rgb(0 0 0 / 10%);
    transform: translateY(-0.1875rem);
  }
  .footer_wrapper .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
  }
  .footer_wrapper .copyright-section {
    background-color: #dddddd;
    padding: 1.25rem 0 0.3125rem;
    text-align: center;
  }
  .footer_wrapper .copyright-section a {
    color: var(--secondary-text);
  }
  
  .navbar {
    -webkit-box-shadow: 0 0.5rem 0.375rem -0.375rem rgb(0 0 0 / 40%);
    box-shadow: 0 0.5rem 0.375rem -0.375rem rgb(0 0 0 / 40%);
    -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s,
      opacity 0s ease-in-out 0s;
    transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s,
      opacity 0s ease-in-out 0s;
    overflow-x: hidden;
    background-color: #ffffff;
    /* background-image: linear-gradient(45deg, black 30%, blue 70%); */
  }
  .navbar-nav a {
    margin-left: 10px;
    font-size: 22px;
    /* color: rgb(117, 113, 113); */
  }
  .nav-link img {
    width: 25px;
    height: 15px;
  }
  .navbar-nav a {
    text-decoration: none;
    padding: 10px;
    font-size: 21px;
    font-weight: 500;
    color: rgb(61, 59, 59);
    border-bottom: 1px solid transparent;
    position: relative;
  }
  
  .navbar-nav a:hover {
    color: #ffee02;
    /* border-bottom: 1px solid #000000; */
  }
  .navbar-nav a.active {
    /* border-bottom: 1px solid #000000; */
    color: #ffee02 !important;
  }
  .navbar-nav a::before {
    content: "";
    width: 0;
    height: 3px;
    border-radius: 2px;
    background-color: #ffee02;
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    transition: width 0.4s, left 0.4s;
  }
  .navbar-nav a:hover::before {
    width: 100%;
    left: 0;
  }
  
  /*BUTTONS CLASS*/
  #button,
  #button::after {
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
  }
  
  #button {
    clip-path: polygon(0% 0%, 0% 100%, 84% 100%, 93% 0, 100% 0, 92% 100%, 91% 100%, 79% 100%, 88% 0, 23% 0);
    background: #ffee02;
    border: 2px solid #ffee02 !important;
    color: black !important;
    font-size: 15px;
    font-weight: 400;
    padding: 15px 50px 15px 30px;
    position: relative;
    transition: all 0.6s ease-in-out;
    font-family: "Outfit", sans-serif;
    box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.2);
  }
  
  #button::before,
  #button::after {
    background: black !important;
    border: 2px solid black !important;
    content: "";
    position: absolute;
    z-index: -1;
  }
  
  #button:hover {
    color: #ffee02 !important;
    transform: scale(1);
    border: 2px solid #ffee02 !important;
  }
  
  .btn-3 {
    overflow: hidden;
  }
  
  .btn-3::after {
    height: 100%;
    left: -35%;
    top: 0;
    transform: skew(50deg);
    width: 0;
  }
  
  .btn-3:hover:after {
    height: 100%;
    width: 100%;
  }
  
  .btn-3::before {
    height: 100%;
    right: -35%;
    bottom: 0;
    transform: skew(50deg);
    transition: all 0.6s ease-in-out;
  
    width: 0;
  }
  
  .btn-3:hover:before {
    height: 100%;
    width: 100%;
  }

/* index-bg */
#index-bg {
    background: url(img/img-3.jpg) rgba(0, 0, 0, 0.55);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    height: 70vh;
    display: flex;
    align-items: center;
}

.index-dsc h1 {
    font-size: 70px;
    color: white;
}

.index-dsc p {
    font-size: 20px;
    color: white;
    font-weight: 500;
}

/* service */

.service-section .outer-box {
    position: relative;
    padding-bottom: 20px;
}

.service-block .inner-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-bottom: 55px;
}

.service-block .inner-box::before {
    position: absolute;
    left: 80px;
    bottom: 0;
    width: 200px;
    height: 381px;
    transform: skewX(-20deg);
    content: "";
    background-color: #f7f6f2;
    transition: all 1s ease;
    z-index: 1; 
}

.service-block .inner-box:hover::before {
    background-color: #ffee02;
    opacity: .3;
}

.service-block .inner-box .image-box {
    position: relative;
    display: inline-block;
    padding: 14px;
    overflow: hidden;
    border-radius: 50%;
    transition: all 1s ease;
    margin-bottom: 30px;
    z-index: 2; 
}

.service-block .inner-box .image-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid #ffee02;
}

.service-block .inner-box .image-box .image {
    position: relative;
    border-radius: 50%;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 1s ease;
}

.service-block .inner-box .image-box .image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: all 1s ease;
}

.service-block .inner-box .image-box:hover {
    background: #ffee02;
    transition: all 1s ease;
}

.service-block .inner-box .content {
    position: relative;
    unicode-bidi: isolate;
    z-index: 3;
}

.service-block .inner-box .content .title {
    position: relative;
    color: #000;
    font-size: 32px;
    margin-bottom: 12px;
}

.service-block .inner-box .content .text {
    position: relative;
    margin: 0 auto;
    z-index: 4; 
}

.service-block .inner-box .text p {
    position: relative;
    z-index: 4;
}



/* about-section */
.about-section {
    padding: 70px 0;
    background-color: #fff;
}

.auto-container {
    width: 100%;
    margin: 0 auto;
}


.content-column {
    padding: 15px;
}

.inner-column {
    margin-bottom: 82px;
    margin-top: 50px;
    position: relative;
}

.about-section .image-column .inner-column:before {
    background-color: #ffee02;
    content: "";
    height: 540px;
    left: 80px;
    position: absolute;
    top: -50px;
    transform: skewX(-23deg);
    width: 350px;
}

.sec-title {
    margin-bottom: 30px;
}

.sec-title .sub-title {
    font-weight: 600;
    font-size: 18px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sec-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.sec-title .text {
    font-size: 16px;
    color: #555;
}

.list-style-two {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.list-style-two li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.list-style-two li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #ffee02;
}

.bottom-box {
    display: flex;
    align-items: center;
}

.info-btn {
    display: inline-block;
    background-color: #ffee02;
    color: #333;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 20px;
}

.info-btn small {
    display: block;
    font-size: 12px;
}

.author-box {
    display: flex;
    align-items: center;
}


.author-info {
    display: flex;
    flex-direction: column;
}

.author-info .name {
    font-size: 18px;
    font-weight: 400;
    margin: 15px 0;
}

.author-info .designation {
    font-size: 14px;
    color: #777;
}

.image-column {
    padding: 15px;
}

.image-column .inner-column {
    position: relative;
    text-align: center;
}

.image-column .image,
.image-column .image-2,
.image-column .video-box {
    margin-bottom: 20px;
}

.image-column .image img,
.image-column .image-2 img,
.image-column .video-box img {
    width: 100%;
    border-radius: 5px;
    position: relative;
}

/* pricin list */

.pricing-section-three {
    position: relative;
    padding: 70px 0;
    margin-bottom: 30px;
    cursor: pointer;
}
.auto-container {
    max-width: 1200px;
    position: static;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}
.pricing-section-three .inner-box {
    position: relative;
    border: 1px solid #CBCBCB;
    background-color: #fff;
    overflow: hidden;
    transition: all .3s ease;
}
.pricing-section-three .inner-box::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg-pricing.3a79ce39.jpg');
    background-size: cover;
    background-position: top center;
    transition: top .3s ease;
    z-index: 0;
}
.pricing-section-three .inner-box:hover::before {
    top: 0;
}
.pricing-section-three .inner-box .title-box,
.pricing-section-three .inner-box .content {
    position: relative;
    z-index: 1;
    transition: color .3s ease;
}
.pricing-section-three .inner-box:hover .title-box,
.pricing-section-three .inner-box:hover .content {
    color: #fff;
}
.pricing-section-three .inner-box .title-box {
    position: relative;
    padding: 55px 67px 53px;
    z-index: 1;
}
.pricing-section-three .inner-box .title-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 100%;
    clip-path: polygon(13% 0, 100% 0, 86% 100%, 0 100%);
    background-color: #FFEE02;
    z-index: -1;
}
.pricing-block-three .inner-box .title-box .title {
    position: relative;
    font-size: 18px;
    letter-spacing: .13em;
    color: #444;
    margin-bottom: 25px;
    text-transform: uppercase;
    transition: color .3s ease;
}
.pricing-block-three .inner-box:hover .title-box .title {
    color: #000;
}

h6 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
}
.pricing-block-three .inner-box .title-box .price h1 {
    position: relative;
    font-size: 70px;
    color: #000;
    text-transform: uppercase;
    transition: color .3s ease;
}
.pricing-block-three .inner-box:hover .title-box .price {
    color: #000;
}
.pricing-block-three .inner-box .title-box .icon {
    position: absolute;
    bottom: -26px;
    right: 30px;
    width: 69px;
    height: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    color: #FFEE02;
    background-color: #000;
    border: 2px solid #FFEE02;
    transition: all .3s ease;
}
.pricing-block-three .inner-box .content {
    position: relative;
    padding: 45px 46px 35px;
}
.pricing-block-three .inner-box .content .feature-list {
    position: relative;
    margin-bottom: 20px;
    transition: color .3s ease;
}
.pricing-block-three .inner-box:hover .content .feature-list {
    color: #fff;
}
li, ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
ol, ul {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}
address, blockquote, dd, dl, fieldset, ol, pre, table, ul {
    margin-bottom: 10px;
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
ol, ul {
    padding-left: 2rem;
}

.pricing-block-three .inner-box .content .feature-list li {
    border-bottom: 2px solid #777;
    padding: 20px 0;
}

.pricing-block-three .inner-box .content .feature-list li img {
    position: relative;
    color: #4EDE30;
    font-size: 20px;
    margin-right: 15px;
}
.fa-light, .fal {
    font-family: Font Awesome\ 6 Pro;
    font-weight: 300;
}

.pricing-ds h2 {
    font-size: 70px;
}

/* fun fact */
.funfact-section {
    position: relative;
    padding: 10px 0 30px;
}

.counter-block {
    margin-bottom: 90px;
}

.counter-block .inner-box {
    position: relative;
    text-align: center;
}

.counter-block .inner-box:before {
    content: "";
    position: absolute;
    bottom: 55px;
    right: -40px;
    width: 26px;
    height: 54px;
    background-image: url(img/icon-line.339254c9.png);
}



.counter-block .inner-box {
    position: relative;
    text-align: center;
}

.counter-block .inner-box .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

.counter-block .inner-box .icon-box:before {
    content: "";
    position: absolute;
    top: 5px;
    right: -7px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background-color: #FFEE02;
}

.counter-block .inner-box .icon-box .icon {
    position: relative;
    display: inline-block;
    color: #000;
    font-size: 105px;
    line-height: 1em;
    transition:all 3s ease;
}

.counter-block .inner-box .counter-one h6 {
    position: relative;
    font-size: 50px;
    line-height: 1em;
    letter-spacing: .04em;
    color: #000;
    margin-bottom: 10px;
}

.counter-block .inner-box .counter-text {
    position: relative;
    font-size: 20px;
    line-height: 1em;
    color: #000;
    margin-bottom: 0;
    margin-top: -10px;
    text-transform: uppercase;
}

/* 2 */
.counter-block .inner-box-1 {
    position: relative;
    text-align: center;
}

.counter-block .inner-box-1 {
    position: relative;
    text-align: center;
}

.counter-block .inner-box-1 .icon-box {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

.counter-block .inner-box-1 .icon-box:before {
    content: "";
    position: absolute;
    top: 5px;
    right: -7px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background-color: #FFEE02;
}

.counter-block .inner-box-1 .icon-box .icon {
    position: relative;
    display: inline-block;
    color: #000;
    font-size: 105px;
    line-height: 1em;
    transition:all 3s ease;
}

.counter-block .inner-box-1 .icon-box .icon:hover {
    transform: rotateY(365deg);
    transition:all 3s ease;
}

.counter-block .inner-box .icon-box .icon:hover {
    transform: rotateY(365deg);
    transition:all 3s ease;
}

.counter-block .inner-box-1 .counter-one h6 {
    position: relative;
    font-size: 50px;
    line-height: 1em;
    letter-spacing: .04em;
    color: #000;
    margin-bottom: 10px;
}

.counter-block .inner-box-1 .counter-text {
    position: relative;
    font-size: 20px;
    line-height: 1em;
    color: #000;
    margin-bottom: 0;
    margin-top: -10px;
    text-transform: uppercase;
}

/* testimonials */
.testimonial-section {
    position: relative;
    padding: 70px 0;
    z-index: 3;
}

.testimonial-section:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 800px;
    background-color: #FFEE02;
    -webkit-clip-path: polygon(42% 0, 100% 0, 100% 100%, 2% 100%);
    clip-path: polygon(42% 0, 100% 0, 100% 100%, 2% 100%);
    z-index: 1;
}

.bg-pattern-2 {
    background-image: url(img/pattern-2.405356e1.jpg);
}

.bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.testimonial-section .sec-title {
    margin-bottom: -141px;
}

.sec-title {
    position: relative;
    margin-bottom: 50px;
    z-index: 2;
}

.sec-title .sub-title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #444;
    letter-spacing: .12em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sec-title h2 {
    position: relative;
    font-size: 70px;
    color: #000;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: -.03em;
    line-height: 1em;
    z-index: 2;
}

.swiper-horizontal {
    touch-action: pan-y;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

element.style {
    transition-duration: 0ms;
    transform: translate3d(-1170px, 0px, 0px);
    transition-delay: 0ms;
}

.testimonial-block {
    position: relative;
    z-index: 3;
    width: 100%;
}


.testimonial-section .swiper-pagination {
    text-align: left;
}

.testimonial-block .inner-box .content {
    position: relative;
    margin-top: 162px;
    width: 100%;
    background-color:#fff;
}

/* footer */
.footer-style-one {
    position: relative;
}

.bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.footer-style-one .bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    background-color: #000;
}

.footer-style-one .widgets-section {
    padding: 70px 0;
}

.main-footer .footer-column {
    margin-bottom: 50px;
    position: relative;
}

.main-footer .footer-widget {
    position: relative;
}

.main-footer .widget-title {
    color: #ffffff;
    display: block;
    font-size: 26px;
    letter-spacing: .04em;
    line-height: 37px;
    margin-bottom: 40px;
    padding-bottom: 2px;
    position: relative;
    text-transform: uppercase;
}

.main-footer .widget-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #212121;
}

.main-footer .widget-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: #FFEE02;
}

.footer-style-one .about-widget .text {
    padding-right: 10px;
}

.main-footer .footer-column {
    margin-bottom: 50px;
    position: relative;
}

.main-footer .footer-widget {
    position: relative;
}

.contact-list-two {
    padding: 0;
    position: relative;
}

li, ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list-two.light a, .contact-list-two.light li {
    color: white;
}

.contact-list-two li {
    align-items: center;
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.contact-list-two li i {
    background-color: #FFEE02;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    height: 44px;
    margin-right: 45px;
    min-width: 44px;
    position: relative;
    width: 44px;
}

.main-footer .footer-column {
    margin-bottom: 50px;
    position: relative;
}

.footer-style-one .newsletter-widget {
    padding-left: 8px;
}

.main-footer .footer-widget {
    position: relative;
}

.footer-bottom {
    position: relative;
    width: 100%;
}

.footer-bottom .inner-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #212121;
    padding: 35px 0;
}

.footer-bottom .copyright-text {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
    margin-bottom: 0;
}

.footer-bottom .footer-nav {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-bottom .footer-nav li {
    margin-left: 45px;
}

.footer-bottom .footer-nav li a {
    position: relative;
    color: #b7b7b7;
    text-decoration: none;
    margin-left: 20px;
}

/* about-html */
#about-bck {
    background: url(img/2.jpg) rgba(0, 0, 0, 0.55);
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    height: 70vh;
}

.about-ds h1 {
    font-size: 70px;
    color: white;
}

.about-ds p {
    font-size: 20px;
    color: white;
    font-weight: 500;
}

/* services-html */
#services-bck {
    background: url(img/img-7.jpg) rgba(0, 0, 0, 0.55);
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    height: 70vh;
}

.services-ds h1 {
    font-size: 70px;
    color: white;
}

.services-ds p {
    font-size: 20px;
    color: white;
    font-weight: 500;
}

/* contact-html */
#contact-bck {
    background: url(img/img-3.jpg) rgba(0, 0, 0, 0.55);
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    height: 70vh;
}

.contact-ds h1 {
    font-size: 70px;
    color: white;
}

.contact-ds p {
    font-size: 20px;
    color: white;
    font-weight: 500;
}

.contact-header h2 {
    font-size: 18px;
    font-weight: 400;
    color: #444;
    margin-bottom: 10px;
}

.contact-header h1 {
    font-size: 70px;
    color: #000;
    font-weight: 400;
}

.first-contact {
    display: flex;
    align-self: center;
    align-items: center;
}

.icons i {
    background-color: #FFEE02;
    padding: 30px;
    margin: 20px 0;
    font-size: 20px;
    transition: all 1s ease;
}

.icons-ds h2 {
    font-size: 30px;
}

.icons-ds h3 {
    font-size: 18px;
}

.first-contact .icons i:hover {
    background: #000;
    color: white;
    transition: all 1s ease;
    cursor: pointer;
}

@media (max-width:900px) {
    #button {
        clip-path: polygon(0% 0%, 0% 100%, 84% 100%, 93% 0, 100% 0, 92% 100%, 91% 100%, 79% 100%, 88% 0, 23% 0);
        background: #ffee02;
        border: 2px solid #ffee02 !important;
        color: black !important;
        font-size: 15px;
        font-weight: 400;
        padding: 10px 40px 10px 20px;
        position: relative;
        transition: all 0.6s ease-in-out;
        font-family: "Outfit", sans-serif;
        box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.2);
      }

    .index-dsc h1 {
        font-size: 50px;
    }

    .index-dsc p {
        font-size: 16px;
    }

    .sec-title span {
        font-size: 16px !important;
    }

    .sec-title h2 {
        font-size: 50px;
    }

    .sec-title .text {
        font-size: 15px !important;
        margin-top: 15px;
    }

    /* service-block */
    .service-block {
        margin: 15px 0;
    }

    .pricing-ds h2 {
        font-size: 50px;
    }

    .pricing-ds p {
        font-size: 15px;
    }

    /* funfact */
    .counter-one h6 {
        font-size: 35px !important;
    }

    .counter-text {
        font-size: 18px !important;
        margin-top: 10px !important;
    }

    /* services-html */
    .services-ds h2 {
        font-size: 50px;
    }

    .services-ds p {
        font-size: 15px;
    }

    /* about-html */
    .about-ds h1 {
        font-size: 50px;
    }

    .about-ds p {
        font-size: 15px;
    }

    /* contact-html */
    .contact-ds h2 {
        font-size: 50px;
    }

    .contact-ds p {
        font-size: 18px;
    }

    .contact-header h2 {
        font-size: 18px !important;
    }

    .contact-header h1 {
        font-size: 50px;
    }

    /* image-box */
    .image-box .image img {
        width: 230px;
    }
}

@media (max-width:767px) {
    .counter-block .inner-box:before {
        display: none;
    }
    
    .pricing-block-three .inner-box{
        margin: 15px 0;
    }

    .testimonial-block .inner-box .content {
        display: flex;
        flex-direction: column !important;
    }

    .testimonial-block .inner-box .content .item {
        margin: 15px 0;
    }

    .testimonial-block .inner-box .content .item:nth-child(2) {
        margin-left: 0px !important;
        padding-top: 10px;
        border-top: 2px solid #555;
    }

    .footer-bottom .inner-container {
        display: flex;
        flex-direction: column;
    }
    
}

