/*
=============================================================================
Base styles
============================================================================= */
/* 
blue: #274d77;
pink: #d9298f;*/
/* 
Box sizing reset */
html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
  margin: 0;
}

body, main {
  position: relative;
  margin: 0;
  font-family: 'Hind', sans-serif;
}

/* 
Modal Styles */
.modal__container {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content:center;
  align-items: center;
  
}

.modal__content {
  max-width: 800px;
  width: 100%;
  display: block;
  margin: 1rem;
  background-color: #274d77;
  position: relative;
}

.modal__header {
  padding: 2rem 1rem;
  text-align:center; 
  max-width: 550px;
  margin: 0 auto;
  z-index: 2;
  position: relative;

  @media (min-width: 600px) {
    padding: 3rem 2rem;
  }
}

.modal__header-title {
  color: #fff;
  font-size:19px;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  letter-spacing: 1px;
  line-height: 1;
  
  @media (min-width: 600px) {
    margin-bottom: 2rem;
    font-size: 20px;
  }
}

.modal__header-text {
  color: #fff;
  font-weight: 300;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 18px;

  @media (min-width: 600px) {
    margin-bottom: 2rem;
    font-size: 19px;
  }
}

.modal__btn {
  color: #274d77;
  font-weight: 300;
  padding: 1rem 1.5rem;
  min-width: 200px;
  text-align:center;
  background-color: #fff;
  transition: .35s ease background-color, .35s ease color;
  display: inline-block;
  text-decoration: none;
  line-height: 1;
}

.modal__btn:hover {
  background-color: #d9298f;
  transition: .35s ease background-color, .35s ease color;
}

.modal__graphic {
  width: 15vw;
  height: 15vw;
  max-height: 180px;
  max-width: 180px;
  min-width:100px;
  min-height:100px;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.modal__graphic img {
    display: block;
    position: absolute;
    width: 200%;
    height: 200%;
    max-height: 300px;
    max-width: 300px;
    right: 0;
    top: 0;
}