*{
    padding: 0;
    margin: 0;

}

body {
    font-family: Arial, Helvetica, sans-serif;


}

.contactHeader{
    top: 0;
    z-index: 1000;
    width: 100%;
    position: sticky;
    background-color: #000;
    color:#fff;
    padding: 10px;
}

@media (max-width: 395px) {
    .contactHeader .phone{
        display:none;

    }

}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
/*::selection{
    background: rgb(0,123,255,0.3);
}*/
.content{
    max-width: 1850px;
    margin: auto;
    padding: 0 30px;
}
.navbar{
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.3s ease;
}
.navbar.sticky{
    background: #1b1b1b;
    padding: 10px 0;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
}
.navbar .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}
.navbar .menu-list{
    display: inline-flex;
}
.menu-list li{
    list-style: none;
}
.menu-list li a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.menu-list li a:hover{
    color: #007bff;
}

.banner{
    position: relative;
    background: url("Images/group_picture1.webp") no-repeat;
    height: 100vh;
    background-size:cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items:center;
    justify-content:center;
}

.banner-btn{
    background-color: #f70000;
    color:#fff;
    font-size: 1em;
    text-decoration: none;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

/* Keyframe animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
    font-family: 'Quicksand', sans-serif;
}
:root{
    --color:#ff282b;
}
section{
    height: 100vh;
    display: flex;
    align-items: center;
    background: #101010;
}
.container{
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}
.grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
}
.left img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .left img{
        display: none;
    }
}
.right > *{
    margin-bottom: 1.1rem;
    color: #fff;
}
.right h4{
    font-weight: 500;
    background: var(--color);
    display: inline-block;
    padding: 5px 15px;
    font-size: 16px;
    border-radius: 4px;
    color: #000;
}
.right h1{
    font-size: 2rem;
    font-weight: 800;
}
.right p{
    text-align: justify;
}
.btn{
    text-decoration: none;
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--color);
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
.btn::after{
    content: "";
    background: var(--color);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    z-index: -1;
    transition: width .5s ease;
}
.btn:hover::after{
    width: 100%;
}
@media (max-width:768px){
    .grid{
        grid-template-columns: 1fr;
    }
}

.about{
    padding: 30px 0;
}
.about .title{
    font-size: 38px;
    font-weight: 700;
}
.about p{
    padding-top: 20px;
    text-align: justify;
}
.icon{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}
.menu-list .cancel-btn{
    position: absolute;
    right: 30px;
    top: 20px;
}
@media (max-width: 1230px) {
    .content{
        padding: 0 60px;
    }
}
@media (max-width: 1100px) {
    .content{
        padding: 0 40px;
    }
}
@media (max-width: 900px) {
    .content{
        padding: 0 30px;
    }
}
@media (max-width: 868px) {
    body.disabled{
        overflow: hidden;
    }
    .icon{
        display: block;
    }
    .icon.hide{
        display: none;
    }
    .navbar .menu-list{
        position: fixed;
        top: 0;
        left: -100vw;
        right: 0;
        width: 100vw;
        max-width: none;
        height: 100vh;
        display: block;
        padding: 40px 0;
        text-align: center;
        background: #222;
        transition: left 0.3s ease;
        z-index: 2000;
    }

    .navbar .menu-list.active {
        left: 0;
    }

    .navbar.show .menu-list{
        left: 0%;
    }
    .navbar .menu-list li{
        margin-top: 45px;
    }
    .navbar .menu-list li a{
        font-size: 23px;
        margin-left: 0;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    .navbar.show .menu-list li a{
        margin-left: 0px;
    }
}
@media (max-width: 380px) {
    .navbar .logo a{
        font-size: 27px;
    }
}

.imgC  {

    background: url('Images/swiftyBack.jpg') center no-repeat;
    background-size:cover;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width:100%;
    min-height: 800px;
    margin-top:-7em;


}

.imgText{
    font-size: 2em;
    background-color: rgba(0,0,0,0.4);
    color: rgba(255,255,255,1);

}

.marginFix{
    margin-top: 15%;
    padding-left: 30px;
}

.Swift{
    color: rgba(255,255,255,0.6);
    font-size: 10vw;
}

.Swift:hover{color: rgba(255,255,255,1);
    transition: ease-in-out 0.8s;

}


/*END NAV CSS*/

/*about css*/
.AboutContainer{
    max-width:1100px;
    margin: 0 auto;
    padding: 1rem 3rem;
    text-align: center;

}

.AboutContainer h1{
    color: #0f4675;
    text-align: center;
    font-size:7vw;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 2rem;

}

.AboutContainer p{
    font-family: 'STIX Two Math', serif;
    line-height: 40px;
    color: #000;
    font-size:1.5rem;
    letter-spacing: 2px;
    padding-bottom: 5%;
}


.AboutContainer h2 {
    color: #777;
    font-size: 2rem;
    font-weight: 400;
}

.image
{
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.backgroundContainer{
    background: url("Images/gradient.png") center no-repeat;
    background-size:cover;

}


.div2{
   /* background: url("Images/UpdateMemType.jpg") center no-repeat;
    background-size:cover;*/
    background-color: #232323;
    color: #fff;
    font-size:30px;
}

.ProfileFloat{float:left;
    padding-left: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-right: 14px;
    border: 1px solid #fff;
    margin-right:70px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.divText{ padding-left:100px;
    padding-top:60px;
    padding-bottom:160px;
    padding-right:100px;
    width: 80%;
    margin-left:40px;
}

.MyIntentionsHeader {text-align: center;
    padding-top:20px;
    font-weight:bold; }
/*end about css*/

.services
{
    overflow: hidden;
    display:flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(#101010,#0f4675 50%, #fff 50%,#fff
    100%);
}

.container
{
    width: 1300px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-top: 3vh;
    padding-bottom: 3vh;
    
}

.container .box
{
    position: relative;
    width: 350px;
    background: #fff;
    padding: 180px 18px 80px;
    box-shadow: 0 15px 45px rgba(0,0,0,.1);
    margin-top:1vh
}

.container .box:before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff282b;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s;
}

.container .box:hover:before
{
  transform: scaleY(1);
    transform-origin:bottom;
    transition: transform 0.5s;

}

.container .box h2
{
    position: absolute;
    left: 40px;
    top: 60px;
    font-size: 4em;
    font-weight: 800;
    z-index: 1;
    opacity: 0.7;
    transition: 0.5s;

}

.container .box:hover h2
{
    opacity:1;
    color: #fff;
    transform: translateY(-40px);

}


.container .box h3
{
    position: relative;
    font-size: 1.5em;
    z-index: 2;
    color: #333;
    transition: 0.5s;
}

.container .box:hover h3
{
    color:#fff;
}
.container .box p
{
    position: relative;
    z-index: 2;
    color: #555;
    transition: 0.5s;
    font-size: 1em;
    font-weight: 600;
}

.btn{
    z-index: 2;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    padding: 10px 10px;
    background: #0f4675;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    transition: background 0.5s;
}

.container .box:hover a
{
    opacity: 1;
    background: #fff;
    color:#0f4675;
}

.container .box:hover h3,
.container .box:hover p
{
    color: #fff;
}


/*END Services CSS*/

/*slideshow css start*/
/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f1f4fd;
  }*/

  /* Styles for the heading */
.slideshow-heading {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    padding-top: 50px;
    color: #333;
    background-color: #f1f4fd;
}
  .first_slideshow_container{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f1f4fd;
  }
  .container_slideshow {
    max-width: 1200px;
    width: 95%;
  }
  .slider-wrapper {
    position: relative;
  }
  .slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    z-index: 5;
    color: #fff;
    display: flex;
    cursor: pointer;
    font-size: 2.2rem;
    background: #000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .slider-wrapper .slide-button:hover {
    background: #404040;
  }
  .slider-wrapper .slide-button#prev-slide {
    left: -25px;
    display: none;
  }
  .slider-wrapper .slide-button#next-slide {
    right: -25px;
  }
  .slider-wrapper .image-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
    font-size: 0;
    list-style: none;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
  }
  .slider-wrapper .image-list .image-item {
    width: 325px;
    height: 400px;
    object-fit: cover;
  }
  .container_slideshow .slider-scrollbar {
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .slider-scrollbar .scrollbar-track {
    background: #ccc;
    width: 100%;
    height: 2px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    position: relative;
  }
  .slider-scrollbar:hover .scrollbar-track {
    height: 4px;
  }
  .slider-scrollbar .scrollbar-thumb {
    position: absolute;
    background: #000;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    cursor: grab;
    border-radius: inherit;
  }
  .slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 8px;
    top: -2px;
  }
  .slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
  }

  .image-slide {
    position: relative;
    list-style: none;
    text-align: center;
}

