/* Define Colours */
:root {
  --accepted: #7fb23f;
  --warning: #fedf1a;
  --primary: #2490ef;
  --primaryb:#1573c5;
  --danger: #ff3366;
  

  --light-blue: #fff;
  --dark-blue: #354358;
  

  --dark: rgba(25, 25, 33, 1);
  --light: #f9fafa;

  /* Dark Colors*/
  --d1: #121620;
  --d2: #111;
  --d3: #222;
  --d4: #333;
  --d5: #666;
  --d6: #738195;
  --d7: #aaa;
  --d8: #bbb;
  --d9: #ccc;
  --d10: #ddd;
  --d11: #f5f5f5;
  --d12: #fff;
  --d13: #fff;

  /* Light Colors*/
  --l1: #fff;
  --l2: #eee;
  --l3: #ddd;
  --l4: #ccc;
  --l5: #bbb;
  --l6: #94a8c4;
  --l7: #738195;
  --l8: #666;
  --l9: #444;
  --l10: #333;
  --l11: #222;
  --l12: #111;
  --l13: #121620;

  /* Levels */
  --level-1: #8dccad;
  --level-2: #f5cc7f;
  --level-3: #7b9fe0;
  --level-4: #f27c8d;
}

/*START OF GLOBAL PARAMETERS*/

