/* Base CSS */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

body {
    font-family: "Oswald", sans-serif;
}

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: #262626;
    font-weight: 700;
}

p {
    color: #393939;
    font-size: 16px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1400px;
}

/*-------------------- Demo area css start --------------------*/

.demo__area {
    padding-top: 60px;
    padding-bottom: 100px;
}

.demo__logo {
    margin-bottom: 50px;
    text-align: center;
}

.demo__logo a img {
    max-width: 200px;
}

.demo__main__blk {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.demo__single__blk {
    background-color: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.04);
}

.demo__img__blk {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.demo__img__blk img {
    transition: .4s;
}

.demo__single__blk:hover .demo__img__blk img {
    opacity: .5;
}

.demo__content__blk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 24px;
    flex-wrap: wrap;
    border-top: 1px solid #f3f3f3;
}

.demo__content__blk h4 {
    flex: 0 0 auto;
    margin-bottom: 0;
}

.demo__content__blk a {
    flex: 0 0 auto;
    width: 140px;
    height: 46px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 45px;
    font-size: 16px;
    transition: .3s;
}

/*-------------------- Demo area css end --------------------*/