/*------------------------------------------------
# Document Base Styles
------------------------------------------------*/
/*----------------------------------------------------------
## CSS Reset
------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body {
  width: 100%;
  margin: 0; 
  padding: 0; 
  overflow-x: hidden;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    
}

blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
button{
    cursor: pointer;
}

/*------------------------------------------------
## Layout
------------------------------------------------*/

/*making 10px our base size*/
html {
    /* 1rem = 10px */
    font-size: 62.5%;

    /* Border Box fix */
    box-sizing: border-box;

    /* Smooth scrolling */
    scroll-behavior: smooth;
}


/*------------------------------------------------
## CSS variables
------------------------------------------------*/
:root{
  --background-btn: linear-gradient(109.6deg, #0ba360 0%, #3cba92 100%);
  --background-btn-hover: linear-gradient(to right, rgb(182, 244, 146), rgb(51, 139, 147));
        /* Screen widths for reference not usage */
    --wide: 128rem; /* 320px diff (1280 px)*/ 
    --desktop: 96rem; /* 240px diff(960 px) */
    --tablet: 72rem; /* 180px diff (720 px)*/
    --phone: 54rem;/*(540 px) */

    /* Colors */
    --color-header:rgba(35, 35, 49, 0.9);
    --color-button:#009961;
    --color-green-dark:#162e09;
    --color-green:#009961;
    --color-green-lighter:#5fcf80;
    --color-image-filter:rgba(0, 0, 0, 0.5);
    --color-image-filter-darker:rgba(0, 0, 0,0.9);
    --color-background: ;
    --color-black: rgba(0, 0, 0,0.8);
    
  --color-black-lighter:rgba(68, 68, 68,0.3);
  --color-black-lighter-hover:rgba(68, 68, 68,0.5);
    --color-white: #ffffff;
    --color-bg: #151025; /* #050060 - darker */
    --color-bg-dk: #050060; /* rgb(5, 0, 96); */
    --color-purple-rgb: rgba(164, 88, 255, 1); /* #d392ff? */
    --color-purple-dk: #a458ff;
    --color-purple: #d392ff;
    --color-blue-rgb: rgba(53, 68, 255, 1); /* #3544ff? */
    --color-blue: #3544ff;
    --color-blue-dk-rgb: rgba(10, 47, 158, 1); /* #0a2f9e? */
    --color-blue-dk: #0a2f9e;
    --color-neon-dk: #24d6ff;
    --color-neon: #00ffff;
    --color-yellow: #f5b81b;
    --color-gray: #585963;
    --background-btn: linear-gradient(109.6deg, #0ba360 0%, #3cba92 100%);
  --background-btn-hover: linear-gradient(to right, rgb(182, 244, 146), rgb(51, 139, 147));

    /*fonts 'Open Sans','Roboto','lato',*/
    --font-body:sans-serif;
    

    /* Gradients eg add yours if need arises */
  --bg-gradient: linear-gradient(
    240deg,
    rgba(164, 88, 255, 1) 0%,
    rgba(53, 68, 255, 1) 40%,
    rgba(10, 47, 158, 1) 80%
  );
--bg-gradient-img: url("https://www.transparenttextures.com/patterns/stardust.png"),
  linear-gradient(
    240deg,
    rgba(164, 88, 255, 1) 0%,
    rgba(53, 68, 255, 1) 40%,
    rgba(10, 47, 158, 1) 80%
  );
--bg-gradient-reverse: linear-gradient(
    60deg,
    rgba(164, 88, 255, 1) 0%,
    rgba(53, 68, 255, 1) 40%,
    rgba(10, 47, 158, 1) 80%
  );
--bg-gradient-img-reverse: url("https://www.transparenttextures.com/patterns/stardust.png"),
  linear-gradient(
    60deg,
    rgba(164, 88, 255, 1) 0%,
    rgba(53, 68, 255, 1) 40%,
    rgba(10, 47, 158, 1) 80%
      );
      
/* Shadows add different box shadows be consistent in the website*/
--text-shadow: 1px 2px 4px rgba(5, 0, 96, 0.5);
--text-shadow-strong: 1px 1px 3px rgba(5, 0, 96, 0.85);

/* Easings */
--ease-bounce: cubic-bezier(.75,-0.5,0,1.75);

/* Text sizing */
--base-size: 1.6rem; /* 16px */
--type-scale: 1.33; /*search type scale.com */
--small: var(--base-size);
--body: calc( var(--base-size) * var(--type-scale) ); /* 21.33px */
--h6: calc( var(--body) * var(--type-scale) ); /* 28.43px */
--h5: calc( var(--h6) * var(--type-scale) );/* 28.43px * 1.33  =37.8 px*/
--h4: calc( var(--h5) * var(--type-scale) );/* 28.43px * 1.33 * 1.33  = 50.28 px*/
--h3: calc( var(--h4) * var(--type-scale) );/* 28.43px * 1.33 * 1.33 * 1.33  = 66.8 px*/
--h2: calc( var(--h3) * var(--type-scale) );/* 28.43px * 1.33 * 1.33 * 1.33 * 1.33  = 88.95 px*/
--h1: calc( var(--h2) * var(--type-scale) );/* 28.43px * 1.33 * 1.33 * 1.33 * 1.33  = 118.31 px*/

}

/*responsive typography */
@media screen and (max-width: 72rem) {
:root {
  --type-scale: 1.25;
}
}

@media screen and (max-width: 56rem) {
:root {
  --type-scale: 1.20;
}
}
@media screen and (max-width: 30rem) {
:root {
  --type-scale: 1.10;
      
  }
}


/*------------------------------------------------
## Typography
------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-headings);
margin-bottom: 10px;
}

h1 {
font-size: var(--h1);
line-height: calc( var(--h1) * var(--type-scale) * 1.2 );
}

h2 {
font-size: var(--h2);
line-height: calc( var(--h2) * var(--type-scale) * 1.2 );
}

h3 {
font-size: var(--h3);
line-height: calc( var(--h3) * var(--type-scale) * 1.2 );
}

h4 {
font-size: var(--h4);
line-height: calc( var(--h4) * var(--type-scale) * 1.2 );
}

h5 {
font-size: var(--h5);
line-height: calc( var(--h5) * var(--type-scale) * 1.2 );
}

h6 {
font-size: var(--h6);
line-height: calc( var(--h6) * var(--type-scale) * 1.2 );
}

p,ol {
font-size: var(--body);
line-height: calc( var(--body) * var(--type-scale) * 1.2 );
margin-bottom: var(--body);

   
}
.sub-info p{
line-height: 150%;

}
@media screen and (max-width: 30rem) {
p {
  line-height: calc( var(--body) * 1.5 );
  }
h1 {
font-size: calc(var(--h1) * 1.5);
line-height: calc( var(--h1) * var(--type-scale) * 1.5 );
}

h2 {
font-size: calc(var(--h2) * var(--type-scale));
line-height: calc( var(--h2) * var(--type-scale) * 1.5 );
}

h3 {
font-size: calc(var(--h3) * var(--type-scale));
line-height: calc( var(--h3) * var(--type-scale) * 1.5 );
}

h4 {
font-size: calc(var(--h4) * var(--type-scale));
line-height: calc( var(--h4) * var(--type-scale) * 1.5 );
}

h5 {
font-size: calc(var(--h5) * var(--type-scale));
line-height: calc( var(--h5) * var(--type-scale) * 1.5 );
}

h6 {
font-size: calc(var(--h6) * var(--type-scale));
line-height: calc( var(--h6) * var(--type-scale) * 1.5 );
}
}
@media screen and (max-width: 380px) {
p {
  line-height: calc( var(--body) * 1.5 );
  }
h1 {
font-size: calc(var(--h1) * var(--type-scale));
line-height: calc( var(--h1) * var(--type-scale) * 1.2 );
}

h2 {
font-size: calc(var(--h2) * var(--type-scale));
line-height: calc( var(--h2) * var(--type-scale) * 1.2 );
}

h3 {
font-size: calc(var(--h3) * var(--type-scale));
line-height: calc( var(--h3) * var(--type-scale) * 1.2 );
}

h4 {
font-size: calc(var(--h4) * var(--type-scale));
line-height: calc( var(--h4) * var(--type-scale) * 1.2 );
}

h5 {
font-size: calc(var(--h5) * var(--type-scale));
line-height: calc( var(--h5) * var(--type-scale) * 1.2 );
}

h6 {
font-size: calc(var(--h6) * var(--type-scale));
line-height: calc( var(--h6) * var(--type-scale) * 1.2 );
}
}

.justify-text{
  text-align: justify;
}
small,
.small-text {
    font-size: var(--base-size);
    line-height: calc( var(--base-size) * var(--type-scale) );
}

strong {
    font-variation-settings: 'wght' 900;
}

em {
    font-style: italic;
    font-variation-settings: 'wght' 200;
}
form p{
  margin:0;
}
/*------------------------------------------------
## Layout
------------------------------------------------*/
*,
*:before,
*:after {
    position: relative;
    box-sizing: inherit;
}

body {
    font-size: var(--base-size);
    font-family: var(--font-body);
    margin: 0;
    color: var(--color-black);
    overflow-x: hidden;
}

/*------------------------------------------------
## Links
------------------------------------------------*/
a {
    color: var(--color-white);
    text-decoration: none;
}
main a{
  color:var(--color-black);
}

a:hover,
a:active,
a:focus {
    color: var(--color-hover-active-focus);
}

a:visited {
    color: var(--color-visited-link);
}

a.btn {
    font-size: var(--body);
    padding: 0.8rem 2.4rem;
    border: 2px solid var(--color-neon);
    color: var(--color-neon);
    border-radius: 100px;
    position: absolute;
    left: 50%;
    bottom: 3.2rem;
    transform: translateX(-50%);
}

/*------------------------------------------------
## Elements
------------------------------------------------*/
/*icons*/


.ra {
    color: var(--color-yellow);
    -webkit-text-fill-color: var(--color-yellow);
}

ol,
ul {
    line-height: var(--body);
}
header ul,footer ul{
  list-style: none;
}
.section-title {
    font-weight: 900;
    color: var( );
}

.sub-section-title {
    font-size: var( );
    background-image: var( );
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/*------------------------------------------------
## Accessibility
------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

/* -----------------------------------------------------------
--------------------------------------------------------------

header section style

--------------------------------------------------------------
--------------------------------------------------------------*/
#header{
  font-family:sans-serif;
  }
.header-general{
    display: flex;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    height: 70px;
    z-index: 1000;
    transition: all 0.3s;
    background: var(--color-header);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
    
}

/*===============================
responsiveness for very large screens
===============================*/

@media screen and (min-width:1600px){
    .header-general {
        padding-left: 10%;
        padding-right: 10%;
      }
    .section-padding{
        padding-left: 10%;
        padding-right: 10%;
    }
    .profile-info-after-login {
        right: 10% !important;
    }
}
@media screen and (max-width:1200px){
.header{
  height: 60px;
}
}
/*===============================
responsiveness for very large screens
===============================*/
.section-padding{
padding-left: 2% !important;
padding-right: 2% !important;

}
@media screen and (min-width:1000px){
.section-padding{
  padding-left: 5% !important;
  padding-right: 5% !important;
  
}}
.padding-bottom{
padding-bottom: 60px;
}
@media screen and (min-width:1500px){
  .header {
      padding-left: 10%;
      padding-right: 10%;
    }
  .section-padding{
      padding-left: 10% !important;
      padding-right: 10% !important;
  }
  
}

@media screen and (min-width:1650px){
  .header {
      padding-left: 12%;
      padding-right: 12%;
    }
  .section-padding{
      padding-left: 12% !important;
      padding-right: 12% !important;
  }
  
}
@media screen and (min-width:1700px){
  .header {
      padding-left: 15%;
      padding-right: 15%;
    }
  .section-padding{
      padding-left: 15% !important;
      padding-right: 15% !important;
  }
  
}
@media screen and (min-width:1750px){
  .header {
      padding-left: 17%;
      padding-right: 17%;
    }
  .section-padding{
      padding-left: 17% !important;
      padding-right: 17% !important;
  }
  
}
@media screen and (min-width:2000px){
  .header {
      padding-left: 20%;
      padding-right: 20%;
    }
  .section-padding{
      padding-left: 20% !important;
      padding-right: 20% !important;
  }
  
}

/*===============================
logo section
===============================*/
.header-general .logo a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 600;
}
.header-general .logo h4{
    font-size: 35px;
    font-weight: 600;
    margin-bottom:0px;
}
@media screen and (max-width:400px){
  .header-general .logo h4{
    font-size: 30px;
    
}
}
.header-general .logo a img{
  width: 50px;
}

.nav-container{
    margin-left: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:all 0.3s;
    
}
/*===========================
nav-container responsive
============================*/
@media screen and (max-width: 1094px){
.nav-container{
    margin-left: 5%;  
}
}
/*===========================
navigation links
============================*/
.navigation-general{
    display: flex;
    align-items: center;
    justify-content: center;
}
 .navigation-general {
  padding: 0;
}

.navigation-general ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navigation-general li {
  position: relative;
}

.navigation-general>ul>li {
  position: relative;
  white-space: nowrap;
  margin: 0 12px;
}

.navigation-general a,
.navigation-general a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 3px;
  
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navigation-general a i,
.navigation-general a:focus i {
  font-size: 14px;
  line-height: 0;
  margin-left: 5px;
}

.navigation-general>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #009961;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navigation-general a:hover:before,
.navigation-general li:hover>a:before,
.navigation-general .active:before {
  visibility: visible;
  width: 100%;
}

.navigation-general a:hover,
.navigation-general .active,
.navigation-general .active:focus,
.navigation-general li:hover>a {
  color: #fff;
}

.navigation-general .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--color-header);
  color:var(--color-white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #009961;
}

