@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --text-color-var: #000000;
    --preview-background: #fcfcfc;
    --font-var: Roboto;
    --font-size: 16px;
    --line-height: 1.2;
    --button_border_radius: 10px;
    --button_padding_height: 20px;
    --button_padding_width: 70px;
    --button_padding_height_mob: 20px;
    --button_padding_width_mob: 70px;
    --button_text_color: #FFF;
    --button_bg_color: red;
    --image_position: center;
    --image_height: 45vh;
    --title_color: #000;
    --title_font_size: 30px;
    --line_height_title: 34px;
    --title_font_size_mob: 20px;
    --line_height_title-mob: 24px;
    --box_shadow: 0 16px 32px 0 rgba(0, 40, 120, .35);
}

/* reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

* {
  box-sizing: border-box;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

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

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* preland */

html {
    margin-top: 0 !important;
  }
  
  @media screen and (max-width: 782px) {
    html {
      margin-top: 0 !important;
    }
  }
 

body {
    font-family: var(--font-var), Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: var(--text-color-var);
    background-color: var(--preview-background);
    margin:0;
    padding:0;
    position:relative;
}
  
  .content {
    display: flex;
    justify-content: center;
    z-index: 10000;
    background-color: var(--preview-background);
    overflow: hidden;
  }
  .content .preview__block {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content .preview__block.column {
    flex-direction: column;
  }
  .content .preview__block.row {
    flex-direction: row-reverse;
  }
  .content .preview__block.row-left {
    flex-direction: row;
  }
  .content .preview__image {
    width: 90%;
    max-width: 810px;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    height: auto;
    position: relative;
    overflow-y: hidden;
  }
  .content .preview__image .image {
    position: relative;
    height: inherit;
    transition: transform 0.6s ease;
    width: 100%;
    margin: 10px auto 0;
  }
  .content .preview__image .image picture {
    max-width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
  .content .preview__image .image picture img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  .content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .content-wrap > div {
    display: flex;
    width: 100%;
    margin-top: 15px;
    justify-content: center;
  }
  .content-wrap .title-wrap {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .content-wrap .title-wrap .title {
    width: 80%;
    line-height: var(--line_height_title);
    text-align: center;
    font-size: var(--title_font_size);
    color: var(--title_color);
    font-weight: 500;
  }
  .content-wrap .button-wrap {
    margin-top: 35px;
  }
  .content-wrap .button-wrap .preview__btn {
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: none;
    box-shadow: var(--box_shadow);
    color: var(--button_text_color);
    padding: var(--button_padding_height) var(--button_padding_width);
    border-radius: var(--button_border_radius);
    font-size: 30px;
    transition: all 0.2s;
  }
  .content-wrap .button-wrap .button__main {
    background-color: var(--button_bg_color);
  }
  .content-wrap .button-wrap .blue {
    background: linear-gradient(45deg, #6ab1d7, #33d9de 50%, #002878) 100% 0;
    background-size: 200% 200%;
  }
  .content-wrap .button-wrap .blue:hover {
    background: linear-gradient(45deg, #6ab1d7, #33d9de 50%, #002878);
  }
  .content-wrap .button-wrap .red {
    background: linear-gradient(45deg, rgb(236, 65, 75) 0%, rgb(247, 3, 3) 50%, rgb(120, 0, 54) 100%) 100% 0;
    background-size: 200% 200%;
  }
  .content-wrap .button-wrap .red:hover {
    background: linear-gradient(45deg, rgb(236, 65, 75) 0%, rgb(247, 3, 3) 50%, rgb(120, 0, 54));
  }
  .content-wrap .button-wrap .violet {
    background: linear-gradient(45deg, rgb(175, 65, 236) 0%, rgb(140, 3, 247) 50%, rgb(112, 2, 147) 100%) 100% 0;
    background-size: 200% 200%;
  }
  .content-wrap .button-wrap .violet:hover {
    background: linear-gradient(45deg, rgb(175, 65, 236) 0%, rgb(140, 3, 247) 50%, rgb(112, 2, 147) 100%);
  }
  
  .pulsing {
    animation: heart 1s infinite;
  }
  
  @keyframes heart {
    50% {
      transform: scale(1.1);
    }
  }
  @media (max-width: 576px) {
    .content-wrap {
      margin-top: 20px;
    }
    .content .preview__block {
      flex-direction: column;
      padding-bottom: 115px;
      justify-content: flex-start;
    }
    .content .preview__block.row {
      flex-direction: column;
    }
    .content .preview__block.row-left {
      flex-direction: column;
    }
    .content .preview__image {
      width: 100%;
    }
    .content .preview__image .image {
      padding: 0 20px;
    }
    .content .preview__image .image picture {
      position: relative;
      height: var(--image_height);
      max-width: 100%;
    }
    .content .preview__image .image picture img {
      position: absolute;
      max-width: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: var(--image_position);
    }
    .content .title-wrap .title {
      width: 90%;
      font-size: var(--title_font_size_mob);
      line-height: var(--line_height_title-mob);
    }
    .content .button-wrap .preview__btn {
      font-size: 28px;
      padding: var(--button_padding_height_mob) var(--button_padding_width_mob);
    }
  }
  