@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@200;300;400;600;700&family=Barlow+Condensed:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mr+Dafoe&display=swap');


/*
font-family: 'Bai Jamjuree', sans-serif;
font-family: 'Barlow Condensed', sans-serif;
font-family: 'Mr Dafoe', cursive;
*/

:root {
    --brand-color: #e33d3d;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
}


/* ------------------ HEADER ------------------ */

.header-wrap {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background: white;
    width: 100%;
    z-index: 10000;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 10px 30px;
}

.header-logo img {
    width: 65px;
}

.shopping-cart-icon {
    position: relative;
}

.shopping-cart-icon svg {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.shopping-cart-icon svg:hover {
    fill: var(--brand-color);
}

.shopping-cart-icon-quatity {
    position: absolute;
    top: -10px;
    right: -10px;
    color: var(--brand-color);
}

nav a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    margin: 0 20px;
    transition: .4s
}

nav a:hover {
    color: var(--brand-color);
}

.burger-icon {
    cursor: pointer;
    display: none;
}

.burger-icon span {
    width: 25px;
    height: 2px;
    background: var(--brand-color);
    display: block;
}

.burger-icon span:nth-child(2) {
    margin: 4px 0;
    width: 20px;
}

.nav-close-btn {
    display: none;
}


/* ------------------ COVER ------------------ */

