@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-clr: black;
  --secondary-clr: #2e9aff;
  --prm-bg-color: #f2f7f8;
  --prm-txt-color: #202020;
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --fs: 14px;
  --h1s: 34px;
  --h2s: 24px;
  --h3s: 20px;
  --h4s: 18px;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: var(--fs);
  background-color: white;
  letter-spacing: 0.4px;
  color: var(--prm-txt-color);
  line-height: 1.5;
}
body::-webkit-scrollbar {
  width: 1em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  /* background-color: darkgrey; */
  background-color: #c2e9fb;
  outline: 1px solid #a1c4fd;
  border-radius: 4rem;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

/*===== Firefox ====== */
input[type=number] {
-moz-appearance: textfield;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  font-size: var(--h1s);
  line-height: 52px;
}

h2 {
  font-size: var(--h2s);
  color: var(--primary-clr);
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-bottom: 20px;
}

h3 {
  font-size: var(--h3s);
  line-height: 1.5;
  font-weight: 700;
}

h4 {
  font-size: var(--h4s);
  font-weight: 700;
}

img {
  width: 100%;
}



/* =====nav bar====== */

.heading2 h2{
  color: var(--prm-txt-color);
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.p-tb {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.fixed-header {
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.986);
  box-shadow: 0px 0px 10px -1px rgba(255, 255, 255, 0.986);
  min-height: 64px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
}

.fixed-header.fixed-nav {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  border-radius: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.dis-flex {
  display: flex !important;
}

.logo {
  overflow: hidden;
  max-height: 100%;
  max-width: 167px;
  background-color: transparent;
}

.logo .img-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-and-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-dist {
  flex: 1 1 auto !important;
}

.primary-menu {
  display: none;
  position: relative;
}

.primary-menu .navigation {
  position: relative;
  margin: 0;
}

.primary-menu .navigation {
  display: flex;
  justify-content: flex-end;
}

.primary-menu .navigation > li {
  position: relative;
  margin-left: 20px !important;
  display: flex;
  align-items: center;
}

.primary-menu .navigation > li > ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 120%;
  left: 0px;
  width: 220px;
  /* display: none; */
  z-index: 100;
  transition: all 0.4s ease;
  padding: 20px 15px;
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.primary-menu .navigation > li.dropdown::after {
  /* position: absolute; */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  left: 0px;
  top: 0px;
  display: block;
  padding-left: 4px;
}

.primary-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  /* left: 0px; */
  top: 100%;
  display: block;
  transform: rotateX(0deg);
}

.primary-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  line-height: 30px;
  transition: all 0.5s ease;
  color: black;
  padding: 17px 0px;
}
.primary-menu .navigation > li > a:hover {
  color: var(--primary-clr);
}

.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
}

.primary-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 5px 16px;
  line-height: 24px;
  font-weight: 600;
  font-size: 15px;
  color: #7a7a7a;
  transition: all 0.5s ease;
}

.primary-menu .navigation > li > ul > li > a::before {
  position: absolute;
  /* content: "//"; */
  /* visibility: visible; */
  left: 0px;
  top: 5px;
  /* opacity: 0; */
  color: #7a7a7a;
  transition: all 0.5s ease;
}

.primary-menu .navigation > li > ul > li:hover > a {
  padding-left: 35px;
  color: var(--primary-clr);
}

.primary-menu .navigation > li > ul > li:hover > a::before {
  opacity: 1;
  left: 10px;
  color: var(--primary-clr);
}

.auth-btns {
  margin-left: 15px;
}


/*====== aside ======== menu */

.nav-btns {
  display: block;
}

#nav-aside {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(255, 255, 255);
  max-width: 360px;
  width: 100%;
  padding: 80px 20px;
  overflow-y: scroll;
  z-index: 99;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.4s all cubic-bezier(0.77, 0, 0.18, 1);
  transition: 0.4s all cubic-bezier(0.77, 0, 0.18, 1);
}

#nav-aside.active {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.nav-aside-menu li a {
  display: block;
  padding: 15px 0px;
  color: var(--prm-txt-color);
  border-bottom: 1px solid #9e9e9e4f;
}

.nav-aside-menu li a:hover,
.nav-aside-menu li a:focus {
  color: var(--primary-clr);
}

.nav-aside-menu li.aside-has-dropdown > a {
  cursor: pointer;
}

.nav-aside-menu li.aside-has-dropdown > a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  float: right;
  color: var(--prm-txt-color);
  font-weight: bold;
}