* {
  margin: 0;
  padding: 0;

  font-display: block;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

li {
  list-style: none;
}

a,
a:active,
a:visited,
a:hover,
button,
input {
  text-decoration: none;
  outline: 0;
  color: inherit;
}

.next-arrow::before {
  content: "→";
  font-style: normal;
  display: inline-block;
  margin-left: 9px;
  transform: scale(0.8);
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
 
ol {
  list-style: none;
}
 
 
/* END OF GLOBAL PARAMETERS*/

/* Default LightTheme */
body {
  --text-color: var(--dark);
  --bg-color: var(--light);
  --header-color: var(--dark-blue);


  --color-1: var(--d1);
  --color-2: var(--d2);
  --color-3: var(--d3);
  --color-4: var(--d4);
  --color-5: var(--d5);
  --color-6: var(--d6);
  --color-7: var(--d7);
  --color-8: var(--d8);
  --color-9: var(--d9);
  --color-10: var(--d10);
  --color-11: var(--d11);
  --color-12: var(--d12);
  --color-13: var(--d13);




}
/* Define DarkTheme */
body.dark-theme {
  --text-color: var(--light);
  --bg-color: var(--dark);
  --header-color: var(--light-blue);


  --color-1: var(--l1);
  --color-2: var(--l2);
  --color-3: var(--l3);
  --color-4: var(--l4);
  --color-5: var(--l5);
  --color-6: var(--l6);
  --color-7: var(--l7);
  --color-8: var(--l8);
  --color-9: var(--l9);
  --color-10: var(--l10);
  --color-11: var(--l11);
  --color-12: var(--l12);
  --color-13: var(--l13);
}

@media (prefers-color-scheme: dark) {
  /* defaults to dark theme */
  body {
    --text-color: var(--light);
    --bg-color: var(--dark);
    --header-color: var(--light-blue);

    --color-1: var(--l1);
    --color-2: var(--l2);
    --color-3: var(--l3);
    --color-4: var(--l4);
    --color-5: var(--l5);
    --color-6: var(--l6);
    --color-7: var(--l7);
    --color-8: var(--l8);
    --color-9: var(--l9);
    --color-10: var(--l10);
    --color-11: var(--l11);
    --color-12: var(--l12);
    --color-13: var(--l13);
  }
  /* Define LightTheme */
  body.light-theme {
    
    --text-color: var(--dark);
    --bg-color: var(--light);
    --header-color: var(--dark-blue);

    --color-1: var(--d1);
    --color-2: var(--d2);
    --color-3: var(--d3);
    --color-4: var(--d4);
    --color-5: var(--d5);
    --color-6: var(--d6);
    --color-7: var(--d7);
    --color-8: var(--d8);
    --color-9: var(--d9);
    --color-10: var(--d10);
    --color-11: var(--d11);
    --color-12: var(--d12);
    --color-13: var(--d13);

   
  }
 
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: "Plain", "Lausanne", "Suisse", Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  max-width: 1100px;
  min-width: 945px;

 
}

body{ margin:0 auto; }


/* Main Headings */
h1,
h2,
h3,
h6 {
  color: var(--text-color);
}

/* Text & Paragraph */
h4,
h5,
p,
button,
input {
  color: var(--text-color);
}

/* Navigation Container */

nav {
  display: flex;
  align-items: center;
  background-color: var(--color-13);
  border-bottom: 1px solid var(--color-10);
  padding: 0px 15px;
  position: relative;
  z-index: 2;
}

nav * {
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Navigation Items */
nav div {
  margin: 15px;
}

/* Navigation Logo */
nav .logo {
  flex-grow: 4;
}
nav .logo img {
  height: 40px;
}
nav .logo svg {
  height: 30px;
  margin: 0;
  margin-left: 15px;
}
/* Logo Color */
.st0 {
  fill: var(--header-color);
}

/* Navigation Search Box */
nav .search {
  background-color: var(--color-11);
  border: 1px solid var(--color-10);
  opacity: 0.4;
  display: block;
  width: 200px;

  border-radius: 3px;
  padding: 8px 10px 7px 40px;
  color: var(--color-6);

  font-size: 0.75em;
  font-weight: 400;

  font-family: "Lausanne", "Suisse", Arial, Helvetica, sans-serif;

  position: relative;
}

.search-icon {
  fill: var(--color-5);
  display: block;
  height: 30px;
  width: 30px;
  transform: scale(0.5);
  position: absolute;
  left: 0;
  top: -1px;
}

nav .menu {
}

nav .menu ul {
  display: flex;
}

nav li {
  font-size: 0.81em;
  letter-spacing: -0.25px;
  color: var(--color-6);
  cursor: pointer;
  font-weight: 400;

  border-right: 1px solid var(--color-10);
  margin: 5px 6px;
  padding-right: 11px;

  opacity: 0.9;

  font-family: "Lausanne", "Suisse", Arial, Helvetica, sans-serif;
  
}

nav li:hover {
  color: var(--primary);

}

nav li:hover .drop-down {
 border-top-color: var(--primary);
transform: rotate(-90deg);
}

nav li:last-of-type {
  margin: 5px 0px;
  padding-right: 0;
  border-right: none;
}

nav .mode {
  transform: scale(0.65);
}

/* Drop Down Triangle */

.drop-down {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--color-5);
  margin-left: 2.1px;
  top: -1px;
  position: relative;
  left: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dark/Light Mode Toggle */

/*Hides Input */
input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
}

/*Uses Label as Toggle Button */
label {
  cursor: pointer;
  text-indent: -9999px;
  width: 60px;
  height: 30px;
  background: #738195;
  display: inline-block;
  border-radius: 100px;
  position: relative;
}

label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

input:checked + label {
  background: var(--primary);
}

input:checked + label:after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}

label:active:after {
  width: 40px;
}

/*Header Styles */
header {
  min-height: 300px;

  background-color: var(--color-13);

  position: relative;

  padding: 100px 0;
  text-align: center;
  padding: 100px 50px;

  border-radius: 6px;
  overflow: hidden;

  z-index: 1;
  
}



header .content {
  display: flex;
}

header .intro,
header .figure {
  flex: 1;
}

/*Header Left Text */
header .intro {
  text-align: left;
  
}
header h1 {
  font-weight: 400;
  line-height: 1em;
  font-size: 2.3em;
  letter-spacing: -0.02em;
  color: var(--header-color);
  font-family: "Lausanne", "Suisse", Arial, Helvetica, sans-serif;
  margin-bottom: 15px;
}

header h1 b {
  font-weight: 500;
}

header p {
  font-size: 1.15em;
  line-height: 1.15em;

  letter-spacing: -0.008em;
  color: var(--color-6);
  margin: 10px 0 30px 0;
  font-weight: 300;
  font-family: "Lausanne", "Suisse", Arial, Helvetica, sans-serif;
  width: 80%;
  opacity: 0.7;
}

header button {
  background-color: var(--primary);
  padding: 12px 27px;
  border-radius: 6px;
  color: #dae3ec;
  border: 1px solid var(--primary-b);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 0.85em;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-family: "Plain", "Lausanne", "Suisse", Arial, Helvetica, sans-serif;
}
header button.secondary {
  background-color: transparent !important;
  color: var(--color-8);
  border: 1px solid var(--color-8);
  margin-left: 15px;
}

header button.secondary:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
}