.navigation-general .dropdown ul li {
  min-width: 200px;
}

.navigation-general .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
  color:var(--color-white);
  font-size: 16px;
}

.navigation-general .dropdown ul a i {
  font-size: 12px;
}

.navigation-general .dropdown ul a:hover,
.navigation-general .dropdown ul .active:hover,
.navigation-general .dropdown ul li:hover>a {
  background: #009961;
  color:var(--color-white);
}

.navigation-general .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navigation-general .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navigation-general .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
/* -------------------
drop down
--------------------*/
.drop-down{
  position: relative;
}
.drop-down:hover >ul{ 
  opacity: 1;
  top: 100%;
  visibility: visible;
  display:block;

}
  
 .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #009961;
}

 .dropdown ul li {
  min-width: 200px;
}

 .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #282828;
}

 .dropdown ul a i {
  font-size: 12px;
}

 .dropdown ul a:hover,
 .dropdown ul .active:hover,
 .dropdown ul li:hover>a {
  color: #009961;
}

 .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

 .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

 .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navigation-general .dropdown .dropdown ul {
    left: -90%;
  }

  .navigation-general .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/* -------------------
get started button
--------------------*/
.login-signup{
    margin-left: 30px;
    
}
.navigation-general button{
  padding: 10px 15px;
  border-radius: 20px;
  color: var(--color-white);
  border: none;
  background: linear-gradient(109.6deg, #0ba360 0%, #3cba92 100%);
  font-size: medium;
}
.navigation-general button:hover{
  transform:scale(1.1);
}
.navigation-general button:before {
content:'';
position:absolute;
left:0;
bottom:0;
opacity:0;
width:0;
z-index:-1;
height:100%;
border-radius: 20px;
background: linear-gradient(to right, rgb(182, 244, 146), rgb(51, 139, 147));
color: #fff;
transition: all 0.2s;
}
.navigation-general:hover button:before {

opacity:1;
width:100%;
}
/*----------------
harmburger
---------------------*/
.harmburger ,.close-harmburger{
    display: none;
    font-size: 28px;
    cursor: pointer;
}
.close-harmburger{
  margin-top: 10px;
  margin-right: 10px;
}
/*-----------------------------------------
header for tablets and phones
-------------------------------------------*/
@media screen and (max-width: 1200px){
  .navigation-general .dropdown ul a:hover,
.navigation-general .dropdown ul .active:hover,
.navigation-general .dropdown ul li:hover>a {
  background: white;
}
    .nav-container {
      display: none;
    }
    .harmburger,.close-harmburger {
      display: block;
      color: white;
      
    }
    
    .header-general {
      
      justify-content: space-between;
      padding-left: 20px;
      padding-right: 20px;

    }
    .nav-container.show {
      display: flex;
      position: fixed;
      justify-content: space-between;
      align-items: flex-start;
      width: 100%;
      height: 100%;
      top:0;
      bottom: 0;
      left:0;
      right:0;
      margin-left: 0;
      color: var(--color-black);
      background: var(--color-header);
      z-index: 1500;
      
    }
    .navigation-general {
        flex-direction: column;
        flex-basis: 80%;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px;
        padding-top: 60px;
        background: var(--color-white);
        height: 100%;
        overflow: auto;
        scrollbar-color: var(--color-black);
    }
    .navigation-general ul {
        flex-direction: column;
        padding-left: 10px;
        align-items: flex-start;
      }
     .navigation-general ul .main-link {
        margin: 0px ;
        text-align: start;
        
      }
      .navigation-general ul .main-link .nav-link-main,
      .navigation-general ul .drop-down a,
      .navigation-general ul .main-link a:focus,
      .navigation-general ul .main-link a:visited,
      .navigation-general ul .main-link a:active{
             
        color: var(--color-black);
             
      }
      .login-signup {
        margin-left: 0;
        margin-top: 10px;
      }
      .navigation-general ul .main-link .nav-link-main, .navigation-general ul .main-link a:focus {
         font-size: 16px;
        color: var(--color-black);
      }
      
       .navigation-general .dropdown ul {
          position: static;
          display: none;
          padding: 10px 0;
          z-index: 99;
          opacity: 1;
          visibility: visible;
          background: #fff;
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        }
        
         .navigation-general .dropdown ul li {
          min-width: 200px;
        }
        
         .navigation-general .dropdown ul a {
          padding: 10px 20px;
          color: var(--color-black);
        }
        
         .navigation-general .dropdown ul a i {
          font-size: 12px;
        }
        
         .navigation-general .dropdown ul a:hover,
         .navigation-general .dropdown ul .active:hover,
         .navigation-general .dropdown ul li:hover>a {
          color: #009961;
        }
        
        .navigation-general .dropdown ul.dropdown-active {
          display: block;
        }
        .navigation-general .dropdown ul a:hover,
.navigation-general .dropdown ul .active:hover,
.navigation-general .dropdown ul li:hover>a {
  background: white;}
}
@media screen and (max-width: 378px){
  .navigation-general .dropdown ul span{
    display:none;
  }
}
@media screen and (max-width:480px){
  .header-general {
  justify-content: space-between;
  padding-left: 2px;
  padding-right: 10px;
  height: 60px;
}


.header-general .logo a img{
width: 40px;
}
}

.container-dummy{
    display: flex;
    justify-content: center;
    align-items: center;
  }
 .container-dummy .profile-after-login{
    position:relative;
    margin-right: 20px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .container-dummy .profile-after-login .counter-show{
    position:absolute;
    bottom: 0;
    font-weight:700;
    right:-7px;
    border:1px solid var(--color-black);
    background:var(--color-green);
    width:15px;
    height:15px;
    display:flex;
    align-items: center;
    justify-content:center;
    font-size:10px;
    border-radius:50%;
  }
  .container-dummy .profile-after-login img{
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-white);
    object-fit: cover;
    border-radius: 50%;
  }
  .container-dummy .profile-after-login p{
    margin-bottom: 0px;
    margin-left: 2px;
    font-size: 15px;
    font-weight: 600;
  }
  @media screen and (max-width:480px){
    .container-dummy .profile-after-login p span{
      display: none;
    }
  }
  .profile-info-after-login{
    position: absolute;
    display: none;
    opacity: 0;
    visibility: hidden;
    top: 70px;
    right: 20px;
    width: 25%;
    
    background: var(--color-header);
  }
  .profile-info-after-login.open{
    display: block;
    opacity: 1;
    visibility: visible;
  }
   .click-area{
    position: relative;
  
  
  }
  .click-area .close-profile{
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    
  }
  .click-area .heading{
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    font-weight: 600;
  }
  .click-area .profile .links li{
    padding: 10px;
    padding-left: 20px;
  }
  .click-area .profile .links li:last-of-type{
    padding-bottom: 20px;
  }
  .click-area .profile .links li i{
    margin-right: 2px;
  }
  .click-area .profile .links li a:hover{
    font-weight: 700;
    
  }
  @media screen and (max-width: 1200px){
    .profile-info-after-login.open{
      position: fixed;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      top: 0px;
      right: 0px;
      width: 100%;
      height: 100%;
      background: var(--color-header);
    }
    .click-area{
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      height: 100%;
      padding-right: 20px;
    
    
    }
    .click-area .close-profile{
      position: absolute;
      top: 10px;
      right: 10px;
      width: 20px;
      font-size: 25px;
      cursor: pointer;
      display: block;
      
    }
    .profile-info-after-login .click-area .profile {
      background: var(--color-white);
      overflow: auto;
      color: var(--color-black);
      height: 100%;
      width: 90%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 20px;
    }
    .click-area .profile .links li {
      padding-bottom: 20px;
    }
  
  }
  @media  screen and (max-width:320px){
      .navigation-general {
          padding: 0px;
          padding-left:5px;
      }
  }

/* -----------------------------------------------------------
--------------------------------------------------------------

header section style end

--------------------------------------------------------------
--------------------------------------------------------------
*/
.select-livestock{
    padding-top: 75px;
}
.select-livestock .heading{
    display: flex;
    align-items: center;
    justify-content: center;
}
section .heading{
    
  position:relative;
}
section h3{
position: absolute;
top: 42%;
color: rgba(0, 0, 0, 0.06);
left: 0;
right: 0;
z-index: 1;
padding: 20px;
padding-top:10px;
font-weight: 700;
text-transform: uppercase;
line-height: 0;
text-align: center;
margin-bottom:0px;
text-transform:uppercase;
}
@media screen and (max-width:650px){
section h3{
  position: absolute;
  top: 39%;}

}
section .heading h4{
  text-align: center;
  margin-bottom:0px;
  display: inline;
  font-weight: 800;
  position: relative;
  padding: 20px;
  z-index:2;
}

section .heading{
  display: flex;
  align-items: center;
  justify-content: center;
}
section .heading h4{
  text-align: center;
  display: inline;
  font-weight: 800;
  position: relative;
  padding: 20px;
}
/*======
for the underline
========
*/

.heading h4::before{
  content: " ";
  position: absolute;
  width: 20%;
  height: 4px;
  bottom: 0;
  left: 35%;
  right: 35%;
  background:var(--color-green);
  
}
@media screen and (max-width:350px){
  .heading h3{
    display:none;
  }
}
.feed-formulation{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 500px;
  grid-gap: 20px;
  margin-bottom: 20px;
  padding: 5%;
  padding-top: 10px;
  
}
.main-container{
  margin:10px;
  
}

.animal-feed-container{
  display: flex;
  flex-direction: column;
  width:100%;
  height: 100%;
  transition: all 0.3s;
  box-shadow: 0px 0px 20px rgba(218, 215, 206,1);
  border-radius: 5px;
  overflow: hidden;
  justify-content: center;
  align-items: center;

}
.animal-feed-container:hover{
  transform: scale(1.02);
  border: none;
  

}
.animal-feed-container .image{
  height: 55%;
  width: 100%;
  overflow: hidden;
  border-radius:0px 0px 70px 70px;

}


.animal-feed-container .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  transition: all 0.3s;
}


