@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Oswald:wght@200;300;400;500;600;700&display=swap');
/* basic configuration */
*{
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: 'Inter' !important;
}
a{
    text-decoration: none;
    color: inherit;
}
a:hover{
    color: inherit;
    text-decoration: none;
}
button{
    outline: none !important;
    border: none !important;
    background: none;
}
button:active{
    border: none;
}
body{
    overflow-x: hidden;
}
/* scroolbar */
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}


/* css variables */
:root {
    --orange: #F35000;
}

body{
    background-color: #F4F7FA;
}
/* .navbar{
    padding-top: 30px;
} */


.navbar-dark .navbar-toggler{
    border: none !important;
    color: none;
    outline: none;
    text-decoration: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
#burgerButton{
    background-color: rgba(18, 27, 48, 0.5);
    transition: all 0.3s ease !important;
}


.navbar-dark .navbar-toggler-icon{
    filter: invert(100%);
}
.collapse.show {
    height: 100vh !important;
  }
  /* burger styles */
  .navbar-toggler {
    border: 0 !important;
}
.filter a:focus,
.filter a:active,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}



/* Lines of the Toggler */
.toggler-icon{
    width: 25px;
    height: 0.2rem;
    background-color: white;
    border-radius: 2px;
    display: block;
    transition: all 0.2s;
}

/* Adds Space between the lines */


/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 5% 34%;}



.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 16% 131%;
    margin-top: 10px;
}
/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler .top-bar, .navbar-toggler .bottom-bar{
    margin-left: 3px;
}
.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}
/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
    background-color: white;
    margin-left: 0;
}

  /* end burger styles */
.logo-animation {
    animation-name: logoSlide;
    animation-duration: 0.4s;
    animation-timing-function: ease;
  }

  @keyframes logoSlide {
    from {
      transform: translateY(-190%);
    }

    to {
      transform: translateY(0);
    }
  }

  .add_padding{
    margin-top: 30px !important;
  }

  .navbar-nav{
column-gap:50px;
margin-left: 10px;
}
  .nav-item a{
    font-size: 14px;
  }
.nav-link{
    width: max-content;
    font-weight: 600;
}
.nav-link:hover{
    color: var(--orange)  !important;
}

.nav_custom_color{
    color: #162345 !important;
}
.custom_navbar_shadow{
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
    /* padding-top: 0; */
}
.active_link {
    padding: 10px 24px 10px 23px !important;
    border-radius: 8px;
    background-color: #121b30 !important;
    color:white !important;
    width: max-content;
    height: 40px;
    display:flex;
    justify-content:center;
    align-items:center;
}


/* !------------------  page home  ------------------! */

/* swiper */
.swiper_container{
    width: 100%;
    height: 75vh;
}
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
  }
  .swiper-slide .container{
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 75vh !important;
    background-position: center;
    object-fit: cover;
  }

  .video{
    height: 75vh;
    width: 100%;
    overflow: hidden;
    min-width: 100%;
    object-fit: cover;
  }

  video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  }
  /* .swiper-button-next, .swiper-button-prev{
    margin: 0 30px;
  } */




/* styles */

