html {
    scroll-behavior: smooth !important;
  }
  

  .search-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.search-bar input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-bar button {
    width: 20%;
    padding: 10px;
    border: none;
    background-color: #ff6f61;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.search-bar button i {
    font-size: 16px;
}

.heading {
    margin-bottom: 20px;
}

.heading h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
    text-align: left;
    font-weight: bold;
    font-family: 'Manrope', sans-serif;
}

.heading .underline {
    width: 100%;
    height: 2px;
    background: #ddd;
    position: relative;
    margin-top: 5px;
}

.heading .underline::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #ff6f61;
    top: 0;
    left: 0;
}

.categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.category {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.category img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.overlay span {
    font-size: 16px;
    font-weight: bold;
}

.overlay .arrow {
    font-size: 20px;
    text-decoration: none;
    color: #fff;
}

.authrow img{
    border-radius: 100% !important;
    box-shadow: 6px 6px #4497f35c;
}
.contact_auth ul li i {
    color: #ff6f61;
}
.contact_auth ul li  span{
    color: #ff6f61;
}

 

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.social-icons a {
    text-decoration: none;
    width: 40px;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 5px;
    display: inline-block;
    color: #fff; /* Default color */
}

.social-icons .fa-facebook {
    background-color: #3b5998; /* Facebook blue */
}

.social-icons .fa-twitter {
    background-color: #1da1f2; /* Twitter blue */
}

.social-icons .fa-google-plus {
    background-color: #db4437; /* Google Plus red */
}

.social-icons .fa-linkedin {
    background-color: #0077b5; /* LinkedIn blue */
}

.social-icons .fa-instagram {
    background-color: #e4405f; /* Instagram pink */
}

.social-icons .fa-pinterest {
    background-color: #bd081c; /* Pinterest red */
}

.social-icons a:hover {
    color: #fff; /* Change icon color to white on hover */
    transform: scale(1.1);
}

.social-icons .fa-facebook:hover {
    background-color: #3b5998; /* Keep the same color */
}

.social-icons .fa-twitter:hover {
    background-color: #1da1f2; /* Keep the same color */
}

.social-icons .fa-google-plus:hover {
    background-color: #db4437; /* Keep the same color */
}

.social-icons .fa-linkedin:hover {
    background-color: #0077b5; /* Keep the same color */
}

.social-icons .fa-instagram:hover {
    background-color: #e4405f; /* Keep the same color */
}

.social-icons .fa-pinterest:hover {
    background-color: #bd081c; /* Keep the same color */
}

.styled-first-letter::first-letter {
    font-size: 5em; /* Increase the font size */
    font-weight: bold; /* Make it bold */
    float: left; /* Align it to the left */
    margin-right: 10px; /* Add some space to the right */
    line-height: 1; /* Set line-height to normal */
    color: #2c3e50; /* Change the color */
    text-transform: capitalize;
}
.image-preview {
    cursor: pointer;
    transition: transform 0.2s;
}
.image-preview:hover {
    transform: scale(1.05);
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.popup-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 8px;
}
.popup-content iframe {
    width: 100%;
    height: 450px;
    border: none;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
.close-btn:hover {
    color: #000;
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7rem;
    width: 150px;
    height:150px;
    text-align: center;
    background-color: white;
    color: orange;
    border-radius: 100%;
    cursor: pointer;
  }


  .quote-container {
    background-color: #ffffff;
    border-left: 4px solid #fc6d5c;
    padding: 20px 30px;
    max-width: 600px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 0 15px;
}

.quote-mark {
    font-size: 3em;
    color: #fc6d5c;
    position: absolute;
    top: 10px;
    left: 20px;
}

.quote-text {
    font-size: 1.2em;
    color: #333;
    margin: 20px 0 10px 0;
    padding-left: 30px;
    text-indent: -30px;
}

.quote-author {
    text-align: right;
    color: #555;
    font-style: italic;
    margin-top: 10px;
}
.tags_head, .tags{
    font-size: 20px;
    float: left;
}
.tags .tag_hash{
    padding: 5px;
    background-color: #f15c29;
    color: white;
    border-radius: 10px;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 10px;
}
.tags .tag_hash a{
    color: white !important;
    padding: 5px;
}
.newsletter-container {
    background-color: #1e3a57;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.newsletter-container h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.newsletter-container p {
    margin: 0 0 20px 0;
    font-size: 14px;
}

.newsletter-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-container input[type="email"] {
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    color: black;
}

.newsletter-container button {
    background-color: #ff6b6b;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
}

.newsletter-container button:hover {
    background-color: #ff4d4d;
}

.terms {
    display: flex;
    align-items: center;
}

.terms input[type="checkbox"] {
    margin-right: 5px;
}
.comment_conta{
    text-align: left;
}
.comment-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.comment-form h2 {
    font-size: 24px;
    color: #333;
}

.comment-form p {
    color: #666;
    margin-bottom: 20px;
}

.comment-form .form-control {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}

.comment-form .form-check-label {
    font-size: 14px;
    color: #666;
}

.comment-form .btn-primary {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
}

.comment-form .btn-primary:hover {
    background-color: #ff4d4d;
    border-color: #ff4d4d;
}
.comment-form .btn-primary{
    float: left;
    margin-top: 40px;
}
.comment-section {
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
   
    text-align: left;
}

.comment-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
}

.comment {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.comment-details {
    display: flex;
    display: inline;
    flex-direction: column;
}

.comment-author {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.comment-date {
    color: #ff6666;
    font-size: 14px;
}

.comment-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.reply-button {
    background-color: #ff6666;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    align-self: start;
}

.reply-button:hover {
    background-color: #ff4949;
}
.center-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    display: none; /* Hidden by default */
}
.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}
.post {
    display: flex;
    align-items: center;
    text-align: left;
}
.post img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 10px;
}
.post .details {
    max-width: 200px;
}
.post .details .post-title {
    font-weight: bold;
    color: #1a1a1a;
}
.post .details .post-link {
    color: #000;
    text-decoration: none;
}
.post .details .post-link:hover {
    text-decoration: underline;
}





  .gofar{
    position: absolute;
    right: 0px;
    width: 100%;
    display: none;
    left: 85px;
    top: -99px;
    background-color: #f3f3f3;
    width: 300px;
    z-index: 1;
    overflow-y: hidden;
    color: #ff6937;
    padding: 5px;
   
  }