.animal-feed-container .image p{
  position: absolute;
  top: 40%;
  left:5%;
  right: 5%;
  color: white;
  text-align: center;
  font-weight: 600;
  z-index: 1;
  font-size: calc(var(--body) + 3px);
}
.animal-feed-container .image .filter{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--color-image-filter);

}
.animal-feed-container .bottom-part-container{
  display: flex;
  flex-direction: column;
  height: 45%;
  width: 100%;
  position: relative;

}

.animal-feed-container .overview{
  
  margin-top: 5px;
  padding: 5px;
  transition: all 0.3s;
  background: var(--color-white);
  text-align: center;
  position: absolute;
  color: var(--color-green-dark);
  top: -40%;
  left: 10%;
  right: 10%;
  font-weight: 700;
}
.animal-feed-container:hover .overview {
  border-top: 6px solid var(--background-btn);

}
.animal-feed-container .overview P{
  padding-top: 10px;
  line-height: 30px;
}
.animal-feed-container .button {
  position: absolute;
  align-self: flex-end;
  display: block;
  width: 100%;
  margin-bottom: 5px;
  transition: all 0.3s;
  bottom: 5%;
  

}
.animal-feed-container button{
  display: flex;
  align-items: center;
  font-size:calc(var(--body) -1px);
  justify-content: center;
  padding: 10px 15px;
  border: none;
  background: var(--background-btn);
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 3px;
  border-radius: 2px;
  border-radius: 50px;
  transition: all 0.3s;
  margin: 5px auto;
  width: 70%;
  border-radius: 50px;
  text-align: center;

  
}

