* {
	margin: 0;
	padding: 0;
}

html {
    scroll-behavior: smooth;
}

a img,
iframe,
fieldset {
	border: none;	
}

li {
	list-style: none;
	line-height: 24px;
}

.group::after {
  content: "";
  display: table;
  clear: both;
}

article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section { 
    display: block; 
}

body {
    background-color: #FAFAFA;
}

#outer-wrap {
    width: 1200px;
    margin: 60px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.10);
}

#hero {
    position: relative;
    width: 100%;
    height: 703px;
    background: url(img/hero-bg.svg) repeat #FFEBE1;
    text-align: center;
}

#logo {
    display: inline-block;
    margin-top: 104px;
    margin-bottom: 31px;
}

#hero p {
    margin-bottom: 35px;
    color: #A19D9B;
    text-shadow: 0px 1px 0px #FFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
}

#hero-button {
    display: inline-block;
    width: 162px;
    height: 45px;
    border-radius: 95px;
    border: 2px solid #F36621;
    background: #FFECE2;
    color: #F36621;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
}

#hero-button:hover {
    color: #fff;
    border-color: #F36621;
    box-shadow: none;
    background-color: #F36621;
    text-shadow: none;
}

#hero-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -38px;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

#themes {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 68px 0;
    background: #FFF;
    text-align: center;
}

#themes h2 {
    margin-bottom: 10px;
    color: #222;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.color-txt {
    color: #ff793a;
}

.grey-txt {
    color: #A9A9A9;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.themes-heading-span {
    display: inline-block;
    margin-bottom: 60px;
}

.themes-list {
    display: inline-block;
    margin-left: 102px;
}

.themes-list li {
    display: block;
    width: 306px;
    height: 468px;
    margin-right: 39px;
    margin-bottom: 60px;
    float: left;
}

.themes-list li:nth-child(3n) {
    margin-right: 0;
}

.themes-list img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
    transition: all .3s;
}

.themes-list a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.themes-list a:hover img {
    transform: scale(1.04);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.11);
}

.page-name {
    display: inline-block;
    width: 100%;
    padding-top: 18px;
    color: #222;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-description {
    display: inline-block;
    padding-top: 3px;
    font-size: 12px;
    font-weight: 400;
}

#buy-button {
    display: inline-block;
    height: 48px;
    padding: 0 32px;
    border-radius: 95px;
    background: linear-gradient(to right, #ff580c 0%, #fe8f61 51%, #ff580c 100%);
    background-size: 200% auto;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08);
    color: #FFF;
    text-align: center;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    line-height: 48px;
    text-decoration: none;
    transition: .3s;
}

#buy-button:hover {
    background-position: right center;
    box-shadow: none;
    text-decoration: none;
}

footer {
    padding: 61px 120px 53px;
    color: #fff;
    border-radius: 0px 0px 20px 20px;
    background-color: #222;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    text-transform: uppercase;
}

footer h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.divider {
    display: inline-block;
    width: 30px;
    height: 3px;
    clear: both;
    margin-bottom: 40px;
    border-radius: 95px;
    background: linear-gradient(90deg, #FF580C 0%, #FE8F61 100%);
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.08);
}

footer img {
    margin-bottom: 28px;
}

footer p {
    font-size: 14px;
}

.copyrights {
    display: block;
    margin-top: 63px;
    padding-top: 52px;
    color: #A9A9A9;
    border-top: 1px solid #313131;;
    font-size: 13px;
    text-transform: uppercase;
}

/******************************************************
    Smaller than 1200px
*******************************************************/

@media screen and (max-width: 1200px) {
    
    #outer-wrap {
        width: 90%;
    }

    #hero {
        height: 630px;
    }

    #hero-image {
        bottom: -26px;
    }

    .themes-list li {
        width: 218px;
        height: 375px;
    }

}

@media screen and (max-width: 1024px) {

    #hero {
        height: 564px;
    }

    #hero-image {
        bottom: -20px;
    }

    .themes-list {
        margin-left: 56px;
    }

    .themes-list li {
        width: 270px;
        height: 418px;
    }

    .themes-list li:nth-child(2n) {
        margin-right: 0;
    }

    .themes-list li:nth-child(3n) {
        margin-right: 39px;
    }

    footer {
        padding-right: 56px;
        padding-left: 56px;
    }

    footer img {
        width: 100%;
    }

}

@media screen and (max-width: 425px) {

    #outer-wrap {
        margin: 20px auto;
    }

    #hero {
        height: 430px;
    }

    #logo {
        width: 142px;
        margin-top: 76px;
        margin-bottom: 28px;
    }

    #hero p {
        padding: 0 56px;
        margin-bottom: 30px;
        font-size: 15px;
    }

    #hero-image {
        bottom: -11px;
    }

    #themes {
        padding: 60px 0;
    }

    .themes-list {
        margin-left: 30px;
    }

    .themes-list li {
        width: 90%;
        height: auto;
        margin-right: 0;
        margin-bottom: 42px;
    }

}

@media screen and (max-width: 320px) {
    .themes-list li {
        width: 88.5%;
    }
}