.header{
    margin-bottom: 10px;
}
.cover_conta{
    padding: 0px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 100px;
    border-radius: 50px;
    max-height: 500px;
}
.cover_conta img{
    width: 100%;
}
.contentSection{
    top: 0px;
    font-family: "Inter", sans-serif;
}
.contentSection h1 ,.contentSection .title_desc p{
   font-family: 'Manrope', sans-serif;
    text-align: left;
    margin-left: 0px;
    color:#183354;
    margin-bottom:0px;
    margin-top: 0px;
    
}
.contentSection h1{
    font-weight: 700;
    color: #183354;
}
.attraction_det .col-md-12{
    padding-left: 0px;
}
.contentSection .title_desc p{
   margin-left: 40px;
   margin-bottom: 30px;
   font-size: 18px;
    line-height: 1.9;
    color:#484848;
}
.contentSection .Item_conta .item_rel{
    font-size: 18px;
    color: #4497f3;
    position: relative;
    right: 30px;
}
.contentSection .Item_conta .item{
    font-size: 18px;
    position: relative;
    font-weight: 700;
    right: 50px;
}
.contentSection .Item_conta .fa{
    position: relative;
    right: 55px;
    color: #ff4319;
    font-size: 25px;
}
.contentSection .contents{
    margin-top: 20px !important;
}
.contentSection .blockaya h2{
    padding-bottom: 10px;
    border-bottom: 2px solid #c2bfbf47;
    color: #4497f3;
    font-size: 24px;
}
.contentSection .blockaya p{
    padding-left: 10px;
    padding-bottom: 10px;
    text-transform: capitalize;
    border-left: 2px solid #c2bfbf47;
    font-size: 16px !important; 
}
.contentSection .blockaya span{
    font-size: 16px !important;
    text-align: inherit !important;
}
.blockaya{
    font-family: "Inter", sans-serif;
}
.block_img_conta{
    border-top: 0px solid #c2bfbf47;
    padding-right: 0px;
    padding-top: 0px;
    border-right: 2px solid #c2bfbf47;

}
.block_img_conta img{
    width: 100%;
    max-width: 100% !important;
    max-height: 450px !important;
    border-radius: 10px;
    box-shadow: none !important;
}
.suggested{
    background-color: #e0e0e0;
}
.related_topic{
    text-align:left;
    overflow: hidden;
    position: relative;
    top: 0px;
    right: 0px;
   
}
.fade_text{
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0px;
    -webkit-mask-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 20%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(left, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.65) 20%, rgba(0,0,0,0) 100%);
    background-color: white;
}
.rel_topi{
    position: relative;
    max-height: 300px;
}
.rel_topi .topi_img{
    width: 60px;
    height: 60px;
    position: absolute;
    border-radius: 15px;
}
.rel_topi h4 , .rel_topi p{
    margin-left: 70px;
}
.rel_topi h4{
    padding-top: 10px;
}
.cont_table ul{
    list-style: none;
    text-align: left;
    font-size: 17px;
    padding: 0px;
}
.cont_table ul li{
    padding-top: 10px;
}
.cont_table ul li .fa{
    color: red;
}
.alsolike h2{
    margin-top: 29px;
}
.sub_guide_location{
    margin-right: 10px;
}
.contents .guide_location{
    font-size:20px !important;
}
.fa-arrow-right{
    top: 9px!important;
}
.tr_guide_row{
    margin: 0px;
    padding: 0px;
}
.tr_guide_row .hrlogo {
    height: 60px;
    width: 55%;
    box-shadow: none !important;
    border: none !important;
    margin-bottom: 10px;
}
.trip_auther{
    text-align: left;
    position: static !important;
}
.authrow{
    position: relative !important;
}