header button.secondary .drop-down {
  opacity: 0.3;
  margin-left: 8px;
}

header button:hover {
  background-color: #01b1f7;
  cursor: pointer;
}

header button:hover .drop-down {
  border-top-color: #01b1f7;
  opacity: 1;
}

/*Header Right Image */

header .figure {

  text-align: center;
}
/*Content is 85% of 50% Container = %42.5 of Page Width */

header .figure img {
  width: 85%;
}

/*  MachineLearning Section */

#machinelearning {
  display: block;
  padding:40px;
}

.title {
  display: block;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--color-10);
  padding-bottom: 15px;
}


.title p {
  color: var(--color-7);
  font-family: "Lausanne", "Suisse", Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  text-transform: capitalize;
  margin-top: 5px;
}

h2 {
  font-family: "Lausanne", "Suisse", Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  color: var(--header-color)
}

h2 b {
  font-weight: 500;
}


/* Flex Module Elements (3) */

.elements {
  display: flex;

}
.elements div:hover {

transform: scale(1.05);
z-index: 3;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
cursor: pointer;

filter: brightness(1.05);
 

}

.elements h3 {
  font-family: "Lausanne", "Suisse", Arial, Helvetica, sans-serif;
  font-size: 1.15em;
  margin-bottom: 10px;
  font-weight: 300;
  color: var(--color-7);

}

 .elements h3 b {
  font-weight: 500;
  color: var(--color-2);
}

/* Elements Styles */

.col1,
.col2,
.col3 {
  flex: 1;
  position: relative;

  margin-left: 15px;
  background-color: var(--color-13);

  border: 1px solid var(--color-10);
  border-radius: 6px;

  padding: 25px 15px;
  padding-left: 97px;

  overflow:visible;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);

}

.col1 {
  margin-left: 0;
  z-index: 3;
}

.col2 {

  z-index: 2;
}
.col3 {
 
  z-index: 1;
}


/* Elements Images */

 .elements img {
  display:block;
  position: absolute;
  left: 0;
}

#machinelearning .col1 img {
  height: 125px;
  margin-left: 5px;
  margin-top: -15px;
  z-index: 2;
}

#machinelearning .col3 img {
  height: 125px;
  margin-left: -25px;
  margin-top: -8px;
  z-index: 1;
}

#machinelearning .col2 img {
  height: 160px;
  margin-left: 15px;
  margin-top: -25px;
  z-index: 1;

}



#bio-stats .col1 img {
  height: 125px;
  margin-left: -10px;
  margin-top:-5px;
  z-index: 2;
}

#bio-stats .col3 img {
  height: 127px;
  margin-left: -30px;
  margin-top: -8px;
  z-index: 1;
}

#bio-stats .col2 img {
  height: 110px;
  margin-left: -21px;
  margin-top: 10px;
  z-index: 1;

}


#bio-stats img, #machinelearning img{

  transform: scale(0.8);

}


.elements p {
  font-size: 0.85em;
  line-height: 1.2em;
  opacity: 0.7;
  display: block;
  height: 60px;
  font-weight: 400;
  font-family: "Plain", "Lausanne", "Suisse", Arial, Helvetica, sans-serif;
  color: var(--color-6);
  letter-spacing: -0.03em;

  text-align: left;


}

.elements a {
  color: #01b1f7;
  margin-top: 0px;
  font-weight: 400;
  display: block;
  position: relative;

  margin-top: 5px;
  font-size: 0.8em;

  text-decoration: underline;
}

.elements a:hover {
  text-decoration: underline;
}


/* Bio-Stats Section */

#top-section,#bottom-section {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  
  border-radius: 6px;
  overflow: hidden;
}


#bio-stats {
  display: block;
  padding:40px;
  border-radius: 6px;
  background-color: var(--color-13);
}


/* Footer Section */
footer {
  background-color: var(--color-1);
  color: var(--color-6);
  padding: 30px;
  font-size: 0.9em;
  text-align: left;
}


/* Footer Top Section */
footer #top-footer {
  display: flex;
  text-align: left;
}
footer #top-footer .top-footer-col {
  flex: 1;
}