.animal-feed-container .button a{
  width: 80%;
}
.animal-feed-container button:hover{
  transform:scale(1.1);
  
}
.animal-feed-container button:before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  border-radius: 50px;
  height:100%;
  width:0;
  opacity:0;
  z-index:-1;
  background:var(--background-btn-hover);
  transition: all 0.3s;
}
.animal-feed-container button:hover:before{
  width:100%;
  opacity:1;
}

.animal-feed-container button i{
  font-size: calc(var(--body) + 2px);
  margin-left: 2px;
}
.service-container .sub-info{
  margin-top: 20px;
  padding-left: 5%;
  padding-right: 5%;
}

@media screen and (max-width:790px){
  .feed-formulation{
    display: grid;
    grid-template-columns: 400px;
    grid-auto-rows: 450px;
    justify-content: center;  
}
  .animal-feed-container:hover{
      transform: none;
      
  
  }
  .animal-feed-container .overview P {
      padding-top: 10px;
      line-height: 35px;
    }
  .main-container{
      margin:10px;
  }
  .animal-feed-container .overview{
      top: -32%;
  }
  

}
@media screen and (max-width:500px){
  .feed-formulation{
      display: grid;
      grid-template-columns: 1fr;
      grid-auto-rows: 450px;
      justify-content: center;  
  }}
