* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
}

body {
    box-sizing: border-box;
    background-color: #f2f6f7;
    width: 100%;
}

main {
    background-color: #f2f6f7;
    padding: 50px 0;
    box-sizing: border-box;
}

header {
    background-color: #fff;
    padding: 20px 10px;
    border-bottom: 1px solid #444;
}

.logo {
    width: 200px;
}

.logo img {
    width: 100%;
    object-fit: cover;
}

.intro-heading h2 {
    font-size: 48px;
    font-weight: 500;
}

.intro-para {
    font-size: 20px;
}

.intro-img img {
    width: 100%;
    object-fit: cover;
}

.sec-padding {
    padding: 40px 0
}

.card {
    margin-bottom: 15px;
    border-radius: 10px;
}

.card-img img {
    width: 100%;
    object-fit: cover;
}

.card-content {
    padding: 15px 10px;
}

.card-content .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-content .card-para {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    padding-bottom: 10px;
}

.card-content .card-btn a {
    text-decoration: none;
}

.bt-header {
    padding-bottom: 30px;
}

.bt-card {
    background-color: #fff;
    border-bottom: 1px solid #444;
    padding: 20px 10px;
}

.cta-section {
    padding: 20px 10px;
    background-color: #5386ff;
    color: #fff;
}

.cta-btn button {
    padding: 10px 15px;
    background-color: #fff;
    border: none;
    border-radius: 10px;

}

footer {
    padding: 30px 20px;
    background-color: rgb(13, 13, 34);
    color: #fff;
}

/* cookies css */
.wrapper {
    position: fixed;
    Right: 0;
    bottom: -370px;
    max-width: 385px;
    width: 100%;
    background: #00537E;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: bottom 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); color:#fff
}

.wrapper.show {
    bottom: 0;
}

.wrapper header {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

header i {
    color: #4070f4;
    font-size: 32px;
}

header h2 {
    color: #4070f4;
    font-weight: 500;
}

.wrapper .data {
    margin-top: 16px;
}

.wrapper .data p {
    color: #fff;
    font-size: 15px;
}

.data p a {
    color: #4070f4;
    text-decoration: none;
}

.data p a:hover {
    text-decoration: underline;
}

.wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #4070f4;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}

.buttons #acceptBtn:hover {
    background-color: #034bf1;
}

#declineBtn {
    border: 2px solid #4070f4;
    background-color: #fff;
    color: #4070f4;
}

#declineBtn:hover {
    background-color: #4070f4;
    color: #fff;
}
.aboutus{padding:40px 0;}
.a_text{background:#FFF; padding:40px;}
/* cookies css */

/* repsonsive css */
@media (max-width : 450px) {
    .intro-heading h2 {
        font-size: 22px;
        font-weight: 500;
    }

    .intro-para {
        font-size: 14px;
    }

    .cta-logo img {
        width: 100%;
        object-fit: cover;
    }

    .cta-logo {
        width: 180px;
        margin-bottom: 20px;
    }
}