@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
    --primary-color: #05274A;
    --secondary-color: #000000;
    --dark-color: #000000;
    --lightbg-color: #ececec;
    --primary-font: "PT Sans", sans-serif;
}

body {
    background-color: #ffffff;
    color: #2c2e35;
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    background-image: url("../img/bg.png");
    background-size: 70%;
    background-position: right top;
    background-repeat: no-repeat;
}


* {
    margin: 0;
    padding: 0;
    border: 0;
}
a {
    text-decoration: none;
}
a,a:focus {
    outline: 0;
}
ul {
    margin: 0;
    padding: 0;
}
p {
    margin: 0;
}
.dark-title {
    color: var(--dark-color)!important;
}
.light {
    font-weight: 300!important;
}
.regular {
    font-weight: 400!important;
}
.medium {
    font-weight: 500!important;
}
.semibold {
    font-weight: 600!important;
}
.bold {
    font-weight: 700!important;
}
.font-13 {
    font-size: 13px!important;
}
.font-14 {
    font-size: 14px!important;
}
.secondary-bg {
    background-color: var(--secondary-color);
}
.secondary-color {
    color: var(--secondary-color)!important;
}
.text-black {
    color: #000000!important;
}
.top-page-padding {
    padding-top: 135px;
}
.btn-white {
    background-color: #ffffff;
    padding: 12px 30px;
}
.btn-white:hover {
    background-color: #000000;
    color:#ffffff;
}
.btn-custom-outline {
    background-color: #DEA52C;
    padding: 12px 30px;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.default-padding {
    padding: 70px 0;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600!important;
}
.hover:hover {
    color: var(--primary-color) !important;
}
.pb-top {
    border-top: 5px solid var(--primary-color);
}
.form-control {
    background-color: #ffffff;
}
.btn-primary:hover {
    background-color: #001b35!important;
    border-color: #001b35!important;
}

input.form-control, select.form-control {
    height: 50px;
}
.cpd-card {
    background-color: #F1F1F1;
    padding: 25px;
    /*border:1px solid #b8babc;*/
    border-radius: 30px;
    box-shadow: 0 0px 5px 0 rgba(0,0,0,0.2);
    max-width: 270px;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.cpd-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cpd-content {
    text-align: center;
    margin-top: auto;
}
.cpd-content h5 {
    font-size: 18px;
    font-weight: 400;
    color: #05274A;
    text-align: center;
    margin-bottom: 15px;
}
.cpd-content .btn {
    font-weight: 600;
    display: block;
    margin-top: 15px;
    /*color: #ababab;*/
}
.cpd-content .btn:hover {
    color: #ffffff;
}

.cpd-title-div h6 {
    font-size: 32px;
    text-align: center;
    position: relative;
    padding: 31px 0;
}
.cpd-title-div {
    margin-bottom: 70px;
}
.cpd-title-div span {
    font-size: 80px;
    font-weight: 600;
    opacity: 0.1;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.footer-content p {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px;
}
.coming-soon-card {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background-color: var(--primary-color);
    color: #ffffff;
    height: 100%;
    min-height: 380px;
}
.cpd-box-div {
    background-image: url("../img/bg2.png");
    background-size: 40%;
    background-position: left bottom;
    background-repeat: no-repeat;
}
.footer-logo {
    max-width: 120px;
    flex: 0 0 120px;
}
.box-card {
    background-color: #05274a;
    display: flex;
    gap: 20px;
    align-items: center;
    color: #ffffff;
    padding: 20px 50px 20px 15px;
    border-radius: 15px;
}
.box-name h3 {
    font-size: 22px;
}
.box-icon {
    max-width: 75px;
}
.box-div {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.cpd-content p {
    /*display: none;*/
}
.cpd-content .btn[disabled=""] {
    border: 1px solid #ababab;
    /*color: #ababab;*/
}
@media screen and (max-width: 767px) {
    .cpd-title-div span {
        font-size: 60px;
        top: 10px;
    }
}
@media screen and (max-width: 575px) {
    .cpd-title-div span {
        font-size: 40px;
    }
    .box-div {
        flex-direction: column;
    }
}