.nav-aside-menu li.aside-has-dropdown > ul {
  display: none;
  margin-left: 30px;
}

.nav-aside-menu li.aside-has-dropdown.active > ul {
  display: block;
}

.nav-aside-menu li.aside-has-dropdown > ul a {
  padding: 15px;
}

.nav-close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: transparent;
  border: none;
}

.nav-close span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav-close span:before,
.nav-close span:after {
  content: "";
  display: block;
  width: 30px;
  background-color: #2a2a2a;
  height: 2px;
}

.nav-close span:before {
  -webkit-transform: translateY(0px) rotate(-135deg);
  -ms-transform: translateY(0px) rotate(-135deg);
  transform: translateY(0px) rotate(-135deg);
}

.nav-close span:after {
  -webkit-transform: translateY(-2px) rotate(135deg);
  -ms-transform: translateY(-2px) rotate(135deg);
  transform: translateY(-2px) rotate(135deg);
}

.nav-btns {
  float: right;
  padding: 10px 0px;
}

.nav-btns > button {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  line-height: 50px;
  text-align: center;
  border: none;
  background: transparent;
}

/* =====page-header-section */

.page-hero-section{
  background-image: url('../images/headerimgn.png');
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  height: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  text-align: center;
  background-position-y: center;
}

.page-hero-text{
  background-color: #ffffff38;
  padding: 2rem;
  border-radius: 10px;
}

.page-hero-text h1{
  color: white;
}

/* ======= contact-area-section ======= */

.contact-area-section{
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.contact-item{
    display: flex;
    align-items: center;
    background: linear-gradient(104deg, rgba(198,63,133,0.9) 34%, rgba(156,73,152,0.9) 100%);
    border-radius: 10px;
    padding: 20px;
    min-height: 200px;
}

.contact-icon{
    margin: 0 auto;
    margin-right: 10px;
    text-align: center;
}

.contact-icon-box{
    height: 50px;
    width: 50px;
    font-size: 20px;
    color: var(--primary-clr);
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content{
    width: 80%;
    text-align: left;
}

.contact-content a{
  color: white;
}

/* ===== form ======= */

button,
label {
  cursor: pointer;
}

select {
  appearance: none;
}

/* Remove native arrow on IE */
select::-ms-expand {
  display: none;
}

/*Remove dotted outline from selected option on Firefox*/
/*https://stackoverflow.com/questions/3773430/remove-outline-from-select-box-in-ff/18853002#18853002*/
/*We use !important to override the color set for the select on line 99*/
select:-moz-focusring {
  color: transparent !important;
}

textarea {
  resize: none;
}


/* FORM ELEMENTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.my-form h2 {
  text-align: center;
}

.my-form li,
.my-form .grid > *:not(:last-child) {
  margin-bottom: 1.5rem;
}

.my-form select,
.my-form input,
.my-form textarea,
.my-form button {
  width: 100%;
  line-height: 1.5;
  padding: 15px 10px;
  border: 1px solid var(--primary-clr);
  border-radius: 4px;
  /* color: var(--white); */
  background: var(--bgFormEls);
  transition: background-color 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25),
    transform 0.4s cubic-bezier(0.57, 0.21, 0.69, 1.25);
}


.my-form .contact-btn{
  width: auto;
  padding: 0;
  border: none;
  margin-bottom: 0;
}

.my-form .contact-btn2{
  margin: 0 10px;
}

.my-form textarea {
  height: 170px;
}

.my-form ::placeholder {
  color: inherit;
  /*Fix opacity issue on Firefox*/
  opacity: 1;
}

.my-form select:focus,
.my-form input:focus,
.my-form textarea:focus,
.my-form button:enabled:hover,
.my-form button:focus,
.my-form input[type="checkbox"]:focus + label {
  background: var(--bgFormElsFocus);
  outline: none;
}

.my-form select:focus,
.my-form input:focus,
.my-form textarea:focus {
  transform: scale(1.02);
}

.my-form *:required,
.my-form select {
  background-repeat: no-repeat;
  background-position: center right 12px;
  background-size: 15px 15px;
}

.my-form *:required {
  background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/asterisk.svg);  
}

.my-form select {
  background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/down.svg);
}

.my-form *:disabled {
  cursor: default;
  filter: blur(2px);
}