@media screen and (max-width:500px){
  .feed-formulation{
      grid-auto-rows: 500px;
        
  }
}
@media screen and (max-width:450px){
  .feed-formulation{
       
  
      display: grid;
      grid-template-columns: 1fr;
      grid-auto-rows: 450px;
      grid-gap: 10px;
      margin-bottom: 20px;
      padding: 2px;
      padding-top: 10px;
      
  }
  .animal-feed-container .overview{
  
      margin-top: 5px;
      padding: 5px;
      transition: all 0.3s;
      background: var(--color-white);
      text-align: center;
      position: absolute;
      color: var(--color-green-dark);
      top: -30%;
      left: 10%;
      right: 10%;
      font-weight: 700;
  }
  
  .animal-feed-container:hover .image img{
      transform:none;
  
  }
  
  .feed-formulation {
      
      padding: 2%;
    }
  .animal-feed-container {
  
      margin: 5px ;
      
    }
    .service-container .sub-info{
      
      padding-left: 3%;
      padding-right: 2%;
  }
  
}
@media screen and (max-width:418px){

  .main-container {
      padding: 10px;
      margin: 10px;
    }
    .feed-formulation{
       
  
      display: grid;
      grid-template-columns: 1fr;
      grid-auto-rows: 450px;
      grid-gap: 10px;
      margin-bottom: 20px;
      padding: 2px;
      padding-top: 10px;
      
  }
  .animal-feed-container .overview{
  
      margin-top: 5px;
      padding: 5px;
      transition: all 0.3s;
      background: var(--color-white);
      text-align: center;
      position: absolute;
      color: var(--color-green-dark);
      top: -22%;
      left: 10%;
      right: 10%;
      font-weight: 700;
  }

}
@media screen and (max-width:386px){
  .animal-feed-container .overview P {
      padding-top: 10px;
      line-height: 25px;
    }
    .animal-feed-container .overview{
      top: -22%;
  }


}
@media screen and (max-width:304px){
  .animal-feed-container .overview P {
      padding-top: 10px;
      line-height: 22px;
    }
    .feed-formulation{
       
  
      display: grid;
      grid-template-columns: 1fr;
      grid-auto-rows: 450px;
      grid-gap: 10px;
  }


}
@media screen and (max-width:296px){
  .animal-feed-container .overview P {
      padding-top: 10px;
      line-height: 22px;
    }
    .feed-formulation{
       
  
      display: grid;
      grid-template-columns: 1fr;
      grid-auto-rows: 500px;
      grid-gap: 10px;
  }
  .animal-feed-container button {
      width: 90%;
      
    }


}
/*====================================================== 
second part selecting the quality
========================================================
*/

