@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap);
/*
Theme Name: My First Woo Commerce Site
Author: Ralph Samaniego
*/
/* Import */
.pink {
  background: pink;
}

/* Looping for CSS Custom properties */
/* Declares css properties in the root element of html */
:root {
  /*Colors */
  --primary: #000000 ;
  --accent: #FFD200 ;
  --success: #9FD356 ;
  --danger: #960200 ;
  --warning: #EDA921 ;
  --info: #0074D9 ;
  --white: #ffffff ;
  --silver: #dddddd ;
  --gray: #aaaaaa ;
  --dark: #333333 ;
  --black: #111111 ;
  --light: #ffffff ;
  --green: #228B22 ;
  /*RGB values for colors */
  --primary-rgb: 0, 0, 0;
  --accent-rgb: 255, 210, 0;
  --success-rgb: 159, 211, 86;
  --danger-rgb: 150, 2, 0;
  --warning-rgb: 237, 169, 33;
  --info-rgb: 0, 116, 217;
  --white-rgb: 255, 255, 255;
  --silver-rgb: 221, 221, 221;
  --gray-rgb: 170, 170, 170;
  --dark-rgb: 51, 51, 51;
  --black-rgb: 17, 17, 17;
  --light-rgb: 255, 255, 255;
  --green-rgb: 34, 139, 34;
  /*Font weights */
  --weight-thin: 100 ;
  --weight-light: 300 ;
  --weight-normal: 400 ;
  --weight-semibold: 500 ;
  --weight-bold: 700 ;
  --weight-black: 900 ;
}

/* @import '1-vendor/bootstrap'; */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