.txt{
    position: fixed;
    top: 35%;
    max-width: 880px;
    width: 100%;
    text-align: left;
    font-size: 45px;
    font-weight: 900 !important;
    line-height: 1.5;
    margin-left: 10px;
    color: #fff;
}
.partnersBlocks{
    position: relative;
    display: flex;
    gap: 11px;
    top: -30px;
    padding-bottom: 50px;
    z-index: 1;
}
.partnersBlock {
    max-width: 150px;
    max-height: 102px;
    padding: 7px 15px 5px ;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 2px 3px 0 rgba(28, 31, 36, 0.1);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .details_icon{
    width: 145px;
    height: 145px;
  }
.details_title_head{
    font-size: 32px;
    font-weight: 900;
    line-height: 1.5;
    color: #121b30;
}
.details_title{
    font-size: 40px;
    font-weight: 900 !important;
    text-align: center;
    width: max-content;
    color: #121b30;
}

.details_container{
    padding: 0px 151px;
    padding-bottom: 100px;
    padding-top: 80px;
}
.details_p{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #121b30;
}

.Activity-Map {
    font-size: 48px;
    font-weight: 900 !important;
    line-height: 1.58;
    color: var(--orange);
    font-weight: bold;
    /*margin-left: 30px;*/
    margin-top: 0px;
    margin-bottom: 40px;

  }
  .Activity-Map .text-style-1 {
    color: #121b30;
  }


.description_map_title{
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -0.67px;
    color: #121b30;
}
.gmap{
    width: 99vw;
    overflow: hidden;
}

.online_offline_icons{
    display: flex;
    gap: 30px;
}
.description_map{
    display: flex;
    column-gap: 80px;
}
article.bg-white.p-5.rounded img {
    max-width: 100%;
}
.news-section a {
    color: #1A69FC;
    text-decoration: underline;
}
.description_map_txt,
    .description_map_pick_txt{
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: -0.44px;
        color: #49576a;
        margin-bottom: 0 !important;
    }
.description_map_pick_txt{
    width: max-content !important;
}
/* rhtravel brands */

.RH-Travel-Brands, .RH-Travel-team {
    font-size: 48px;
    font-weight: 900 !important;
    line-height: 1.58;
    color: #121b30;
  }
  .RH-Travel-Brands .text-style-1, .RH-Travel-team .text-style-1  {
    color: var(--orange);
    font-weight: 900 !important;
  }
  .brand_row{
    column-gap: 60px;
    row-gap:  20px;
  }

.brand_row img{
max-width: auto;
max-height: 70px;
}
.brand_container{
    padding: 36px 35px 30px 32px;
    margin-top: 0;
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
}

p.function{
    margin-bottom: 15px;
}
.brands_, .team_{
    margin-top: 120px;
    margin-bottom: 80px;
}

.brand_title{
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.67px;
    color: #121b30;
}
.brand_p{
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -0.44px;
    color: #49576a;
}
.row_news_home_page{
    --bs-gutter-y: 20px;
}

.brand_link{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.44px;
    text-align: right;
    color: #1a69fc;
}
.brand_block{
    gap:32px;
}
/* media */

.card_single_article{
    height: 250px;
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
    overflow: hidden;
}

.media_ h1{
    font-size: 48px;
    font-weight: 900 !important;
    line-height: 1.58;
    color: var(--orange);
    font-weight: bold;

}
.img_team{
    width: 100%;
}

.card_body_index_article{
    padding-top: 28px;
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
}

/* articles */
.article{
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
    background-color: #fff;
    max-width: 403px;
    height: 234px;
    padding: 28px 30px;
    text-decoration: none;
}
.article_title{
    font-size: 24px !important;
    font-weight: bold !important;
    color: #121b30 !important;
}
.posted_on p{
    font-size: 14px;
  line-height: 1.71;
  color: #64748b;
}
.widget_row{
    --bs-gutter-x: 50px;
}
.article_content{
    font-size: 16px;
    line-height: 1.5;
    color: #49576a;
}
.article_card_text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;

}
.see_all{
    margin-top: 20px;
    font-size: 16px;
    margin-left: 4px;
    font-weight: 500;
    letter-spacing: -0.44px;
    color: #1a69fc;
}

.name{

    font-size: 16px;
    font-weight: bold;
    letter-spacing: -0.44px;
    text-align: center;
    color: #121b30;
}
.function{
    font-size: 14px;
    letter-spacing: -0.39px;
    text-align: center;
    color: #49576a;
}
.team_figcaption{
    margin-top: 20px !important;
}
.see_members{
    padding: 16px 47px 17px;
    border-radius: 8px;
    border: solid 1px #1a69fc !important;
    background-color: #fff;
    font-family: Inter;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: -0.44px;
    color: #1a69fc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 120px;
}
.country {
    position: absolute;
    top: -23%;
    left: 50%;
    height: 32px;
    width: 32px;
    transform: translate(-50%, -50%);
  }


/* footer */
.footer{
    background-color: #121b30;
}

.nav_footer{
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
    border-bottom: 1px solid #2b3650;
}
.list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style-type: none;
    column-gap: 40px;
    row-gap: 20px;
}
.list li a{
    color: #808ea3 !important;
}
.list a:hover{
    color: white !important;
}
.socials{
    display: flex;
    gap: 15px;
}
.bubble{
    width: 36px;
    height: 36px;
    background-color: #2b3650;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none !important;
}
.bubble:first-child:hover{
background-color: #0a66c2;
}
.bubble:nth-child(2):hover{
    background-color: #0866ff;
}
.bubble:last-child:hover{
    background-color: #ff0000;
}

