/* body {



} */

main {
    margin: 0;
    background-color: rgb(247, 243, 243);
}

footer {
    margin-top: 50px;
    padding-top: 50px;
    position: relative;

}

.text-center.p-4 {
    position: absolute;
    width: 100%;
}


/* HEADER CONTAINER*/

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(241, 241, 241);
    padding: 10px 20px;
}

.header-container img {
    width: 70%;
    height: auto;
    margin-left: 5px;
}


.header-container nav {
    margin-right: auto;
    flex-grow: 0.5;
}

.header-container ul {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.header-container li {
    margin-right: 25px;
}


.header-container .rectangle-box {
    width: 170px;
    max-width: 100%;
    height: 42px;
    background-color: rgb(64, 160, 204);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: font-size 0.3s;
    padding: 0 10px;
}


.rectangle-box:hover {
    transform: scale(1.04);
    transition: background-color 0.3s ease-in-out, font-size 0.3s;
}


.phone-icon {
    margin-right: 5px;
    font-size: 15px;
}


@media (max-width: 1024px) {
    .header-container .rectangle-box {
        font-size: 14px;
        width: 150px;
        height: 32px;

    }
}

@media (max-width: 865px) {
    .header-container .rectangle-box {
        font-size: 12px;
        width: 130px;
        height: 32px;
    }

    .header-container .rectangle-box span {
        font-size: 10px;
    }
}


/* ICONS SECTION */

.icons-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.icons-container img {
    width: 35px;
    height: auto;
    margin-left: 10px;
    cursor: pointer;
    padding: 0;
}

.icons-container img:hover {
    transform: scale(1.2);
}


.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    margin: 0;
    transition: transform 0.3s;
}

.hamburger.active {
    position: relative;

}


@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header-container img {
        float: left;
        margin-bottom: 10px;
        margin-left: 0;
        width: 100%;
    }

    .header-container nav {
        margin: 0;
        margin-top: 10px;
        bottom: 0;
    }

    .header-container ul {
        display: none;
    }

    .header-container li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .hamburger {
        display:block;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0 44px;
        margin: 0;
        position: static;
        margin-top: 8px;
        margin-bottom: 8px;
      
    }

    .menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
        justify-content: center;

    }

    .icons-container img {
        width: 35px;
        height: auto;
        padding-top: 10px;
    }
}





.header-container a:hover {
    color: grey;
    text-decoration: none;
}


.header-container a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.dropdown-content>div {
    font-size: 14px;
    padding: 10px;
    position: relative;
    line-height: 1.3;
}

.dropdown-content>div:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}

.dropdown-content>div:hover {
    background-color: #e1e1e1;
    cursor: pointer;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.fas {
    font-size: 12px;
}





/* IMAGE CONTAINER */



.image-container img {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 500px;
    object-fit: cover;

}




/* SERVICES SECTION */

@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

#services-section {
    margin-top: 100px;

    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#services-section .section-title {
    text-align: center;
    color: black;
    width: 70%;
    margin-bottom: 50px;
    text-transform: uppercase;
}

@media (max-width: 990px) {
    #services-section .section-title {
        width: 50%;
    }
}


@media (max-width: 768px) {
    #services-section .section-title {
        width: 100%;
        font-size: 30px;
    }
}


#services-section .card {
    padding: 1rem !important;
    border: none;
    margin-bottom: 1rem;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}

#services-section .card:hover {
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

#services-section .card .card-block {
    padding-left: 50px;
    position: relative;
}

#services-section .card .card-block a {
    color: #007b5e !important;
    font-weight: 700;
    text-decoration: none;
}

#services-section .card .card-block a i {
    display: none;

}

#services-section .card:hover .card-block a i {
    display: inline-block;
    font-weight: 700;

}

#services-section .card .card-block:before {
    font-family: FontAwesome;
    position: absolute;
    font-size: 39px;
    color: #007b5e;
    left: 0;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
}

#services-section .card .block-1:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-2:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-3:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-4:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-5:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-6:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-7:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-8:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-9:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-10:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-11:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-12:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-13:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-14:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-15:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-16:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-17:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}

#services-section .card .block-18:before {
    content: "";
    background-image: url("images/check.png");
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
}





/* ABOUT SECTION */


#about-section {
    margin-top: 100px;

}


.blue-text {
    color: rgb(69, 100, 116);
}


.section-title {
    font-size: 2.5rem;
    margin-left: 250px;
}

.section-description {
    font-size: 1.5rem;
    line-height: 1.6;
    text-indent: 0;
    margin-left: 250px;
}

.about-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-image-container img {
    object-fit: cover;
    border-radius: 50%;
    max-width: 100%;
    width: 300px;
    max-height: 100%;
    height: 300px;
    background: rgb(201, 197, 197);
    object-position: center top;
}

.about-image-container h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    margin-top: 20px;
}

.about-image-container h2 .smaller {
    font-size: 20px;
}





@media (max-width: 768px) {
    .section-description {
        margin-left: 20px;

    }

    .section-title {
        font-size: 2rem;
        margin-left: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

}







/* TESTIMONIAL BOOTSTRAP */

#testimonials-section {
    padding-top: 100px;
}

.testimonials-container {
    background-color: rgb(64, 160, 204);

}

.testimonial-card {
    height: 100%;
    font-size: 14px;
    
}

.home-testimonial-bottom {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-bottom: 0px;
    position: relative;
    top: 0;
}

#testimonials-section h3 {
    color: black;
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    font-weight: bold;
}

#testimonials-section h2 {
    color: white;
    font-size: 22px;
    font-weight: 700;

}

.testimonial-inner {
    position: static;
    margin-top: 50px;
}

.testimonial-pos {
    position: relative;

}

.testimonial-inner .tour-desc {
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 50px;
}

  .color-grey-3 {
    font-family: "Montserrat", Sans-serif;
    color: #6c83a2;
    overflow: hidden;
    word-wrap: break-word; 
    text-overflow: ellipsis; 
}  


.link-name {
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    color: #6c83a2
}

.link-position {
    font-family: "Montserrat", Sans-serif;
    font-size: 12px;
    color: #6c83a2
}

@media (max-width: 1024px) {
    .testimonial-inner .tour-desc .color-grey-3 {
        padding: 10px;
        
    }
    .testimonial-card {
        height: auto;
        font-size: 11.9px;
    }
}

@media (max-width: 768px) {
    .testimonial-inner .tour-desc {
      padding: 15px;
      
    }
    .testimonial-card {
        height: auto;
        font-size: 10px;
    }
   

  }

  @media (max-width: 767px) {
    .testimonial-inner .tour-desc {
      padding: 15px;
      
    }
    .testimonial-card {
        height: auto;
        font-size: 13px;
    }
   
    

  }

  @media (max-width: 320px) {
    .testimonial-inner .tour-desc {
      padding: 15px;
      
    }
    .testimonial-card {
        height: auto;
        font-size: 11.6px;
    }
   
    

  }

