:root{
    --primary-color:#B80000
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    }


    .max-width-screen{
      width: 1200px;
      max-width: 100vw;
  }

    h1{
        font-family: 'Zen Dots', cursive;
        font-weight: 100;
        font-size: 50px;
        color: white;
        cursor: default;
    }

    h2{
      font-family: 'Zen Dots', cursive;
      font-weight: 100 !important;
      font-size: 24px !important;
      color: var(--primary-color);
      cursor: default;
  }

    h3{
        font-family: 'Zen Dots', cursive;
        font-weight: 100;
        font-size: 20px;
        color: white;
        cursor: default;
    }

    h4{
        color: white;
        font-size: 32px;
        font-weight: 400;
        cursor: default;
    }

    h5{
        color: white;
        font-size: 24px;
        font-weight: 500;
        cursor: default;
    }

    p{
        color: black;
        font-family: 'Poppins';
        font-size: 16px;
        font-weight: 300;
        line-height: 27px;
    }

    .black{
        color: black;
    }

    .h1-underline::after{
      content: '';
      position: absolute;
      top: 66px;
      left: 0;
      width: 167px;
      height: 2px;
      background-color: var(--primary-color);
    }

    .btn-m{
        padding: 12px 30px;
        color: white;
        background-color: var(--primary-color);
        font-size: 16px;
        outline: none;
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    }

    .btn-m:hover{
      color: white !important;
      background-color: transparent;
    }

    .btn-m::before{
      display: block;
      position: absolute;
      top: 0px;
      right: 0px;
      height: 100%;
      width: 0px;
      z-index: -1;
      content: '';
      color: #000 !important;
      background: var(--primary-color);
      transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    }

    .btn-m:hover:before{
      left: 0%;
      right: auto;
      width: 100%;
    }

    .btn-m-red{
        padding: 12px 30px;
        color: white;
        background-color: var(--primary-color);
        font-size: 16px;
        outline: none;
        border: none;
        cursor: pointer;
    }

    .btn-m-white{
        padding: 12px 30px;
        color: var(--primary-color);
        background-color: white;
        font-size: 16px;
        outline: none;
        cursor: pointer;
        border: 1px solid var(--primary-color);
    }

    /*Media Query general*/

    @media only screen and (max-width: 1200px) {
      .max-width-screen{
        max-width: 94vw;
        width: 1000px;
      }

      h1{
        font-size: 42px;
      }

      .slider h1{
        font-size: 36px !important;
      }
    }

    @media only screen and (max-width: 1000px) {
      .max-width-screen{
        max-width: 94vw;
        width: 728px;
      }
      h1{
        font-size: 38px;
      }
      h2{
        font-size: 20px !important;
      }
      .slider h1{
        font-size: 36px !important;
      }
      .landing-line{
        display: none;
      }
    }

    @media only screen and (max-width: 728px){
      h1{
        font-size: 32px;
      }
      h2{
        font-size: 18px !important;
      }
      p{
        font-size: 16px;
      }
      .slider h1{
        font-size: 36px !important;
      }
      .slider p{
        font-size: 16px !important;
      }
      .text-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      .header-border{
        margin-left: 0px !important;
        gap: 20px !important;
      }
      .header-border h1:nth-child(1){
        color: var(--primary-color);
        text-shadow: 2px -1px 9px rgb(255, 0, 0);
        -webkit-text-stroke: 0.9px white !important;
      }
    }
    

    @media only screen and (max-width: 500px) {

      .text-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
      }

      h1{
        font-size: 28px;
      }
      h2{
        font-size: 18px !important;
      }
      p{
        font-size: 13px;
      }

      .h1-underline::after{
        width: 70px;
        top: 40px !important;
      }

      .max-width-screen{
        max-width: 92vw;
        width: 100%;
      }

      .slider h1{
        font-size: 24px !important;
        margin-left: 0px;
        margin-top: 10px !important;
      }

      .slider h2{
        color: white !important;
      }

      .slider p{
        font-size: 14px !important;
      }

      .button-flex a:nth-child(2){
        display: none;
      }

      .header-border{
        margin-left: 0px !important;
        gap: 15px !important;
      }

      .btn-m-red{
        padding: 10px 14px;
        font-size: 14px;
      }

      .header-border h1:nth-child(1){
        color: var(--primary-color);
        text-shadow: 2px -1px 9px rgb(255, 0, 0);
        -webkit-text-stroke: 0.7px white !important;
      }

    }


    
    .flex{
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .main-nav{
      position: fixed;
      max-width: 100vw;
      width: 100%;
      background: rgb(255, 255, 255);
      z-index: 1000;
      -webkit-box-shadow: 0 4px 10px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 0 4px 10px 0 rgba(0,0,0,.1);
    box-shadow: 0 4px 10px 0 rgba(0,0,0,.1);
    }
    
    .center-nav{
      height: 85px;
      justify-content: space-between;
      position: relative;
    }
    
    .logo{
      margin-top: 0px;
      padding: 5px;
      position: relative;
      height: 85px;
    }

    .center-navi ul li, .mobile-menu ul li{
        list-style: none;
        color: rgba(0, 0, 0, 0.6);
        padding: 20px 8px;
        font-size: 16px;
        margin: 0px 10px;
        font-weight: 400;
        background-color: transparent;
        border-radius: 5px;
        font-family: 'Poppins';
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .center-navi ul li::after{
      content: '';
      position: absolute;
      height: 4px;
      width: 0%;
      background-color: var(--primary-color);
      bottom: 0px;
      transition: 0.4s;
    }

    .active-underline a{
      color: var(--primary-color) !important;
    }

    .center-navi ul li a, .mobile-menu ul li a{
      color: inherit;
      text-decoration: none;
    }
    
    .center-navi ul li:hover::after{
        background: var(--primary-color);
        width: 100%;
        color: white;
        cursor: pointer;
    }



    /*Mobile- menu css*/

    .mobile-menu{
      display: none;
      position: fixed;
      top: 85px;
      left: 0;
      background-color: white;
      height: 100vh;
      justify-content: center;
      width: 100vw;
      z-index: 10;
      transition:all 0.5s !important;
    }

    .mobile-menu ul{
      display: flex;
      flex-direction: column;
      width: 100%;
      padding-top: 5vh;
      align-items: flex-start;
      position: relative;
    }

    .mobile-menu ul li{
      width: 90%;
      padding-right: 10%;
      text-align:left;
      align-items: flex-start;
      justify-content: flex-start;
    }

    .mobile-menu ul li::after{
      width: 100%;
      height: 0.5px;
      background-color: rgba(0, 0, 0, 0.1);
      content: '';
      position: absolute;
      display: block;
      bottom: 0;
    }

    .mobile-menu ul li a{
      color: var(--primary-color);
      font-size: 14px;
      text-align: left;
    }

    .menu-icon {
      display: none;
      position: relative;
      cursor: pointer;
      margin-right: 20px;
    }

    .menu-icon span {
      display: block;
      height: 2px;
      width: 25px;
      background: var(--primary-color);
      margin-bottom: 5px;
      transition: all 0.3s ease-in-out;
    }

    .menu-icon span:nth-child(3){
      width: 15px;
    }

    .close-activate span:nth-child(3){
      opacity: 0;
      transform: translateX(-100px);
    }

    .close-activate span:nth-child(1){
      transform: rotate(-45deg);
    }
    .close-activate span:nth-child(2){
      transform: rotate(45deg) translateX(-5px) translateY(-5px);    
    }

    @media only screen and (max-width: 1000px) {
      .center-navi{
        display: none;
      }
      .menu-icon{
        display: block;
      }
      .mobile-menu{
        display: flex;
        height: 100vh;
        transition: all 2s;
        transform: translateX(-100vw);
      }
    }










    .slider {
        width: 100%;
        height: 100vh;
        max-height: 1000px;
        position: relative;
        overflow: hidden;
      }
      
      .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        z-index: 4;
      }
      
      .slide.active {
        opacity: 1;
        z-index: 2;
      }
      
      .slide.next,
      .slide.prev {
        z-index: 0;
      }
      
      .slide img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
      }

      .slide h1{
        font-size: 40px;
        text-align: center;
        margin-top: 20px;
      }
      .slide h2{
        margin-top: 50px;
        color: white;
        margin-bottom: 10px;
      }
      .slide p{
        color: white;
        font-weight: 500;
        font-size: 18px;
        margin-top: 20px;
      }
      .slide .button-flex{
        z-index: 3;
        margin-top: 30px;
        display: flex;
        flex-direction: row;
        align-items: center !important;
        gap: 25px;
        padding: 0;
      }

      .slide button{
        z-index: 100;
        cursor: pointer;
      }
      .header-border{
        display: flex;
        flex-direction: auto;
        gap: 25px;
        margin-top: 4px;
        margin-left: 140px;
      }
      .header-border h1:nth-child(1){
        color: var(--primary-color);
        text-shadow: 2px -1px 9px rgb(255, 0, 0);
        -webkit-text-stroke: 1.5px white;
      }



      .landing-line{
        width: 2px;
        height: 400px;
        content: '';
        background-color: white;
        animation-name: lineIn;
        animation-duration: 10s;
        animation-timing-function: ease-out;
        transform: translateX(-100px);
      }

      @keyframes lineIn {
        0% {
          transform: translateX(-1200px);
          opacity: 0;
        }
        10% {
          transform: translateX(-100px);
          opacity: 1;
        }
        100%{
          transform: translateX(-100);
          opacity: 1;
        }
      }
      
      @keyframes slideIn {
        0% {
          transform: translateX(-100px) scale(0.4);
          opacity: 0;
        }
        6% {
          transform: translateX(0) scale(1);
          opacity: 1;
        }
        100%{
          transform: translateX(0) scale(1);
          opacity: 1;
        }
      }
      
      .prev,
      .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 4;
        background-color: rgba(0, 0, 0, 0.3);
        color: white;
        padding: 10px;
        border: none;
        cursor: pointer;
      }
      
      .prev:hover,
      .next:hover {
        background-color: rgba(0, 0, 0, 0.5);
      }
      
      .next {
        right: 0;
      }
      
      .slide:nth-child(1) {
        background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.581)), url(./imgs/bg2.jpg);
        background-position: center;
        background-size: cover;
      }
      
      .slide:nth-child(2) {
        background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.581)), url(./imgs/bg-office.jpg);
        background-position: center;
        background-size: cover;
      }
      
      .slide:nth-child(3) {
        background: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.581)), url(./imgs/bg3.jpg);
        background-position: center;
        background-size: cover;
      }

      .text-wrapper{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
      }

      @media only screen and (max-width: 500px) {
        
      }




      





      




      /* experience section */

      .experience-screen{
        position: relative;
        margin-top: -70px;
        z-index: 100;
        margin-bottom: 50px;
        align-items: center;
        justify-content: center;
      }

      .experience-main{
        display: flex;
        align-items: center;
        justify-content:right;
      }

      .right-experience{
        background-color: var(--primary-color);
        color: white;
        width: 720px;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 15px 62px;
        gap: 44px;
      }

      .right-experience span{
        display: inline-block;
        content: '';
        height: 84px;
        width:2px;
        background-color: black;
        transform: rotate(-10deg);
      }

      .right-experience h2{
        color: white;
        font-size: 20px;
        margin-bottom: 9px;
      }

      .right-experience p{
        color: white;
        font-size: 14px;
        font-weight: 300;
      }

      .sep{
        display: flex;
        flex-direction: row;
        gap: 5px;
      }

      .iconify{
        height: 70px;
        width: 70px;
      }


      /*mobile screen experience*/

      @media only screen and (max-width: 500px) {
        .right-experience{
          width: 100%;
          gap: 20px;
          padding: 10px 10px;
        }

        .right-experience h2{
          font-size: 18px;
        }
        .right-experience p{
          font-size: 12px;
          line-height: 20px;
        }
      }











      .bottom-choose{
        background-color: #F2F2FF;
        margin-top: 50px;
        padding: 25px 60px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .bottom-choose div{
        background-color: white;
        color: var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        height: 182px;
        width: 147px;
        transition: 0.4s;
      }

      .bottom-choose div:hover{
        background: #B80000;
      }

      .bottom-choose div:hover > p{
        color: white;
      }
      .bottom-choose div i{
        transition: 0.4s;
      }
      .bottom-choose div:hover > i{
        filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(69deg) brightness(107%) contrast(107%);
      }

      .bottom-choose p{
        color: var(--primary-color);
        font-size: 14px;
        font-weight: 500;
        width: 130px;
        text-align: center;
        line-height: 20px;
        transition: 0.4s;
      }

      .bottom-choose .warrenty {
        background-color: var(--primary-color);
        color: white;
      }

      .bottom-choose .warrenty p{
        color: white;
      }
      

      /*why choose us medis query*/


      @media only screen and (max-width: 1200px) {
        
        .bottom-choose div{
          transform: scale(0.85);
        }
        .bottom-choose{
          padding: 15px 35px;
        }
        
      }

      @media only screen and (max-width: 1000px){
        .bottom-choose{
          padding: 0px 0px !important;
          flex-wrap: wrap;
          align-items: center;
          justify-content: center;
        }
      }

      @media only screen and (max-width: 470px){
        .bottom-choose div{
          height: 125px;
          width: 100px;
        }

        .bottom-choose div p{
          font-size: 12px;
          max-width: 95px;
        }

        .bottom-choose div i img{
          width: 50px;
          height: 50px;
        }
      }



      

      /*About section*/

    .about-section{
        margin-top: 100px;
    }

    .main-about::before{
        position: absolute;
        content: url(./imgs/svg/Vector\ 7.svg);
        top: -125px;
        right: -100px;
        transform: scale(0.8);
        filter : invert(13%) sepia(90%) saturate(3691%) hue-rotate(357deg) brightness(88%) contrast(123%);
    }
    
    .main-about{
        justify-content: space-between;
        position: relative;
        align-items: flex-start;
    }

    @media only screen and (max-width: 500px){
      .main-about::before{
        display: none;
      }
    }

    .left-about{
        display: flex;
        flex: 2.5;
        position: relative;
    }

    .about-left-bg{
        width: 475px;
        height: 575px;
        position: relative;
        margin-left: 68px;
        margin-right: 80px;
    }

    .about-left-bg::before{
        content: '';
        background-image: url(./imgs/about-bg.jpg);
        background-size: cover;
        top: 123px;
        left: -68px;
        position: absolute;
        z-index: 10;
        width: 420px;
        height: 500px;
        border: 5px solid white;
    }

    .right-about{
        position: relative;
        flex-direction: column;
        justify-content: baseline;
        flex: 3;
    }

    .about-curve-line{
        position: absolute;
        top: -20px;
        left: -30px;
    }

    .right-about h2{
        margin-top: 50px;
    }

    .right-about p{
        margin-top: 30px;
        line-height: 27px;
    }

    .right-about .btn-m{
        margin-top: 30px;
    }

    /*about us media query*/

    @media only screen and (max-width: 1200px) {
        
      .about-left-bg{
        width: 400px;
      }

      .about-left-bg::before{
        width: 380px;
      }

      .h1-underline::after{
        top: 65px;
      }
    }

    @media only screen and (max-width: 1000px){
      .main-about{
        flex-direction: column-reverse;
      }

      .left-about{
        width: 100%;
      }

      .about-left-bg{
        width: 100%;
        height: 300px;
        margin: 0;
        margin-top: 30px;
      }

      .about-left-bg::before{
        width: 70%;
        right: 0;
        left: auto;
        height: 250px;
        top: 60px;
      }

      .main-brand .left-brand h1{
        margin-top: 10px ;
      }

      .brand-section{
        height: 170px !important;
      }
      
    }


    /* brand partners */
      

    .brand-section{
      background-color: var(--primary-color);
      height: 154px;
      margin-bottom: 100px;
      position: relative;
      overflow: hidden;
    }

    .brand-section h1{
      color: white;
      font-size: 36px;
      margin-top: 60px;
      position: relative;
    }

    .main-brand{
      justify-content: space-between;
      position: relative;
    }

    .right-brand{
      position: relative;
      overflow: visible;
      margin-top: 20px;
    }

    .right-brand h1{
      font-size: 96px;
      opacity: 10%;
      position: absolute;
      top: -140px;
      left: 0;
      width: 10000px;
      overflow: visible;
      cursor:default;
    }

    @media only screen and (min-width: 1200px) {
        
      .right-brand{
        margin-right: 90px;
      }
    }

    @media only screen and (max-width: 500px){

      .brand-section .main-brand .left-brand h1{
        font-size: 24px ;
      }

      .brand-section .main-brand{
        flex-direction: column;
        padding-top: 30px;
        height: 100% !important;
      }

      .brand-section{
        height: 100% !important;
      }

      .right-brand{
        flex-wrap: wrap;
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        gap: 5px;
        justify-content: center;
      }
      .right-brand img{
        height: 40px;
      }
      
    }











    /*Services css*/

    .main-services{
        flex-direction: column;
        position: relative;
        margin-bottom: 30px;
    }


    .top-services-section{
        flex-direction: row;
        position: relative;
        width: 100%;
        justify-content: space-between;
    }

    .services-header{
        flex-direction: row;
        gap: 50px;
    }

    .relative{
      position: relative;
    }

    .top-services-section p{
        width: 530px;
    }

    .bottom-services-section::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 468px;
        border: 2px solid var(--primary-color);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .bottom-services-section{
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: 100px;
        margin-bottom: 100px;
        gap: 84px;
        padding: 0px 20px;
    }

    .bottom-services-section .service{
        position: relative;
        height: 391px;
        width: 513px;
        background-color: #C1C1C1;
        transition: 0.5s;
    }

    .bottom-services-section .service:hover{
      background-size: 140% !important;
      background-position: center !important;
    }

    .bottom-services-section .service .line-span {
        position: relative;
        content: "";
        background-color: var(--primary-color);
        height: 4px;
        width: 110px;
    }

    .bottom-services-section .service .services-content{
      position: absolute;
      background-color: black;
      border: 4px solid white;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 30px 30px;
      padding-right: 150px;
      gap: 20px;
      bottom: -80px;
      left: -50px;
    }

    .bottom-services-section .service p {
        color: white;
    }


    /*Services media query css*/


    @media only screen and (max-width: 1200px) {
        
      .services-header{
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
      }

      .service{
        width: 40%;
      }
    }

    @media only screen and (max-width: 1000px){
      .top-services-section{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 30px;
      }

      .h1-underline::after{
        top: 50px;
      }

      .top-services-section p{
        width: 100%;
      }

      .bottom-services-section{
        gap: 20px;
      }

      .service{
        height: 350px !important;
        width: 100%;
      }

      .services-content{
        transform: scale(0.8);
      }

      .bottom-services-section::before{
        height: 400px;
      }
    }

    @media only screen and (max-width: 728px){
      .bottom-services-section{
        flex-direction: column;
        margin-top: 70px;
        gap: 80px;
      }

      .bottom-services-section .service{
        width: 100%;
        height: 300px !important;
      }

      .bottom-services-section::before{
        height: 105% ;
      }
    }







    /*portfolio section*/


    .fullscreen-container {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0,0,0,0.8);
			display: none;
			justify-content: center;
			align-items: center;
      z-index: 10000;
      cursor:zoom-out;
		}
		.fullscreen-container img {
			max-width: 80%;
			max-height: 80%;
		}

		.gallery img {
			cursor: zoom-in;
		}







    .profile-section{
      position: relative;
    }

    .main-profile{
        margin-bottom: 70px;
        flex-direction: column;
        margin-top: 50px;
        position: relative;
        overflow-x: hidden;
    }

    .main-profile::before{
        position: absolute;
        content: url(./imgs/svg/Vector\ 7.svg);
        z-index: -1;
        top: -40px;
        left: 900px;
        transform: scale(0.8);
        transform: rotate(05deg);
    }

    .top-profile-section span{
        margin-top: 0px;
    }

    .bottom-profle-section{
        margin-top: 75px;
    }
    

    .bottom-profle-section-row {
        display: -ms-flexbox; /* IE10 */
        display: flex;
        -ms-flex-wrap: wrap; /* IE10 */
        flex-wrap: wrap;
        padding: 0 4px;
        max-height: 800px;
        overflow: hidden;
      }
      
      /* Create four equal columns that sits next to each other */
      .bottom-profle-section-column {
        -ms-flex: 25%; /* IE10 */
        flex: 25%;
        max-width: 25%;
        padding: 0 4px;
      }

      
      .bottom-profle-section-column img {
        margin-top: 8px;
        vertical-align: middle;
        width: 100%;
      }
      
      /* Responsive layout - makes a two column-layout instead of four columns */
      @media screen and (max-width: 700px) {
        .bottom-profle-section-column {
          -ms-flex: 50% !important;
          flex: 50% !important;
          max-width: 50% !important;
        }
        .bottom-profle-section-row{
          max-height: 1000px ;
        }
      }
      @media screen and (max-width: 1000px) {
        .bottom-profle-section-column {
          -ms-flex: 33.33%;
          flex: 33.33%;
          max-width: 33.33%;
        }
        .bottom-profle-section-row{
          max-height: 650px ;
        }
      }
      
      /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
      @media screen and (max-width: 450px) {
        .bottom-profle-section-column {
          -ms-flex: 100% !important;
          flex: 100% !important;
          max-width: 100% !important;
        }
        .bottom-profle-section-row{
          max-height: 1600px ;
        }
        .bottom-profle-section-column img:nth-child(1){
          display: none;
        }
      }

      .bottom-profle-section-button{
        width: 100%;
        display: flex;
        flex-flow: row-reverse;
        margin-top: 30px;
        padding-right: 8px;
      }




      /*Contact section*/

      .contact-section{
        background: url(./imgs/contact-background.jpg);
        background-position: center;
        background-repeat: no-repeat;
        align-items: normal;
        background-size: cover;
        width: 100%;
        height: 608px;
        padding: 40px 0px;
        margin-bottom: 100px;
      }

      .bottom-contact-section{
        display: flex;
        flex-direction: row;
      }

      .left-contact-section{
        position: relative;
        width: 600px;
      }

      .right-contact-section{
        position: relative;
        margin-top: -60px;
      }

      .contact-us-quote{
        margin-top: 130px;
        margin-left: 100px;
        position: relative;
      }

      .contact-vector{
        position: absolute;
      }

      .contact-us-quote h4{
        width: 220px;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        color: black;
        font-family: 'Poppins';
        padding-top: 30px;
        margin-left: 127px;
      }

      .contact-options{
        position: relative;
        margin-top: 100px;
        margin-left: 100px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 220px;
        gap: 20px;
      }
      .contact-options a {
        position: relative;
        transform: scale(0.9);
      }
      .contact-options a img{
        position: absolute;
        transition: 0.5s;
      }
      .contact-options a img:hover{
        top: -10px;
      }

      .right-contact-section{
        max-width: 478px;
        width: 478px;
        height: 522px;
        background: white;
        box-shadow: 4px 4px 4px rgba(255, 255, 255, 0.47);
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .right-contact-section h5{
        color: var(--primary-color);
      }

      .right-contact-section .contact-form{
        display: flex;
        flex-direction: column;
        height: 380px;
        justify-content: space-between;
      }

      .right-contact-section .contact-form input{
        height: 40px;
        background: #F3F3F3;
        outline: none;
        padding-left: 20px;
        color: black;
        border: none;
        font-size: 14px;
      }

      .right-contact-section .contact-form textarea{
        height: 100px;
        background: #F3F3F3;
        outline: none;
        padding-left: 20px;
        color: black;
        border: none;
        font-size: 14px;
        padding-top: 10px;
      }

      .right-contact-section button{
        filter: drop-shadow(3px 2px 4px rgba(0, 0, 0, 0.2));
      }

      .top-services-section .contact-options{
        display: none;
      }

      @media only screen and (min-width: 1200px){
        .top-profile-section , .services-header{
          align-items: center;
          justify-content: flex-start;
        }
      }

      @media only screen and (max-width: 1200px){
        .right-contact-section{
          margin-top: -100px;
        }
      }
    

      /*Contact section media query*/

      @media only screen and (max-width: 500px){
        .top-profile-section{
          flex-direction: column !important;
        }
        .contact-options a img{
          height: 35px;
          width: 35px;
        }

        .contact-options{
          gap: 0px;
          margin: 0 !important;
        }

        .right-contact-section{
          margin-top: 20px !important;
        }
      }

      @media only screen and (max-width: 1000px){
        .contact-us-quote{
          display: none;
        }

        .contact-section{
          height: auto;
        }

        .top-services-section .contact-options{
          position: relative;
          margin: 0 !important;
          margin-top: 60px;
          display: flex;
          justify-content: flex-end;
          gap: 10px;
        }

        .bottom-contact-section{
          display: flex;
          align-items: center;
          justify-content: center;
        }
        .contact-options a img{
          position:  relative !important;
        }

        .right-contact-section{
          width: 100%;
          margin-top: 50px;
        }

        .left-contact-section{
          display: none;
        }

        .top-profile-section{
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: flex-start;
        }
        
      }







      /*Testimonials feedback*/

      .feedback-section{
        margin-bottom: 100px;
      }

      .bottom-feedback-section{
        margin-top: 30px;
        position: relative;
      }

      .bottom-feedback-section .feedback{
        height: 400px;
        width: 340px;
        transition: 1s;
        background: rgba(0, 0, 0, 0.1);
        padding: 20px;
        border-bottom: 3px solid var(--primary-color);
      }

      .bottom-feedback-section .feedback img{
        height: 100px;
        width: 100px;
        margin-top: -50px;
      }

      .bottom-feedback-section h5{
        margin-top: 30px;
        margin-bottom: 7px;
        color: black;
      }

      .bottom-feedback-section p{
        font-weight: 500;
        font-size: 14px;
        margin-top: -10px;
      }

      .bottom-feedback-section h1{
        color: var(--primary-color);
      }

      
      .swiper-wrapper{
        width:90%;
        display: flex;
        align-items: center;
      }

      .swiper-slide{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 600px !important;
        padding-top: 100px;
      }

      .swiper-button-prev::after, .swiper-button-next::after{
        color: #B80000 !important;
        height: 40px !important;
        transform: scale(0.7);
        position: absolute !important;
        top: -260px;
        overflow: visible !important;
        padding: 20px;
      }

      .swiper-button-prev::after{
        left: 1080px;
      }
      .swiper-pagination-bullet{
        background-color: #b80000a8 !important;
      }
      .swiper-pagination-bullet-active{
        width: 20px !important;
        border-radius: 18px !important;
        transition: 1s;
        background-color: var(--primary-color) !important;
      }

      .swiper-slide-next > .feedback{
        transform: scale(1.17);
        background: linear-gradient(180deg, #FFFFFF 0%, #B80000 100%);
      }


      @media only screen and (max-width: 1200px) {
        .swiper-button-prev::after{
          left: 880px;
        }
        .right-footer h3{
          font-size: 20px !important;
        }
      }

      @media only screen and (max-width: 1000px){
        .swiper-button-prev::after{
          left: 610px;
        }
      }

      @media only screen and (max-width: 500px){
        .swiper-button-prev::after{
          left: 60vw;
        }

        .swiper .swiper-slide-active > .feedback{
          transform: scale(0.9);
          background: linear-gradient(180deg, #FFFFFF 0%, #B80000 100%);
        }

        .swiper h1{
          font-size: 50px;
        }


        
      }







      /*footer css*/

      .footer{
        background: rgba(184, 0, 0, 0.1);
        padding: 30px 0px;
      }

      .footer-main, .logo-header, .bottom-right-footer{
        display: flex;
        flex-direction: row;
      }

      .logo-header{
        align-items: center;
      }

      .footer-main{
        justify-content: space-between;
        max-width: 1200px;
        width: 100%;
      }

      .left-footer,.right-footer, .footer-content{
        display: flex;
        flex-direction: column;
      }

      .logo-header img{
        height: 145px;
        width: 145px;
      }

      .footer .contact-options{
        position: relative;
        margin: 0;
        margin-top: 50px;
        margin-bottom: 100px;
      }

      .left-footer h4{
        margin-left: 20px;
      }

      .top-right-footer{
        position: relative;
      }

      .top-right-footer img{
        position: absolute;
        right: 50px;
        bottom: 30px;
      }

      .right-footer{
        margin-left: 10px;
      }

      .right-footer h3{
        font-size: 24px;
        margin-bottom: 50px;
      }

      .bottom-right-footer{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
      }

      .bottom-right-footer h5{
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 10px;
      }

      .bottom-right-footer{
        color: grey;
        text-decoration: none;
      }

      .footer-content{
        gap: 5px;
      }

      .bottom-right-footer a{
        color: gray;
        text-decoration: none;
      }

      .bottom-right-footer a:hover{
        color: black;
      }

      /*Copyright footer*/

      .copyright-footer{
        background-color: black;
      }

      .copyright-footer p{
        color: rgb(85, 85, 85);
        font-weight: 400;
        padding: 20px 0px;
        text-align: center;
      }

      /*Responsive footer*/
      @media only screen and (max-width: 900px){
        .logo-header{
          flex-direction: column;
          margin: 0;
          gap: 20px;
        }
      }

      @media only screen and (max-width: 800px){
        .left-footer{
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
        }

        .left-footer .logo-header{
          flex-direction: row;
        }

        .footer-main{
          flex-direction: column;
          gap: 20px;
        }

        .contact-options{
          margin: 0 !important;
          gap: 5px;
        }

        .contact-options a img{
          height: 35px;
          width: 35px;
        }
      }
      

      @media only screen and (max-width: 500px){
        .left-footer{
          flex-direction: column;
          align-items: flex-start;
        }

        .logo-header{
          flex-direction: row;
          margin: 0;
          gap: 20px;
        }

        .left-footer .logo-header img{
          height: 100px;
          width: 100px;
          margin-bottom: 20px;
        }

        .footer-main, .bottom-right-footer{
          flex-direction: column;
        }

        .left-footer{
          margin-bottom: 30px;
        }

        .right-footer h3{
          font-size: 18px !important;
        }

        .bottom-right-footer{
          gap: 40px;
        }

      }
