@import url('https://fonts.googleapis.com/css?family=Poiret+One|Source+Sans+Pro'); * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-size: 110%;
    color: #ecf0f1;
    font-family: 'Source Sans Pro', sans-serif;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.main {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f2f1f0;
}

.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -200px;
    position: relative;
    z-index: 99;
}

.title {
    font-size: 35px;
    line-height: 50px;
    width: 70%;
    text-align: center;
    color: #122e53;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    border-top: 1px solid #30384d0a;
    padding-top: 20px;
    font-family: inter;
}

.sub-title {
    border-top: .1rem solid #fff;
    padding: 1rem 4rem;
    text-align: center;
}

section.contact img {
    width: 30%;
    margin-bottom: 30px;
}
.cnt-det ul {
    display: flex;
    margin-top: 60px;
    gap: 70px;
    text-align: center;
    justify-content: space-around;
}
.cnt-det ul li {
    color: #000;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #00000017;
    padding-right: 50px;
}
.cnt-det ul li a {
    color: #000;
    text-decoration: none;
}
.cnt-det ul li span {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    color: #0c2846;
    letter-spacing: 1px;
}
.cnt-det ul li:last-child {
    border-right: none;
    padding-right: 0px;
}

@media(max-width:991px){
	.title {
    font-size: 25px;
    line-height: 40px;
}
}
@media(max-width:767px){
.cnt-det ul {
    gap: 30px;
}
.cnt-det ul li {
    border-right: none;
    padding-right: 0;
}
}
@media(max-width:600px){
	.title {
    font-size: 17px;
    line-height: 30px;
}
    .cnt-det ul {
        gap: 20px;
        flex-direction: column;
    }
	section.contact img {
    width: 50%;
}
}