.trip_auther h5{
    font-style: italic;
    font-weight: bold;
}
.trip_auther img{
    height: 100px;
    margin: 10px;
    border-radius: 50%;
    float: left;
}
.contact_auth ul{
    list-style: none;
}
.contact_auth ul li{
    display: inline;
    color: black;
    padding-right: 10px;
    font-size: 20px;
}
.cre_upd{
    display: block;
    position: absolute;
    bottom: 20PX;
    right: 5%;
}
.creRole{
    color: green;
    font-weight: 700;
    font-size: 18px;
}
.vir_conta{
    float: right;
    position: relative;
    top: -55px;
    cursor: pointer;
}
.vir_conta img{
    width: 60px;
}
.panor{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5bd;
    top: 0px;
    left: 0px;
    z-index: 4;
}
.pano_contro{
    position: absolute;
    top: 50px;
    font-size: 40px;
    right: 0px;
    color: red;
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
}
.pano_contro i{
    position: absolute;
    right: 10px;
    z-index: 29;
    cursor: pointer;
    top: 48px;
}
.contentSection{
    z-index: 3 !important;
}
.pano_contro_cont{
    width:100%;
    height: 100%;
}
.all_programs_list_data{
    text-align: left !important;
    position: relative;
}
.inform_conta{
    padding-right: 0px;
}
.abs_options{
   padding: 5px;
    position: absolute;
    top: 0px;
    right: 0px;
    padding-right: 0px;
    font-size: 15px;
    color: black;
}
.abs_options .contro{
    color: green;
    font-weight: 700;
}
.option_span{
    height: 20px;
    background-color: #e4e4e4;
    display: block;
    margin-bottom: 2px;
    padding-left: 2px;
    padding-right: 4px;
    transition: 0.s all linear;
}
.option_span:hover{
    background-color: #28acff;
    color: white;
}
.contact_auth ul li .fa{
    transition: 0.2s linear all;
}
.contact_auth ul li .fa:hover{
    font-size: 25px;
}
.all_programs_list_data_desc{
    margin-top: 20px;
}
.all_programs_list_data_desc p{
    padding-right: 20px;
}
.all_programs_list_data_desc .tit{
    font-size: 20px;
}
.all_programs_list_data h2{
    display: inline;
    
}
.inform_conta img{
    height: 50px;
}
.stat_pos{
    position: static;
}
.inform_conta .contact_auth{
    position: absolute;
    bottom: -11px;
    right: 20px;
}
.trip_auther .etp_icon, .trip_auther{
    padding-left: 0px;
}
.all_programs_list_details{
    line-height: 29px;
    font-size: 20px;
    height: 30px;
    bottom: 0;
    width: 100%;
}
.vir_img{
    position: absolute;
    top: 5px;
    right: 10px;
    width: 50px;
    border-radius: 50%;
    background-color:#ffff;
    overflow: hidden;
    z-index: 2;
    cursor: pointer;
    transition: 0.5s all linear;
}
.vir_img:hover{
    width: 100px;
    border-radius: 5%;
}

.ftSearch {
    height: 300px;
    background: url(../images/background_images/egypt_tour_packages.jpg) no-repeat fixed !important;
    background-size: cover;
    margin-bottom: 15px;
}
.search_result{
    display: none;
}
.input-group{
    margin-bottom: 0px !important;
}
.search_result ul{
    list-style: none;
}
.search_result ul li{
    font-size: 20px;
    margin: 5px;
    background-color: aliceblue;
    color: cornflowerblue;
    width: 70%;
    font-weight: bold;
    margin: 5px auto;
}
.search_result ul li:hover{
    color: red;
}
.pnlm-lmsg{
    display: none !important;
}
.pnlm-lbox{
    margin-top: 50% !important;
}
.themain{
        height: 400px;
}
.trip-description{
    font-size:17px;
        height: 103px;
}
.attraction_det img{
       border: 0px;
    border-radius: 0px;
}
@media (min-width: 1200px) {
    .contentSection {
        width: 95%;
        margin: auto;
    }
    .cover_conta {
        width: 95%;
    }
    .contents{
        width: 100%;
        padding-right:0px;
    }
}


@media(max-width:1000px){
    .header, .cover_conta{
        height: auto;
    }
    .cover_conta{
        margin: 10px;
        width: 95%;
        margin: 0 auto;
        margin-top: 100px;
        border-radius: 0% !important;
    }
}
@media(max-width:690px){
    .tr_guide_row .hrlogo {
    height: 50px;
    width: 83%;
        
    }
    .contentSection .title_desc p{
           margin-left: 10px;
           margin-bottom: 10px;
           margin-top: 10px;
           font-size: 17px;
        }
    .all_programs_list_details{
        display:none;
    }
    .contents .guide_location{
        display: grid !important;
        float: none !important;
    }
    .contentSection .blockaya p{
        font-size: 16px;
    }
   .cre_upd{
    position: relative;
    margin-top: 60px;
    text-align: center;
   }
   .authrow{
    margin-top: 30px;
   }
   .abs_options{
    position: relative;
    width: 50%;
    margin-bottom: 5px;
    margin-top: 5px;
   }
   .all_programs_list_data_desc{
    margin-top: 2px;
    }
    .all_programs_list_data_desc p{
        padding-right: 5px;
    }
}