.caption {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    width: auto;
    text-align: center;
}


  /* Styles for mobile and tablets */
  @media only screen and (max-width: 1023px) {
    .slider-wrapper .slide-button {
      display: none !important;
    }
    .slider-wrapper .image-list {
      gap: 10px;
      margin-bottom: 15px;
      scroll-snap-type: x mandatory;
    }
    .slider-wrapper .image-list .image-item {
      width: 280px;
      height: 380px;
    }
    .slider-scrollbar .scrollbar-thumb {
      width: 20%;
    }
  }

/*Slideshow css end*/

/*Start contact us form css*/
.landing_page * {
    font-family: Nunito, sans-serif;
  }
  
  .landing_page .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
  }
  
  .landing_page .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
  }
  
  .landing_page .responsive-cell-block {
    min-height: 75px;
  }
  
  .landing_page .responsive-container-block.container {
    max-width: 1320px;
    margin-top: 60px;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
    position: relative;
  }
  
  .landing_page .form-box {
    background-color: #151617;
    color: white;
    padding-top: 35px;
    padding-right: 33px;
    padding-bottom: 35px;
    padding-left: 33px;
    max-width: 506px;
  }
  
  .landing_page .text-blk.contactus-head {
    font-size: 30px;
    line-height: 40px;
  }
  
  .landing_page .text-blk.contactus-subhead {
    color: #d4d4d4;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 18px;
    margin-left: 0px;
  }
  
  .landing_page .input {
    width: 100%;
    height: 50px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 18px;
    padding-top: 1px;
    padding-right: 125px;
    padding-bottom: 1px;
    padding-left: 22.5px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: #767676;
    border-right-color: #767676;
    border-bottom-color: #767676;
    border-left-color: #767676;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    background-color: #212223;
    padding: 1px 12.5px 1px 22.5px;
  }
  
  .landing_page .textinput {
    width: 100%;
    height: 233px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    font-size: 18px;
    padding-top: 22px;
    padding-right: 22px;
    padding-bottom: 22px;
    padding-left: 22px;
    background-color: #212223;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: #767676;
    border-right-color: #767676;
    border-bottom-color: #767676;
    border-left-color: #767676;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
  }
  
  .landing_page .submit-btn {
    width: 100%;
    height: 56px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: #146132;
    font-size: 18px;
    font-weight: 600;
    color: white;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: #146132;
    border-right-color: #146132;
    border-bottom-color: #146132;
    border-left-color: #146132;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
  }
  
  .landing_page .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-6.wk-ipadp-6.emial {
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  
  .landing_page .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6.right-one {
    display: flex;
    justify-content: center;
  }
  
  .landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: white;
  }
  
  .landing_page .text-blk.section-subhead {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    max-width: 420px;
    font-size: 18px;
    color: #b6b6b6;
  }
  
  .landing_page .text-blk.section-head {
    font-size: 40px;
    line-height: 55px;
    font-weight: 800;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    max-width: 450px;
  }
  
  .landing_page .img {
    width: 31px;
    height: 31px;
  }
  
  .landing_page .responsive-container-block.big-container {
    background-color: black;
    padding-top: 0px;
    padding-right: 50px;
    padding-bottom: 0px;
    padding-left: 50px;
    position: relative;
  }
  
  .landing_page .bg-img {
    width: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    height: 100%;
    opacity: 0.5;
    object-fit: cover;
  }
  
  @media (max-width: 768px) {
    .landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
      justify-content: center;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 30px;
      margin-left: 0px;
    }
  
    .landing_page .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-6.wk-ipadp-6.emial {
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
      margin: 0 0 40px 0;
    }
  }
  
  @media (max-width: 500px) {
    .landing_page .text-blk.section-head {
      font-size: 26px;
      line-height: 40px;
    }
  
    .landing_page .responsive-container-block.big-container {
      padding-top: 0px;
      padding-right: 20px;
      padding-bottom: 0px;
      padding-left: 20px;
    }
  
    .landing_page .text-blk.section-subhead {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 30px;
      margin-left: 0px;
      font-size: 16px;
    }
  
    .landing_page .form-box {
      padding-top: 30px;
      padding-right: 15px;
      padding-bottom: 30px;
      padding-left: 15px;
    }
  
    .landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
      margin: 0 0 30px 0;
    }
  
    .landing_page .input {
      height: 45px;
    }
  
    .landing_page .text-blk.contactus-head {
      font-size: 24px;
      line-height: 34px;
    }
  }

  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}



