@font-face {
    font-family: "DM Sans", sans-serif;
    src: url(../fonts/DMSans-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "DM Sans", sans-serif;
    src: url(../fonts/DMSans-Medium.ttf);
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "DM Sans", sans-serif;
    src: url(../fonts/DMSans-SemiBold.ttf);
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "DM Sans", sans-serif;
    src: url(../fonts/DMSans-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "DM Sans", sans-serif;
    src: url(../fonts/DMSans-Black.ttf);
    font-weight: 800;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-size: 16px;
    color: #000;
    background-color: #fff;
}

.wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: url(../images/logo-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.home-div-white-div {
    padding: 10px 10px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.home-div .logo {
    max-width: 90%;
    height: auto;
    width: 250px;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 10px;
}

.home-div h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0px 7px 0px;
    line-height: 0;
}

.home-div h2 {
    text-align: center;
    font-size: 24px;
    width: 250px;
    margin: 0 auto;
    border-bottom: 1px dashed #b7b7b7;
    padding-bottom: 15px;
    font-weight: 600;
    color: #1f2932;
}

.home-div h2 small {
    display: block;
    color: #1f2932;
    font-size: 16px;
    font-style: normal;
    margin: 3px 0 0;
    font-weight: 500;
}

.home-div-content-div {
    padding: 0px 10px 10px 10px;
}

.contact-points-ul {
    list-style-type: none;
    padding: 0;
    margin: 15px auto 1rem;
    text-align: center;
    width: 250px;
}

.contact-points-ul li {
    color: #fff;
    padding: 8px 0px;
    font-weight: 500;
}

.contact-points-ul li:first-child {
    padding-top: 0;
}

.contact-points-ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-points-ul li a p {
    margin-bottom: 0;
    width: 28px;
    height: 28px;
    /* background-color: #00264d; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-points-ul li a p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 28px;
    height: 28px;
    background-color: #c68648;
    z-index: -1;
    border-radius: 8px;
    transform: rotate(45deg);
}

.contact-points-ul li a p img {
    flex-shrink: 0;
    width: 16px;
}

.contact-points-ul li a i,
.contact-points-ul li i {
    font-size: 16px;
    color: #000;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.contact-points-ul li a span,
.contact-points-ul li span {
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;
    color: #1f2932;
}

.home-div-white-div p {
    margin-bottom: 30px;
    text-align: center;
    color: #1f2932;
    font-style: italic;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
}

.bottom-tag {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    font-style: italic;
    color: #858585;
    margin-bottom: 0;
}

.title-name {
    text-align: center;
    font-weight: 700;
    color: #1f2932;
    font-size: 24px;
    line-height: 24px;
    margin-top: 0;
    text-transform: capitalize;
}