 /* PRIVACY SECTION */
 
 .privacy-container {
     width: 90%;
     margin: 50px auto;
     margin-top: 100px;
 }
 
 .privacy-title {
     text-align: center;
     font-size: 30px;
     margin-bottom: 50px;
 }
 
 .privacy-row {
     display: flex;
     flex-direction: row;
     justify-content: space-around;
     flex-flow: wrap;
 }
 
 .privacy-card {
     width: 75%;
     background: #fff;
     border: 1px solid #ccc;
     margin-bottom: 50px;
     transition: 0.3s;
 }
 
 .privacy-card-header {
     text-align: center;
     padding: 50px 10px;
     background: linear-gradient(to right, #6772E5, #3d91a6);
     color: #fff;
 }
 
 .privacy-card-body {
     padding: 30px 20px;
     text-align: left;
     font-size: 22px;
     letter-spacing: 3px;
 }
 
 .privacy-card-body .checkout-btn {
     display: block;
     color: #fff;
     text-align: center;
     background: linear-gradient(to right, #ff416c, #ff4b2b);
     margin-top: 30px;
     text-decoration: none;
     padding: 10px 5px;
 }
 
 .privacy-card:hover {
     box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.25);
 }
 
 h4 {
     color: red;
 }
 
 h7 {
     font-weight: bold;
 }
 
 em {
     font-weight: bold;
 }
 /* MEDIA QUERIES */
 
 @media screen and (max-width: 1000px) {
     .privacy-card {
         width: 40%;
     }
 }
 
 @media screen and (max-width: 620px) {
     .privacy-container {
         width: 100%;
     }
     .privacy-heading {
         padding: 20px;
         font-size: 20px;
     }
     .privacy-card {
         width: 80%;
     }
 }
 /* END OF PRIVACY SECTION */
 /* TOS SECTION */
 
 .tos-container {
     width: 90%;
     margin: 50px auto;
     margin-top: 100px;
 }
 
 .tos-title {
     text-align: center;
     font-size: 30px;
     margin-bottom: 50px;
 }
 
 .tos-row {
     display: flex;
     flex-direction: row;
     justify-content: space-around;
     flex-flow: wrap;
 }
 
 .tos-card {
     width: 75%;
     background: #fff;
     border: 1px solid #ccc;
     margin-bottom: 50px;
     transition: 0.3s;
 }
 
 .tos-card-header {
     text-align: center;
     padding: 50px 10px;
     background: linear-gradient(to right, #6772E5, #3d91a6);
     color: #fff;
 }
 
 .tos-card-body {
     padding: 30px 20px;
     text-align: left;
     font-size: 22px;
     letter-spacing: 3px;
 }
 
 .tos-card-body .checkout-btn {
     display: block;
     color: #fff;
     text-align: center;
     background: linear-gradient(to right, #ff416c, #ff4b2b);
     margin-top: 30px;
     text-decoration: none;
     padding: 10px 5px;
 }
 
 .tos-card:hover {
     box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.25);
 }
 
 h4 {
     color: red;
 }
 
 em {
     font-weight: bold;
 }
 /* MEDIA QUERIES */
 
 @media screen and (max-width: 1000px) {
     .tos-card {
         width: 40%;
     }
 }
 
 @media screen and (max-width: 620px) {
     .tos-container {
         width: 100%;
     }
     .tos-heading {
         padding: 20px;
         font-size: 20px;
     }
     .tos-card {
         width: 80%;
     }
 }
 /* END OF TOS SECTION */
 /* FOOTER */
 /* FOOTER LEGAL */
 
 body {
     min-height: 100vh;
     flex-direction: column;
 }
 
 .container {
     flex: 1;
 }
 
 ul {
     list-style: none;
     padding-left: 0;
 }
 
 footer {
     background-color: #555;
     color: #bbb;
     line-height: 1.5;
 }
 
 footer a {
     text-decoration: none;
     color: #eee;
 }
 
 a:hover {
     text-decoration: underline;
 }
 
 .ft-title {
     color: #fff;
     font-family: 'Merriweather', serif;
     font-size: 1.375rem;
     padding-bottom: 0.625rem;
 }
 
 #logo {
     width: 250px;
     height: 125px
 }
 
 .ft-main {
     padding: 1.25rem 1.875rem;
     display: flex;
     flex-wrap: wrap;
 }
 
 .ft-main-item {
     padding: 1.25rem;
     min-width: 12.5rem;
 }
 
 @media only screen and (min-width: 29.8125rem) {
     .ft-main {
         justify-content: space-around;
     }
 }
 
 @media only screen and (min-width: 77.5rem) {
     .ft-main {
         justify-content: space-evenly;
     }
 }
 
 .ft-legal {
     padding: 0.9375rem 1.875rem;
     background-color: #333;
 }
 
 .ft-legal-list {
     width: 100%;
     display: flex;
     flex-wrap: wrap;
 }
 
 .ft-legal-list li {
     margin: 0.125rem 0.625rem;
     white-space: nowrap;
 }
 
 .ft-legal-list li:nth-last-child(2) {
     flex: 1;
 }
 /* END OF FOOTER LEGAL */
 /* END OF FOOTER */