/*End contact us form css*/


/*Customer feedback */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.CustomerContainer{
    display: grid;
    height: 100%;
    place-items: center;
    padding: 3vh;
}
::selection{
    background: rgba(23,162,184,0.3);
}
.wrapper{
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.wrapper .box{
    background: #0f4675;
    color:#fff;
    width: calc(33% - 10px);
    padding: 25px;
    border-radius: 3px;
    box-shadow: 2px 4px 8px rgba(0,0,0,0.15);
}
.wrapper .box i.quote{
    font-size: 20px;
    color: #17a2b8;
}
.wrapper .box .content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}
.box .info .name{
    font-weight: 600;
    font-size: 17px;
}
.box .info .job{
    font-size: 16px;
    font-weight: 500;
    color: #17a2b8;
}
.box .info .stars{
    margin-top: 2px;
}
.box .info .stars i{
    color: #17a2b8;
}
.box .content .image{
    height: 75px;
    width: 75px;
    padding: 3px;
    background: #17a2b8;
    border-radius: 50%;
}
.content .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
}
.box:hover .content .image img{
    border-color: #fff;
}
@media (max-width: 1045px) {
    .wrapper .box{
        width: calc(50% - 10px);
        margin: 10px 0;
    }
}
@media (max-width: 702px) {
    .wrapper .box{
        width: 100%;
    }
}