.row_footer{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.us_office, .eu_office{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.street_row{
    display: flex;
    align-items: start;
    gap: 10px;
}
.shape img{
    width: 15px;
}
.streets p{
    width: 228px;
    height: 80px;
    color: #fff;
}
.offices{
    display: flex;
    flex-wrap:wrap;
    gap: 20px;
}
.eu_office h1, .us_office h1{
    width: 266px;
    height: 24px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
.rights{
    display: flex;
    justify-content: center;
}
.rights h3{
    width: 558px;
    height: 28px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: -0.39px;
    text-align: center;
    color: #808ea3;
    padding-top: 60px;
    padding-bottom: 60px;
}
.members_row{
    margin-bottom: 50px;
}
.twelve_container{
    box-shadow: 0 20px 50px 0 rgba(28, 31, 36, 0.05);
}
.description_map_container{
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
}
/* !---------------------Media Page Styles Start---------------! */

.filter::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}
.filter{
    display: flex;
    align-items: center;
    row-gap: 0px;
    column-gap: 12px;
    padding-bottom: 32px;
    overflow-x: scroll;
    overflow-y: hidden;
}
/* Stilul butoanelor din filtru */
.filter a {
    background-color: #FFFFFF;
    border-radius: 8px;
    color: #162345;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
  }

    #all,
    #news,
    #press_release{
    display: flex;
    align-items: center;
    justify-content: center;
    }
    #all{
        min-width: 90px;
        height: 40px;
    }
    #news{
        min-width: 111px;
        height: 40px;
    }
    #press_release{
        min-width: 175px;
        height: 40px;
    }
  /* Stil pentru butonul activ */
  .filter a.active {
    background-color: var(--orange);
    color: white;
  }

  /* Stil pentru hover */
  .filter a:hover {
    background-color: var(--orange);
    color: white;
  }
  .card_body_widget{
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);


  }
  .card-text.type_news{
    padding: 0 16px;
    border-radius: 12px;
    line-height: 2;
    letter-spacing: -0.33px;
    font-size: 12px;
    color: var(--orange);
    background-color: #fcecdc;
}

  .card-text.type_release{
    padding: 3px 16px;
    border-radius: 12px;
    line-height: 2;
    letter-spacing: -0.33px;
    font-size: 12px;
    color:#15803d;
    background-color: #dcfce7;
  }

 .read_more{
    width: 130px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: #f6f7fa;
    font-size: 14px;
    font-weight: 600;
    color: #121b30;
 }
 .page-link{
    color: initial;
    padding: 15px 25px 16px 28px;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
    width: 63px;
    height: 48px;
    display:flex;
    align-items: center;
    justify-content: center;
 }
 .page-link:hover{
    color: var(--orange);
    background: none;
 }
 .page-item.active .page-link {
    color: #fff;
    background-color: var(--orange);
 }

 .media_card_title{
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -0.67px;
    color: #121b30;
 }
 .media_card_text{
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.44px;
    color: #49576a;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;

 }
 .media_card_text_date{
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: -0.39px;
    color: #64748b;
 }
 .pagination{
    gap: 12px !important;
    margin-top: 90px;
}
.left_arrow_page{
    margin-right: 40px;
}
.right_arrow_page{
    margin-left: 40px;
}
.media_header_title{
 margin-top: 57px;
 margin-bottom: 24px;
 font-size: 32px !important;
 font-weight: bold !important;
 color: #121b30 !important;
}
.news_card{
    margin-bottom: 24px;
}
.news_card:last-of-type{
    margin-bottom: 120px;
}
.body_single_news
{
height: 100%;
display: flex;
flex-direction: column;
gap: 20px;
padding: 28px 32px 24px 35px;
}
.news_title{
    font-size: 24px !important;
    font-weight: bold !important;
    color: #121b30 !important;
    margin-bottom: 20px !important;
}
.news_description{
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #49576a !important;
}
.news_date{
    font-size: 14px;
  line-height: 1.71;
  color: #64748b;
}
/* .news_info{
    height: 40px;
} */
.single_news_row .col-md-4{
max-height: 241px;
}

.img_article_media{
    object-fit: cover !important;
    object-position: center !important;
}
.mobile_block_news{
    display: none !important;
}
/* ?---------------------Media Page Styles END ---------------! */








