.lnr-layers,
.lnr-store,
.lnr-chart-bars,
.lnr-cog,
.lnr-laptop-phone,
.lnr-select,
.lnr-flag,
.lnr,
.lnr-rocket {
  color: #00b9e8;
  font-size: 76px;
}

.lnr-history,
.lnr-envelope,
.lnr-earth {
  font-size: 36px;
  font-weight: bold;
}

.banner {
  background: #007db7;
  position: relative;
  z-index: 999999;
}

.banner__content {
  padding: 6px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.banner__text {
  flex-grow: 1;
  line-height: 1.4;
  font-family: 'montserrat', sans-serif;
}

.banner__close {
  background: none;
  border: none;
  cursor: pointer;
}

.banner__text,
.banner__close > span {
  color: #ffffff;
}

/* loader */

/* nav */

@keyframes movedown {
  0% {
    transform: translateY(-50px);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
  }
}

.wrapper {
  position: fixed;
  background: #ffffff;
  width: 100%;
  z-index: 99999;
  animation: movedown 1s linear 1;
  animation-fill-mode: forwards;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 3px 0px;
}

.wrapper nav {
  position: relative;
  display: flex;
  margin: auto !important;
  max-width: calc(100%);
  height: 86px;
  align-items: center;
  justify-content: space-around;
}

nav .cont {
  display: flex;
  align-items: center;
}

nav .cont .links {
  margin-left: 300px;
  display: flex;
}

.cont .logo {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-left: -4%;
}

.extra {
  margin-bottom: 10px !important;
}

.cont .links li {
  list-style: none;
  line-height: 70px;
}

.cont .links li .hvr,
.cont .links li label {
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.cont .links li .hvr:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 20px;
  left: 0;
  background-color: #007db7;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.cont .links li label:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: #007db7;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.cont .links li .hvr:hover:after,
.cont .links li label:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.cont .links li a,
.cont .links li label {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 500;
  margin: 9px 17px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.cont .links li a:hover {
  color: #00b9e8 !important;
}

.cont .links li label {
  display: none;
}

.wrapper .search-icon,
.wrapper .menu-icon {
  color: #00b9e8;
  font-size: 28px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}

.wrapper .menu-icon {
  display: none;
}

.wrapper #show-search:checked ~ .search-icon i::before {
  content: '\f00d';
}

.wrapper .search-box {
  position: absolute;
  height: 100%;
  max-width: calc(100% - 50px);
  width: 85%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.wrapper #show-search:checked ~ .search-box {
  opacity: 1;
  pointer-events: auto;
}

.search-box input {
  width: 100%;
  height: 100%;
  border: none;
  margin-left: 10%;
  border-radius: 40px;
  outline: none;
  font-size: 17px;
  color: rgb(0, 0, 0);
  background: #ffffff;
  padding: 0 100px 0 15px;
}

.search-box input::placeholder {
  color: #000000;
}

.search-box .go-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 60px;
  width: 70px;
  background: none;
  border: none;
  outline: none;
  color: rgb(0, 0, 0);
  font-size: 20px;
  cursor: pointer;
}

.wrapper input[type='checkbox'] {
  display: none;
}

/* Dropdown Menu code start */

.cont .links ul {
  position: absolute;
  background: #f1f1f1;
  top: 80px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.cont .links li:hover > ul {
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.cont .links ul li a {
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px !important;
}

.cont .links ul ul {
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}

.cont .links ul li {
  position: relative;
}

.cont .links ul li:hover ul {
  top: 0;
}

/* Responsive code start */

@media screen and (max-width: 1250px) {
  .wrapper nav {
    max-width: 100%;
    padding: 0 20px;
  }
  .wrapper {
    animation: none;
  }
  nav .cont .links {
    margin-left: 30px;
  }
  .cont .links li a {
    padding: 8px 13px;
  }
  .wrapper .search-box {
    width: 75% !important;
    max-width: calc(100% - 100px);
  }
  .wrapper .search-box input {
    padding: 0 100px 0 15px;
  }
}

@media screen and (max-width: 900px) {
  .wrapper .menu-icon {
    display: block;
    color: #000000;
  }
  .wrapper #show-menu:checked ~ .menu-icon i::before {
    content: '\f00d';
  }
  nav .cont .links {
    display: block;
    position: fixed;
    background: #14181f;
    height: 100%;
    width: 100%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    color: #fff;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }
  nav #show-menu:checked ~ .cont .links {
    left: 0%;
  }
  .cont .links li {
    margin: 15px 20px;
  }
  .cont .links li a,
  .cont .links li label {
    line-height: 40px;
    font-size: 20px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
  }
  .cont .links li a .desktop-link {
    display: none;
  }
  /* dropdown responsive code start */
  .cont .links ul,
  .cont .links ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }
  .cont .links #show-features:checked ~ ul,
  .cont .links #show-services:checked ~ ul,
  .cont .links #show-items:checked ~ ul {
    max-height: 120vh;
  }
  .cont .links li a,
  .cont .links li label {
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 500;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .cont .links li .hvr:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 10px;
    left: 0;
    background-color: #007db7;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  .cont .links ul li {
    margin: 7px 20px;
  }
  .cont .links ul li a {
    font-size: 14px;
    line-height: 24px;
    border-radius: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .show-services {
    height: 100%;
  }
  .banner__text {
    font-size: 12px;
  }
  .search-img {
    padding-top: 80% !important;
  }
  .SearchBar {
    padding-bottom: 0% !important;
  }
  .wrapper nav {
    padding: 0 0px;
    justify-content: space-between !important;
  }
  .cont .logo a {
    font-size: 27px;
  }
  .wrapper .search-box {
    width: 65% !important;
    max-width: calc(100% - 70px);
  }
  .wrapper .search-box .go-icon {
    font-size: 20px !important;
    margin-right: -30% !important;
  }
  .wrapper .menu-icon {
    color: #202020 !important;
  }
  .cont .links li a,
  .cont .links li label {
    color: rgb(255, 255, 255) !important;
    font-size: 14px;
    font-weight: 500;
    margin: 9px 17px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .depthLink li {
    font-size: 14px;
  }
  .wrapper .search-box input {
    padding-right: 30px;
    font-size: 14px !important;
  }
  .cont .links li .hvr:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 10px;
    left: 0;
    background-color: #007db7;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  .cont .links li a .desktop-link {
    display: none;
  }
  .cont .links li a .arrw {
    margin-top: -100% !important;
  }
  .enquiry {
    height: 135% !important;
    width: 75%;
    margin: auto;
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }
  .enquiry-form {
    margin-top: -10% !important;
  }
  .address {
    margin-top: -40% !important;
  }
  .slider {
    width: 500px !important;
    height: 140px;
    position: relative;
    background: #ffffff;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
    display: flex;
    overflow: hidden;
  }
  .slide {
    height: 140px;
    display: flex;
    align-items: center !important;
    animation: slideshow 20s linear infinite;
  }
  .slide img {
    width: 50%;
    height: 70px;
    padding: 0 30px 0 30px;
  }
  @keyframes slideshow {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .slider::before,
  .slider::after {
    height: 100px;
    width: 200px;
    position: absolute;
    content: '';
    z-index: 2;
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
}

.enquiry {
  width: 75%;
  margin: auto;
  margin-bottom: -40% !important;
}

#content img {
  z-index: -1 !important;
}

.wraper {
  width: 100vw;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider {
  width: 1200px;
  height: 140px;
  position: relative;
  background: #ffffff;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
  display: flex;
  overflow: hidden;
}

.slide {
  height: 140px;
  display: flex;
  margin: auto;
  justify-content: space-evenly;
  align-items: center;
  /* animation: slideshow 20s linear infinite;*/
}

.slide img {
  margin-right: 5%;
  width: 100%;
  height: 65%;
  padding: 0 30px 0 30px;
}

@keyframes slideshow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.slider::before,
.slider::after {
  height: 100px;
  width: 200px;
  position: absolute;
  content: '';
  z-index: 2;
}

.slider::before {
  left: 0;
  top: 0;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

/* testimonials */

.test {
  position: relative;
  width: 100%;
  min-height: 86vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1a1a1a;
  overflow: hidden;
}

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 380px;
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  background-color: #fff !important;
  filter: blur(2px);
}

.swiper-slide-active {
  filter: blur(0px);
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none !important;
}

.bgslide {
  overflow: hidden;
}

.bgslide .bgs {
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
}

.bgslide .bgs section {
  width: 20%;
  background-size: cover !important;
  float: left;
}

@keyframes slide {
  0% {
    left: 0;
  }
  20% {
    left: 0;
  }
  25% {
    left: -100%;
  }
  45% {
    left: -100%;
  }
  50% {
    left: -200%;
  }
  70% {
    left: -200%;
  }
  75% {
    left: -300%;
  }
  95% {
    left: -300%;
  }
  100% {
    left: -400%;
  }
}

/* Glider */

.light {
  color: white !important;
  font-weight: 500;
}

.dark {
  font-weight: 500;
  color: black !important;
}

.rotate {
  transform-style: preserve-3d;
  transition: transform 5s linear;
}

.rotate:hover {
  transform: rotate(360deg);
}

/* Testi 
.testimonialBox {
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px;
    padding-top: 70px;
    color: #555;
}

.testimonialBox .quote {
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: .3;
}

.testimonialBox .details {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonialBox .details .cimg {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.testimonialBox .details .cimg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonialBox .details h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #14181f;
    line-height: 1.2em;
}

.testimonialBox .details h3 span {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #007DB7;
    line-height: 1.2em;
}


.testim {
    width: 100%;
    position: relative;
    top: 100%;
    transform: translateY(10%);
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .arrow:hover {
    color: #0e12ea;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgb(44, 44, 44);
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #0e12ea;
    border-color: #0e12ea;
}

.testim .dots .dot.active {
    animation: testim-scale .5s ease-in-out forwards;
}

.testim .cont {
    position: relative;
    overflow: hidden;
}

.person {
    font-size: 24px !important;
}

.profession {
    font-size: 18px !important;
}

.testim .cont>div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont>div.inactive {
    opacity: 1;
}

.testim .cont>div.active {
    position: relative;
    opacity: 1;
}

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div h2 {
    color: #0e1dea;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: rgb(2, 2, 2);
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    animation: testim-show .5s ease-in-out forwards;
}

.testim .cont div.active h2 {
    animation: testim-content-in .4s ease-in-out forwards;
}

.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
    animation: testim-hide .5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
    animation: testim-content-out .4s ease-in-out forwards;
}

.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }
    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }
    70% {
        box-shadow: 0px 0px 10px 5px #58a0ff;
    }
    100% {
        box-shadow: 0px 0px 0px 0px #0052cc;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}







@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}

@media all and (max-width: 500px) {
    .testim .arrow {
        font-size: 1.5rem;
    }
    .testim .cont div p {
        line-height: 25px;
    }
}
*/

.view-box {
  width: 900px;
  height: 360px;
  margin-bottom: 10%;
  border-radius: 20px;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 15px 20px rgba(88, 88, 88, 0.4);
}

#test {
  display: flex;
  transition: 0.5s;
}

.user {
  width: 900px;
  text-align: center;
  padding: 20px 70px;
  box-sizing: border-box;
  background: #ffffff;
}

.user img {
  width: 120px;
  border-radius: 50%;
  margin-top: 5%;
  border: 7px solid #b6b6b6;
  position: relative;
}

.user p {
  font-size: 18px;
  line-height: 30px;
  margin: 35px 0 30px;
}

.user h3 {
  font-size: 22px;
  margin-bottom: 5%;
  line-height: 24px;
}

.user h1 {
  font-size: 26px;
  margin-left: 20%;
  margin-top: -9%;
  text-align: left;
}

.controls {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.controls span {
  width: 15px;
  height: 15px;
  background: linear-gradient(#3b91f3, #1faeff);
  border-radius: 15px;
  margin: 5px 5px;
  cursor: pointer;
  transition: 0.5s;
}

.controls .active {
  width: 45px !important;
}
/* Form */
.page-content {
  width: 80%;
  margin: auto;
  background: #f2f2f2 !important;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
}
.form-v10-content {
  background: #fff;
  width: 900px;
  border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  margin: 95px 0;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}
.form-v10-content .form-detail {
  position: relative;
  width: 100%;
  display: flex;
  display: -webkit-flex;
}
.form-v10-content .form-detail h2 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 34px;
  padding: 33px 50px 0px 60px;
}
.form-v10-content .form-detail .form-left {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 100%;
}
.form-v10-content .form-detail .form-left h2 {
  color: #2271dd;
}
.form-v10-content .form-detail .form-right {
  width: 100%;
  background: #00bae8b4;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.form-v10-content .form-detail .form-right h2 {
  color: rgb(0, 0, 0);
}
.form-v10-content .form-detail .form-group {
  display: flex;
  display: -webkit-flex;
}
.form-v10-content .form-detail .form-row {
  position: relative;
  margin-bottom: 24px;
  padding-left: 60px;
  padding-right: 50px;
}
.form-v10-content .form-detail .form-left .form-group .form-row.form-row-1 {
  width: 50%;
  padding: 0 12px 0 60px;
}
.form-v10-content .form-detail .form-left .form-group .form-row.form-row-2 {
  width: 50%;
  padding: 0 50px 0 12px;
}
.form-v10-content .form-detail .form-left .form-group .form-row.form-row-3 {
  width: 73%;
  padding: 0 12px 0 60px;
}
.form-v10-content .form-detail .form-left .form-group .form-row.form-row-4 {
  width: 50%;
  padding: 0 50px 0 12px;
}
.form-v10-content .form-detail .form-right .form-group .form-row.form-row-1 {
  width: 50%;
  padding: 0 12px 0 60px;
}
.form-v10-content .form-detail .form-right .form-group .form-row.form-row-2 {
  width: 100%;
  padding: 0 50px 0 12px;
}
.form-v10-content .form-detail select,
.form-v10-content .form-detail input {
  width: 100%;
  padding: 11.5px 15px 15px 15px;
  border: 1px solid transparent;
  background: transparent;
  appearance: unset;
  -moz-appearance: unset;
  -webkit-appearance: unset;
  -o-appearance: unset;
  -ms-appearance: unset;
  outline: none;
  -moz-outline: none;
  -webkit-outline: none;
  -o-outline: none;
  -ms-outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.form-v10-content .form-detail select {
  background: 0 0;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.form-v10-content .form-detail .form-left select {
  color: rgb(63, 63, 63);
}
.form-v10-content .form-detail .form-right select {
  color: #000000;
}
.form-v10-content .form-detail .select-btn {
  z-index: 0;
  position: absolute;
  top: 30%;
  right: 11.5%;
  font-size: 18px;
}
.form-v10-content .form-detail .form-left .select-btn {
  color: rgb(63, 63, 63);
}
.form-v10-content .form-detail .form-right .select-btn {
  color: #f2f2f2;
}
.form-v10-content .form-detail .form-group .form-row.form-row-4 .select-btn {
  top: 20%;
  right: 26%;
}
.form-v10-content
  .form-detail
  .form-right
  .form-group
  .form-row.form-row-2
  .select-btn {
  top: 20%;
  right: 19%;
}
.form-v10-content .form-detail .form-left input {
  color: #000;
}
.form-v10-content .form-detail .form-right input {
  color: rgb(0, 0, 0) !important;
}
textarea {
  width: 100%;
}

.form-v10-content .form-detail .form-left input,
.form-v10-content .form-detail .form-left select,
.form-v10-content .form-detail .form-left textarea {
  border: 1px solid #ccc;
}
.form-v10-content .form-detail .form-left input:focus,
.form-v10-content .form-detail .form-left select:focus {
  border-bottom: 1px solid #999;
}
.form-v10-content .form-detail .form-right input,
.form-v10-content .form-detail .form-right select {
  border-bottom: 1px solid;
  border-bottom-color: rgb(255, 255, 255);
}
.form-v10-content .form-detail .form-right input:focus,
.form-v10-content .form-detail .form-right select:focus {
  border-bottom: 1px solid rgb(255, 255, 255);
}
.form-v10-content .form-detail .form-right select option {
  background: #ffffff;
}
.form-v10-content .form-detail .form-checkbox {
  margin-top: 37px;
  padding: 0 50px 0 60px;
  position: relative;
}
.form-v10-content .form-detail .form-checkbox input {
  position: absolute;
  opacity: 0;
}
.form-v10-content .form-detail .form-checkbox .checkmark {
  position: absolute;
  top: 1px;
  left: 60px;
  height: 15px;
  width: 15px;
  border: 1px solid #000000;
  cursor: pointer;
}
.form-v10-content .form-detail .form-checkbox .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 3px;
  height: 8px;
  border: 1px solid rgb(0, 0, 0);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}
.form-v10-content
  .form-detail
  .form-checkbox
  input:checked
  ~ .checkmark::after {
  display: block;
}
.form-v10-content .form-detail .form-checkbox p {
  margin-left: 34px;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}
.form-v10-content .form-detail .form-checkbox .text {
  font-weight: 400;
  color: rgb(0, 0, 0);
  text-decoration: underline;
}
.form-v10-content .form-detail .form-right .form-row-last {
  padding-left: 60px;
  margin: 44px 0 10px;
}
.form-v10-content .form-detail .form-left .register {
  background: #fff;
  border-radius: 25px;
  -o-border-radius: 25px;
  -ms-border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 6px 17px 0px rgba(0, 0, 0, 0.15);
  width: 180px;
  border: none;
  margin: 60px 70px 50px 360px;
  cursor: pointer;
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 18px;
  transition: ease-in 400ms;
}
.form-v10-content .form-detail .form-left .register:hover {
  background: rgb(17, 140, 255);
  transition: ease-in 400ms;
  color: white;
}
.form-v10-content .form-detail .form-right .form-row-last input {
  padding: 12.5px;
}
.form-v10-content .form-detail .form-left input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgb(63, 63, 63);
  font-size: 16px;
}
.form-v10-content .form-detail .form-left input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgb(63, 63, 63);
  font-size: 16px;
}
.form-v10-content .form-detail .form-left input:-ms-input-placeholder {
  /* IE 10+ */
  color: rgb(63, 63, 63);
  font-size: 16px;
}
.form-v10-content .form-detail .form-left input:-moz-placeholder {
  /* Firefox 18- */
  color: rgb(63, 63, 63);
  font-size: 16px;
}
.form-v10-content .form-detail .form-right input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000000;
  font-size: 16px;
}
.form-v10-content .form-detail .form-right input::-moz-placeholder {
  /* Firefox 19+ */
  color: #f2f2f2;
  font-size: 16px;
}
.form-v10-content .form-detail .form-right input:-ms-input-placeholder {
  /* IE 10+ */
  color: #f2f2f2;
  font-size: 16px;
}
.form-v10-content .form-detail .form-right input:-moz-placeholder {
  /* Firefox 18- */
  color: #f2f2f2;
  font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 1199px) {
  .form-v10-content {
    margin: 95px 20px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .form-v10-content .form-detail .form-group {
    flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
  }
  .form-v10-content .form-detail .form-left .form-group .form-row.form-row-1,
  .form-v10-content .form-detail .form-left .form-group .form-row.form-row-2,
  .form-v10-content .form-detail .form-left .form-group .form-row.form-row-3,
  .form-v10-content .form-detail .form-left .form-group .form-row.form-row-4,
  .form-v10-content .form-detail .form-right .form-group .form-row.form-row-1,
  .form-v10-content .form-detail .form-right .form-group .form-row.form-row-2 {
    width: auto;
    padding: 0 50px 0 60px;
  }
  .form-v10-content .form-detail .select-btn,
  .form-v10-content
    .form-detail
    .form-left
    .form-group
    .form-row.form-row-4
    .select-btn,
  .form-v10-content
    .form-detail
    .form-right
    .form-group
    .form-row.form-row-2
    .select-btn {
    right: 15%;
  }
}
@media screen and (max-width: 767px) {
  .form-v10-content .form-detail {
    flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
  }
  .form-v10-content .form-detail .form-right {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
  }
  .form-v10-content .form-detail .form-left {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .form-v10-content {
    width: 376px;
  }
  .form-v10-content .form-detail .form-group {
    flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
  }
  .form-v10-content .form-detail .form-row,
  .form-v10-content .form-detail .form-left .form-group .form-row.form-row-1,
  .form-v10-content .form-detail .form-left .form-group .form-row.form-row-2,
  .form-v10-content .form-detail .form-left .form-group .form-row.form-row-3,
  .form-v10-content .form-detail .form-left .form-group .form-row.form-row-4,
  .form-v10-content .form-detail .form-right .form-group .form-row.form-row-1,
  .form-v10-content .form-detail .form-right .form-group .form-row.form-row-2 {
    width: auto;
    padding: 0 30px;
  }
  .form-v10-content .form-detail .select-btn,
  .form-v10-content
    .form-detail
    .form-left
    .form-group
    .form-row.form-row-4
    .select-btn,
  .form-v10-content
    .form-detail
    .form-right
    .form-group
    .form-row.form-row-2
    .select-btn {
    right: 15%;
  }
  .form-v10-content .form-detail h2 {
    padding: 33px 30px 0px 30px;
  }
  .form-v10-content .form-detail .form-checkbox {
    padding: 0 30px;
  }
  .form-v10-content .form-detail .form-checkbox .checkmark {
    left: 30px;
  }
  .form-v10-content .form-detail .form-left .form-row-last {
    margin-left: -90% !important;
  }
}

.SearchBar {
  display: flex;
  margin-bottom: 5px !important;
}
.SearchBar input {
  margin-top: 8% !important;
  margin: auto;

  border-width: 1px;
  width: 664px;
  height: 40px;
  border-radius: 5px;
  border-color: #0052cc;
}
.search-img {
  margin-top: 20% !important;
  margin: auto;
}
.sbutton {
  margin-bottom: 7% !important;
}

.carousel {
  background: #eee;
}

.carousel-cell {
  width: 100% !important;
  height: 700px;
}

/* cell number */

.carousel-cell:before {
  display: block;
  color: white;
}
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

@media screen and (max-width: 768px) {
  .flickity-button {
    display: none;
  }
}

.flickity-button {
  visibility: hidden;
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  display: none;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
