/* font nikosh */
/* @font-face {
  font-family: 'Nikosh';
  src: url('../fonts/Nikosh.eot');
  src: url('../fonts/Nikosh.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Nikosh.woff2') format('woff2'),
       url('../fonts/Nikosh.woff') format('woff'),
       url('../fonts/Nikosh.ttf') format('truetype'),
       url('../fonts/Nikosh.svg#Nikosh') format('svg');
  font-weight: normal;
  font-style: normal;
} */

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: nikosh;
  scroll-behavior: smooth;
}

/* preloader */

#preloader {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: #3187d8;
  height: 100%;
}

.loaderAnim {
  animation: scrollUpLoader 1s ease;
  display: block;
}

@keyframes scrollUpLoader {
  0% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

.animation-container {
  display: none;
  /* Hide the animation container initially */
}


@-webkit-keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }

  5% {
    opacity: 1;
    top: 0px;
  }

  50.9% {
    opacity: 1;
    top: 0px;
  }

  55.9% {
    opacity: 0;
    top: -10px;
  }
}

@keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }

  5% {
    opacity: 1;
    top: 0px;
  }

  50.9% {
    opacity: 1;
    top: 0px;
  }

  55.9% {
    opacity: 0;
    top: -10px;
  }
}

@-moz-keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }

  5% {
    opacity: 1;
    top: 0px;
  }

  50.9% {
    opacity: 1;
    top: 0px;
  }

  55.9% {
    opacity: 0;
    top: -10px;
  }
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27.5px;
  margin-top: -27.5px;
}

.aline{
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}
.aline a{
  text-decoration: none !important;
}