/* !---------------------About US Page Styles START---------------! */
.text_about{
    color: #49576a;
    line-height: 1.5;
    letter-spacing: -0.44px
}
/* ?---------------------About US Page Styles END ---------------! */








/* !---------------------Article Page Styles START---------------! */
.back_news_container{
margin-top: 103px;
margin-bottom: 40px;;
}
.article_container{
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
    margin-bottom: 40px;
}
.back_news{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 40px;
    gap: 4px;
    background-color: white;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #162345;
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
}
.img-news {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.back_news p{
    margin: 0;
}

.mw-1140{
    max-width: 1140px;
}


.socials_p{
    display: flex;
    align-items: center;
    gap: 20px;
}
.second_row_news{
    height: fit-content;
    margin-bottom: 120px;
}
.second_row_news .card{
    padding: 20px 24px !important;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    margin-bottom: 20px;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
}
.second_row_news .card-header{
    font-size: 16px;
    font-weight: bold;
    color: #121b30;
}
.second_row_news .card-body{
font-size: 16px;
  line-height: 1.5;
  color: #49576a;
}

.article_social img{
filter: invert(40%);
transform: scale(1.5);
}
.card_body_article{
    display: flex;
    flex-direction: column;
    padding: 28px 32px 24px 35px;
    row-gap: 20px;
}
.card_body_widget{
    padding: 20px 24px;
}
.article_section{
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
  }
 .card_article{
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
    max-width: 100%;
 }
/* !---------------------Article Page Styles END---------------! */








  /* media query */
  @media (max-width: 820px) {
      .details_title_head {
          font-size: 25px;
      }
      /* .news_block {
        padding-right: 5px;
    } */
      /* .custom_navbar_shadow img#logo {
          height: 17px;
      } */
      /* img#logo {
          height: 40px;
      } */
      .swiper-slide img {
          display: block;
          width: 100%;
          height: 50vh !important;
          background-position: center;
          object-fit: cover;
      }

      .video{
          height: 50vh;
          width: 100%;
          overflow: hidden;
          min-width: 100%;
          object-fit: cover;
      }

      video{
          width: 100%;
          height: 100%;
          object-fit: cover;
          -o-object-fit: cover;
      }

    /* !-------------------- Home Page  Media Query Start-----------------! */
    /* .online_offline_icons{
        position: relative;
        bottom: 50px;
    } */
    .navbar {
        width: 100vw;
        margin: 0;
    }
    .txt{
        max-width: 738px;
        height: 120px;
        font-family: Inter;
        font-size: 32px;
        font-weight: 900;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.25;
        letter-spacing: normal;

    }

    .row_footer{
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
        align-items: center;
    }
    .nav_footer{
        padding: 30px 0;
        align-items: center;
    }
    .partnersBlocks{
        flex-wrap: wrap;
        padding-bottom: 40px;
    }
    .partnersBlock {
        width: 21%;
    }
    /* .partnersBlock img{
        transform: scale(0.8);
    } */
    .news{
        display: flex;
        justify-content: center !important;
        gap: 15px;
    }
    .news a{
        width: 340px;
    }
    .activity_map_title_container{
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .details_title{
        font-size: 30px;
    }
    .swiper_container{
        width: 100%;
        height: auto;
        max-height: auto;
    }
    .nav_container{
        width: 100vw !important;
    }
    /* .fixed-top{
        padding: 10px 0 !important;
    } */
    .brands_, .team_{
        margin-top: 80px;
        margin-bottom: 40px;
    }
    .navbar-nav {
        column-gap: 50px;
        margin-top: 32px;
        margin-left: 10px;
    }
    .brand_block div:first-child{
        flex-direction: column-reverse;
        align-items: start !important;
       }
       .description_map{
        align-items: flex-start !important;
       }
       .pick{
        margin-bottom: 15px;
       }
    /* ?-------------------- Home Page  Media Query End-----------------! */







/* !-------------------- Article Page  Media Query  Start-----------------! */
.second_row_news div:first-child{
    margin-top: 25px;
}
/* ?-------------------- Article Page  Media Query End-----------------! */






        /* !------------- Media Page Media Query Start------------------! */
        .partnersBlock {
            padding: 4px 10px 4px 10px;
        }
        .details_container {
            padding: 0px 15px;
            padding-top: 55px;
            padding-bottom: 80px;
        }
        /*?------------- Media Page Media Query End-----------------!*/

}


  @media (max-width: 425px) {
      .swiper-slide img {
          display: block;
          width: 100%;
          height: 50vh !important;
          background-position: center;
          object-fit: cover;
      }

      .video{
          height: 50vh;
          width: 100%;
          overflow: hidden;
          min-width: 100%;
          object-fit: cover;
      }

      video{
          width: 100%;
          height: 100%;
          object-fit: cover;
          -o-object-fit: cover;
      }

   .brand_block div:first-child{
    flex-direction: column-reverse;
    align-items: start !important;
   }
   .online_offline_icons{
    position: static;
    bottom: 0;
   }
   .pick img{
    transform: scale(0.8);
   }
   .news{
    gap: 20px;
   }


    .activity_map_title_container {
        padding-left: 0;

    }
    .nav_footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    }
    .list{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 36px;
        padding-left: 0;
        row-gap: 40px;
    }
    .offices{
        display: flex;
        flex-direction: column;
    }
    .brands_, .team_{
        margin-top: 60px;
        margin-bottom: 40px;
    }
    .RH-Travel-team, .media_ h1, .Activity-Map {
        font-size: 35px;
        margin-top: 60px;
        margin-bottom: 40px;
    }
    .media_{
        margin-top: 30px;
        margin-bottom: 10px;
        margin-left: 7px;
    }

    .brands_ span{
        font-size: 35px;
    }
    .description_map {
        flex-direction: column-reverse;
        align-items: flex-end !important;
    }
    .details_title{
        font-size: 25px;
        margin-top: 40px !important;
        margin-bottom: 12px !important;
    }
    .details_p{
        margin-bottom: 60px !important;
    }
    .activity_map_title_container{
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .partnersBlocks {
       padding-bottom: 40px;
    }
    .ms-5{
        margin-left: 0 !important;
    }
    .partnersBlock {
        width: 21%;
    }
    /* .partnersBlock img{
        transform: scale(0.7);
    } */
    .swiper_container{
        width: 100%;
        height: auto;
        max-height: auto;
    }
    .txt{
        max-width: 345px;
        max-height: 128px;
        font-size: 24px;
        font-weight: 900;
        line-height: 1.33;
    }
    .activity_map_title_container {
        padding-left: 0px;
    }
    .navbar-nav {
        column-gap: 50px;
        margin-top: 20px;
        margin-left: 10px;
    }
    .online_offline_icons {
        gap: 10px;
    }
    /* !-------------------- Media Page  Media Query Start -----------------! */

    .pagination{
        gap: 0.5rem !important;
    }
    .partnersBlock {
        padding: 3px 8px 4px 8px;
    }

}

    /*?-------------------- Media Page  Media Query End -----------------! */








/* contacts2 styles */
.contacts_container{
    margin-bottom: 120px;
}
#send_message{
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.invalid-feedback,
.valid-feedback,
label{
    text-align: left;
    font-weight:bold;
}
.container_us{
    margin-bottom: 120px;
}
.about_us{
    max-width: 848px;
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
    padding: 28px 40px 40px;
    border-radius: 8px;
}
.about_us p{
    font-size: 16px;
    line-height: 1.5 !important;
    color: #49576a !important;
}
.about_us h3{
    font-size: 24px !important;
    font-weight: bold !important;
    color: #121b30 !important;
}
.about_us_h1{
    margin-top: 96px;
    margin-bottom: 32px;
    font-size: 36px;
    font-weight: bold;
    color: #121b30 !important;
}
.about_us2{
    max-width: 848px;

}

.form-control:not(#phone){
    padding: 12px 20px !important;
    border-radius: 4px !important;
    border: solid 1px #d9dfee !important;
}
.phone{
    max-width: 266px;
    border-radius: 4px !important;
    border: solid 1px #d9dfee !important;
    height: 50px;
}
.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
    margin-left: 15px !important;
}
.iti.iti--allow-dropdown.iti--separate-dial-code.iti--show-flags .iti__arrow {
    display: none;
}
.phone_container{
    position: relative;
}
#error-msg{
    color: red;
    position: absolute;
    bottom: -22px;

}
.contact_us_title{
    margin-top: 60px;
    margin-bottom: 32px;
    font-size: 36px;
    font-weight: bold;
    color: #121b30;
}