footer h4 {
  color: var(--color-6);
  font-weight:500;
  margin:3px;
  margin-bottom: 12px;
  text-align: left;
  font-size: 0.9em;
  letter-spacing: -0.03em; 
  

}

footer h5 {
  color: var(--color-6);
  font-weight: 400;
}


footer #top-footer li {
  color: var(--color-8);
  font-weight: 400;
  font-size: 0.8em;
  margin: 6px 5px;
  text-align: left;

}

footer a {
  background-image: 
  linear-gradient(to right, var(--color-6) 33%, rgba(255,255,255,0) 0%);
  background-position: bottom;
  background-size: 3px 1px;
  background-repeat: repeat-x;  padding-bottom: 2px;

  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  display: inline-block;

}

footer a:after {
content: "";
display: inline-block;
  width: 0%;
  position: absolute;
  height: 1px;
  background-color: var(--color-12);
  left: 0;
  bottom: 0px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);

}



footer a:hover:after {
  width: 100%;
}
 
footer a:hover {
  color: var(--color-12) !important;
}


/* Footer Bottom Section */
footer #bottom-footer .bottom-footer-col {
  flex: 1;
}

footer #bottom-footer {
  display: flex;
  font-size:0.7em;
  margin-top: 70px;
}


footer #bottom-footer-col {
  flex: 1;

}

 
footer #bottom-footer .bf1 {
  flex: 2;
}
 

footer #bottom-footer .bf5 {

  text-align: right;
}
 
footer #bottom-footer a {
  margin: 0 10px;

}

footer #bottom-footer .bf5 b{
display: inline-block;
 left: -65px;
 font-weight: 400;
 position: relative;
}

footer #bottom-footer svg {
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
 


footer #bottom-footer svg:hover {
  cursor: pointer;
  fill: var(--color-12) !important;
}
 

footer #bottom-footer  svg:first-of-type {
  width: 20px;
  display: inline-block;
  position: absolute;
  fill: var(--color-6);
  margin-top:-8px;
  margin-left: -49px;
}



footer #bottom-footer  svg:nth-of-type(2) {
  width: 20px;
  display: inline-block;
  position: absolute;
  fill: var(--color-6);
  margin-top:-4px;
  margin-left: -20px;
}


/* Footer Address */
footer #top-footer .tf1 li:first-of-type {
  color: var(--color-6);  opacity: 0.6;
}



/* Flowchart  Section */

#flowchart {

  min-height: 800px;
  background-color: var(--color-13);
  font-family: "Lausanne", "Suisse", Arial, Helvetica, sans-serif;
  text-align: center;
  position: relative;
  padding-top:60px;
}



/* Flowchart  Level 1 */
 
#flowchart .level-1 {

  position: relative;
  width: 100%;

  
}

#flowchart .level-1 li{
  margin: 0 auto 50px auto;
  background: var(--level-1);
  position: relative;
  width: 20%;
  height: 60px;
  color: var(--color-1);
  font-weight: 400;

  text-align: center;

}

#flowchart .level-1 li h1{
  position: absolute;
  width: 100%;
  top: 37%;
  left: 50%;
  transform: translate(-50%);
  opacity: 0.7;
  font-size: 1.11em;
  font-weight: 400;
  letter-spacing: -0.01em;

  }

 
#flowchart .level-1::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: var(--level-1);
}




/* Flowchart  Level 2 */

#flowchart .level-2{
display: flex;
}

#flowchart .level-2 li{
flex: 1;
}

 /* # of Flowchart Columns */

.level-2-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
 

 /* Horizontal Line */
.level-2-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 16.7%;
  width: 66.7%;
  height: 2px;
  background: var(--level-1);
}
 

 /* After Line: HIDDEN */
.level-2-wrapper::after {
  display: none;
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: calc(100% + 20px);
  height: 2px;
  background: #222;
  z-index: 123123312;
  
}
 
.level-2-wrapper li {
  position: relative;
}
  /* Branches TO Level 2*/
.level-2-wrapper > li::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--level-1);
}
 
.level-2 {
  width: 45%;
  margin: 0 auto 40px;
  background: var(--level-2);

}
   /* Branches TO Level 3*/
.level-2::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: var(--level-2);
}
 
 /* Hidden: Left Branches FROM Level 2*/
.level-2::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: var(--level-1);
  transform: scale(1) !important;
}