.button{
  border: 4px solid transparent;
  border-radius: 50px;
  background: 
    linear-gradient(to top, #50C8E1, #2B75BC), 
    linear-gradient(to top,  #2B75BC , #50C8E1); 
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  padding: 15px;
  color: white;
  text-align: center;
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  
}

.button2{
  border: 4px solid transparent;
  border-radius: 50px;
  background: 
    linear-gradient(to top, #87CCB5, #0FAF88), 
    linear-gradient(to top,  #0FAF88 , #87CCB5); 
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  padding: 15px;
  color: white;
  text-align: center;
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  
}
.contant {
  font-family: arial black;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 1rem;
}
.arrow{
  width: 25px;
  transform: rotate(90deg);
  text-align: end;
  margin-left: 20px;
}


.square {
  background: white;
  width: 15px;
  height: 15px;
  float: left;
  top: -10px;
  margin-right: 5px;
  margin-top: 5px;
  position: relative;
  opacity: 0;
  -webkit-animation: enter 6s infinite;
  animation: enter 6s infinite;
}

.enter {
  top: 0px;
  opacity: 1;
}

.square:nth-child(1) {
  -webkit-animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.square:nth-child(2) {
  -webkit-animation-delay: 2.1s;
  -moz-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

.square:nth-child(3) {
  -webkit-animation-delay: 2.4s;
  -moz-animation-delay: 2.4s;
  animation-delay: 2.4s;
  background: #fdc96f;
}

.square:nth-child(4) {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.square:nth-child(5) {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.square:nth-child(6) {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.square:nth-child(8) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.square:nth-child(9) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.clear {
  clear: both;
}

.last {
  margin-right: 0;
}

/* scroll effect css start */
.scrollShow {
  position: relative;
  opacity: 0;
  transform: translateY(150px);
  transition: all 2s ease;
}
.active {
  transform: translateY(0px);
  opacity: 1;
}

/* scroll effect css end */

/* header section css start  */
.heading {
  background-image: linear-gradient(to right,
      #09559a,
      #064c88,
      #064377,
      #073a66,
      #093155);
  height: 100vh;
  position: relative;
}

.navItem {
  display: flex;
  justify-content: space-between;
}

.navItem img {
  width: calc(20px + 5vw);
  padding: 5px;
  filter: drop-shadow(-1px 0px 0px white);
}

.navContactInfo {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-width: 40%;
  color: white;
}

.navContactInfo i {
  margin-inline: 10px;
  font-size: calc(15px + 0.5vw);
}

/* header containte start */
.headercontant {
  display: flex;
  justify-content: space-between;
  height: 90%;
  position: relative;
  z-index: 1;
}

.leftContainer {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leftImg {
  position: relative;
}

.laptop {
  width: calc(165px + 25vw);
}

.mobile {
  width: calc(69px + 6vw);
  position: absolute;
  bottom: 32px;
  right: -70px;
  animation: floating 5s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

.file {
  width: calc(50px + 2.5vw);
  position: absolute;
  bottom: 50px;
  left: 0;
  animation: floatingFile 3s ease-in-out infinite;
}

@keyframes floatingFile {
  0% {
    transform: translate(0, -0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, 0px);
  }
}

.rightContainer {
  display: flex;
  align-items: center;
}

.rightContent {
  color: white;
  text-align: center;
  padding-left: calc(10px + 6vw);
}

.rightContent h1 {
  font-size: calc(20px + 1vw);
  padding-bottom: calc(10px + 1vw);
}

.rightContent p {
  font-size: 20px;
  color: #f9f9f9;
}

.rightBtn {
  padding-top: 20px;
}

.rightBtn button {
  font-size: 20px;
}

img.shape1 {
  position: absolute;
  top: 22%;
  right: 8%;
  opacity: 0.7;
  animation: rotation 8s infinite linear;
}

img.shape2 {
  width: 30px;
  position: absolute;
  bottom: 10%;
  left: 50%;
  opacity: 0.7;
  animation: rotation 8s infinite linear;
}

img.shape3 {
  position: absolute;
  top: 17%;
  left: 31%;
  width: 25px;
  opacity: 0.7;
  animation: rotation 8s infinite linear;
}

img.shape4 {
  position: absolute;
  top: 32%;
  right: 20%;
  animation: rotation 8s infinite linear;
}

img.shape5 {
  position: absolute;
  top: 66%;
  right: 34%;
  animation: rotation 8s infinite linear;
}

img.shape6 {
  position: absolute;
  top: 13%;
  right: 50%;
  animation: rotation 8s infinite linear;
}

img.shape7 {
  position: absolute;
  bottom: 66%;
  left: 8%;
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* header containt end  */

/* header section css end  */


.about {
  background-color: #F9F9F9;
}

.about-us {
  display: flex;
  /* font-family: "nikosh"; */
}
.about-content {
  padding-block: 2rem;
}

.about-heading .h3 {
  margin-bottom: 2rem;
  font-weight: 500;
}

.about-para {
  font-size: calc(15px + .5vw);
}

.about-image {
  margin-block: auto;
}

.about-image img {
  width: 40vw;
  max-width: 600px;
  margin-block: auto;
}

/* why choose us section css */

/* .choosing {
  font-family: "nikosh";
} */

.choosing-heading {
  text-align: center;
}

.choosing-heading p:last-child {
  color: #3f3f3f;
}

.columnsMobile {
  display: flex;
  justify-content: center;
}


.left-img {
  width: 70px;
  height: 70px;
  border-radius: 80px;
  position: absolute;
  margin-left: 110%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  animation: phoneView 4s ease-in-out infinite;
}

@keyframes phoneView {
  0% {
    transform: translate(0, -0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, 0px);
  }
}

#timeing {
  animation: timming 3s ease-in-out infinite;
}

@keyframes timming {
  0% {
    transform: translate(0, -0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, 0px);
  }
}

.whyUsimg {
  width: 54%;
  height: auto;
}

.whyUsimg img {
  height: 35rem;
}

.whyUsBox {
  text-align: center;
}

.whyUsBox h5 {
  font-size: calc(18px + 1vw);
}

.whyUsBox p {
  font-size: calc(12px + 0.5vw);
}

.right-img {
  width: 70px;
  height: 70px;
  border-radius: 80px;
  position: absolute;
  margin-left: -30%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  animation: phoneView 4s ease-in-out infinite;
}

.bg-m-orange {
  background: linear-gradient(45deg, #ff808b, #f79099) !important;
}

/* feature css */

.features {
  /* font-family: "nikosh"; */
  background: #f9f9f9;
  background-position: center;
  background-size: cover;
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/backgroundshap.webp) no-repeat center bottom;
  animation: anim 15s linear infinite alternate;
  overflow: hidden;
}

@keyframes anim {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.5);
  }

}

.main-feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.feature-card {
  text-align: center;
  box-shadow: 0px 4px 12px 2px rgba(0, 0, 0, 0.25);
  width: 300px;
  margin: 10px;
  margin-block: 20px;
  border-radius: 5px;
  padding: 1rem;
  transition: 0.5s all ease-out;
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
  z-index: 1;
}

.feature-card:hover .img-fancy-box {
  width: 100%;
  height: 100%;
  top: 0;
  transition: 0.3s all ease-in;
  border-radius: 0;
  cursor: pointer;
}

.feature-card-img {
  padding-block: 1rem;
}

.img-fancy-box {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%);
  height: 60px;
  width: 70px;
  background-color: #2db1ff;
  border-radius: 43% 57% 72% 28% / 81% 77% 23% 19%;
  z-index: 1;
  transition: 0.3s all ease-out;
}

.feature-card-img img {
  width: 50px;
  z-index: 2;
  position: relative;
}

.feature-card:hover .feature-card-heading {
  position: relative;
  z-index: 2;
  color: #f9f9f9;
}

.feature-card:hover .feature-card-heading {
  position: relative;
  z-index: 2;
  color: #f9f9f9;
}

/* with and without us table*/

.benifit {
  background-color: #f9f9f9;
  padding-block: 3rem;
}

.soft-benifit {
  display: flex;
}

.benifit-card {
  margin: 20px;
}

.benifit-card .table {
  border: 2px solid #c7c7c7;
}

.benifit-card .table {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
}

.benifit-card .table thead tr td {
  font-size: 24px;
  padding-block: 30px;
}

.benifit-card .table tbody tr td {
  padding-block: 30px;
  display: flex;
  align-items: center;
  font-size: calc(14px + .5vw);
}

td .td-icon {
  padding-right: 10px;
  font-size: 36px;
}

.benifit-without .benifit-card .table {
  background-color: #CDEEB8;
}

.benifit-without .benifit-card .table .td-icon {
  color: rgb(6, 165, 54);
}

.benifit-with .benifit-card .table .td-icon {
  color: rgb(211, 35, 12);
}

.benifit-with .benifit-card .table {
  background-color: #FEE5E8;
}

.benifit-card .table .tbody tr:nth-child(odd) {
  background-color: #f8f8f8ad;
}

.benifit-card .table .tbody tr:nth-child(even) {
  background-color: #f8f8f85e;
}

/* out network section start  */
.ourNetwork {
  padding-block: 5rem;
}

.networdHero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.networkCard {
  background-color: #F9F9F9;
  box-shadow: 0px 2px 7px 2px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding-block: 5px;
  border-radius: 5px;
  width: calc(100px + 12vw);
  margin: 10px;
}

.networkCard img {
  width: calc(20px + 5vw);
  padding: 10px;
}

/* out network section end  */

/* fiturse dtls with button show  */
.buttonShowcontainer {
  padding-block: 80px;
}

.buttonBox{
  display: flex;
  justify-content: center;
  font-family: sans-serif;
}

.buttonShow{
  background-color: #ddd;
  margin: 10px;
  text-align: center;
  padding: 15px;
  padding-bottom: 0 !important;
  border-radius: 10px;
  color: black;
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.buttonShow:hover{
  background-color: #bbb;
  transition: all .3s ease;
}
.Btn-active{
  background-color: #2DB1FF;
  position: relative;
  color: white;
}
.Btn-active:hover{
  background-color: #2DB1FF;
}
.Btn-active::after{
  content: " ";
  width: 40px;
  height: 40px;
  background-color: #aaa;
  background-color: #2db1ff;
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translate(-60%);
  rotate: 45deg;
  z-index: -1;
}

.btnShowBox{
  display: flex;
  justify-content: space-around;
  padding-top: 100px;
}
.showDtlsImg:hover{
  transform: scale(1.1);
  transition: all .3s ease;
}
.showDtlsImg {
  width: calc(100px + 22vw);
  overflow: hidden;
  transition: all .3s ease;
}

.showDtlsImg img{
  width: 100%;
  height: auto;
}
.showDtls {
  max-width: 50%;
  padding-block: 1.5rem;
}

.showDtls h3{
  font-weight: 500;
}

.showDtls p {
  font-size: calc(16px + .5vw);
  color: #555;
}

/* banifite section start  */
.banifits {
  background: #f9f9f9;
  padding-block: 80px;
}

.banifitesBox{
  display: flex;
  justify-content: space-between;
}

.banifitCard{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 10px;
  transition: all .3s ease;
}
.banifitCard:hover{
  background-color: #00838D;
  transition: all .3s ease;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.banifitCard:hover .banifitIcon i{
  color: white;
}
.banifitCard:hover h5.card-title {
  color: #fff;
}

.banifitIcon {
  text-align: center;
  padding: 1rem;
}
.banifitIcon i{
  font-size: calc(20px + 3vw);
  color: #00838D;
}
h5.card-title {
  font-weight: bold;
  color: #00838D;
}
p.card-text {
  font-size: calc(13px + .5vw);
  margin-bottom: 35px;
}
a.btn.btn-primary {
  position: absolute;
  bottom: 16px;
}


/* faq section start  */
.faqsection {
  /* background-color: #f9f9f9; */
  padding-bottom: 2rem;
}

.faqImgBox {
  display: flex;
  justify-content: center;
}

.faqImg {
  width: calc(50px + 36vw);
}

.faqImg img {
  width: 100%;
}


/* faq  */
.faq {
  color: #fff;
}

.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}

.accordion-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 2rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 1.2rem;
}

.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.accordion-item-header.active::after {
  content: "\2212";
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 1rem 1rem 1rem 2rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
  font-size: calc(13px + .5vw);
}

.accordion-item-body-content li{
  list-style: none;
}




@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

/* faq section end  */

/* gallery section start  */

:root {
  --theme: black;
}

@media (min-width: 768px) {
  .image-slider-container {
    width: 80%;
    margin: 60px auto;
  }
}

.image-slider-title {
  text-align: center;
  color: black;
  text-decoration: underline;
}

.image-slider-container .image-slider-heading {
  display: flex;
  justify-content: center;
  padding: 15px 15px;
}

.image-slider-container .image-slider-heading h2 {
  font-size: 17px;
  color: #c7c7c7;
}

.image-slider-container .image-slider-heading .swiper-pagination {
  position: relative;
  width: auto;
  padding: 0;
  margin: 0;
  top: 0;
  bottom: 0;
}

.image-slider-container .image-slider-heading .swiper-pagination .swiper-pagination-bullet {
  background-color: #e4e4e4;
  opacity: 100%;
  width: 15px;
  height: 10px;
  border-radius: 100px;
  transition: 0.5s;
  margin: 0px 3px;
}

.image-slider-container .image-slider-heading .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--theme);
  width: 30px;
}

.image-slider-container .swiper {
  position: relative;
}

.image-slider-container .swiper .swiper-slide {
  width: calc(100px + 18vw);
}

.image-slider-container .swiper .swiper-slide .slide-con {
  overflow: hidden;
  height: 220px;
  margin: 0px 0px;
  position: relative;
  border-radius: 10px;
}

.image-slider-container .swiper .swiper-slide .slide-con .slide-details {
  padding: 10px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 10px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  display: none;
}

.image-slider-container .swiper .swiper-slide .slide-con .slide-details .movie-info {
  text-align: left;
}

.image-slider-container .swiper .swiper-slide .slide-con .slide-details .movie-info h2 {
  font-size: 15px;
  padding: 5px 5px 5px 10px;
  color: white;
}

.image-slider-container .swiper .swiper-slide .slide-con .slide-details .movie-info p {
  font-size: 13px;
  margin-right: 0px;
  color: #f9f9f9;
  padding-inline: 10px;
}

.image-slider-container .swiper .swiper-slide .slide-con .slide-details .movie-btns {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.image-slider-container .swiper .swiper-slide .slide-con .slide-details .movie-btns a {
  text-decoration: none;
  color: white;
  padding: 5px 5px;
  font-size: 13px;
  margin: 0px 3px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: white;
}

.image-slider-container .swiper .swiper-slide .slide-con .slide-details .movie-btns a svg {
  font-size: 15px;
}

.image-slider-container .swiper .swiper-slide .slide-con .slide-details .movie-btns a:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.image-slider-container .swiper .swiper-slide .slide-con .slide-details .movie-btns .show-movie:hover {
  color: white;
  background-color: #2a4aff;
  border: 0;
}

.image-slider-container .swiper .swiper-slide .slide-con:hover .slide-details {
  display: flex;
}

.image-slider-container .swiper .swiper-slide .slide-con:hover div.movie-info {
  animation: 30s 1 m;
}

@keyframes m {
  from {
    transform: translateY(-85px);
  }

  1% {
    transform: translateY(60px);
  }

  1.5% {
    transform: translateY(0px);
  }

  2% {
    transform: translateY(20px);
  }

  2.5% {
    transform: translateY(0px);
  }

  to {
    transform: translateY(0px);
  }
}

.image-slider-container .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.6);
  border-radius: 10px !important;
}

/* gallery section end  */

/* our use section start  */
.ourUser {
  background-color: #f9f9f9;
  padding-block: 5rem;
}

.userHeader {
  text-align: center;
}

.content-wrapper {
  padding-top: 5rem;
}

.section .content-wrapper {
  padding-top: 40px;
  padding-top: 6rem;
}

.columns {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.column {
  display: block;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}
.columns.is-vcentered {
  display: flex;
}

.column a img {
  /* filter: saturate(0); */
  opacity: 0.8;
}

.grid-clients a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.grid-clients .client {
  max-height: 95px;
}

.grid-clients.five-grid .column:nth-child(2),
.grid-clients.five-grid .column:nth-child(3),
.grid-clients.five-grid .column:nth-child(4),
.grid-clients.five-grid .column:nth-child(5) {
  border-right: 1px solid #D0D0D0;
}

.grid-clients.five-grid .is-separator {
  border-top: 1px solid #D0D0D0;
}

/* our user section end  */



/* contact us section start  */
.contactHero {
  padding-block: 5rem;
}

.contactHead {
  display: flex;
  justify-content: space-between;
}

.contactCard {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  padding: calc(5px + 1vw);
  width: 300px;
  border-bottom: 2px solid #00C9FF;
  border-radius: 5px;
  margin-bottom: 4rem;
  margin-inline: 10px;
}

.contactCard img {
  width: calc(20px + 3vw);
  margin-bottom: 10px;
}
.contactCard p{
  margin-bottom: 0 !important;
}

.contactCard p a {
  text-decoration: none;
  color: black;
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputBox {
  width: 33rem;
}

.inputBox input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #00C9FF;
  border-radius: 5px;
}

.inputBox input:focus {
  outline: 2px solid #83e4ff;
  transition: all .1s ease-in;
}

.messageBox {
  width: 100%;
}

.message {
  width: 100%;
}

.message textarea {
  width: 100%;
  border: 1px solid #00C9FF;
  border-radius: 5px;
  padding: 10px;
}

.message textarea:focus {
  outline: 2px solid #83e4ff;
  transition: all .1s ease-in;
}

.buttonBox {
  display: flex;
  justify-content: center;
}

button.btn.btn-primary.submit {
  margin-top: 35px;
  padding: 10px 40px;
  background-color: #00C9FF;
  border: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* contact us section end  */

/* go back home button  */
.goHome {
  width: 45px;
  height: 45px;
  background: linear-gradient(to top, #87CCB5, #0FAF88),
              linear-gradient(to top, #0FAF88,#87CCB5);
  background-clip: padding-box,border-box;
  background-origin: padding-box,border-box;
  border: 2px solid transparent;
  border-radius: 10px;
  position: fixed;
  bottom: 25px;
  right: 25px;
}
.backicon {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.backicon i{
  color: white;
  font-size: 2rem;
  text-align: center;
}

/* footer section  */
.footer {
  background-color: #010101;
  padding: 20px;
  text-align: center;
  letter-spacing: 2px;
}

.footer h6 {
  margin-bottom: 0;
  color: #f9f9f9;
}

.footer a {
  color: #f9f9f9;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {

  /* header setction  */
  .laptop {
    width: calc(170px + 13vw);
  }

  .mobile {
    width: calc(30px + 6vw);
    right: -35px;
  }

  .file {
    width: calc(50px + 0.5vw);
    bottom: 20px;
    left: -11px;
  }

  /* about us section  */
  .about-us {
    display: block;
    text-align: justify;
  }

  .about-heading {
    text-align: center;
  }

  .about-image {
    display: none;
  }

  .soft-benifit {
    display: block;
  }

  /* why us section  */
  .columnsMobile {
    display: block;
  }

  .column.is-4 {
    margin-top: 50px !important;
  }

  .responsive {
    display: flex;
    justify-content: center;
  }

  .left-img {
    position: relative;
    margin-left: 0;
    animation: none;
    margin-bottom: 10px;
  }

  .right-img {
    position: relative;
    margin-left: 0;
    animation: none;
    margin-bottom: 10px;
  }

  #timeing {
    animation: none;
  }

  .mobileImgResposnive {
    text-align: center;
    display: flex;
  }

  .whyUsimg {
    padding: 0 !important;
  }

  /* our user  */
  .columns {
    display: flex !important;
  }

  /* network section  */
  .networdHero {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .image-slider-container .swiper {
    margin-left: 45px;
  }

  /* contact form  */
  .form {
    display: block;
  }

  .inputBox {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .headercontant {
    flex-direction: column;
    justify-content: center;
  }

  .leftContainer {
    height: 41%;
  }

  .rightContent {
    padding-left: 0;
  }

  .about-us {
    align-items: center;
    flex-direction: column;
  }
  .about-image img {
    width: 93vw;
}

  .about-heading p{
    text-align: center;
    position: relative;
  }

  .about-heading p::before {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    content: '';
    height: 4px;
    background-color: #383838;
  }

  .about-content {
    text-align: justify;
  }
  
  /* why us section  */
  .columnsMobile {
    display: block;
  }

  .column.is-4 {
    margin-top: 50px !important;
  }

  .responsive {
    display: flex;
    justify-content: center;
  }

  .left-img {
    position: relative;
    margin-left: 0;
    animation: none;
    margin-bottom: 10px;
  }

  .right-img {
    position: relative;
    margin-left: 0;
    animation: none;
    margin-bottom: 10px;
  }

  #timeing {
    animation: none;
  }

  .mobileImgResposnive {
    text-align: center;
    display: flex;
  }

  .whyUsimg {
    padding: 0 !important;
  }

  /* with ueims */
  .soft-benifit {
    justify-content: center;
    flex-direction: column;
  }

  /* show dtls with button  */
  .btnShowBox {
    display: flex;
    align-items: center;
    padding-top: 50px;
    flex-direction: column;
    text-align: center;
  }

  /* banifit card  */
  .banifitesBox {
    flex-direction: column;
    align-items: center;
  }

  .showDtls {
    max-width: none;
    padding-block: 1.5rem;
  }
  .banifitIcon i{
    font-size: calc(20px + 7vw);
    color: #00838D;
  }
  /* our user  */

  .three-grid .column,
  .four-grid .column,
  .five-grid .column {
    border: none !important;
  }

  .is-hidden-mobile {
    display: none !important;
  }

  .columns {
    display: flex;
    flex-wrap: wrap;
  }

  /* contact us  */
  .contactHead {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 399px) {
  .leftContainer {
    justify-content: center;
  }
  .mobile {
    width: calc(50px + 6vw);
    right: -28px;
  }
  .navContact {
    text-align: center;
  }
  .file {
    left: -20px;
  }
}

@media screen and (max-width:320px) {
  .navItem {
    margin-bottom: 2%;
  }

  .navContactInfo {
    display: none;
  }

  .file {
    display: none;
  }

}

@media screen and (max-width:315px) {
  .mobile {
    width: calc(43px + 6vw);
    right: -10px;
  }
  .rightBtn {
    display: flex;
  }
}

/* for larger divice */
@media screen and (max-width:1550){
  .whyUsimg img {
    height: auto;
  }
}