@media (max-width: 480px){
    #logo{
        height: 30px;
        width: 50px;
    }
    .navbar{
        display: flex;
        flex-direction: column;
        background-color: initial;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        }
    .collapse.show{
            top: 48px !important;
        }
    .swiper-slide img {
        display: block;
        width: 100%;
        height: 50vh !important;
        background-position: center;
        object-fit: cover;
    }
    .details_title_head{
        margin: 40px 0;
    }
    .video{
        height: 50vh;
        width: 100%;
        overflow: hidden;
        min-width: 100%;
        object-fit: cover;
    }

    video{
        width: 100%;
        height: 100%;
        object-fit: cover;
        -o-object-fit: cover;
    }
    .card_body_index_article h5{
        margin-bottom: 20px;
    }

    .page-link:first-child,
    .page-link:last-child{
        padding: 13px 15px !important;
    }
    .left_arrow_page{
    position: relative;
    bottom: 60px;
    left: 140px;
    width: 150px;
    margin-bottom: 40px;
    box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
    }
    .right_arrow_page{
        position: relative;
        bottom: 60px;
        right: 140px;
        width: 150px;
        margin-bottom: 40px;
        box-shadow: 0 2px 4px 0 rgba(28, 31, 36, 0.1);
    }



    .row_news_home_page{
        --bs-gutter-x: 30px;
        --bs-gutter-y: 20px;
    }
    .see_all{
        margin-top: 40px;
    }
    .desktop_block_news{
        display: none !important;
    }
    .mobile_block_news{
        display: flex !important;
        margin-bottom: 12px;
    }
    .read_more_container,
    .read_more{
        width: 100%;
    }

     /* !------------About Us Page Media Query Start */
     .about_us_h1{
        font-size: 24px;
        margin-top: 120px;

    }
    .container_us{
        margin-bottom: 80px;
    }
    /* !------------About Us Page Media Query End */



    /* !------------Media Page Media Query Start */
     .media_header_title{
        margin-bottom: 24px;
        margin-top: 35px;
        font-size: 24px !important;
     }
     .body_single_news{
        padding: 24px 20px;
        gap: 24px;
    }
    .news_title{
        margin-bottom: 12px !important;
    }
    /* !------------Media Page Media Query End */





     /* !------------Article Page Media Query Start */

     .article_container{
        margin-bottom: 24px;
    }
    .second_row_news{
        margin-bottom: 80px;
    }
    .article_title{
        font-size: 20px !important;
    }
    /* !------------Article Page Media Query End */







     /* !------------Contacts Page Media Query Start */

     #send_message{
        row-gap: 32px;
     }
    /* !------------Contacts Page Media Query End */

}