/*end customer feedback*/

/*sign up*/

#SignUp{
    font-size: 20px;
    margin-left: 15px;
    padding: 16px 35px;
    outline: none;
    font-weight: bold;
    color: #808080;
    background: #c9c9c9;
    border: none;
    border-radius: 28px;

}

#SignUp:hover{background: #00ccff;}


/*Footer CSS*/


footer
{
    display: block;
    width: 100%;
    background: #000;
    overflow:hidden;

}

.innerFooter{
    display: flex;
    width: 95%;
    flex-wrap: wrap;
    margin:auto;
    padding: 25px 8px;

}


.footerContent{
    justify-content:center;
    padding: 12px 18px;
    width:22%;
    box-sizing: border-box;
}

.footerContentLinks{
    justify-content:center;
    padding: 12px 18px;
    width:35%;
    box-sizing: border-box;
}


footer h1 {
    font-family:courier, arial, sans-serif;
    padding:10px 0;
    font-size: 22px;
    color:#fff;

}

footer h2 {

    color:#808080;
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 18px;


}
.footerContent p {
    color: #808080;
    font-size: 17px;
    text-align: left;
    line-height: 22px;
}


footer ul { list-style: none;
    color:#fff;
    font-size: 15px;
    letter-spacing: 0.5px;

}

footer ul a{
    text-decoration: none;
    outline: none;
    color: #fff;

}
footer ul a:hover{
    color: #00ccff;
    text-decoration: none;
}

footer ul li {
    padding: 10px 0;
    height: 25px;
}

.StayInTouchContent{
    justify-content:center;
    padding: 12px 18px;
    width:32%;
    box-sizing: border-box;

}
.StayInTouch {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.input{
    min-width: 150px;
    outline: none;
    background: #fff;
    font-size: 16px;
    flex: 1;
    padding: 16px 35px;
    color: #808080;
    border: none;
    border-radius: 28px;

}

.sub{
    font-size: 16px;
    margin-left: 15px;
    padding: 16px 35px;
    outline: none;
    font-weight: bold;
    color: #808080;
    background: #c9c9c9;
    border: none;
    border-radius: 28px;

}

.sub:hover{background: #ff282b;
color:#fff;}

.breakALine{
    display: none;
}
@media (max-width: 568px)
{
    .breakALine{
        display:block;
    }
}




.Copyright {
    text-align:center;
    background: #1b1b1b;
    padding: 15px;
    color: #fff;
    font-size: 15.5px;

}
.items >:hover{ color: #00ccff;}

.fb-page{
    margin-top:30px;
}

/*END Footer CSS*/




/* REVIEWS CSS */


.ReviewsContainer{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.ReviewsBox{
    font-size: 30px;
    padding: 25px;
    font-style: oblique;
    box-shadow: 0 15px 45px rgba(0,0,0,.1);
    margin-bottom: 20px;
}

.h1Rev{
    padding: 20px;
    text-align: center;
    color: #454545;
    background: #fff;
}


/*END REVIEWS CSS*/





@media (max-width:575px)
{
    .Swift{
        font-size: 1em;
    }

}

@media (max-width: 768px)
{
    .footerContent{width:100%;}
    .Swift{
        font-size: 4em;
    }
    .StayInTouchContent{  display: none;}

   /* .imgC  { background: url('Images/SwiftyGymMainBackground-768px.jpg') center no-repeat;}*/


}

@media (max-width: 992px)
{
    .footerContent{width:100%;}

}

@media (max-width: 1200px)
{   .input{
    min-width: 100px;
    background: #fff;
    font-size: 13.6px;
    flex: 1;
    padding: 10px 25px; }

    .imgC  {
       /* background: url("Images/SwiftyGymMainBackground-1200px.jpg") center no-repeat;*/
    }

    .sub{
        font-size: 13px;
        padding: 10px 25px;

    }
    .footerContent{width:60%;}
    /*.imgText{display:none;}*/
    .showcase{flex-wrap:wrap;}

}

/* Use a different background image for screens below 1200px */
@media (max-width: 1200px) {
    .banner {
        background: url("Images/group_picture1_1200px.webp") no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* disables parallax on mobile for better performance */
        height: 80vh; /* optional: reduce height for mobile */
    }
}


.dropdown-container{
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 160px;
    padding: 12px 16px;
    text-align: left;
    z-index: 1;
}



.dropdown {
    position: relative;
    display: inline-block;

}

.dropdown:hover .dropdown-container
{
    display: block;
}