html, body {
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Montserrat", Helvetica, Verdana, sans-serif;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

a:active,
a:hover {
  outline: 0;
}

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

td,
th {
  padding: 0;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

::-moz-selection {
  background: var(--accent);
}

::selection {
  background: var(--accent);
}

/* Gets the color from the theme defaults */
/* Passes in the color thens searches for the Group name called colors
   then map-get the color
*/
/* Calls the font weight */
/* Automatically converts the pixel unit to rem */
/* Adding a background for the buttons */
/* Generates Typographic elements and sizes */
/* Mixin to create triangles */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-family: "Montserrat", Helvetica, Verdana, sans-serif;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
}

a {
  color: var(--primary) !important;
  text-decoration: none;
  outline: 0;
}

/* Loop to generate the Text Elements */
/* The element */
h1 {
  font-size: 3rem;
  font-weight: var(--weight-bold);
  /* Checks if it has mobile size property */
}
@media only screen and (max-width: 840px) {
  h1 {
    font-size: 2rem;
  }
}

/* The element */
h2 {
  font-size: 2.4375rem;
  font-weight: var(--weight-bold);
  /* Checks if it has mobile size property */
}
@media only screen and (max-width: 840px) {
  h2 {
    font-size: 1.75rem;
  }
}

/* The element */
h3 {
  font-size: 1.9375rem;
  font-weight: var(--weight-bold);
  /* Checks if it has mobile size property */
}
@media only screen and (max-width: 840px) {
  h3 {
    font-size: 1.5rem;
  }
}

/* The element */
h4 {
  font-size: 1.5625rem;
  font-weight: var(--weight-bold);
  /* Checks if it has mobile size property */
}
@media only screen and (max-width: 840px) {
  h4 {
    font-size: 1.25rem;
  }
}

/* The element */
h5 {
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  /* Checks if it has mobile size property */
}
@media only screen and (max-width: 840px) {
  h5 {
    font-size: 1.125rem;
  }
}

/* The element */
h6 {
  font-size: 1rem;
  font-weight: var(--weight-bold);
  /* Checks if it has mobile size property */
}

/* The element */
p {
  font-size: 1rem;
  font-weight: var(--weight-normal);
  /* Checks if it has mobile size property */
}

/* The element */
.head1 {
  font-size: 3.8rem;
  font-weight: var(--weight-bold);
  /* Checks if it has mobile size property */
}
@media only screen and (max-width: 840px) {
  .head1 {
    font-size: 7vw;
  }
}

/* The element */
.head2 {
  font-size: 4.5rem;
  font-weight: var(--weight-bold);
  /* Checks if it has mobile size property */
}
@media only screen and (max-width: 840px) {
  .head2 {
    font-size: 8.5vw;
  }
}

/* The element */
.head3 {
  font-size: 5.25rem;
  font-weight: var(--weight-bold);
  /* Checks if it has mobile size property */
}
@media only screen and (max-width: 840px) {
  .head3 {
    font-size: 9.5vw;
  }
}

/* The element */
.head4 {
  font-size: 6rem;
  font-weight: var(--weight-bold);
  /* Checks if it has mobile size property */
}
@media only screen and (max-width: 840px) {
  .head4 {
    font-size: 11vw;
  }
}

/* The element */
.blurb1 {
  font-size: 0.875rem;
  font-weight: var(--weight-normal);
  /* Checks if it has mobile size property */
}

/* The element */
.blurb2 {
  font-size: 0.9375rem;
  font-weight: var(--weight-normal);
  /* Checks if it has mobile size property */
}

/* The element */
.blurb3 {
  font-size: 1.125rem;
  font-weight: var(--weight-normal);
  /* Checks if it has mobile size property */
}

/* The element */
.blurb4 {
  font-size: 1.25rem;
  font-weight: var(--weight-normal);
  /* Checks if it has mobile size property */
}

/* The element */
.menu-item {
  font-size: 1.25rem;
  font-weight: var(--weight-normal);
  /* Checks if it has mobile size property */
}
@media only screen and (max-width: 840px) {
  .menu-item {
    font-size: 1rem;
  }
}

/* The element */
.menu-item-has-children > .sub-menu {
  font-size: 1rem;
  font-weight: var(--weight-normal);
  /* Checks if it has mobile size property */
}
@media only screen and (max-width: 840px) {
  .menu-item-has-children > .sub-menu {
    font-size: 0.875rem;
  }
}

/* Generate for color classes */
/*RGB values for colors */
.hex-primary {
  color: #000000 !important;
}

.background-primary {
  background: #000000 !important;
}

.hex-accent {
  color: #FFD200 !important;
}

.background-accent {
  background: #FFD200 !important;
}

.hex-success {
  color: #9FD356 !important;
}

.background-success {
  background: #9FD356 !important;
}

.hex-danger {
  color: #960200 !important;
}

.background-danger {
  background: #960200 !important;
}

.hex-warning {
  color: #EDA921 !important;
}

.background-warning {
  background: #EDA921 !important;
}

.hex-info {
  color: #0074D9 !important;
}

.background-info {
  background: #0074D9 !important;
}

.hex-white {
  color: #ffffff !important;
}

.background-white {
  background: #ffffff !important;
}

.hex-silver {
  color: #dddddd !important;
}

.background-silver {
  background: #dddddd !important;
}

.hex-gray {
  color: #aaaaaa !important;
}

.background-gray {
  background: #aaaaaa !important;
}

.hex-dark {
  color: #333333 !important;
}

.background-dark {
  background: #333333 !important;
}

.hex-black {
  color: #111111 !important;
}

.background-black {
  background: #111111 !important;
}

.hex-light {
  color: #ffffff !important;
}

.background-light {
  background: #ffffff !important;
}

.hex-green {
  color: #228B22 !important;
}

.background-green {
  background: #228B22 !important;
}

.press-primary, .press-warning, .press-info, .press-danger, .press-success {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.375rem;
}

/* Gets the color from the theme defaults */
/* Passes in the color thens searches for the Group name called colors
   then map-get the color
*/
/* Calls the font weight */
/* Automatically converts the pixel unit to rem */
@-webkit-keyframes show-element {
  0% {
    opacity: 0.9;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  67% {
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show-element {
  0% {
    opacity: 0.9;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  67% {
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.show-element {
  -webkit-animation: show-element 2s;
          animation: show-element 2s;
}

/* @import '3-framework/breakpoint.scss';
@import '3-framework/grid.scss'; */
.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ml-1 {
  margin-left: 0.5rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.ml-3 {
  margin-left: 1.5rem !important;
}

.ml-4 {
  margin-left: 2rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.pl-1 {
  padding-left: 0.5rem !important;
}

.pl-2 {
  padding-left: 1rem !important;
}

.pl-3 {
  padding-left: 1.5rem !important;
}

.pl-4 {
  padding-left: 2rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.mr-1 {
  margin-right: 0.5rem !important;
}

.mr-2 {
  margin-right: 1rem !important;
}

.mr-3 {
  margin-right: 1.5rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.pr-1 {
  padding-right: 0.5rem !important;
}

.pr-2 {
  padding-right: 1rem !important;
}

.pr-3 {
  padding-right: 1.5rem !important;
}

.pr-4 {
  padding-right: 2rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.pt-auto {
  padding-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.pb-auto {
  padding-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.pl-auto {
  padding-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.pr-auto {
  padding-right: auto !important;
}

.m-auto {
  margin: 0 auto !important;
}

.p-auto {
  padding: 0 auto !important;
}

@media only screen and (max-width: 400px) {
  /* If statement checks if increment is 0 */
  .mt-xs-00 {
    margin-top: 0 !important;
  }

  .mt-xs-10 {
    margin-top: 10px !important;
  }

  .mt-xs-20 {
    margin-top: 20px !important;
  }

  .mt-xs-30 {
    margin-top: 30px !important;
  }

  .mt-xs-40 {
    margin-top: 40px !important;
  }

  .mt-xs-50 {
    margin-top: 50px !important;
  }

  .mt-xs-60 {
    margin-top: 60px !important;
  }

  .mt-xs-70 {
    margin-top: 70px !important;
  }

  .mt-xs-80 {
    margin-top: 80px !important;
  }

  .mt-xs-90 {
    margin-top: 90px !important;
  }

  .mt-xs-100 {
    margin-top: 100px !important;
  }

  .mt-xs-110 {
    margin-top: 110px !important;
  }

  .mt-xs-120 {
    margin-top: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pt-xs-00 {
    padding-top: 0 !important;
  }

  .pt-xs-10 {
    padding-top: 10px !important;
  }

  .pt-xs-20 {
    padding-top: 20px !important;
  }

  .pt-xs-30 {
    padding-top: 30px !important;
  }

  .pt-xs-40 {
    padding-top: 40px !important;
  }

  .pt-xs-50 {
    padding-top: 50px !important;
  }

  .pt-xs-60 {
    padding-top: 60px !important;
  }

  .pt-xs-70 {
    padding-top: 70px !important;
  }

  .pt-xs-80 {
    padding-top: 80px !important;
  }

  .pt-xs-90 {
    padding-top: 90px !important;
  }

  .pt-xs-100 {
    padding-top: 100px !important;
  }

  .pt-xs-110 {
    padding-top: 110px !important;
  }

  .pt-xs-120 {
    padding-top: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .mb-xs-00 {
    margin-bottom: 0 !important;
  }

  .mb-xs-10 {
    margin-bottom: 10px !important;
  }

  .mb-xs-20 {
    margin-bottom: 20px !important;
  }

  .mb-xs-30 {
    margin-bottom: 30px !important;
  }

  .mb-xs-40 {
    margin-bottom: 40px !important;
  }

  .mb-xs-50 {
    margin-bottom: 50px !important;
  }

  .mb-xs-60 {
    margin-bottom: 60px !important;
  }

  .mb-xs-70 {
    margin-bottom: 70px !important;
  }

  .mb-xs-80 {
    margin-bottom: 80px !important;
  }

  .mb-xs-90 {
    margin-bottom: 90px !important;
  }

  .mb-xs-100 {
    margin-bottom: 100px !important;
  }

  .mb-xs-110 {
    margin-bottom: 110px !important;
  }

  .mb-xs-120 {
    margin-bottom: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pb-xs-00 {
    padding-bottom: 0 !important;
  }

  .pb-xs-10 {
    padding-bottom: 10px !important;
  }

  .pb-xs-20 {
    padding-bottom: 20px !important;
  }

  .pb-xs-30 {
    padding-bottom: 30px !important;
  }

  .pb-xs-40 {
    padding-bottom: 40px !important;
  }

  .pb-xs-50 {
    padding-bottom: 50px !important;
  }

  .pb-xs-60 {
    padding-bottom: 60px !important;
  }

  .pb-xs-70 {
    padding-bottom: 70px !important;
  }

  .pb-xs-80 {
    padding-bottom: 80px !important;
  }

  .pb-xs-90 {
    padding-bottom: 90px !important;
  }

  .pb-xs-100 {
    padding-bottom: 100px !important;
  }

  .pb-xs-110 {
    padding-bottom: 110px !important;
  }

  .pb-xs-120 {
    padding-bottom: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .ml-xs-00 {
    margin-left: 0 !important;
  }

  .ml-xs-10 {
    margin-left: 10px !important;
  }

  .ml-xs-20 {
    margin-left: 20px !important;
  }

  .ml-xs-30 {
    margin-left: 30px !important;
  }

  .ml-xs-40 {
    margin-left: 40px !important;
  }

  .ml-xs-50 {
    margin-left: 50px !important;
  }

  .ml-xs-60 {
    margin-left: 60px !important;
  }

  .ml-xs-70 {
    margin-left: 70px !important;
  }

  .ml-xs-80 {
    margin-left: 80px !important;
  }

  .ml-xs-90 {
    margin-left: 90px !important;
  }

  .ml-xs-100 {
    margin-left: 100px !important;
  }

  .ml-xs-110 {
    margin-left: 110px !important;
  }

  .ml-xs-120 {
    margin-left: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pl-xs-00 {
    padding-left: 0 !important;
  }

  .pl-xs-10 {
    padding-left: 10px !important;
  }

  .pl-xs-20 {
    padding-left: 20px !important;
  }

  .pl-xs-30 {
    padding-left: 30px !important;
  }

  .pl-xs-40 {
    padding-left: 40px !important;
  }

  .pl-xs-50 {
    padding-left: 50px !important;
  }

  .pl-xs-60 {
    padding-left: 60px !important;
  }

  .pl-xs-70 {
    padding-left: 70px !important;
  }

  .pl-xs-80 {
    padding-left: 80px !important;
  }

  .pl-xs-90 {
    padding-left: 90px !important;
  }

  .pl-xs-100 {
    padding-left: 100px !important;
  }

  .pl-xs-110 {
    padding-left: 110px !important;
  }

  .pl-xs-120 {
    padding-left: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .mr-xs-00 {
    margin-right: 0 !important;
  }

  .mr-xs-10 {
    margin-right: 10px !important;
  }

  .mr-xs-20 {
    margin-right: 20px !important;
  }

  .mr-xs-30 {
    margin-right: 30px !important;
  }

  .mr-xs-40 {
    margin-right: 40px !important;
  }

  .mr-xs-50 {
    margin-right: 50px !important;
  }

  .mr-xs-60 {
    margin-right: 60px !important;
  }

  .mr-xs-70 {
    margin-right: 70px !important;
  }

  .mr-xs-80 {
    margin-right: 80px !important;
  }

  .mr-xs-90 {
    margin-right: 90px !important;
  }

  .mr-xs-100 {
    margin-right: 100px !important;
  }

  .mr-xs-110 {
    margin-right: 110px !important;
  }

  .mr-xs-120 {
    margin-right: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pr-xs-00 {
    padding-right: 0 !important;
  }

  .pr-xs-10 {
    padding-right: 10px !important;
  }

  .pr-xs-20 {
    padding-right: 20px !important;
  }

  .pr-xs-30 {
    padding-right: 30px !important;
  }

  .pr-xs-40 {
    padding-right: 40px !important;
  }

  .pr-xs-50 {
    padding-right: 50px !important;
  }

  .pr-xs-60 {
    padding-right: 60px !important;
  }

  .pr-xs-70 {
    padding-right: 70px !important;
  }

  .pr-xs-80 {
    padding-right: 80px !important;
  }

  .pr-xs-90 {
    padding-right: 90px !important;
  }

  .pr-xs-100 {
    padding-right: 100px !important;
  }

  .pr-xs-110 {
    padding-right: 110px !important;
  }

  .pr-xs-120 {
    padding-right: 120px !important;
  }
}
@media only screen and (max-width: 576px) {
  /* If statement checks if increment is 0 */
  .mt-sm-00 {
    margin-top: 0 !important;
  }

  .mt-sm-10 {
    margin-top: 10px !important;
  }

  .mt-sm-20 {
    margin-top: 20px !important;
  }

  .mt-sm-30 {
    margin-top: 30px !important;
  }

  .mt-sm-40 {
    margin-top: 40px !important;
  }

  .mt-sm-50 {
    margin-top: 50px !important;
  }

  .mt-sm-60 {
    margin-top: 60px !important;
  }

  .mt-sm-70 {
    margin-top: 70px !important;
  }

  .mt-sm-80 {
    margin-top: 80px !important;
  }

  .mt-sm-90 {
    margin-top: 90px !important;
  }

  .mt-sm-100 {
    margin-top: 100px !important;
  }

  .mt-sm-110 {
    margin-top: 110px !important;
  }

  .mt-sm-120 {
    margin-top: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pt-sm-00 {
    padding-top: 0 !important;
  }

  .pt-sm-10 {
    padding-top: 10px !important;
  }

  .pt-sm-20 {
    padding-top: 20px !important;
  }

  .pt-sm-30 {
    padding-top: 30px !important;
  }

  .pt-sm-40 {
    padding-top: 40px !important;
  }

  .pt-sm-50 {
    padding-top: 50px !important;
  }

  .pt-sm-60 {
    padding-top: 60px !important;
  }

  .pt-sm-70 {
    padding-top: 70px !important;
  }

  .pt-sm-80 {
    padding-top: 80px !important;
  }

  .pt-sm-90 {
    padding-top: 90px !important;
  }

  .pt-sm-100 {
    padding-top: 100px !important;
  }

  .pt-sm-110 {
    padding-top: 110px !important;
  }

  .pt-sm-120 {
    padding-top: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .mb-sm-00 {
    margin-bottom: 0 !important;
  }

  .mb-sm-10 {
    margin-bottom: 10px !important;
  }

  .mb-sm-20 {
    margin-bottom: 20px !important;
  }

  .mb-sm-30 {
    margin-bottom: 30px !important;
  }

  .mb-sm-40 {
    margin-bottom: 40px !important;
  }

  .mb-sm-50 {
    margin-bottom: 50px !important;
  }

  .mb-sm-60 {
    margin-bottom: 60px !important;
  }

  .mb-sm-70 {
    margin-bottom: 70px !important;
  }

  .mb-sm-80 {
    margin-bottom: 80px !important;
  }

  .mb-sm-90 {
    margin-bottom: 90px !important;
  }

  .mb-sm-100 {
    margin-bottom: 100px !important;
  }

  .mb-sm-110 {
    margin-bottom: 110px !important;
  }

  .mb-sm-120 {
    margin-bottom: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pb-sm-00 {
    padding-bottom: 0 !important;
  }

  .pb-sm-10 {
    padding-bottom: 10px !important;
  }

  .pb-sm-20 {
    padding-bottom: 20px !important;
  }

  .pb-sm-30 {
    padding-bottom: 30px !important;
  }

  .pb-sm-40 {
    padding-bottom: 40px !important;
  }

  .pb-sm-50 {
    padding-bottom: 50px !important;
  }

  .pb-sm-60 {
    padding-bottom: 60px !important;
  }

  .pb-sm-70 {
    padding-bottom: 70px !important;
  }

  .pb-sm-80 {
    padding-bottom: 80px !important;
  }

  .pb-sm-90 {
    padding-bottom: 90px !important;
  }

  .pb-sm-100 {
    padding-bottom: 100px !important;
  }

  .pb-sm-110 {
    padding-bottom: 110px !important;
  }

  .pb-sm-120 {
    padding-bottom: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .ml-sm-00 {
    margin-left: 0 !important;
  }

  .ml-sm-10 {
    margin-left: 10px !important;
  }

  .ml-sm-20 {
    margin-left: 20px !important;
  }

  .ml-sm-30 {
    margin-left: 30px !important;
  }

  .ml-sm-40 {
    margin-left: 40px !important;
  }

  .ml-sm-50 {
    margin-left: 50px !important;
  }

  .ml-sm-60 {
    margin-left: 60px !important;
  }

  .ml-sm-70 {
    margin-left: 70px !important;
  }

  .ml-sm-80 {
    margin-left: 80px !important;
  }

  .ml-sm-90 {
    margin-left: 90px !important;
  }

  .ml-sm-100 {
    margin-left: 100px !important;
  }

  .ml-sm-110 {
    margin-left: 110px !important;
  }

  .ml-sm-120 {
    margin-left: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pl-sm-00 {
    padding-left: 0 !important;
  }

  .pl-sm-10 {
    padding-left: 10px !important;
  }

  .pl-sm-20 {
    padding-left: 20px !important;
  }

  .pl-sm-30 {
    padding-left: 30px !important;
  }

  .pl-sm-40 {
    padding-left: 40px !important;
  }

  .pl-sm-50 {
    padding-left: 50px !important;
  }

  .pl-sm-60 {
    padding-left: 60px !important;
  }

  .pl-sm-70 {
    padding-left: 70px !important;
  }

  .pl-sm-80 {
    padding-left: 80px !important;
  }

  .pl-sm-90 {
    padding-left: 90px !important;
  }

  .pl-sm-100 {
    padding-left: 100px !important;
  }

  .pl-sm-110 {
    padding-left: 110px !important;
  }

  .pl-sm-120 {
    padding-left: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .mr-sm-00 {
    margin-right: 0 !important;
  }

  .mr-sm-10 {
    margin-right: 10px !important;
  }

  .mr-sm-20 {
    margin-right: 20px !important;
  }

  .mr-sm-30 {
    margin-right: 30px !important;
  }

  .mr-sm-40 {
    margin-right: 40px !important;
  }

  .mr-sm-50 {
    margin-right: 50px !important;
  }

  .mr-sm-60 {
    margin-right: 60px !important;
  }

  .mr-sm-70 {
    margin-right: 70px !important;
  }

  .mr-sm-80 {
    margin-right: 80px !important;
  }

  .mr-sm-90 {
    margin-right: 90px !important;
  }

  .mr-sm-100 {
    margin-right: 100px !important;
  }

  .mr-sm-110 {
    margin-right: 110px !important;
  }

  .mr-sm-120 {
    margin-right: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pr-sm-00 {
    padding-right: 0 !important;
  }

  .pr-sm-10 {
    padding-right: 10px !important;
  }

  .pr-sm-20 {
    padding-right: 20px !important;
  }

  .pr-sm-30 {
    padding-right: 30px !important;
  }

  .pr-sm-40 {
    padding-right: 40px !important;
  }

  .pr-sm-50 {
    padding-right: 50px !important;
  }

  .pr-sm-60 {
    padding-right: 60px !important;
  }

  .pr-sm-70 {
    padding-right: 70px !important;
  }

  .pr-sm-80 {
    padding-right: 80px !important;
  }

  .pr-sm-90 {
    padding-right: 90px !important;
  }

  .pr-sm-100 {
    padding-right: 100px !important;
  }

  .pr-sm-110 {
    padding-right: 110px !important;
  }

  .pr-sm-120 {
    padding-right: 120px !important;
  }
}
@media only screen and (max-width: 767px) {
  /* If statement checks if increment is 0 */
  .mt-md-00 {
    margin-top: 0 !important;
  }

  .mt-md-10 {
    margin-top: 10px !important;
  }

  .mt-md-20 {
    margin-top: 20px !important;
  }

  .mt-md-30 {
    margin-top: 30px !important;
  }

  .mt-md-40 {
    margin-top: 40px !important;
  }

  .mt-md-50 {
    margin-top: 50px !important;
  }

  .mt-md-60 {
    margin-top: 60px !important;
  }

  .mt-md-70 {
    margin-top: 70px !important;
  }

  .mt-md-80 {
    margin-top: 80px !important;
  }

  .mt-md-90 {
    margin-top: 90px !important;
  }

  .mt-md-100 {
    margin-top: 100px !important;
  }

  .mt-md-110 {
    margin-top: 110px !important;
  }

  .mt-md-120 {
    margin-top: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pt-md-00 {
    padding-top: 0 !important;
  }

  .pt-md-10 {
    padding-top: 10px !important;
  }

  .pt-md-20 {
    padding-top: 20px !important;
  }

  .pt-md-30 {
    padding-top: 30px !important;
  }

  .pt-md-40 {
    padding-top: 40px !important;
  }

  .pt-md-50 {
    padding-top: 50px !important;
  }

  .pt-md-60 {
    padding-top: 60px !important;
  }

  .pt-md-70 {
    padding-top: 70px !important;
  }

  .pt-md-80 {
    padding-top: 80px !important;
  }

  .pt-md-90 {
    padding-top: 90px !important;
  }

  .pt-md-100 {
    padding-top: 100px !important;
  }

  .pt-md-110 {
    padding-top: 110px !important;
  }

  .pt-md-120 {
    padding-top: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .mb-md-00 {
    margin-bottom: 0 !important;
  }

  .mb-md-10 {
    margin-bottom: 10px !important;
  }

  .mb-md-20 {
    margin-bottom: 20px !important;
  }

  .mb-md-30 {
    margin-bottom: 30px !important;
  }

  .mb-md-40 {
    margin-bottom: 40px !important;
  }

  .mb-md-50 {
    margin-bottom: 50px !important;
  }

  .mb-md-60 {
    margin-bottom: 60px !important;
  }

  .mb-md-70 {
    margin-bottom: 70px !important;
  }

  .mb-md-80 {
    margin-bottom: 80px !important;
  }

  .mb-md-90 {
    margin-bottom: 90px !important;
  }

  .mb-md-100 {
    margin-bottom: 100px !important;
  }

  .mb-md-110 {
    margin-bottom: 110px !important;
  }

  .mb-md-120 {
    margin-bottom: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pb-md-00 {
    padding-bottom: 0 !important;
  }

  .pb-md-10 {
    padding-bottom: 10px !important;
  }

  .pb-md-20 {
    padding-bottom: 20px !important;
  }

  .pb-md-30 {
    padding-bottom: 30px !important;
  }

  .pb-md-40 {
    padding-bottom: 40px !important;
  }

  .pb-md-50 {
    padding-bottom: 50px !important;
  }

  .pb-md-60 {
    padding-bottom: 60px !important;
  }

  .pb-md-70 {
    padding-bottom: 70px !important;
  }

  .pb-md-80 {
    padding-bottom: 80px !important;
  }

  .pb-md-90 {
    padding-bottom: 90px !important;
  }

  .pb-md-100 {
    padding-bottom: 100px !important;
  }

  .pb-md-110 {
    padding-bottom: 110px !important;
  }

  .pb-md-120 {
    padding-bottom: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .ml-md-00 {
    margin-left: 0 !important;
  }

  .ml-md-10 {
    margin-left: 10px !important;
  }

  .ml-md-20 {
    margin-left: 20px !important;
  }

  .ml-md-30 {
    margin-left: 30px !important;
  }

  .ml-md-40 {
    margin-left: 40px !important;
  }

  .ml-md-50 {
    margin-left: 50px !important;
  }

  .ml-md-60 {
    margin-left: 60px !important;
  }

  .ml-md-70 {
    margin-left: 70px !important;
  }

  .ml-md-80 {
    margin-left: 80px !important;
  }

  .ml-md-90 {
    margin-left: 90px !important;
  }

  .ml-md-100 {
    margin-left: 100px !important;
  }

  .ml-md-110 {
    margin-left: 110px !important;
  }

  .ml-md-120 {
    margin-left: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pl-md-00 {
    padding-left: 0 !important;
  }

  .pl-md-10 {
    padding-left: 10px !important;
  }

  .pl-md-20 {
    padding-left: 20px !important;
  }

  .pl-md-30 {
    padding-left: 30px !important;
  }

  .pl-md-40 {
    padding-left: 40px !important;
  }

  .pl-md-50 {
    padding-left: 50px !important;
  }

  .pl-md-60 {
    padding-left: 60px !important;
  }

  .pl-md-70 {
    padding-left: 70px !important;
  }

  .pl-md-80 {
    padding-left: 80px !important;
  }

  .pl-md-90 {
    padding-left: 90px !important;
  }

  .pl-md-100 {
    padding-left: 100px !important;
  }

  .pl-md-110 {
    padding-left: 110px !important;
  }

  .pl-md-120 {
    padding-left: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .mr-md-00 {
    margin-right: 0 !important;
  }

  .mr-md-10 {
    margin-right: 10px !important;
  }

  .mr-md-20 {
    margin-right: 20px !important;
  }

  .mr-md-30 {
    margin-right: 30px !important;
  }

  .mr-md-40 {
    margin-right: 40px !important;
  }

  .mr-md-50 {
    margin-right: 50px !important;
  }

  .mr-md-60 {
    margin-right: 60px !important;
  }

  .mr-md-70 {
    margin-right: 70px !important;
  }

  .mr-md-80 {
    margin-right: 80px !important;
  }

  .mr-md-90 {
    margin-right: 90px !important;
  }

  .mr-md-100 {
    margin-right: 100px !important;
  }

  .mr-md-110 {
    margin-right: 110px !important;
  }

  .mr-md-120 {
    margin-right: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pr-md-00 {
    padding-right: 0 !important;
  }

  .pr-md-10 {
    padding-right: 10px !important;
  }

  .pr-md-20 {
    padding-right: 20px !important;
  }

  .pr-md-30 {
    padding-right: 30px !important;
  }

  .pr-md-40 {
    padding-right: 40px !important;
  }

  .pr-md-50 {
    padding-right: 50px !important;
  }

  .pr-md-60 {
    padding-right: 60px !important;
  }

  .pr-md-70 {
    padding-right: 70px !important;
  }

  .pr-md-80 {
    padding-right: 80px !important;
  }

  .pr-md-90 {
    padding-right: 90px !important;
  }

  .pr-md-100 {
    padding-right: 100px !important;
  }

  .pr-md-110 {
    padding-right: 110px !important;
  }

  .pr-md-120 {
    padding-right: 120px !important;
  }
}
@media only screen and (max-width: 979px) {
  /* If statement checks if increment is 0 */
  .mt-lg-00 {
    margin-top: 0 !important;
  }

  .mt-lg-10 {
    margin-top: 10px !important;
  }

  .mt-lg-20 {
    margin-top: 20px !important;
  }

  .mt-lg-30 {
    margin-top: 30px !important;
  }

  .mt-lg-40 {
    margin-top: 40px !important;
  }

  .mt-lg-50 {
    margin-top: 50px !important;
  }

  .mt-lg-60 {
    margin-top: 60px !important;
  }

  .mt-lg-70 {
    margin-top: 70px !important;
  }

  .mt-lg-80 {
    margin-top: 80px !important;
  }

  .mt-lg-90 {
    margin-top: 90px !important;
  }

  .mt-lg-100 {
    margin-top: 100px !important;
  }

  .mt-lg-110 {
    margin-top: 110px !important;
  }

  .mt-lg-120 {
    margin-top: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pt-lg-00 {
    padding-top: 0 !important;
  }

  .pt-lg-10 {
    padding-top: 10px !important;
  }

  .pt-lg-20 {
    padding-top: 20px !important;
  }

  .pt-lg-30 {
    padding-top: 30px !important;
  }

  .pt-lg-40 {
    padding-top: 40px !important;
  }

  .pt-lg-50 {
    padding-top: 50px !important;
  }

  .pt-lg-60 {
    padding-top: 60px !important;
  }

  .pt-lg-70 {
    padding-top: 70px !important;
  }

  .pt-lg-80 {
    padding-top: 80px !important;
  }

  .pt-lg-90 {
    padding-top: 90px !important;
  }

  .pt-lg-100 {
    padding-top: 100px !important;
  }

  .pt-lg-110 {
    padding-top: 110px !important;
  }

  .pt-lg-120 {
    padding-top: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .mb-lg-00 {
    margin-bottom: 0 !important;
  }

  .mb-lg-10 {
    margin-bottom: 10px !important;
  }

  .mb-lg-20 {
    margin-bottom: 20px !important;
  }

  .mb-lg-30 {
    margin-bottom: 30px !important;
  }

  .mb-lg-40 {
    margin-bottom: 40px !important;
  }

  .mb-lg-50 {
    margin-bottom: 50px !important;
  }

  .mb-lg-60 {
    margin-bottom: 60px !important;
  }

  .mb-lg-70 {
    margin-bottom: 70px !important;
  }

  .mb-lg-80 {
    margin-bottom: 80px !important;
  }

  .mb-lg-90 {
    margin-bottom: 90px !important;
  }

  .mb-lg-100 {
    margin-bottom: 100px !important;
  }

  .mb-lg-110 {
    margin-bottom: 110px !important;
  }

  .mb-lg-120 {
    margin-bottom: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pb-lg-00 {
    padding-bottom: 0 !important;
  }

  .pb-lg-10 {
    padding-bottom: 10px !important;
  }

  .pb-lg-20 {
    padding-bottom: 20px !important;
  }

  .pb-lg-30 {
    padding-bottom: 30px !important;
  }

  .pb-lg-40 {
    padding-bottom: 40px !important;
  }

  .pb-lg-50 {
    padding-bottom: 50px !important;
  }

  .pb-lg-60 {
    padding-bottom: 60px !important;
  }

  .pb-lg-70 {
    padding-bottom: 70px !important;
  }

  .pb-lg-80 {
    padding-bottom: 80px !important;
  }

  .pb-lg-90 {
    padding-bottom: 90px !important;
  }

  .pb-lg-100 {
    padding-bottom: 100px !important;
  }

  .pb-lg-110 {
    padding-bottom: 110px !important;
  }

  .pb-lg-120 {
    padding-bottom: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .ml-lg-00 {
    margin-left: 0 !important;
  }

  .ml-lg-10 {
    margin-left: 10px !important;
  }

  .ml-lg-20 {
    margin-left: 20px !important;
  }

  .ml-lg-30 {
    margin-left: 30px !important;
  }

  .ml-lg-40 {
    margin-left: 40px !important;
  }

  .ml-lg-50 {
    margin-left: 50px !important;
  }

  .ml-lg-60 {
    margin-left: 60px !important;
  }

  .ml-lg-70 {
    margin-left: 70px !important;
  }

  .ml-lg-80 {
    margin-left: 80px !important;
  }

  .ml-lg-90 {
    margin-left: 90px !important;
  }

  .ml-lg-100 {
    margin-left: 100px !important;
  }

  .ml-lg-110 {
    margin-left: 110px !important;
  }

  .ml-lg-120 {
    margin-left: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pl-lg-00 {
    padding-left: 0 !important;
  }

  .pl-lg-10 {
    padding-left: 10px !important;
  }

  .pl-lg-20 {
    padding-left: 20px !important;
  }

  .pl-lg-30 {
    padding-left: 30px !important;
  }

  .pl-lg-40 {
    padding-left: 40px !important;
  }

  .pl-lg-50 {
    padding-left: 50px !important;
  }

  .pl-lg-60 {
    padding-left: 60px !important;
  }

  .pl-lg-70 {
    padding-left: 70px !important;
  }

  .pl-lg-80 {
    padding-left: 80px !important;
  }

  .pl-lg-90 {
    padding-left: 90px !important;
  }

  .pl-lg-100 {
    padding-left: 100px !important;
  }

  .pl-lg-110 {
    padding-left: 110px !important;
  }

  .pl-lg-120 {
    padding-left: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .mr-lg-00 {
    margin-right: 0 !important;
  }

  .mr-lg-10 {
    margin-right: 10px !important;
  }

  .mr-lg-20 {
    margin-right: 20px !important;
  }

  .mr-lg-30 {
    margin-right: 30px !important;
  }

  .mr-lg-40 {
    margin-right: 40px !important;
  }

  .mr-lg-50 {
    margin-right: 50px !important;
  }

  .mr-lg-60 {
    margin-right: 60px !important;
  }

  .mr-lg-70 {
    margin-right: 70px !important;
  }

  .mr-lg-80 {
    margin-right: 80px !important;
  }

  .mr-lg-90 {
    margin-right: 90px !important;
  }

  .mr-lg-100 {
    margin-right: 100px !important;
  }

  .mr-lg-110 {
    margin-right: 110px !important;
  }

  .mr-lg-120 {
    margin-right: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pr-lg-00 {
    padding-right: 0 !important;
  }

  .pr-lg-10 {
    padding-right: 10px !important;
  }

  .pr-lg-20 {
    padding-right: 20px !important;
  }

  .pr-lg-30 {
    padding-right: 30px !important;
  }

  .pr-lg-40 {
    padding-right: 40px !important;
  }

  .pr-lg-50 {
    padding-right: 50px !important;
  }

  .pr-lg-60 {
    padding-right: 60px !important;
  }

  .pr-lg-70 {
    padding-right: 70px !important;
  }

  .pr-lg-80 {
    padding-right: 80px !important;
  }

  .pr-lg-90 {
    padding-right: 90px !important;
  }

  .pr-lg-100 {
    padding-right: 100px !important;
  }

  .pr-lg-110 {
    padding-right: 110px !important;
  }

  .pr-lg-120 {
    padding-right: 120px !important;
  }
}
@media only screen and (max-width: 1200px) {
  /* If statement checks if increment is 0 */
  .mt-xl-00 {
    margin-top: 0 !important;
  }

  .mt-xl-10 {
    margin-top: 10px !important;
  }

  .mt-xl-20 {
    margin-top: 20px !important;
  }

  .mt-xl-30 {
    margin-top: 30px !important;
  }

  .mt-xl-40 {
    margin-top: 40px !important;
  }

  .mt-xl-50 {
    margin-top: 50px !important;
  }

  .mt-xl-60 {
    margin-top: 60px !important;
  }

  .mt-xl-70 {
    margin-top: 70px !important;
  }

  .mt-xl-80 {
    margin-top: 80px !important;
  }

  .mt-xl-90 {
    margin-top: 90px !important;
  }

  .mt-xl-100 {
    margin-top: 100px !important;
  }

  .mt-xl-110 {
    margin-top: 110px !important;
  }

  .mt-xl-120 {
    margin-top: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pt-xl-00 {
    padding-top: 0 !important;
  }

  .pt-xl-10 {
    padding-top: 10px !important;
  }

  .pt-xl-20 {
    padding-top: 20px !important;
  }

  .pt-xl-30 {
    padding-top: 30px !important;
  }

  .pt-xl-40 {
    padding-top: 40px !important;
  }

  .pt-xl-50 {
    padding-top: 50px !important;
  }

  .pt-xl-60 {
    padding-top: 60px !important;
  }

  .pt-xl-70 {
    padding-top: 70px !important;
  }

  .pt-xl-80 {
    padding-top: 80px !important;
  }

  .pt-xl-90 {
    padding-top: 90px !important;
  }

  .pt-xl-100 {
    padding-top: 100px !important;
  }

  .pt-xl-110 {
    padding-top: 110px !important;
  }

  .pt-xl-120 {
    padding-top: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .mb-xl-00 {
    margin-bottom: 0 !important;
  }

  .mb-xl-10 {
    margin-bottom: 10px !important;
  }

  .mb-xl-20 {
    margin-bottom: 20px !important;
  }

  .mb-xl-30 {
    margin-bottom: 30px !important;
  }

  .mb-xl-40 {
    margin-bottom: 40px !important;
  }

  .mb-xl-50 {
    margin-bottom: 50px !important;
  }

  .mb-xl-60 {
    margin-bottom: 60px !important;
  }

  .mb-xl-70 {
    margin-bottom: 70px !important;
  }

  .mb-xl-80 {
    margin-bottom: 80px !important;
  }

  .mb-xl-90 {
    margin-bottom: 90px !important;
  }

  .mb-xl-100 {
    margin-bottom: 100px !important;
  }

  .mb-xl-110 {
    margin-bottom: 110px !important;
  }

  .mb-xl-120 {
    margin-bottom: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pb-xl-00 {
    padding-bottom: 0 !important;
  }

  .pb-xl-10 {
    padding-bottom: 10px !important;
  }

  .pb-xl-20 {
    padding-bottom: 20px !important;
  }

  .pb-xl-30 {
    padding-bottom: 30px !important;
  }

  .pb-xl-40 {
    padding-bottom: 40px !important;
  }

  .pb-xl-50 {
    padding-bottom: 50px !important;
  }

  .pb-xl-60 {
    padding-bottom: 60px !important;
  }

  .pb-xl-70 {
    padding-bottom: 70px !important;
  }

  .pb-xl-80 {
    padding-bottom: 80px !important;
  }

  .pb-xl-90 {
    padding-bottom: 90px !important;
  }

  .pb-xl-100 {
    padding-bottom: 100px !important;
  }

  .pb-xl-110 {
    padding-bottom: 110px !important;
  }

  .pb-xl-120 {
    padding-bottom: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .ml-xl-00 {
    margin-left: 0 !important;
  }

  .ml-xl-10 {
    margin-left: 10px !important;
  }

  .ml-xl-20 {
    margin-left: 20px !important;
  }

  .ml-xl-30 {
    margin-left: 30px !important;
  }

  .ml-xl-40 {
    margin-left: 40px !important;
  }

  .ml-xl-50 {
    margin-left: 50px !important;
  }

  .ml-xl-60 {
    margin-left: 60px !important;
  }

  .ml-xl-70 {
    margin-left: 70px !important;
  }

  .ml-xl-80 {
    margin-left: 80px !important;
  }

  .ml-xl-90 {
    margin-left: 90px !important;
  }

  .ml-xl-100 {
    margin-left: 100px !important;
  }

  .ml-xl-110 {
    margin-left: 110px !important;
  }

  .ml-xl-120 {
    margin-left: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pl-xl-00 {
    padding-left: 0 !important;
  }

  .pl-xl-10 {
    padding-left: 10px !important;
  }

  .pl-xl-20 {
    padding-left: 20px !important;
  }

  .pl-xl-30 {
    padding-left: 30px !important;
  }

  .pl-xl-40 {
    padding-left: 40px !important;
  }

  .pl-xl-50 {
    padding-left: 50px !important;
  }

  .pl-xl-60 {
    padding-left: 60px !important;
  }

  .pl-xl-70 {
    padding-left: 70px !important;
  }

  .pl-xl-80 {
    padding-left: 80px !important;
  }

  .pl-xl-90 {
    padding-left: 90px !important;
  }

  .pl-xl-100 {
    padding-left: 100px !important;
  }

  .pl-xl-110 {
    padding-left: 110px !important;
  }

  .pl-xl-120 {
    padding-left: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .mr-xl-00 {
    margin-right: 0 !important;
  }

  .mr-xl-10 {
    margin-right: 10px !important;
  }

  .mr-xl-20 {
    margin-right: 20px !important;
  }

  .mr-xl-30 {
    margin-right: 30px !important;
  }

  .mr-xl-40 {
    margin-right: 40px !important;
  }

  .mr-xl-50 {
    margin-right: 50px !important;
  }

  .mr-xl-60 {
    margin-right: 60px !important;
  }

  .mr-xl-70 {
    margin-right: 70px !important;
  }

  .mr-xl-80 {
    margin-right: 80px !important;
  }

  .mr-xl-90 {
    margin-right: 90px !important;
  }

  .mr-xl-100 {
    margin-right: 100px !important;
  }

  .mr-xl-110 {
    margin-right: 110px !important;
  }

  .mr-xl-120 {
    margin-right: 120px !important;
  }

  /* If statement checks if increment is 0 */
  .pr-xl-00 {
    padding-right: 0 !important;
  }

  .pr-xl-10 {
    padding-right: 10px !important;
  }

  .pr-xl-20 {
    padding-right: 20px !important;
  }

  .pr-xl-30 {
    padding-right: 30px !important;
  }

  .pr-xl-40 {
    padding-right: 40px !important;
  }

  .pr-xl-50 {
    padding-right: 50px !important;
  }

  .pr-xl-60 {
    padding-right: 60px !important;
  }

  .pr-xl-70 {
    padding-right: 70px !important;
  }

  .pr-xl-80 {
    padding-right: 80px !important;
  }

  .pr-xl-90 {
    padding-right: 90px !important;
  }

  .pr-xl-100 {
    padding-right: 100px !important;
  }

  .pr-xl-110 {
    padding-right: 110px !important;
  }

  .pr-xl-120 {
    padding-right: 120px !important;
  }
}
/* If statement checks if increment is 0 else display only 1 digit*/
.mt-00 {
  margin-top: 0 !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-10 {
  margin-top: 10px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-20 {
  margin-top: 20px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-30 {
  margin-top: 30px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-40 {
  margin-top: 40px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-50 {
  margin-top: 50px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-60 {
  margin-top: 60px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-70 {
  margin-top: 70px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-80 {
  margin-top: 80px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-90 {
  margin-top: 90px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-100 {
  margin-top: 100px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-110 {
  margin-top: 110px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mt-120 {
  margin-top: 120px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-00 {
  padding-top: 0 !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-10 {
  padding-top: 10px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-20 {
  padding-top: 20px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-30 {
  padding-top: 30px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-40 {
  padding-top: 40px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-50 {
  padding-top: 50px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-60 {
  padding-top: 60px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-70 {
  padding-top: 70px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-80 {
  padding-top: 80px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-90 {
  padding-top: 90px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-100 {
  padding-top: 100px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-110 {
  padding-top: 110px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pt-120 {
  padding-top: 120px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-00 {
  margin-bottom: 0 !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-10 {
  margin-bottom: 10px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-20 {
  margin-bottom: 20px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-30 {
  margin-bottom: 30px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-40 {
  margin-bottom: 40px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-50 {
  margin-bottom: 50px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-60 {
  margin-bottom: 60px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-70 {
  margin-bottom: 70px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-80 {
  margin-bottom: 80px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-90 {
  margin-bottom: 90px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-100 {
  margin-bottom: 100px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-110 {
  margin-bottom: 110px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mb-120 {
  margin-bottom: 120px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-00 {
  padding-bottom: 0 !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-10 {
  padding-bottom: 10px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-20 {
  padding-bottom: 20px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-30 {
  padding-bottom: 30px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-40 {
  padding-bottom: 40px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-50 {
  padding-bottom: 50px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-60 {
  padding-bottom: 60px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-70 {
  padding-bottom: 70px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-80 {
  padding-bottom: 80px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-90 {
  padding-bottom: 90px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-100 {
  padding-bottom: 100px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-110 {
  padding-bottom: 110px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pb-120 {
  padding-bottom: 120px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-00 {
  margin-left: 0 !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-10 {
  margin-left: 10px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-20 {
  margin-left: 20px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-30 {
  margin-left: 30px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-40 {
  margin-left: 40px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-50 {
  margin-left: 50px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-60 {
  margin-left: 60px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-70 {
  margin-left: 70px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-80 {
  margin-left: 80px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-90 {
  margin-left: 90px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-100 {
  margin-left: 100px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-110 {
  margin-left: 110px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.ml-120 {
  margin-left: 120px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-00 {
  padding-left: 0 !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-10 {
  padding-left: 10px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-20 {
  padding-left: 20px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-30 {
  padding-left: 30px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-40 {
  padding-left: 40px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-50 {
  padding-left: 50px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-60 {
  padding-left: 60px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-70 {
  padding-left: 70px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-80 {
  padding-left: 80px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-90 {
  padding-left: 90px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-100 {
  padding-left: 100px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-110 {
  padding-left: 110px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pl-120 {
  padding-left: 120px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-00 {
  margin-right: 0 !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-10 {
  margin-right: 10px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-20 {
  margin-right: 20px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-30 {
  margin-right: 30px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-40 {
  margin-right: 40px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-50 {
  margin-right: 50px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-60 {
  margin-right: 60px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-70 {
  margin-right: 70px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-80 {
  margin-right: 80px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-90 {
  margin-right: 90px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-100 {
  margin-right: 100px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-110 {
  margin-right: 110px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.mr-120 {
  margin-right: 120px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-00 {
  padding-right: 0 !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-10 {
  padding-right: 10px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-20 {
  padding-right: 20px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-30 {
  padding-right: 30px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-40 {
  padding-right: 40px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-50 {
  padding-right: 50px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-60 {
  padding-right: 60px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-70 {
  padding-right: 70px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-80 {
  padding-right: 80px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-90 {
  padding-right: 90px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-100 {
  padding-right: 100px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-110 {
  padding-right: 110px !important;
}

/* If statement checks if increment is 0 else display only 1 digit*/
.pr-120 {
  padding-right: 120px !important;
}

.btn-pill {
  padding: 36px 40px;
  border-radius: 20px;
}

/* @import '3-framework/wrappers.scss';
@import '3-framework/layout.scss';
 */
#wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  min-height: 100vh;
}
@media only screen and (max-width: 600px) {
  #wrapper {
    min-height: 115vh !important;
  }
}

#main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

header {
  background: var(--light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 2000;
}

.logo {
  width: 150px;
}

.top-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
}
@media screen and (min-width: 992px) {
  .top-menu {
    display: flex;
  }
}
.top-menu li {
  list-style-type: none;
}
.top-menu li a {
  display: block;
  padding: 0.25rem 1rem;
  color: var(--dark);
  font-size: 1rem;
  font-weight: bold;
}

#hero {
  height: 300px;
  width: 100%;
  background: url("images/hero.jpg") #f0f0f0;
  background-size: cover;
}
#hero h1 {
  color: var(--light);
}
@media screen and (min-width: 768px) {
  #hero {
    height: 450px;
  }
}
@media screen and (min-width: 1200px) {
  #hero {
    height: 550px;
  }
}

.header__email-icon {
  border-radius: 50%;
  border: 2px solid var(--accent);
  padding: 16px;
  display: inline-block;
  position: relative;
  text-decoration: none !important;
}
.header__email-icon:hover {
  background: var(--accent) !important;
  transition: all 0.5s ease-in-out;
}
.header__email-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header__email-link {
  font-weight: var(--weight-semibold);
  text-decoration: none;
  margin-left: 20px;
}
.header__email-link:hover {
  color: var(--accent) !important;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 800px) {
  .header__email-link {
    font-size: 12px;
    margin-left: 5px;
  }
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .nav-link {
  font-weight: var(--weight-semibold);
}
nav .nav-link:hover {
  color: var(--accent) !important;
}

@media only screen and (max-width: 1024px) {
  .grid-container {
    display: block;
    width: 100%;
  }
}
.grid-container .grid-content {
  outline: 1px solid black;
  background: var(--gray);
}
@media only screen and (max-width: 1024px) {
  .grid-container .grid-content {
    max-width: 100%;
  }
}
.grid-container h3 {
  color: var(--primary);
}

.grid__custom .grid__custom__content {
  outline: 1px solid black;
  background: var(--gray);
}
.grid__custom h3 {
  color: var(--primary);
}

.buttons-container {
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 576px) {
  .nav-link {
    font-size: 0.875rem;
  }
}

.intro__wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.intro__tagline {
  line-height: 4rem;
  font-weight: 700;
}
@media only screen and (max-width: 800px) {
  .intro__tagline {
    line-height: 2.75rem;
  }
}
.intro__tagline u {
  text-decoration: none !important;
  position: relative;
}
.intro__tagline u::after {
  position: absolute;
  content: url("../files/yellow-underline.svg");
  top: 24px;
  left: -14px;
  width: 100%;
}

.intro__description {
  line-height: 2rem;
}

.projects__results {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 600px;
  overflow-y: scroll;
  z-index: -1;
  box-shadow: 0px 0 10px -5px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 800px) {
  .projects__results {
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  }
}
@media only screen and (max-width: 576px) {
  .projects__results {
    height: 360px;
    width: 80vw;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(116px, 2fr));
  }
}

.project {
  height: 290px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 576px) {
  .project {
    height: 160px;
  }
}
.project:hover > .project-overlay {
  background: rgba(var(--primary-rgb), 0.7);
  opacity: 1;
}

h3 {
  display: block;
  text-align: center;
}

.project-overlay__info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.project-overlay {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  z-index: 3;
  position: absolute;
  display: block;
}

.project-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  z-index: 2;
  position: absolute;
  transform: scale(1.1);
}

/* Filter Options */
.project__option--current {
  font-weight: var(--weight-bold);
}

.project__option-link {
  text-decoration: none;
}
.project__option-link:hover {
  color: var(--accent) !important;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 480px) {
  .project__option-link {
    font-size: 0.875rem;
  }
}

.projects__filter {
  padding-left: 0;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  .projects__filter {
    justify-content: space-around;
  }
}
.projects__filter .project__option {
  padding: 0.25rem 0.5rem;
}

@media only screen and (max-width: 480px) {
  .project__title {
    font-size: 14px;
  }
}

.contact__title {
  font-size: clamp(36px, 4vw, 74px);
  font-weight: var(--weight-bold);
}

.sm__list {
  padding-left: 0;
  display: flex;
  margin-top: 40px;
}
.sm__list .sm__item:not(:first-child) {
  margin-left: 10px;
}
.sm__list .sm__item .sm__link {
  background: var(--primary);
  padding: 6px;
  border-radius: 4px;
  width: 24px;
  height: 24px;
}
.sm__list .sm__item .sm__link:hover {
  background: var(--accent);
}
.sm__list .sm__item .sm__link i {
  color: var(--white);
  font-size: 1.25rem;
}

.ci__list {
  margin-top: 30px;
}
.ci__list .ci__item {
  margin-top: 10px;
}
.ci__list .ci__item i {
  font-size: 1.25rem;
  width: 30px !important;
}
.ci__list .ci__item .ci__link {
  text-decoration: none;
  font-weight: var(--weight-bold);
}
.ci__list .ci__item .ci__link:hover {
  text-decoration: underline;
}

.stroke {
  position: relative;
  display: inline;
}
.stroke::after {
  position: absolute;
  content: url("../files/white-underline.svg");
  top: 52px;
  left: -14px;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .stroke::after {
    top: 28px;
  }
}

.contact__wrapper {
  height: 800px;
  max-height: 100%;
  align-items: center;
  justify-content: space-around;
}
@media only screen and (max-width: 1200px) {
  .contact__wrapper {
    height: 500px;
  }
}
@media only screen and (max-width: 800px) {
  .contact__wrapper {
    height: 560px;
  }
}

.contact__right-sec {
  position: relative;
  background: url("../files/yellow-circle.svg") center/contain no-repeat;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 800px) {
  .contact__right-sec {
    justify-content: flex-end;
    margin: 0 20px;
    height: 80%;
  }
}
@media only screen and (max-width: 480px) {
  .contact__right-sec {
    justify-content: center;
  }
}

@media only screen and (max-width: 800px) {
  .contact__left-sec {
    margin-left: 20px;
  }
}

.press-success {
  background-color: #9FD356;
  color: #fff;
  border: 1px solid #9FD356;
}
.press-success:hover {
  background: var(--white);
  transition: all 0.3s ease;
  color: var(--primary);
}
.press-success:active {
  background: #79af2e;
  transition: all 0.3s ease;
  color: #f2f2f2;
}
.press-success:focus {
  outline: 0;
  box-shadow: 0 0 0 2px transparent, 0 0 0 3px #9FD356;
}

.press-danger {
  background-color: #960200;
  color: #fff;
  border: 1px solid #960200;
}
.press-danger:hover {
  background: var(--white);
  transition: all 0.3s ease;
  color: var(--primary);
}
.press-danger:active {
  background: #4a0100;
  transition: all 0.3s ease;
  color: #f2f2f2;
}
.press-danger:focus {
  outline: 0;
  box-shadow: 0 0 0 2px transparent, 0 0 0 3px #960200;
}

.press-info {
  background-color: #0074D9;
  color: #fff;
  border: 1px solid #0074D9;
}
.press-info:hover {
  background: var(--white);
  transition: all 0.3s ease;
  color: var(--primary);
}
.press-info:active {
  background: #004b8d;
  transition: all 0.3s ease;
  color: #f2f2f2;
}
.press-info:focus {
  outline: 0;
  box-shadow: 0 0 0 2px transparent, 0 0 0 3px #0074D9;
}

.press-warning {
  background-color: #EDA921;
  color: #fff;
  border: 1px solid #EDA921;
}
.press-warning:hover {
  background: var(--white);
  transition: all 0.3s ease;
  color: var(--primary);
}
.press-warning:active {
  background: #b37c0f;
  transition: all 0.3s ease;
  color: #f2f2f2;
}
.press-warning:focus {
  outline: 0;
  box-shadow: 0 0 0 2px transparent, 0 0 0 3px #EDA921;
}

.press-primary {
  background-color: #000000;
  color: #fff;
  border: 1px solid #000000;
}
.press-primary:hover {
  background: var(--white);
  transition: all 0.3s ease;
  color: var(--primary);
}
.press-primary:active {
  background: black;
  transition: all 0.3s ease;
  color: #f2f2f2;
}
.press-primary:focus {
  outline: 0;
  box-shadow: 0 0 0 2px transparent, 0 0 0 3px #000000;
}

.press-large {
  padding: 1.25rem 1.5rem !important;
  border-radius: 2rem !important;
}

.cmodal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 100%;
  z-index: 14001;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cmodal .cmodal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--danger);
  color: var(--white);
  padding: 10px;
  z-index: 1002;
  cursor: pointer;
}
.cmodal .cmodal-close > * {
  color: var(--white);
  pointer-events: none;
}
.cmodal .cmodal-content__image {
  overflow: auto;
  height: 86vh;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  .cmodal .cmodal-content__image {
    height: 70vh;
  }
}
.cmodal .cmodal-guts {
  /* other stuff we already covered */
  /* cover the modal */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cmodal .cmodal-guts .cmodal__category {
  width: 100%;
  margin-top: 20px;
  margin: 0 auto 0 auto;
  color: #c1bdbd !important;
  font-size: 0.875rem;
}
.cmodal .cmodal-guts .cmodal__title {
  width: 100%;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 0 !important;
  font-weight: 700;
}
.cmodal .cmodal-guts .cmodal__description {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}
.cmodal .cmodal-guts .cmodal-content {
  margin: 0 18px 30px 18px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 480px) {
  .cmodal .cmodal-guts .cmodal-content {
    margin: 0 0 30px 0;
  }
}

.cmodal__video-guts {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cmodal__video-guts .cmodal__video-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cmodal-img {
  width: 100%;
  margin: 0 auto;
}

.cmodal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--dark-rgb), 0.9);
  z-index: 4000;
}

.cmodal__video {
  width: 100%;
  height: auto;
}

.cmodal--hide {
  display: none;
  cursor: pointer;
}

.modal__video-height {
  height: -webkit-max-content !important;
  height: -moz-max-content !important;
  height: max-content !important;
}

.avatar__normal {
  width: 200px;
  max-width: 100%;
  height: 200px;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

/**  Styling of Scrollbar  */
.cmodal-guts::-webkit-scrollbar-track,
.cmodal-content__image::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(var(--accent-rgb), 0.3);
  background-color: #F5F5F5;
}
.cmodal-guts::-webkit-scrollbar,
.cmodal-content__image::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.cmodal-guts::-webkit-scrollbar-thumb,
.cmodal-content__image::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: var(--accent);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 5px solid var(--silver);
  border-bottom-color: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  -webkit-animation: rotation 1s linear infinite;
          animation: rotation 1s linear infinite;
  position: absolute;
  top: 0;
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 1366px) {
  /* Insert code Desktop size here */
}
@media only screen and (max-width: 1024px) {
  /* Insert code laptop size here */
}
@media only screen and (max-width: 800px) {
  /* Insert code tablet size here */
}
@media only screen and (max-width: 480px) {
  /* Insert code mobile size here */
}