@media (min-width: 481px) and (max-width: 767px){

    .card_single_article{
        height: 320px;
    }

}



@media (min-width: 481px) and (max-width: 768px){
    .brand_row{
        column-gap: 30px;
        row-gap: 20px;
    }
    #logo{
        height: 45px;
        width: 60px;
    }
    .brand_container{
        /* min-width: 49%; */
    }
    .row_news_home_page{
        --bs-gutter-x: 30px;
        --bs-gutter-y: 20px;
    }



    /* !------------About Us Page Media Query Start */
    .about_us_h1{
        font-size: 32px;
        margin-top: 107px;

    }
    .container_us{
        margin-bottom: 100px;
    }
    /* !------------About Us Page Media Query End */





    /* !------------Media Page Media Query Start */
    .media_header_title{
        margin-top: 35px;
        margin-bottom: 24px;
    }

    .body_single_news{
        padding: 32px 20px 24px 30px;
    }
    /* !------------Media Page Media Query End */





    /* !------------Article Page Media Query Start */
    .article_container{
        margin-bottom: 24px;
    }
    .second_row_news{
        margin-bottom: 80px;
    }

    /* !------------Article Page Media Query End */


}


@media (max-width: 768px){
.about_us{
    padding: 28px 20px 40px;
}



 /* !------------Media Page Media Query Start */
 .news_title{
    font-size: 20px !important;
 }
/* !------------Media Page Media Query End */




 /* !------------Article Page Media Query Start */
 .back_news{
    margin-top: 95px;
    margin-bottom: 32px;
}
.article_container{
    padding: 20px 20px 40px 20px;
}
/* !------------Article Page Media Query End */






 /* !------------Contacts Page Media Query Start */
 .contact_us_title{
    margin-top: 50px;
 }
/* !------------Contacts Page Media Query End */

}