.cover {
    font-family: 'Bai Jamjuree', sans-serif;
    width: 100%;
    max-width: 1920px;
    margin: 105px auto;
    background: url(./img/cover-bg.jpg) no-repeat bottom;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover-left-box {
    flex-grow: 1;
    flex-basis: 0;
    text-align: right;
}

.cover-left-box p {
    color: white;
    text-transform: uppercase;
    font-style: italic;
    font-size: 20px;
    margin: 0;
}

.cover-left-box p:nth-child(2) {
    font-size: 70px;
    font-weight: 700;
}

.cover-left-box h1 {
    color: var(--brand-color);
    font-family: 'Mr Dafoe', cursive;
    font-size: 150px;
    font-weight: 200;
    margin: -70px 0 0 0;
}

.cover-right-box {
    flex-grow: 1;
    flex-basis: 0;
    position: relative;
    padding-right: 120px;
}

.cover-right-box img {
    height: 400px;
}

.cover-right-box .fade-img {
    position: absolute;
    top: 30px;
    left: 150px;
    height: 350px;
}

/* ------------------ T-SHIRTS ------------------ */

.t-shirts {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-areas:
        't-shirt-1 t-shirt-2 t-shirt-2'
        't-shirt-1 t-shirt-3 t-shirt-3'
        't-shirt-4 t-shirt-4 t-shirt-6'
        't-shirt-5 t-shirt-5 t-shirt-6';
    grid-gap: 5px;
}

.t-shirt-1 {
    height: 700px;
    grid-area: t-shirt-1;
    background: url("./img/polo1.jpg") no-repeat center;
    background-size: cover;
}

.t-shirt-2 {
    grid-area: t-shirt-2;
    background: url("./img/polo2.jpg") no-repeat top;
    background-size: cover;
}

.t-shirt-3 {
    grid-area: t-shirt-3;
    background: url("./img/polo3.jpg") no-repeat top;
    background-size: cover;
}

.t-shirt-4 {
    grid-area: t-shirt-4;
    background: url("./img/polo4.jpg") no-repeat top;
    background-size: cover;
}

.t-shirt-5 {
    grid-area: t-shirt-5;
    background: url("./img/polo5.jpg") no-repeat top;
    background-size: cover;
}

.t-shirt-6 {
    height: 700px;
    grid-area: t-shirt-6;
    background: url("./img/polo6.jpg") no-repeat center;
    background-size: cover;
}

.t-shirts-head {
    text-align: center;
    margin-bottom: 30px;
}

.t-shirts-head h1 {
    margin: 0;
}

.t-shirts-head svg {
    width: 150px;
    fill: var(--brand-color);
}


/* ------------------ SHOP-INFO ------------------ */

.shop-info {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto 100px auto ;
}

.shop-info-top {
    background: url("./img/shop-info-bg-top.jpg") no-repeat top;
    background-size: cover;
    color: white;
    text-transform: uppercase;
    padding: 150px 0 150px 100px;
    margin-top: 50px;
}

.shop-info-top p {
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 600;
}

.shop-info-top h1 {
    font-size: 60px;
    font-style: italic;
    margin: 0;
    line-height: 1;
    font-family: 'Bai Jamjuree', sans-serif;
}

.shop-info-bottom {
    background: url("./img/shop-info-bg-bottom.jpg") no-repeat bottom;
    background-size: cover;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.shop-info-bottom svg {
    width: 70px;
    fill: var(--brand-color);
    margin-right: 20px;
}

.shop-info-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 40px;
}

.shop-info-box h4 {
    margin: 0;
    text-transform: uppercase;
    color: white;
    font-size: 20px;
}

.shop-info-box p {
    margin: 0;
    color: #6e6e6e;
    font-size: 16px;
}


/* ------------------ OPINIONS ------------------ */

.opinions-wrap {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.opinions-head {
    text-align: center;
    margin-bottom: 30px;
}

.opinions-head h1 {
    margin: 0;
    font-size: 2em;
}

.opinions-head svg {
    width: 150px;
    fill: var(--brand-color);
}

.opinions {
    background: url("./img/opinions-bg.jpg") no-repeat top;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 80px 0;
    color: white;
}

.opinions svg {
    width: 100px;
    fill: var(--brand-color);
    transform: rotate(180deg);
}

.opinions article {
    width: 800px;
    text-align: center;
    margin: 60px 0;
    font-size: 1.8em;
    font-style: italic;
    font-family: 'Bai Jamjuree', sans-serif;
}

.opinions-nav {
    display: flex;
}

.opinions-nav .fa-chevron-left, .opinions-nav .fa-chevron-right {
    border: 1px solid rgb(99, 99, 99);
    padding: 20px 22px;
    margin: 5px;
    cursor: pointer;
}

.opinions-nav .fa-chevron-left:hover, .opinions-nav .fa-chevron-right:hover {
    border: 1px solid var(--brand-color);
    color: var(--brand-color);
}

.opinions .person {
    text-transform: uppercase;
    margin: 20px 0;
    font-size: 1.2em;
}

.opinions .person span {
    color: var(--brand-color);
}


/* ------------------ FOOTER ------------------ */

.footer-head {
    width: 100%;
    text-align: center;
    margin: 50px 0;
}

.footer-head h1 {
    margin: 0;
}

.footer-head svg {
    width: 150px;
    fill: var(--brand-color);
}

footer {
    background: url("./img/footer-bg.jpg") no-repeat top;
    background-size: cover;
    display: flex;
    padding: 70px 0;
    justify-content: space-around;
    align-items: center;
    color: #6e6e6e;
    font-size: 1.1em;
}

footer svg {
    width: 25px;
    fill: white;
    margin-right: 10px;
}

.footer-logo img {
    width: 100px;
}

.footer-address h4 {
    text-transform: uppercase;
    color: white!important;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact .email, .footer-contact .phone {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-social-icons svg {
    cursor: pointer;
    transition: .4s;
}
.barion-logo svg{
    width: 100%;
}

.footer-social-icons svg:hover {
    animation-name: enlarge;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transition: .5s;
    fill: #6e6e6e;
}
.container{
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 10px;
    margin-top: 5px;
}
.shirt-grid{
    display: flex;
}
.shirt-optional, .shirt-additional{
    margin: 10px;
    flex: 2;
}
.shirt-additional{
    flex: 1;
}
.c-box{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.checkbox-optional{
    flex: 1;
    margin: .5em;
    border: 1px solid black;
    min-height: 200px;
}
.description-box{
    margin: 10px;
}
.description-box h3{
    border-bottom: .5px solid #dadada;
    padding: 10px 0px;
}
.add-to-cart-btn{
    text-decoration: none;
    color: unset;
    padding: 15px 20px;
    background: rgb(199, 7, 7);
    color: white;
    width: 100%;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 18px;
    border-radius: 3px;
    transition: .2s;
    border:2px solid rgb(199, 7, 7);
    margin: 10px auto;

}
li{
    list-style: none;
}
.bordered-btn{
    margin: 10px auto;
    text-decoration: none;
    color: unset;
    padding: 15px 20px;
    border:2px solid rgb(199, 7, 7);
    color: rgb(199, 7, 7);
    width: 100%;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 18px;
    border-radius: 3px;
    transition: .2s;
}
.add-to-cart-btn:hover{
    opacity: .7;
}
.half-flex{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: .5em;
    text-align: center;
}
.size-qty-box{
    display: flex;
    text-align: center;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.size-qty{
    border: 1px solid rgb(199, 7, 7);
    width: 50px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 5px;
    color:  white;
    background: rgb(199, 7, 7);
}
.quantity {
    display: inline-block;
    margin: auto 0;
    flex: 1;
}
.quantity .input-text.qty {
    width: 35px;
    height: 35px;
    padding: 0 5px;
    font-size: 15px;
    text-align:center;
    background-color: transparent!important;
    border: 1px solid rgb(199, 7, 7);
}
.quantity.buttons_added {
    text-align: left;
    position: relative;
    white-space: nowrap;
    vertical-align: top; 
}

.quantity.buttons_added input {
    display: inline-block;
    margin: 0;
    vertical-align: top;
    box-shadow: none;
}
.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
    padding: 7px 14px 8px;
    height: 35px;
    border: 1px solid rgb(199, 7, 7);
    cursor:pointer;
    background: transparent;

}
.quantity.buttons_added .minus {
    border-right: 0; 

}
.quantity.buttons_added .plus {
    border-left: 0; 
    background: transparent;
}
.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
    background: rgb(199, 7, 7);
    color: white; 
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0; 
}
.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none; 
}
.pay-method{
    display: flex;
    border: 1px solid rgb(199, 7, 7);
    border-radius: 9px;
    text-align: center;
    overflow: hidden;
    width: 100%;
    margin: auto;
}
.type-method{
    border: none;
    border-radius: none;
}
.pay-method .cont{
    height: 50px;
}
.pay-method .cont .checkmark{
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    background: #f7f7f7;
    overflow: hidden;
}
.pay-method .cont:nth-child(even){
    background: unset;
    border-left: 1px solid rgb(199, 7, 7);
    border-right: 1px solid rgb(199, 7, 7);
}
.cont {
  position: relative;
  cursor: pointer;
  height: 40px;
  width: 100%;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: rgb(248, 248, 248);
}
.type {
  position: relative;
  cursor: pointer;
  height: 200px;
  width: 100%;
  margin: 10px;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: rgb(248, 248, 248);
  border-radius: 10px;
  overflow: hidden;

}
.cont:nth-child(even){
    background-color: rgb(233, 233, 233);
}
.type:nth-child(even){
    background-color: rgb(233, 233, 233);
}
.cont input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.type input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 5px;
  z-index: 1;
  transition: .2s;
}
.checkmark img{
    width: 100%;
    max-width: 240px;
    position: absolute;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    top: 50%;
    opacity: .6;
    z-index: -1;
}
.type .checkmark{
    font-size: 22px;
    font-weight: bolder;
}
.cont:hover input ~ .checkmark {
  background-color: rgb(253, 231, 231);
}
.type:hover input ~ .checkmark {
  background-color: rgb(253, 231, 231);
}
.cont input:checked ~ .checkmark {
  background-color: rgb(199, 7, 7);
  color: white;
}
.type input:checked ~ .checkmark {
  background-color: rgb(199, 7, 7);
  color: white;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cont input:checked ~ .checkmark:after {
  display: block;
}
.price{
    padding: 20px 10px;
    margin: 10px auto;
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: flex-end;
}
.price b{
    flex: 1;
}
.price i{
    flex: 1;
    margin: auto 4px;
    display: flex;
    align-items: flex-end;
    font-style: normal;
    font-size: 15px;
    font-weight: lighter;
}
.price b:nth-child(2){
    text-align: right;
}
.cart-item{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 2px;
}
.cart-item li{
    width: 100%;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.cart-item li b{
    margin: auto 10px;
}
.cart-item li b svg{
    height: 15px;
}
.cart-head{
    background: rgb(199, 7, 7);
    padding: 10px;
    color: white;
    font-size: 14px;
}
.grand-total{
    width: 100%;
    margin: 10px auto;
    border-top: 1px solid rgba(0,0,0,.5);
    display: flex;
    align-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    padding: 20px;
    color: rgb(41, 84, 139);
    background: rgba(10, 51, 139, 0.1);
}
.grand-total li{
    flex: 1;
}
.grand-total li:nth-child(2){
    text-align:right;
}
.price i{
    font-style: normal;
    font-size: 12px;
}
.cart-product{
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 12px ;
    font-size: 15px;
}
.btn-box-cart{
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 30px auto;
}
.btn-box-cart a{
    margin: auto .7em;
    max-width: 280px;
}
.centered{
    text-align: center;
    background: rgb(41, 84, 139);
    color: white;
}
.centered:hover{
    opacity: .7;
}
.mini-cart{
    width: 100%;
    max-width: 350px;
    border: 2px solid rgb(41, 84, 139);
}
.mini{
    grid-template-columns: repeat(2, 1fr);
    font-size: 13px;
    padding: 10px 2px;
}
.checkout-grid{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: flex-start;

}
.form{
    flex: 5;
    margin: 10px auto;
}
.mini-cart{
    flex: 2;
    position: sticky;
    position: -webkit-sticky;
    top: 90px;
}
.form-control{
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control-select{
    display: inline-block;
    flex: 1;
    height: 50px;
    padding: 6px 3px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid rgb(41, 84, 139);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
    margin: 20px auto;
}
.m-0{
    margin: 0!important;
    font-size: 16px;
}
.m-0 .price{
    flex: 2;
}
.textarea{
    height: unset!important;
}
.submit-btn{
    text-align: center;
    margin: 10px auto;
    padding: 15px 20px;
    font-size: 18px;
    border: none;
}

.alert{
    text-align: center;
    padding: 15px 10px;
    border-radius: 5px;
}
.alert-success{
    background: rgb(203, 247, 203);
    border: 1px solid rgb(146, 196, 146);
    margin: 20px auto;
}
.product-items{
    grid-template-columns: repeat(3, 1fr);
    grid-gap: .3em;
}
.product-side-product{
    display: flex;
    border: 1px solid rgba(41, 84, 139, .3);
    justify-content: center;
    align-content: center;
    align-items: center;
    transition:.3s;
}
.product-side-product:hover{
    border: 1px solid rgba(41, 84, 139, 1)
}
.product-side-product .image{
    flex: 1;
    height: 100px;
}
.product-side-product .image .background{
    background-size: contain;
}
.product-side-product .desc-box{
    flex: 2;
    font-size: 14px;
    padding: 5px;
}
.full-height{
    min-height: 90vh;
}
button{
    background: transparent;
    border: none;
}
.success-btn{
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: rgb(199, 7, 7);
    color: white;
    padding: 25px 35px;
    margin: 20px auto;
    display: block;
    text-align: center;
}
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  margin: 6px auto;
  border: 2px solid transparent;
  display: block;
  position: relative;
}
.accordion .down-arrow{
    position: absolute;
    right: 10px;
    top: 52%;
    transform: translateY(-50%);
}
.accordion .down-arrow svg{
    height: 18px;
}

.active, .accordion:hover {
  background-color: rgb(255, 232, 232);
  border: 2px solid #e33d3d;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel img{
    width: 100%;
}
.data{
    margin: auto;
    background: rgba(0,0,0,.05);
    padding: 10px;
    text-align: left;
}
.data li{
    list-style: none;
    margin: 12px auto;
    font-size: 20px;
}
.data li b{
    margin: auto 5px;
}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
@keyframes enlarge {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}


@media only screen and (max-width: 1024px) {
    .c-box{
        display: block;
    }
    .checkbox-optional{
        max-width: 400px;
        margin: 15px auto;
    }

}
@media only screen and (max-width: 1100px) {

    .cover-left-box p:nth-child(2) {
        font-size: 50px;
    }

    .cover-left-box h1 {
        font-size: 100px;
        margin: -50px 0 0 0;
    }

    .cover-right-box {
        padding-right: 50px;
    }

    .cover-right-box img {
        height: 300px;
    }

    .cover-right-box .fade-img {
        top: 30px;
        left: 130px;
        height: 250px;
    }

    .shop-info-bottom {
        display: grid;
        grid-template-areas:
            'first-box second-box'
            'third-box fourth-box';
    }

    .shop-info-bottom .first-box {
        grid-area: first-box;
        margin-bottom: 30px;
    }

    .shop-info-bottom .second-box {
        grid-area: second-box;
        margin-bottom: 30px;
    }

    .shop-info-bottom .third-box {
        grid-area: third-box;
    }

    .shop-info-bottom .fourth-box {
        grid-area: fourth-box;
    }

    .opinions article {
        width: 80%;
    }

}

@media only screen and (max-width: 768px) {
    .checkout-grid{
        flex-direction: column;
    }
    .m-none{
        display: none;
    }

    .header-logo img {
        width: 40px;
    }
    .shirt-grid{
        display: block;
    }
    .c-box{
        display: flex;
    }
    .checkbox-optional{
        margin: .5em;
    }
    .half-flex{
        grid-template-columns: repeat(3, 1fr);
        margin: 30px auto;
    }

    nav, .shopping-cart-icon {
        display: none;
    }

    nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        z-index: 100;
        text-align: center;
        padding-top: 100px;
    }

    nav a {
        color: white;
        display: block;
        margin: 20px 0;
        font-size: 25px;
    }

    .burger-icon {
        display: block;
        z-index: 200;
    }

    .nav-close-btn {
        display: block;
    }

    .cover {
        display: block;
        padding-top: 20px;
        margin: 50px auto;
        padding-top: 30px;
    }

    .cover-left-box {
        text-align: center;
    }

    .cover-left-box p {
        font-size: 16px;
    }

    .cover-left-box p:nth-child(2) {
        font-size: 40px;
    }

    .cover-left-box h1 {
        font-size: 90px;
        margin: -40px 0 0 0;
    }

    .cover-right-box {
        padding-right: 0;
        width: 300px;
        margin: 0 auto;
        text-align: center;
        z-index: 10;
    }

    .cover-right-box img {
        height: 230px;
    }

    .cover-right-box .fade-img {
        top: 30px;
        left: 80px;
        height: 200px;
    }

    .t-shirts {
        display: block;
    }

    .shop-info-top {
        padding: 30px 0 30px 30px;
    }

    .shop-info-top p {
        font-size: 16px;
    }

    .shop-info-top h1 {
        font-size: 30px;
    }

    .shop-info-bottom {
        display: block;
    }

    .shop-info-bottom .second-box, .shop-info-bottom .fourth-box {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

    .shop-info-bottom .second-box, .shop-info-bottom .fourth-box {
        margin: 50px 0;
    }

    .shop-info-bottom .first-box svg, .shop-info-bottom .third-box svg {
        margin-right: 30px;
    }

    .shop-info-bottom .second-box svg, .shop-info-bottom .fourth-box svg {
        margin-left: 30px;
    }

    .opinions article {
        font-size: 1em;
    }

    footer {
        flex-direction: column-reverse;
        text-align: center;
    }

    .footer-social-icons {
        margin-bottom: 30px;
    }

    .footer-contact {
        margin: 30px 0;
    }

    .footer-address {
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 600px) {
    .half-flex{
        grid-template-columns: repeat(2, 1fr);
    }
    .shirt-grid, .shirt-optional, .shirt-additional{
        padding: 0;
        margin: 0;
    }
    .type-method{
        flex-direction: column;
    }
    .row{
        grid-template-columns: 100%;
        grid-gap: 1.2em;
    }
    .container{
        margin-top: 40px;
    }
    .c-box{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: .5em;
    }
    .checkbox-optional{
        min-height: 0;
    }
    .type{
        height: 40px;
        margin: 0;
    }
    .type .checkmark{
        font-size: 15px;
    }
}
