/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/


@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Volkhov:wght@400;700&display=swap');


*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

body{
    background-color: #f9f9f9;
    font-family: 'Lora', serif;
}
a{
    text-decoration: none;
}
p{
    font-size: 15px;
    text-align: justify;
    line-height: 27px;
    margin-bottom: 24px;
    color: #333;
}
h3{
    font-size: 18px;
    font-weight: 400;
    font-family: 'Volkhov', serif;
    margin: 35px 0 15px 0;
}
h2{
    font-size: 22px;
    font-family: 'Volkhov', serif;
    font-weight: 400;
    margin: 40px 0 30px 0;
}
.container{
    max-width: 1205px;
    height: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 0 60px;
    -webkit-box-shadow: 2px 0 3px #f1f1f1, -2px 0 3px #f1f1f1;
            box-shadow: 2px 0 3px #f1f1f1, -2px 0 3px #f1f1f1;
    padding-bottom: 40px;
    position: relative;
}
@media (max-width:575px) {
    .container{
        padding: 0 15px;
        padding-bottom: 40px;
    }
}

/* Search bar */
.search-input{
    display: none;
}
.showSearch{
    display: block;
    position: absolute;
    right: 0;
    top: 31px;
    z-index: 12;
}
#searchTrigger{
    cursor: pointer;
}

 /* header section style  */

.top-header{
    max-width: 1206px;
    height: 30px;
    margin: auto;
    padding: 0 40px;
    background-color: #161616;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
            position: relative;
}
.top-title{
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
.search-bar i{
    width: 15px;
    height: 15px;
    color: #e4e3e3;
    position: inherit;
}
.main-header{
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-align: center;
    border-bottom: 2px solid #cfcfcf;
    padding: 30px 0;
}
.site-title{
    padding-top: 40px;
}
.site-title a{
    font-size: 48px;
    font-weight: bold;
    color: #2E2E2E;
}
.tag-line{
    text-align: center;
}
.tag-line a{
    font-size: 13px;
    font-weight: 400;
    color: #565656;
    font-family: "Opens Sans", "Arial", sans-serif;
}

 /* article section style  */
.post-title{
    padding: 30px 0;
    font-size: 24px;
    font-weight: 400;
}

.post-img{
    text-align: center;
}

@media (max-width:1120px) {
    .post-img img{
        width: 100%;
        -o-object-fit: contain;
           object-fit: contain;
    }
}
/* card section style  */
.cards-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}
@media (max-width: 991px) {
    .cards-wrapper{
       gap: 10px;

    }
}
.card-inner{
    width: 31%;
    height: 100%;
    padding: 20px;
    background-color: #b45858;
    border-radius: 5px;
}
@media (max-width: 991px) {
    .card-inner{
        width: 49%;
    }
}
@media (max-width: 767px) {
    .card-inner{
        width: 100%;
    }
}
.silver{
    background-color: #FFE97D;
}
.gold{
    background-color: #D1D1E1;
}
.platinum{
    background-color: #C0EBF1;
}
.card-title{
    font-size: 42px;
    font-weight: 700;
}

.card-text{
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}
.btn-txt a:hover{
    text-decoration: underline;
}

.hr{
    width: 100%;
    height: 3px;
    background-color: #000;
    margin: 60px 0;   
}
.box{
    background-color: #ffffff;
    border-top: 1px solid #000 ;
    border-bottom: 1px solid #000
}

ul{
    padding: 0 0 20px 30px;
}
ul li{
    font-size: 16px;
    line-height: 25px;
    color: #565656
}
.btn-txt{
    width: 90%;
    height: 50px;
    font-size: 16px;
    margin: auto;
    text-align: center;
    background-color: #000;
    padding: 15px 0;
    cursor: pointer;
}
.btn-txt a{
    color: #ffffff;
}

/* form section style */

.form{
    margin-top: 60px;
}
.form-group{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.form-group div{
    width: 49%;
}
label{
    display: block;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
    font-family: Volkhov, Georgia, serif;
}
input, textarea{
    width: 100%;
    height: 50px;
    font-size: 16px;
    padding : 10px;
    margin-bottom: 2
    
    0px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.message textarea{
    width: 100%;
    height: 150px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.submit{
    width: 300px;
    height: 60px;
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
    border: none;
    font-size: 25px;
    cursor: pointer;
}

footer{
    max-width: 1205px;
    background-color: #000;
    display: block;
    margin: 0 auto;
}
.copyright-txt{
    width: 100%;
    height: 80px;
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding-top: 30px;
}