@media (min-width: 768px) and (max-width: 992px){
    .navbar{
    display: flex;
    flex-direction: column;
    background-color: initial;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    }
    .brand_row{
        column-gap: 1.5rem;
    }
    .brand_row .col-12{
        width: 48.3%;
    }
    .partnersBlock{
        width: 13%;
    }
    .collapse.show{
        top: 60px !important;
    }
}

@media (max-width: 992px){
    .nav-link{
        font-size: 24px !important;
        font-weight: 600 !important;
        color: #fff !important;
    }
    .news_block:nth-of-type(3){
        display: none;
        }
        .navbar-nav{
            row-gap: 28px;
        }
        /* .nav-item:first-of-type{
            padding-top: 32px;
        } */

}




@media (max-width: 991px) {
    .collapse.show{
        background-color: #121b30;
        position: absolute;
        left: 0;
        top: 60px;
    }

    .nav-link{
        color: white !important;
        padding-left: 5px;
    }
    .active_link{
        color: var(--orange) !important;
        padding: 0 !important;
        background: none !important;
    }
    .activity_map_title_container {
        padding-left: 0px;
    }
    .description_map{
        flex-direction: column-reverse;
        align-items: flex-start !important;
        gap: 15px;
    }
    .details_title_head{
        margin-top: 55px;
        margin-bottom: 65px;
    }
    /* .nav_container{
        width: 100vw !important;
        padding-left: 0;
        padding-right: 0;
    }
    .fixed-top{
        padding-top: 0;
    } */
    }

    @media (min-width: 576px){
        .offset-sm-2{
            padding-left: 4px;
        }
    }
    /* @media (min-width: 768px){
        .nav_container{
            padding: 0;
        }
    } */




    @media (min-width: 175px){
        .members_row > .col-12 {
            width: 50%;
            margin-bottom: 28px;
            padding-left: 15px;
            padding-right: 15px;
        }
    }

    @media (min-width: 760px){
    .members_row > .col-12 {
        width: 25%;
        margin-bottom: 25px;
        padding-left: 0;
        padding-right:25px;
    }


}


    @media (min-width: 1660px){
    .members_row > .col-12 {
        width: 16.6%;
        padding-left: 0;
        padding-right:25px;
        margin-bottom: 32px;
    }
    .pick{
        flex-direction:column;
        gap: 18px;
    }
    .description_map_txt,
    .description_map_pick_txt{
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: -0.44px;
        color: #49576a;
    }
}
    @media (max-width: 991px){
    .details_container{
        padding-left:0;
        padding-right:0;
    }
    .details_title{
        margin-top: 40px;
        margin-bottom: 16px;
    }
    .details_p:nth-child(1),
    .details_p:nth-child(2){
     margin-bottom:70px;
    }
    .details_p:nth-child(3),
    .details_p:nth-child(4){
     margin-bottom: 70px;
    }
    .details_p:nth-child(5),
    .details_p:nth-child(6){
     margin-bottom: 80px !important;
    }
    .media_{
        margin-top: 80px;
        margin-bottom: 40px;
    }
}




    @media (min-width: 991px){
   .pick{
    flex-direction: column;
    gap: 10px;
   }
   /* .news_block{
    padding-right: 15px;
    } */
   .details_title{
    margin-top: 40px;
    margin-bottom: 20px;
   }
   .details_p:nth-child(1),
   .details_p:nth-child(2),
   .details_p:nth-child(3){
    margin-bottom:120px;
   }
   .details_p:nth-child(4),
   .details_p:nth-child(5),
   .details_p:nth-child(6){
    margin-bottom: 100px;
   }
   .details_title_head{
    margin: 80px 0;
   }
   .media_{
    margin-top: 110px;
    margin-bottom: 80px;
}
.activity_map_title_container{
    margin-top: 120px;
    margin-bottom: 60px;
    /* padding-left: 150px; */
}

}

@media (max-width: 545px){
    .description_map{
        flex-direction: column-reverse;
        align-items: flex-start !important;
    }
}
@media (max-width: 354px){
    p.function{
        margin: 5px auto;
        width: fit-content;
        font-size: 12px;
    }
    .team_figcaption{
        height: 78px;
    }
}


@media (min-width: 1390px){
    .members_row{
        --bs-gutter-x: 1rem;
    }
}
.g-2 {
    --bs-gutter-x: 1.4rem;
}