.rectangle {
  position: relative;
  padding: 10px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15) !important;
  border-radius: 6px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);

}


.rectangle:hover {
  transform: scale(1.1);
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(0,0,0,0.2) !important;
}

.level-2-wrapper .level-2 span{
  text-align: center;
  font-size: 0.53em;
  width: 100%;
  opacity: 0.7;
 
}
 


.level-3-wrapper {
  display: flex;
  font-size: 0.6em;
 

}

.level-3-wrapper .level-3-position {
  flex: 1;
  display: flex;
  font-size: 0.7em;
  margin-right: 25px;

}

.level-3-wrapper .level-3-position .level-3.rectangle {
  background: var(--level-3);
  margin-left: 15px;

   
}


.rectangle b {
 opacity: 0;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  background:var(--color-4);
  color: var(--color-8);
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  z-index: 9999999995664;
  position: absolute;
  top: -50px;
  display: block;
  left: 50%;
  min-width: 200px;
  transform: translate(-50%)scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
z-index: 889921838012938;
}



.rectangle:hover b {
  display: block;
  opacity: 0.9;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter:blur(22px);
  transform: translate(-50%)scale(0.7);
}


.rectangle b i {
  display: block;
  width: 0; 
  height: 0; 
  width: 0; 
  height: 0; 
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--color-4);

  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -15px;
  

}
.containerchart {
  background-color: var(--color-12);
  padding: 50px 0 150px 0;

}


#flosvg {

  display: block;
  min-height: 800px;
  position: relative;
  width: 80%;
  left: 10%;
}

.cls-1 {
  fill: var(--color-1);
}
.cls-2 {
  fill: #73c8f0;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);

}
.cls-3 {
  fill: var(--color-12);
}

.cls-2:hover {
  fill: #b3e3ff;

  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}









.agreementfix {
  background-color: var(--color-12);
  display: block;
  height: 70px;
  position: relative;
  top: -407px;
  padding-top:30px;
  left: 275px;
  width:190px;
  margin-left: 0;
  padding-left: 0;
  font-size: 13px;

}
.agreementfix a {
  border: 2px solid var(--color-1);
  padding: 10px;
  background-color: #73c8f0;
  position: relative;
  left: -27px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
font-weight: 400;
}

.agreementfix a:hover {
background-color: #b3e3ff;
}


.softxlogo {
  height: 40px;
  display: block;
  margin-top: -70px;
  position: absolute;
  left: 15px;  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(1.3);

}

.softxlogo:hover {
opacity: 0.8;
}



.agreementfix2 {
  background-color: #fff;
  display: block;
 
  position: relative;
  top: -560px;
  padding-top:10px;
  left: 605px;
  width: 135px;
  margin-left: 0;
  padding-left: 0;
  font-size: 13px;
  z-index: 999999;

}
.agreementfix2 a {
  border: 2px solid var(--color-1);
  padding: 11px;
  background-color: #73c8f0;
  position: relative;
  left: px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
font-weight: 400;
display: block;
margin: 5px 0;
top: 0;
}

.agreementfix2 a:hover {
background-color: #b3e3ff;
}


#lesswidth {
  width: 90px;
}


















.agreementfixx1 {
  background-coxlor: var(--color-12);
  display: block;
  height: 70px;
  position: relative;
  top: -580px;
  padding-top:30px;
  left: 620px;
  width:220px;
  margin-left: 0;
  padding-left: 0;
  font-size: 13px;

}

.agreementfixx1 a {
  border: 2px solid var(--color-1);
  padding: 10px;
  background-color: #73c8f0;
  position: relative;
  left: -27px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
font-weight: 400;
}

.agreementfixx1 a:hover {
background-color: #b3e3ff;
}



.agreementfixx2 {
	
  background-coloxr: var(--color-12);
  display: block;
  height: 70px;
  position: relative;
  top: -506px;
  padding-top:30px;
  left: 638px;
  width:390px;
  margin-left: 0;
  padding-left: 0;
  font-size: 13px;
 
}
.agreementfixx2 a {
  border: 2px solid var(--color-1);
  padding: 10px;
  background-color: #73c8f0;
  position: relative;
  left: -27px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
font-weight: 400;
}

.agreementfixx2 a:hover {
background-color: #b3e3ff;
}