/*====================================================== 
A. dual and layers
========================================================
*/
.select-quality-hero-dual-layers{
  background: var(--color-background) url('../img/animal-photos/chicken-1.jpg')top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  animation-name: imageSlider;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.select-quality-hero-dual-layers::before {
  content: "";
  background: var(--color-image-filter);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
/*====================================================== 
B. Broilers
========================================================
*/
.select-quality-hero-broiler{
  background: var(--color-background) url('../img/animal-photos/broiler.jpg')top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  animation-name: imageSlider;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.select-quality-hero-broiler::before {
  content: "";
  background: var(--color-image-filter);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
/*====================================================== 
C. Pig general
========================================================
*/
.select-quality-hero-pig-general{
  background: var(--color-background) url('../img/animal-photos/pig-2.jpg')top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  animation-name: imageSlider;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.select-quality-hero-pig-general::before {
  content: "";
  background: var(--color-image-filter);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
/*====================================================== 
D. Pig finisher
========================================================
*/
.select-quality-hero-pig-finisher{
  background: var(--color-background) url('../img/animal-photos/pig-3.jpg')top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  animation-name: imageSlider;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.select-quality-hero-pig-finisher::before {
  content: "";
  background: var(--color-image-filter);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
/*====================================================== 
E. Sow and boar
========================================================
*/
.select-quality-hero-sow-boar{
  background: var(--color-background) url('../img/animal-photos/pig-4.jpg')top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  animation-name: imageSlider;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media screen and (max-width:600px){
  .select-quality-hero-sow-boar,
  .select-quality-hero-pig-finisher,
  .select-quality-hero-pig-general,
  .select-quality-hero-broiler,
  .select-quality-hero-dual-layers{
    
    min-height:calc(100vh + 100px) ;}
}
.select-quality-hero-sow-boar::before {
  content: "";
  background: var(--color-image-filter);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.heading-select{
  margin-bottom: 10px;
}
.heading-select h4{
  font-weight: 700;
}
 .button-list{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;

}
.button-list a{
  display: block;
  width: 50%;
}
.button-list button{
  width: 100%;
  padding: 15px 25px;
  margin: 2px;
  margin-top: 15px;
  border-radius: 30px;
 border: none;
  background: var(--background-btn);
  color: var(--color-white);
  font-weight: 700;
  font-size:calc(var(--body) * 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.button-list button:hover{
  transform:scale(1.1);
  
}
.button-list button:before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  border-radius: 30px;
  height:100%;
  width:0;
  opacity:0;
  z-index:-1;
  background:var(--background-btn-hover);
  transition: all 0.3s;
}
.button-list button:hover:before{
  width:100%;
  opacity:1;
}
.button-list button i{
  font-size: calc(var(--body) + 2px);
  margin-left: 2px;
}
.line{
  
  background: var(--color-white);
}
@media screen and (max-width:800px){
  .line ,.space-remove {
    
    display: none;
  }
  .button-list a{
    display: block;
    width: 90%;
  }

}
/*--------------------------------------------------------------
#form
--------------------------------------------------------------*/
.form-body{
  background:#efefef;
}
.form{
  padding-top: 75px;
  padding-bottom: 20px;
}
.form.broiler{
  background: var(--color-background) url('../img/animal-photos/broiler.jpg')top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.form.layers{
  background: var(--color-background) url('../img/animal-photos/chicken-1.jpg')top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.form.pig{
  background: var(--color-background) url('../img/animal-photos/pig-2.jpg')top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.form.pig-finisher{
  background: var(--color-background) url('../img/animal-photos/pig-3.jpg')top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.form.sb{
  background: var(--color-background) url('../img/animal-photos/pig-4.jpg')top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.inner-nav{
  margin-top: 40px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  
}
.inner-nav p{
margin:0px;
}
.nav-container-form-first{
  width: 35%;
  height: 54px;
  border-radius: 10px;
  
  background:var(--color-black);
  display: flex;
  justify-content: space-between;
  position:relative;
  
}
.nav-container-form-first .left{
  flex-basis: 50%;
  display: flex;
  padding: 4px;
  height: 54px;
  
  background: transparent;
  
}

.nav-container-form-first .left .inner{
  border-radius: 10px;
  
  height: 46px;
  width:100%;
  
  background: #fff;
  
}
#second .left #change{
  
  
  background: transparent;
  color:var(--color-white);
  
}

.nav-container-form-first .right{
  flex-basis: 50%;
  padding: 4px;
  height: 54px;
  background: transparent;
  
  
}
.nav-container-form-first .right .inner{
  border-radius: 10px;
  
  height: 46px;
  width:100%;
  
  
  
}
#second .right #change2{
  
  
  background: var(--color-white);
  color:var(--color-black);
  
}

.nav-container-form-first .left button,.nav-container-form-first .right button{
  display: block;
  background: transparent;
  border:none;
  height: 100%;
  width: 100%;
  
}
.nav-container-form-first .left button p,.nav-container-form-first .right button p{
  display: block;
  margin:0px;
  
  display: flex;
  justify-content: center;
  align-items:center;
  width: 100%;
  height:100%;
  font-weight:700;
  
}
.nav-container-form-first .right button p{
  color:var(--color-white);
}
#second .right button p{
  color:var(--color-black);
}
#second .left button p{
  color:var(--color-white);
}
.nav-container-form-first .left button p .bi,.nav-container-form-first .right button p .bi{
  margin-left: 2px;
  margin-right:2px;
  
  
}

.nav-container-form-first .left button:hover p .bi,
.nav-container-form-first .right button:hover p .bi{
  color:var(--color-green);
  
  
}

.nav-container-form-first button p .bi-chevron-down{
  margin-top: 4px;
  font-size:calc(var(--body) - 4px);
  display: none;
  
  
}

.nav-container-form-first .known-quantity,
.nav-container-form-first .expert{
  position:absolute;
  top:calc(100%);
  width:calc(100% + 100%);
  background:transparent;
  padding-top:10px;
  z-index: 1;
  display: none;
  
  transition:all 0.3s;
  
}
.nav-container-form-first .expert{
  left: -100%;
}
.nav-container-form-first .known-quantity .inner,
.nav-container-form-first .expert .inner{
  background: var(--color-white);
  padding:10px;
  border-radius: 10px;
  width:100%;
  height: 100%;
  box-shadow: 0px 0px 2px var(--color-black);
  
}
.nav-container-form-first .known-quantity.show,
.nav-container-form-first .expert.show{
  display: flex;
  flex-direction:column;
  justify-content: center;
  text-align: center;
  align-items: center;
  

}
.button-expert{
   display:flex;
   padding:10px;
   justify-content:space-between;
}
/* line 1645*/
.nav-container-form-first .expert.show .hover-btn,
.nav-container-form-first .known-quantity.show .hover-btn{
  padding: 10px 20px;
  display:inline-block;
  margin: 10px auto;
  border-radius: 30px;
  font-weight: 600;
  font-size:medium;
  transition:0.3s;
}
.nav-container-form-first .expert.show .hover-btn.black,
.nav-container-form-first .known-quantity.show .hover-btn{
  color:var(--color-white);
  background:black;
  transition:0.3s;
}
.nav-container-form-first .expert.show .hover-btn.transparent{
  border:2px solid black;
  transition:0.3s;
}
.nav-container-form-first .expert.show .hover-btn.black:hover,
.nav-container-form-first .known-quantity.show .hover-btn:hover,
.nav-container-form-first .expert.show .hover-btn.transparent:hover{
  background:red;
  border:2px solid red;
  color:var(--color-white);


}
.nav-container-form-first .expert.show .hover-btn:hover,
.nav-container-form-first .known-quantity.show .hover-btn:hover{
  transform:scale(1.01);
  
}
.nav-heading{
  font-weight:700;
  text-align:center;
}
.form-container{
  margin: 10px auto;
  border-radius: 5px;
  padding: 20px;
  width:60%;
  background:var(--color-white);
  
}


/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
form{
  display:flex;
  justify-content:center;
  align-items: center;
  flex-direction:column;
}
form p{
  width: 90%;
  display: flex;
  margin-bottom: 20px;
  
  flex-direction:column;

}
form p {
  
  margin-bottom: 0px;
  

}
p label p{
  margin-bottom:5px;
  display: inline;
  
}
p label .star{
  
  display: inline;
  position:relative;
}
p label .star::after{
  content:"*";
  position:absolute;
  top: -2px;
  right: -5px;
  font-size: calc(var(--body) + 3px);
}
p select{
  width:90%;
  padding: 10px;
  background:var(--color-white);
  border: 1px solid var(--color-black);
  border-radius:3px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 400;
  line-height: 1.5;  
  outline-width: 0cqb;
  
}
p select:hover{
  outline: #99d2f8 solid 3px;
  border:1px solid #0085f2;
}
p input{
  flex-basis: 70%;
  padding: 8px 15px;
  background:var(--color-white);
  outline:none;
  border: 1px solid var(--color-black);
  border-radius:3px;
  width:90%;
}
p input:hover{
  outline: #99d2f8 solid 3px;
  border:1px solid #0085f2;
}
form button[type="submit"]{
  margin-top:10px;
  font-size:var(--body);
  padding: 15px 20px;
  background:var(--color-green);
  color:var(--color-white);
  border-radius: 30px;
  border:none;
  transition:0.3s;
}
form button[type="submit"]:hover{
  border: 1px solid var(--color-black);
  background:var(--color-black);
  transform: scale(1.05);
}
@media  screen and (max-width:1090px){
  .nav-container-form-first {
    width: 50%;
  }
}
@media  screen and (max-width:700px){
  .nav-container-form-first {
    width: 90%;
  }
  .form-container {
   
    width: 90%;
    
  }
}
@media  screen and (max-width:580px){
  p select {
    width: 100%;}
    p input {
      
      width: 100%;}
}
@media  screen and (max-width:380px){
  .nav-container-form-first {
    width: 95%;
  }
  .form-container {
   
    width: 95%;
    
  }
  .nav-container-form-first .left {
    flex-basis: 60%;
  }
  .nav-container-form-first .right {
    flex-basis: 40%;
  }
  .nav-container-form-first .expert {
  
  width: calc(100% * 2.5);
  }
  .nav-container-form-first .expert {
    left: calc(-100% * 1.5);
  }
  .nav-container-form-first .known-quantity{
  
  width:calc(100% + 60%);
 
  
}


}
/*--------------------------------------------------------------
# Results page
--------------------------------------------------------------*/
.results-page{
  padding-top: 90px;
  padding-bottom: 90px;
  background: var(--color-black-lightr);
}
@media screen and (max-width:740px){
  .results-page{
    padding-top: 90px;
    padding-bottom: 90px;
    background: var(--color-white);
  }
}
.results-page h5{
  text-align:center;
}
.results-page .heading{
  display:flex;
  align-items: center;
  justify-content: center;
}
.results-page h6{
  text-align:center;
  position:relative;
  display:inline-block; 
  margin:10px auto;
}
.results-page h6::after{
  content:"";
  position:absolute;
  width:30%;
  height:5px;
  background:var(--color-green);
  left:0px;
  bottom:-7px;
}
.results{
  margin:40px auto;
  width:min(900px, 100% - 10px);
  border-radius:5px;
  padding-top:10px;
  padding-bottom:10px;
  background: var(--color-white);
}
.navigation{
  display: flex;
  flex-direction: row-reverse;
  padding-right:5%;
  position:relative;
}
.navigation-list{
  display:none;
  position:absolute;
  top:110%;
  right:5%;
  width: 40%;
  box-shadow: 0px 0px 5px var(--color-black);
  list-style: none;
  border-radius: 3px;
  background: var(--color-white);
  z-index: 1;
  padding-bottom: 10px;
}
.navigation-list.show{
  display:block
}
@media screen and (max-width:740px){
  .navigation-list{
    width: 60%;}
}
@media screen and (max-width:460px){
  .navigation-list{
    width: 80%;}
}
@media screen and (max-width:360px){
  .navigation-list{
    width: 90%;}
}
.navigation-list .x{
  display: flex;
  flex-direction: row-reverse;
  font-size:calc(var(--body) * var(--type-scale))

}
.navigation-list .x i{
  padding:5px;
  cursor:pointer;
  border-radius: 50%;
  background: var(--color-black-lighter);
  margin:2px;
}
.navigation .x i:hover{
  border:2px solid var(--color-white);
  background:red;
  color:var(--color-white);

}

.navigation-list ul li a{
  display:block;
  padding:15px;
  padding-left:5%;
  color:var(--color-black);
}
.navigation-list ul li:hover{
  background: var(--color-black-lighter);
  color:var(--color-white);
}
.navigation i.bi-three-dots{
  padding: 8px;
  -webkit-text-stroke: 0.5px;
  border:2px solid var(--color-black);
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
}
.navigation i.bi-three-dots:hover{
  border:2px solid var(--color-white);
  background:red;
  color:var(--color-white);

}
.results.procedure{
  padding-left: 5%;
}
.align-center{
  text-align:center;
}
.results .welcome{
  margin-bottom: 20px;
}
.table-container{
  max-width:100%;
  overflow-x:auto;
}
.results.procedure ol{
  margin-left:10%;
  
}
.results.procedure .ordered{
  margin-bottom:20px;
}
table{
  margin:10px auto;
  width:95%;
  border:2px solid var(--color-black);
  
  border-radius: 2px;

}

table th,table td{
  padding:10px;
}
table th{
  text-align:left;
  background:var(--color-black);
  color:var(--color-white);
  font-weight:800;
  
}
table tr{
  font-weight:600;
}
table tr:nth-of-type(2n){
  background:var(--color-black-lighter);
}
table tr:hover{
  font-weight:800;
  background:var(--color-green);
  color:var(--color-white);
  cursor:pointer;
}
@media screen and (max-width:450px){
  table{
    width:428px;
    box-shadow:none;
  }
  
}
@media screen and (max-width:740px){
  
  .vaccination table{
    width:738px;
    box-shadow:none;
  }
}
/*--------------------------------------------------------------
# Preloader 
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: rgb(0,40,40);
  }
  
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid rgb(0,40,40);
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
  }
  
@keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: linear-gradient(109.6deg, #0ba360 0%, #3cba92 100%);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.2s;
}
.back-to-top:hover{
  transform:scale(1.1);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:before {
  content:'';
  position:absolute;
  left:0;
  opacity:0;
  width:0%;
  height:100%;
  border-radius:50%;
  background: linear-gradient(to right, rgb(182, 244, 146), rgb(51, 139, 147));
  color: #fff;
  transition: all 0.2s;
}

.back-to-top:hover:before {
  content:'';
  position:absolute;
  opacity:1;
  width:100%;
  height:100%;
  border-radius:50%;
  background: linear-gradient(to right, rgb(182, 244, 146), rgb(51, 139, 147));
  color: #fff;
}


.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
 
/*
==========================FOOOTER START==================

*/
footer{
  padding-top: 70px;
  background: linear-gradient(30deg, var(--color-green) 0%, #232b31 37%, rgb(35, 35, 49) 100%);
    color:var(--color-white);
  }
  footer .top{
  display: flex;
  flex-wrap: wrap;
  }
  footer .top .footer-heading,footer .heading{
  min-width: 200px;
  margin-right: 30px;
  margin-bottom: 30px;
  font-weight: 700;
  }
  footer .top .footer-heading-location{
  width: 300px;
  margin-right: 30px;
  margin-left:50px;
  margin-bottom: 30px;
  }
  footer .top .footer-heading .logo a img{
    width: 50px;
  }
  footer .top .footer-heading .logo a{
  display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 600;
    
  }
  footer .top .footer-heading .logo a h5{
  font-size: 35px;
  margin-bottom:0px;
  }
  @media screen and (max-width:480px){
  footer .top .footer-heading .logo a h5{
    font-size: 30px;
  }
  }
  footer .heading{ 
  margin-top: 5px;
  margin-bottom: 5px;
  
  }
  
  .bold-footer{
  font-weight: 600;
  
  }
  footer a{
  font-weight: 500;
  }
  footer p{
  margin-bottom: 5px;
  }
  .left-container{
  display: flex;
  justify-content: space-between;
  }
  @media screen and (max-width:1200px){
  footer{
    padding-top: 20px;
  }
  footer .top{
    display: flex;
    flex-direction: column-reverse;
  }
  .left-container{
    display: flex;
    flex-direction: column;
  }
  footer .top .footer-heading{
    width: 100%;
    min-width:100%;
    
  }
  footer .top .footer-heading-location{
    width: 100%;
    margin-right: 30px;
    margin-left:0px;
    margin-bottom: 30px;
  }
  footer.section-padding{
    padding-left: 5% !important;
  }
  
  }
  footer ul li {
   font-size: calc(var(--body) -1px);
   margin-top: 15px;
   color:var(--color-white)
  }
  footer p.not-link {
  font-size: calc(var(--body) -1px);
    color:var(--color-white);
  }
  footer p.not-link .white{
  color:var(--color-white);
  font-weight: 600;
  }
  footer ul li a{
  color:var(--color-white)
  }
  footer .social-links{
  font-size: 30px;
  margin-top: 20px;
  }
  footer .social-links a{
  margin: 10px;
  color:var(--color-white);
  }
  footer .social-links a:hover,footer ul li a:hover{
  color:var(--color-white);
  font-weight: 600;
  }
  footer .social-links a:hover i{
    transform: scale(1.05);
  }
  /*
  ==========================FOOOTER END==================
  
  */
@media screen and (max-width:480px){
  .header-general {
  justify-content: space-between;
  padding-left: 2px;
  padding-right: 5px;
  height: 60px;
}
.search-form.show{
    top: 60px;  
}
.header-general .logo h4{
  font-size: 35px;
  font-weight: 600;
}
.header-general .logo a img{
width: 40px;
}
}
form p input{
  font-size:var(--body);
}
form p select option{
  font-size:var(--body);
}
form p select{
  font-size:var(--body);
}

.warning{
  display: flex;
  position: fixed;
  justify-content: center;
  flex-direction:column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding:70px 20%;
  top:0;
  bottom: 0;
  left:0;
  right:0;
  margin-left: 0;
  background: var(--color-header);
  z-index: 1600;
}
.warning.hide{
  display:none;
}
.bi-exclamation-triangle{
  font-size:100px;
  color:red;
}
.red{
  color:red;
  font-weight:600;
}
.dummy-warning {
  padding: 2%;
  margin-top: 10%;
  background: var(--color-white);
  border-radius: 10px;
  display: flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
}
.continue-warning{
  padding:10px 20px;
  background:var(--color-green);
  border-radius:10px;
  border:none;
  color:var(--color-white);
  font-size: medium;
  transition:0.3s;
}
.continue-warning:hover{
  transform:scale(1.1);
}
  
@media screen and (max-width:1000px){
  .warning {
    padding: 70px 10%;
  }
}
@media screen and (max-width:600px){
  .warning {
    padding: 70px 5%;
  }
}
@media screen and (max-width:600px){
  .warning {
    padding: 70px 4%;
  }
}

