:root {
    --borderRadius: 12px;
}

@font-face {
    font-family: 'Helvetica';
    src: url('/Fonts/FreeSans.ttf');
}

@font-face {
    font-family: 'webfont';
    src: url('/font/helvetica-thin.ttf');
}

header {
    background-color: rgba(0, 0, 0, 0.322);
}

ul {
    list-style-type: none;
    display: flex;
    padding: 0 40px;
    width: 100%;
    justify-content: space-evenly;
    margin: 0;
}

li {
    float: left;
}

body {
    font-family: Helvetica, sans-serif;
    color: #04101e8f;
    background: linear-gradient();
    background-color: #060a18;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

p {
    color: rgb(250, 241, 224);
}

h1 {
    color: #fff;
    font-size: 220px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin: 0;
    padding-top: 25px;
    padding-left: 40px;
}

h2 {
    color: #fff;
    font-size: 200px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    padding-left: 120px;
    margin: 0;
}
a {
    color: #ffffff;text-decoration: none;
}
#title {
    text-align: center;
    margin-top: 100px;
}

.banner {
    background-image: url('img/design5.jpg');
    box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 50%);
    height: 600px;
}


.wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px;
    grid-template-rows: masonry;
    padding: 50px;
    margin: 105px 175px;
    border-radius: var(--borderRadius);
}

.glow-1 {
    border-radius: var(--borderRadius);
    box-shadow: 0 0 50px #1c628f;
    transition: all 0.4s;
}

.glow-2 {
    border-radius: var(--borderRadius);
    box-shadow: 0 0 50px #cf7106;
    transition: all 0.4s;
}
.glow-3 {
    border-radius: var(--borderRadius);
    box-shadow: 0 0 50px #1c628f;
    transition: all 0.4s;
}
.glow-4 {
    border-radius: var(--borderRadius);
    box-shadow: 0 0 50px #1c628f;
    transition: all 0.4s;
}

h3 {
    color: white;
    margin: 0;

}
.extra-span {
    grid-column: span 2;
}

.extra-span-row {
    grid-row : span 5;
}

.text-1 {
    font-family:Helvetica, sans-serif;
    font-size: 17px;
    
    text-indent: 10%;
    padding: 40px 60px;
    letter-spacing: 1.2px;
    line-height: 1.6;
    word-spacing: 1px;
}

.text-2 {
    grid-column: span 1;
}

.city {
    bottom: 50px;
}


figcaption p {
    margin-top: 0;
    padding: 5px 10px;
}

img {
    border-radius: var(--borderRadius);
    background-repeat: no-repeat;
    max-width: 100%;
    background-color: antiquewhite;
    box-shadow: 0 0 20px #1c628f;
    transition: all 0.4s;
}

img:hover {
    cursor: pointer;
    box-shadow: 0 0 35px #1c628f;
}

.i1 {
    width: 100%;
}

figcaption {
    border-bottom-left-radius: var(--borderRadius);
    border-bottom-right-radius: var(--borderRadius);
    margin-top: 10px;
    transition: all 0.4s;
}

figure:hover figcaption {
    color: #ffffff;
}


@media only screen and (max-width: 1500px) {
    .wrapper {
        margin: 105px 5px;
    }
}

@media only screen and (max-width: 1100px) {
    .wrapper {
        grid-template-columns: 1fr;
    }
    h1, h2{
        font-size: 50px;
    }
}


@media only screen and (max-width: 450px) {
    .wrapper {
        padding: 0;
    }
    h1, h2{
        font-size: 50px;
    }
}

