/*  import google fonts */

:root {
    --primary: #001327;
    --blue-gradient: #011a34;
    --purple-gradient: #220b42;
    --warning: #ffa500;
    --danger: #dc3545;
    --white: #FFF;
    --dark: #161718;
}


/* all similar content styling codes */

.max-width {
    max-width: 1300px;
    padding: 0 20px;
    margin: auto;
}

section {
    padding: 100px 0;
}

section .title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    text-transform: uppercase;
}

section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: var(--warning);
    padding: 0 5px;
    transform: translateX(-50%);
}

.title-header {
    margin: 50px 0;
    text-align: center;
}

.title-header h1 {
    font-size: 48px;
}

.title-header h1 span {
    color: var(--warning);
}

section.contact-page .grid-contact-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 25px 0;
}

section.contact-page .grid-contact-page .box-item {
    padding: 30px 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: 15px;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
}

section.contact-page .grid-contact-page .box-item:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

section.contact-page .grid-contact-page .box-item .icon {
    background-color: var(--warning);
    width: fit-content;
    margin: 0;
    border-radius: 50%;
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
    display: flex;
}

section.contact-page .grid-contact-page .box-item .icon i {
    font-size: 28px;
    margin: auto;
    color: var(--white);
}

section.contact-page .grid-contact-page .box-item h4 {
    font-weight: bold;
    color: var(--primary);
}

section.contact-page .grid-contact-page .box-item p {
    color: var(--blue-gradient);
}

section.contact-page .grid-contact-page .box-item p a {
    color: var(--blue-gradient);
}


/* responsive media query start */

@media screen and (max-width: 767px) {
    .title-header {
        margin: 25px 0;
    }

    section.contact-page .grid-contact-page {
        display: block;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    section.contact-page .grid-contact-page {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin: 25px 0;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {}