body{
    font-family:  "Montserrat" ;
}
.main_conatiner {
    width: 100%;
}

.container {
    width: 100%;
    margin: auto;
    max-width: 800px;
}

.infos img {
    max-width: 800px;
}

.infotext {
    padding: 25px 0;
}

.header_logo {
    text-align: center;
    margin-bottom: 110px;
}

.star_images {
    width: 100%;
    max-width: 30px;
}

.contact_section p {
    margin: 0px 0px 35px 0px;
    font-size:30px;
    color:#4c4e4d;
}

.information_links {
    margin-bottom: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.first_hr_line {
    background-color: #736E96;
    height: 2px;
    margin-bottom: 20px;
}

.second_section img {
    width: 100%;
    max-width: 200px;
}

.second_section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 100px;
}

.information_links p,
h3 {
    margin: 0px;
    color: #726E92;
}

.information_links p {
    vertical-align: middle;
    display: flex;
    align-items: center;
    color: #4c4e4d;
    gap: 5px;
}

.information_links span,
h2 {
    color: #716e95;
}

.images_start {
    justify-content: center;
    align-items: center;
    display: grid;
    margin-bottom: 40px;
}


/* media query is start......... */

@media (min-width: 600px) {
    .second_section {
        grid-template-columns: repeat(2, 1fr);
    }

    .header_logo img {
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .header_logo img {
        max-width: 250px;
    }

    .header_logo {
        margin-bottom: 70px;
    }

    .contact_section p {
        font-size: 28px;
    }
}

@media (min-width: 900px) {
    .second_section {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (min-width:768px) and (max-width:1080px) {
    .contact_section p {
        font-size: 30px;
    }
    .information_links p{
        font-size: 20px;
    }

    .information_links {
        margin-bottom: 30px;
        font-size:23px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width:767px) {
    .contact_section p {
        font-size: 20px;
    }

    .information_links {
        gap: 5px;
        font-size: 14px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .information_links p {
        display: contents;
    }

    .second_section {
        margin-top: 80px;
    }
}

@media only screen and (max-width:492px) {
    .information_links {
        display: inline-flex;
        font-size: 14px;
    }

    .star_images {
        width: 15px;
    }
}