/* FORM BTNS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.my-form .required-msg {
  display: none;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/162656/asterisk.svg)
    no-repeat center left / 15px 15px;
  padding-left: 20px;
}

.my-form .btn-grid {
  position: relative;
  overflow: hidden;
  transition: filter 0.2s;
}

/* .contact-btn{
  background: linear-gradient(104deg, rgba(198,63,133,0.9) 34%, rgba(156,73,152,0.9) 100%);
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
  color: white;
} */

.my-form button {
  font-weight: bold;
}

.my-form button > * {
  display: inline-block;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}

/* .my-form button .back {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-110%, -50%);
}

.my-form button:enabled:hover .back,
.my-form button:focus .back {
  transform: translate(-50%, -50%);
} */

/* .my-form button:enabled:hover .front,
.my-form button:focus .front {
  transform: translateX(110%);
} */


/* CUSTOM CHECKBOX
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.my-form input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.my-form input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  padding-left: 2rem;
  transition: background 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
}

.my-form input[type="checkbox"] + label::before,
.my-form input[type="checkbox"] + label::after {
  content: '';
  position: absolute;
}

.my-form input[type="checkbox"] + label::before {
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary-clr);
  border-radius: 4px;
}

.my-form input[type="checkbox"]:checked + label::before {
  background: var(--red);
}

.my-form input[type="checkbox"]:checked + label::after {
  left: 7px;
  top: 7px;
  width: 6px;
  height: 14px;
  border-bottom: 2px solid red;
  border-right: 2px solid red;
  transform: rotate(45deg);
}


/*======== footer section ========*/

.new_footer_area {
    background-color: rgb(0, 0, 0);
  }
  
  .new_footer_top {
    padding: 80px 0px 20px;
    position: relative;
    overflow-x: hidden;
  }
  .footer_bottom {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #7f88a6;
    padding: 10px 0px;
  }
  
  .text-right p{
    margin: 0px;
    color: rgb(255, 255, 255);
    font-weight: 500;
  }
  
  .Aq-content p{
    text-align: justify;
  }
  
  .footer-head span{
    width: 25%;
    height: 3px;
    display: block;
    margin: 10px 0px 0px;
    background: rgb(236,88,17);
    background: linear-gradient(104deg, rgba(236,88,17,1) 43%, rgba(246,172,2,1) 100%);
  
  }
  
  .new_footer_top .company_widget p {
    font-weight: 300;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 20px;
  }
  .new_footer_top .company_widget .f_subscribe_two .btn_get {
    border-width: 1px;
    margin-top: 20px;
  }
  .btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
  }
  .btn_get:hover {
    color: #fff;
    background: #6754e2;
    border-color: #6754e2;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  .social-nav {
    padding: 0;
    list-style: none;
    display: inline-block;
    margin: 10px auto;
  }
  .social-nav li {
    display: inline-block;
  }
  .social-nav a {
    display: inline-block;
    width: 48px;
    height: 48px;
    font-size: 20px;
    color: #FFF;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    line-height: 48px;
    background: #000;
    position: relative;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  
  .model-2 a {
    overflow: hidden;
    font-size: 26px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin: 0 5px;
  }
  
  .model-2 a:hover {
    background: #fff;
    text-shadow: 0px 0px #d5d5d5, 1px 1px #d5d5d5, 2px 2px #d5d5d5, 3px 3px #d5d5d5, 4px 4px #d5d5d5, 5px 5px #d5d5d5, 6px 6px #d5d5d5, 7px 7px #d5d5d5, 8px 8px #d5d5d5, 9px 9px #d5d5d5, 10px 10px #d5d5d5, 11px 11px #d5d5d5, 12px 12px #d5d5d5, 13px 13px #d5d5d5, 14px 14px #d5d5d5, 15px 15px #d5d5d5, 16px 16px #d5d5d5, 17px 17px #d5d5d5, 18px 18px #d5d5d5, 19px 19px #d5d5d5, 20px 20px #d5d5d5, 21px 21px #d5d5d5, 22px 22px #d5d5d5, 23px 23px #d5d5d5, 24px 24px #d5d5d5, 25px 25px #d5d5d5, 26px 26px #d5d5d5, 27px 27px #d5d5d5, 28px 28px #d5d5d5, 29px 29px #d5d5d5, 30px 30px #d5d5d5;
  }
  .model-2 .twitter {
    background: #00ACED;
    text-shadow: 0px 0px #0087ba, 1px 1px #0087ba, 2px 2px #0087ba, 3px 3px #0087ba, 4px 4px #0087ba, 5px 5px #0087ba, 6px 6px #0087ba, 7px 7px #0087ba, 8px 8px #0087ba, 9px 9px #0087ba, 10px 10px #0087ba, 11px 11px #0087ba, 12px 12px #0087ba, 13px 13px #0087ba, 14px 14px #0087ba, 15px 15px #0087ba, 16px 16px #0087ba, 17px 17px #0087ba, 18px 18px #0087ba, 19px 19px #0087ba, 20px 20px #0087ba, 21px 21px #0087ba, 22px 22px #0087ba, 23px 23px #0087ba, 24px 24px #0087ba, 25px 25px #0087ba, 26px 26px #0087ba, 27px 27px #0087ba, 28px 28px #0087ba, 29px 29px #0087ba, 30px 30px #0087ba;
  }
  .model-2 .twitter:hover {
    color: #00ACED;
  }
  .model-2 .facebook {
    background: #3B579D;
    text-shadow: 0px 0px #2d4278, 1px 1px #2d4278, 2px 2px #2d4278, 3px 3px #2d4278, 4px 4px #2d4278, 5px 5px #2d4278, 6px 6px #2d4278, 7px 7px #2d4278, 8px 8px #2d4278, 9px 9px #2d4278, 10px 10px #2d4278, 11px 11px #2d4278, 12px 12px #2d4278, 13px 13px #2d4278, 14px 14px #2d4278, 15px 15px #2d4278, 16px 16px #2d4278, 17px 17px #2d4278, 18px 18px #2d4278, 19px 19px #2d4278, 20px 20px #2d4278, 21px 21px #2d4278, 22px 22px #2d4278, 23px 23px #2d4278, 24px 24px #2d4278, 25px 25px #2d4278, 26px 26px #2d4278, 27px 27px #2d4278, 28px 28px #2d4278, 29px 29px #2d4278, 30px 30px #2d4278;
  }
  .model-2 .facebook:hover {
    color: #3B579D;
  }
  .model-2 .google-plus {
    background: #DD4A3A;
    text-shadow: 0px 0px #c23122, 1px 1px #c23122, 2px 2px #c23122, 3px 3px #c23122, 4px 4px #c23122, 5px 5px #c23122, 6px 6px #c23122, 7px 7px #c23122, 8px 8px #c23122, 9px 9px #c23122, 10px 10px #c23122, 11px 11px #c23122, 12px 12px #c23122, 13px 13px #c23122, 14px 14px #c23122, 15px 15px #c23122, 16px 16px #c23122, 17px 17px #c23122, 18px 18px #c23122, 19px 19px #c23122, 20px 20px #c23122, 21px 21px #c23122, 22px 22px #c23122, 23px 23px #c23122, 24px 24px #c23122, 25px 25px #c23122, 26px 26px #c23122, 27px 27px #c23122, 28px 28px #c23122, 29px 29px #c23122, 30px 30px #c23122;
  }
  .model-2 .google-plus:hover {
    color: #DD4A3A;
  }
  .model-2 .linkedin {
    background: #007BB6;
    text-shadow: 0px 0px #005983, 1px 1px #005983, 2px 2px #005983, 3px 3px #005983, 4px 4px #005983, 5px 5px #005983, 6px 6px #005983, 7px 7px #005983, 8px 8px #005983, 9px 9px #005983, 10px 10px #005983, 11px 11px #005983, 12px 12px #005983, 13px 13px #005983, 14px 14px #005983, 15px 15px #005983, 16px 16px #005983, 17px 17px #005983, 18px 18px #005983, 19px 19px #005983, 20px 20px #005983, 21px 21px #005983, 22px 22px #005983, 23px 23px #005983, 24px 24px #005983, 25px 25px #005983, 26px 26px #005983, 27px 27px #005983, 28px 28px #005983, 29px 29px #005983, 30px 30px #005983;
  }
  .model-2 .linkedin:hover {
    color: #007BB6;
  }
  
  .new_footer_top .f_widget.about-widget .f_list li a:hover {
    color: #5e2ced;
  }
  .new_footer_top .f_widget.about-widget .f_list li {
    margin-bottom: 11px;
  }
  .f_widget.about-widget .f_list li {
    margin-bottom: 15px;
  }
  .f_widget.about-widget .f_list {
    margin-bottom: 0px;
  }
  .new_footer_top .f_social_icon a {
    width: 44px;
    height: 44px;
    line-height: 43px;
    background: transparent;
    border: 1px solid #e2e2eb;
    font-size: 24px;
  }
  .f_social_icon a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 45px;
    color: #858da8;
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  .ti-facebook:before {
    content: "\e741";
  }
  .ti-twitter-alt:before {
    content: "\e74b";
  }
  .ti-vimeo-alt:before {
    content: "\e74a";
  }
  .ti-pinterest:before {
    content: "\e731";
  }
  
  .btn_get_two {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #5e2ced;
    border-color: #5e2ced;
    color: #fff;
  }
  
  .btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
  }
  
  .new_footer_top .f_social_icon a:hover {
    background: #5e2ced;
    border-color: #5e2ced;
    color:white;
  }
  .new_footer_top .f_social_icon a + a {
    margin-left: 4px;
  }
  .new_footer_top .f-title {
    margin-bottom: 30px;
    color: #ffffff;
  }
  
  .f_600 {
    font-weight: 600;
  }
  
  .f_size_18 {
    font-size: 18px;
  }
  
  .new_footer_top .f_widget.about-widget .f_list li a {
    color: #ffffff;
  }
  
  .new_footer_top .footer_bg {
    position: absolute;
    bottom: 0;
    background: url("http://droitthemes.com/html/saasland/img/seo/footer_bg.png") no-repeat scroll center 0;
    width: 100%;
    height: 266px;
  }
  
  .new_footer_top .footer_bg .footer_bg_one {
    background: url("https://1.bp.blogspot.com/-mvKUJFGEc-k/XclCOUSvCnI/AAAAAAAAUAE/jnBSf6Fe5_8tjjlKrunLBXwceSNvPcp3wCLcBGAsYHQ/s1600/volks.gif") no-repeat center center;
    width: 330px;
    height: 105px;
    background-size:100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
  }
  
  .new_footer_top .footer_bg .footer_bg_two {
    background: url("https://1.bp.blogspot.com/-hjgfxUW1o1g/Xck--XOdlxI/AAAAAAAAT_4/JWYFJl83usgRFMvRfoKkSDGd--_Sv04UQCLcBGAsYHQ/s1600/cyclist.gif") no-repeat center center;
    width: 88px;
    height: 100px;
    background-size:100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
  }
  
  .footer-contact{
    margin-top: 20px;
    color: #ffffff;
    font-size: 16px;
  }
  
  /* .call-button .no-button ::before{
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    content: "\f879";
  } */
  
  .no-button{
    /* border: 1px solid black; */
    background: linear-gradient(104deg, rgba(198,63,133,0.9) 34%, rgba(156,73,152,0.9) 100%);
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
    color: white;
  }
  
  .footer_bottom{
    background-color: rgb(31, 30, 30);
    color: white;
    text-align: center;
  }
  
  @-moz-keyframes myfirst {
    0% {
      left: -25%;
    }
    100% {
      left: 100%;
    }
  }
  
  @-webkit-keyframes myfirst {
    0% {
      left: -25%;
    }
    100% {
      left: 100%;
    }
  }
  
  @keyframes myfirst {
    0% {
      left: -25%;
    }
    100% {
      left: 100%;
    }
  }
  
  /*************footer End*****************/

/* ------------------- */

@media (min-width: 768px) {
    :root {
      --h1s: 45px;
      --h2s: 28px;
    }
    .mySwiper .swiper-slide .slide-bg video {
      height: 700px;
      object-fit: cover;
    }
    .var-video {
      height: 632px;
    }
    .var-img {
      height: 200px;
      margin-bottom: 16px;
    }
  }
  
  @media (min-width: 990px) {
    :root {
      --fs: 16px;
      --h1s: 64px;
      --h2s: 32px;
    }
    body {
      font-size: var(--fs);
    }
  
    h1 {
      line-height: 72px;
    }
  
    nav.primary-menu {
      display: block;
    }
    .details-para p,
    .details-para p span {
      font-size: 20px;
      line-height: 32px;
    }
    .nav-btns {
      display: none;
    }
    .var-video {
      height: 540px;
    }
    .variety-video video {
      height: 540px;
    }
    .var-img {
      height: 260px;
    }
    .footer-top {
      flex-direction: row;
    }
    .footer-top h2 {
      margin-bottom: 0px;
    }
    .copy-box {
      flex-direction: row;
    }
  }
  