<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Merriweather:300,400,400i,700,900|Montserrat:300,400,400i,500,700,800&amp;display=swap');

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.42857143;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: Arial;
}

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

/*** End of RESET styles ******/
/*** Fonts ***/
/*** Colors ****/
.text-white {
  color: #ffffff;
}

.text-white *:not(a) {
  color: #ffffff;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.d-flex.no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.d-flex.justify-col {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.d-flex .col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.d-flex .col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .d-flex .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.d-flex .col-6 .text-field {
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .d-flex .col-6 .text-field {
    padding: 20px;
  }
}

.d-flex .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  max-width: 100%;
}

.d-flex .col-auto {
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.d-flex .button-holder .btn.btn-white {
  font-family: 'Libre Franklin', sans-serif;
  background-color: #ffffff;
  color: #161616;
  font-weight: 600;
  padding: 10px 16px 8px 16px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease;
  -o-transition: background-color 0.25s ease, border-color 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 1px;
  text-align: center;
  border: 1px solid #ffffff;
}

.d-flex .button-holder .btn.btn-white:hover,
.d-flex .button-holder .btn.btn-white:focus {
  border: 1px solid #a0c5d8;
  background-color: #a0c5d8;
}

.d-flex .button-holder .btn.btn-white.btn-transparent {
  background-color: transparent;
  color: #fff;
  font-size: 17px;
  max-width: 260px;
  width: 100%;
  border-color: #ffffff;
  border-radius: 0;
  padding: 12px 16px 10px 16px;
}

.d-flex .button-holder .btn.btn-white.btn-transparent:hover,
.d-flex .button-holder .btn.btn-white.btn-transparent:focus {
  color: #fff;
  background-color: #161616;
  border-color: #161616;
}

.d-flex .button-holder .btn.btn-white.btn-large {
  width: 100%;
  max-width: 203px;
  padding-top: 16px;
  padding-bottom: 14px;
}

@media screen and (max-width: 767px) {
  .d-flex .button-holder .btn.btn-white.btn-large {
    max-width: 290px;
    padding-top: 15px;
    padding-bottom: 13px;
  }
}

.flagship-main-columns .container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.flagship-main-columns .container .col-6 {
  position: relative;
  overflow: hidden;
}

.flagship-main-columns .container .col-6:hover .col-bg:after {
  content: '';
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.flagship-main-columns .container .col-6 .col-bg {
  overflow: hidden;
  position: relative;
  min-height: 520px;
}

.flagship-main-columns .container .col-6 .col-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/static/weizmannimages/flagships/flagship-lp/lp-tile-ai.jpg) center no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.flagship-main-columns .container .col-6 .col-bg.brain-bg:after {
  content: "";
  background: url(/static/weizmannimages/flagships/flagship-lp/lp-tile-brain.jpg) center no-repeat;
  background-size: cover;
}

.flagship-main-columns .container .col-6 .col-bg.frontier-bg:after {
  content: "";
  background: url(/static/weizmannimages/flagships/flagship-lp/lp-tile-frontier.jpg) center no-repeat;
  background-size: cover;
}

.flagship-main-columns .container .col-6 .col-bg.sustainability-bg:after {
  content: "";
  background: url(/static/weizmannimages/flagships/flagship-lp/lp-tile-sustainability.jpg) center no-repeat;
  background-size: cover;
}

.flagship-main-columns .container .col-6 .fs-icon-floating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 180px;
  height: 205px;
  z-index: 1;
}

@media screen and (max-width: 1020px) and (min-width: 768px) {
  .flagship-main-columns .container .col-6 .fs-icon-floating {
    height: 125px;
  }
}

@media screen and (max-width: 767px) {
  .flagship-main-columns .container .col-6 .fs-icon-floating {
    height: 147px;
  }
}

.flagship-main-columns .container .col-6 .fs-icon-floating span .svg-icon {
  max-width: 180px;
  height: auto;
}

@media screen and (max-width: 1020px) and (min-width: 768px) {
  .flagship-main-columns .container .col-6 .fs-icon-floating span .svg-icon {
    max-width: 110px;
    display: block;
    margin-left: auto;
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .flagship-main-columns .container .col-6 .fs-icon-floating span .svg-icon {
    max-width: 130px;
    display: block;
    margin-left: auto;
    margin-right: 0;
  }
}

.flagship-main-columns .container .col-6 .col-content {
  position: relative;
  padding: 40px 60px;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .flagship-main-columns .container .col-6 .col-content {
    padding: 40px 40px;
  }
}

@media screen and (max-width: 767px) {
  .flagship-main-columns .container .col-6 .col-content {
    padding: 30px 40px 60px 40px;
  }
}

@media screen and (max-width: 599px) {
  .flagship-main-columns .container .col-6 .col-content {
    padding: 30px 40px 180px 40px;
  }
}

.flagship-main-columns .fs-heading {
  position: relative;
  padding-top: 18px;
}

.flagship-main-columns .fs-heading.orange:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 6px;
  background: #F79521;
}

.flagship-main-columns .fs-heading.blue:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 6px;
  background: #3A81C3;
}

.flagship-main-columns .fs-heading.green:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 6px;
  background: #3AAC49;
}

.flagship-main-columns .fs-heading.purple:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 6px;
  background: #843B94;
}

.flagship-main-columns .fs-heading .title {
  font-family: "Weizmann";
  font-size: 35px;
  line-height: 38px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.flagship-main-columns .fs-text {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 17px;
  line-height: 32px;
  font-weight: 400;
  margin: 16px 0 0 0;
  padding: 0;
}

.flagship-main-columns .button-holder {
  margin-top: 44px;
}</pre></body></html>