@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;700;900&display=swap');

:root{
    --header-text-color: #262966;
}

body 
{
    overflow-x: hidden !important;
    font-family: 'Urbanist', sans-serif;
}

html 
{
    scroll-behavior: smooth;
}

#nav-icon {
    color: rgba(2, 7, 67, 0.94) !important;
    font-size: 30px;
}

h1,h2,h3,h4
{
    font-family: 'Urbanist', sans-serif;
}

p,li
{
    /* font-family: 'Neue Hans Kendrick', sans-serif; */
    font-family: 'Urbanist', sans-serif;
    font-weight: 300;
}

.navbar-dark 
{
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.9px);
    -webkit-backdrop-filter: blur(6.9px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 105px;
    padding-right: 40px;
    z-index: 999999;
}

.navbar-brand img 
{
    width: 100px;
    margin-left: 10px;
}

.navBg
{
    box-shadow: 0px 5px 40px -25px rgba(167, 167, 167, 0.479);
    transition: transform 0.5s;
}

.reduceBrandwidth
{
    transform: scale(.5);
    transition: transform .5s;
}

.navbar-nav li .nav-link 
{
    color: #262966 !important;
    font-size: 15px;
    border-radius: 10px;
    font-weight: 500;
    padding: 10px;
    margin-left: 15px;
    text-transform: capitalize;
    transition: background-color 0.5s, border-radius 0.5s, color 0.5s;
}

.navbar-nav li .nav-link:hover 
{
    max-width: 220px;
    color: white !important;
    background-color: #FFC23B !important;
    border-radius: 5px;
}

.dropdown-item
{
    font-size: 13px;
}

.dropdown-item:hover {
    background: #FFC23B;
    color: white !important;
    transition: 0.8s;
}


.hero-container
{
    height: 80vh;
    width: 100%;
    margin: auto;
    border: none;
    background-image: url('../img/backgrounds/new-banner-wowlogbook.png');
    background-size: cover;
    background-position: center center;
}

.hero-container-services
{
    height: 100vh;
    width: 100%;
    margin: auto;
    border: none;
    background-image: url('../images/bg-images/service-hero-2.jpg');
    background-size: cover;
    background-position: center center;
}

.link-btn
{
    padding-top: 25px;
    color: black;
    font-weight: 400;
    text-decoration: underline;
}

.link-btn:hover{
    color: #FFC23B;
}

.span-underline
{
    background-color: transparent;
    background-image: url(../images/brands/underline.svg);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    border-radius: 0;
    position: relative;
}


/* event list section css */
.events-list-container {
    /* margin-top: 30px; */
    padding: 0px 120px 10px 120px;
}

.event-list-header-container {
    display: flex;
    justify-content: space-between;
}

/* popular in area css */
.event-list-popular-header-container
{
    margin-top: 80px;
    display: grid;
    grid-template-columns: 150px 1fr;
}


.header-filter .filter-card .region-filter
{
    border: none;
    border-bottom: 2px solid grey;
    background-color: transparent;
    font-size: 30px;
    font-weight: 500;
    color: var(--primary);
    margin-top: -26px;
    width: 250px;
    border-radius: 0px;
}

.header-filter .filter-card .region-filter:focus
{
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}

div .scrollmenu {
    background-color: transparent;
    overflow: auto;
    white-space: nowrap;
  }
  
  div .scrollmenu a {
    display: inline-block;
    color: rgb(125, 125, 125);
    text-align: center;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.5s;
  }
  
  div .scrollmenu a:hover {
    border-bottom-color: #777;
  }

/* end of popular in area css */


.events-list .event-card {
    position: relative;
    border-radius: 5px;
    margin-bottom: 25px;
    min-height: 380px;
    border: none;
    box-shadow: 0px 3px 10px #efefef;
    background-color: #ffffff;
    transition: box-shadow 0.5s;
    cursor: pointer;
}

.events-list .event-card:hover {
    box-shadow: 0px 10px 40px -10px #7f7f7f;
}

.events-list .event-card .event-misc-details {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
}

.events-list .event-card .event-misc-details .event-cost p {
    background-color: white;
    color: var(--dark);
    font-size: 12px;
    font-weight: 400;
    border-radius: 8px;
    /* box-shadow: 0px 3px 5px #ffb254; */
    padding: 5px 5px;
}

.events-list .event-card .event-misc-details .event-misc .btn {
    background-color: white;
    font-size: 14px;
    color: white;
    -webkit-text-stroke: 1.3px black; /* For webkit browsers (Chrome, Safari) */
    text-stroke: 1.3px black; /* For other browsers supporting the text-stroke property */
    color: transparent;
    border: none;
    border-radius: 17.5px;
    text-align: center;
    /* box-shadow: 0px 3px 5px #ffb254; */
    padding: 8px 10px 5px 10px;
}

.events-list .event-card .event-poster {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.events-list .event-card .event-details {
    display: grid;
    grid-template-columns: 50px 1fr;
    padding: 15px;
}


.events-list .event-card .event-details .event-date {
    width: 35px;
}

.card-link .event-date
{
    color: var(--dark);
}

.card-link
{
    text-decoration: none;
}

.events-list .event-card .event-details .event-decription .event-title {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.events-list .event-card .event-details .event-date .month {
    font-size: 13px;
    font-weight: 600;
    color: #f6a622;
    margin-top: 10px;
    margin-bottom: 10px;
}

.events-list .event-card .event-details .event-date .date {
    font-size: 19px;
    font-weight: 700;
    margin-top: -5px;
}

.events-list .event-card .event-details .event-decription p {
    font-size: 12px;
    color: rgb(97, 97, 97);

}

/* event list section css */

.ticket-section
{
    padding: 70px 100px !important;
}

.ad-section
{   
    max-width: 1280px;
    border-radius: 20px;
    padding: 70px;
    margin: 100px auto;
    background: url('../images/yellow-ad.png');
    background-size: cover;
}

.ad-section h1
{
    font-size: 48px;
}

.ad-section p
{
    font-size: 20px;
    color: black;
    font-weight: 400;
}

.ticket-section .card-text
{
    font-size: 15px;
}

.ticket-section .hero-img
{
    object-fit: cover;
}


/* all events section css */
.header-filter .card {
    width: 100%;
}

.filter-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 15px;
    border-radius: 2px;
    border: none;
}

.all-events-filter {
    width: 140px;
    padding: 12px 20px;
    border-radius: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #efeff4 url('../images/caret.png') right 15px center no-repeat;
    background-size: auto;
    background-size: 15px auto;
    border: 0;
    font-size: 12px;
    line-height: 1.83;
    letter-spacing: .4px;
    color: #131315;
    font-weight: 700;
    height: auto;
}
/* end of all events section css */


.pre-text
{
    color: #145aff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}


.video-yt-embed
{
	width: 100%;
	height: 100%;
}

.header-section
{
    padding-top: 82px;
    padding-right: 15px;
    padding-left: 75px;
    background-color: #E6E6E6;
}

.header-section-services
{
    padding-top: 82px;
    padding-right: 15px;
    padding-left: 75px;
    background-color: #fff;
}



.event-section
{
    background: #010224;
    padding: 130px 30px 90px 30px;
    z-index: 9999;
    position: relative;
}

.event-section h1
{
    font-size: 48px;
    line-height: 48px;
}

.event-section .card
{
    background: #464979;
    color: white;
}

.event-section .card p
{
    font-size: 13px;
}

.event-section .special-card
{
    margin-top: 90px;
}

.one-floor
{
    margin-top: -70px;
}

/* bounce and spin animation */
@keyframes spin_circle
{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}

@keyframes bounceTop_01
{
  0%,100%
  {
    transform: translateY(-30px);
  }
  50%{
    transform: translateY(0px);
  }
}
/* end of bounce and spin animation */


.effect-wrap
{
    position: absolute;
}

.effect-wrap .effect-1 {
    left: 5%;
    top: 25%;
    font-size: 20px;
    color: rgba(253,29,29,0.4);
    animation: spin_circle 4s linear infinite;
    position: fixed;
  }

  .effect-wrap .effect-2 {
    left: 35%;
    top: 90%;
    animation: bounceTop_01 4s linear infinite;
    position: fixed;
  }

  .effect-wrap .effect-3 {
    left: 50%;
    top: 90%;
    width: 10px; 
    margin:2px auto;
    animation: bounceTop_01 2s linear infinite;
    position: fixed;
  }

  .down-btn-indicator-hide
  {
      display: none;
  }



.wrap {
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
  }



  @keyframes ripple {
	0% {
	  box-shadow: 0 0 0 0 #fff, 0 0 0 1px #fff, 0 0 0 3px #fff, 0 0 0 5px #fff;
	}
	100% {
	  box-shadow: 0 0 0 0 #fff, 0 0 0 4px #fff, 0 0 0 20px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0);
	}
  }
/* ripple of glitch */
/* end of ripple animation */


/* overlapping header images */
.hero-left-img {
    position: relative;
    margin-top: 150px;
    right: 40%;
    width: 70%;
    /* animation: hinge 5s linear; */
}


.hero-right-img {
    position: absolute;
    right: 0%;
    width: 80%;
}

/* end of overlapping header images */

.header-section-img {
    width: auto;
}

.box {
    position: relative;
}


.privacy-card
{
    width: 900px;
    margin: 20px auto;
    border: none;
}

.privacy-card li
{
    padding-bottom: 10px;
}


/* Animations */

@keyframes spin_circle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(0px);
    }
}


@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* end of animations */


.header-left {
    padding: 30px 10px 0px 65px;
    margin-top: 70px;
}

.header-left h1 {
    font-size: 72px;
    line-height: 70px;
    color: #03052b;
}

.home-section-2
{
    background-color: #FDF9F0;
    border-bottom-left-radius: 90px;
    border-bottom-right-radius: 90px;
}

.home-section-2 h1
{
    font-weight: 200;
    font-size: 50px;
    margin-left: 80px;
    color: rgb(44, 37, 37);
    /* text-shadow: 0px 12px 10px rgba(0, 0, 0, 0.13); */
}

.home-section-2 p
{
    color: #838383;
    font-weight: 100;
}

.home-section-2-inner
{
    padding: 20px 80px;
}

.home-section-2-inner .fa
{
    font-size: 35px;
}

.home-section-2-inner .service-card
{
    min-height: 360px;
    background: rgba(255, 255, 255, 0.712);
    border-radius: 16px;
    padding-top: 20px;
    box-shadow: 0 4px 30px -23px rgba(88, 88, 84, 0.911);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* section-3 */
.section-3
{
    background-color: #F9FBFF;
}

.section-3 .right {
    padding: 150px 20px 0px 60px;
  }

.section-3 .right h1
{
    font-size: 60px;
    font-weight: 200;
    line-height: 58px;
    color: #262966;
    /* text-shadow: 0px 12px 10px rgba(0, 0, 0, 0.13); */
}

.advantages-list 
{
    list-style: none;
    color: #262966;
    margin-left: -40px;
    margin-top: 20px;
  }

  .advantages-list li {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 400;
  }

 .section-3 .left
 {
     background-image: url('../images/tablet-phone-qr-hero.png');
     /* background-position-x: 75%; */
     background-position-y: 60%;
     background-size: 100%;
     background-repeat: no-repeat;
     min-height: 600px;
 }

 .btn-custom
 {
     background-color: #FFC23B;
     color: white;
     padding: 10px 30px;
     border-radius: 10px;
     font-size: 16px;
     margin-top: 15px;
 }

/* end of section-3 */

/* section-4 */
.section-4
{
    padding-top: 80px;
    padding-bottom: 50px;
}

.section-4 .hr-img-holder
{
    background-image: url('../images/bg-images/side-hero.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
}

.section-4 .hr-img-holder-about
{
    background-image: url('../images/bg-images/group-bg-about.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    height: 500px;
}

.hr-card h1
{
    font-weight: 300;
    font-size: 50px;
    color: #262966;
    animation: fadeInLeft .8s linear;
    /* text-shadow: 0px 12px 10px rgba(0, 0, 0, 0.13); */
}

.section-lobby-insert h3
{
    color: #262966;
}

.about-card
{
    margin-right: -60px;
    width: 600px;
    margin-top: 50px;
    z-index: 99999;
    padding: 30px;
}


.hr-card .event-hr-card-h1
{
    font-size: 40px;
}

.hr-card p
{
    font-size: 15px;
}
/* end of section-4 */

/* section-5 */
.section-5 h1
{
    font-weight: 200;
    font-size: 40px;
    color: #262966;
    animation: fadeInRight .8s linear;
    /* text-shadow: 0px 12px 10px rgba(0, 0, 0, 0.13); */
}

.section-5 .right
{
    margin-top: 180px;
}
/* eno of section-5 */


/* section-6 */
.section-6
{
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #EEF1FF;
    height: fit-content;
    border-radius: 30px;
}

.section-6 input
{
    border-color: #EEF1FF;
}

.section-6 h1
{
    font-weight: 200;
    font-size: 40px;
    color: #262966;
}
/* end of section-6 */

.section-lobby-insert .left
{
    padding-top: 105px;
}

.section-lobby-insert h1
{
    font-size: 60px;
    font-weight: 200;
    line-height: 58px;
    color: #262966;
    width: auto;
    margin: 30px auto;
    /* text-shadow: 0px 12px 10px rgba(0, 0, 0, 0.13); */
}

.icon-primary {
    color: #062caf
}

.icon-bg-circle {
    position: relative
}

.icon-bg-circle::before {
    z-index: 1;
    position: relative
}

.icon-bg-primary::after {
    background: #062caf !important
}

.icon-bg-circle::after {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    top: -25px;
    left: 5px;
    border-radius: 50%;
    background: inherit;
    opacity: .1
}

.icon-bg-yellow::after {
    background: #f6a622 !important
}

.icon-bg-purple::after {
    background: #7952f5
}

.icon-yellow {
    color: #f6a622
}

.icon-purple {
    color: #7952f5
}

.icon-cyan {
    color: #02d0a1
}

.icon-bg-cyan::after {
    background: #02d0a1
}

.icon-bg-red::after {
    background: #ff4949
}

.icon-red {
    color: #ff4949
}

.icon-bg-green::after {
    background: #66cc33
}

.icon-green {
    color: #66cc33
}

.icon-bg-orange::after {
    background: #ff7c17
}

.icon-orange {
    color: #ff7c17
}

.icon-bg-blue::after {
    background: #3682ff
}

.icon-blue {
    color: #3682ff
}

.get-started
{
    padding-left: 70px;
}

.form-area .form-control
{
    border: none;
    background: #f5f7fa; 
    font-size: 14px;
}

.form-area label
{
    font-weight: 400;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
}

.get-started .right
{
    background-image: url('../images/bg-pattern.png');
    background-size: cover;
    background-repeat: no-repeat;
    border-top-left-radius: 20%;
    min-height: 600px;
}


.solution-card
{
    border-radius: 10px;
    margin: 20px auto;
    padding: 20px;
    transition: background 0.5s;
}

.solution-card:hover
{
    background: #464979;
}



/* submitted page */

.submit-container
{
    width: 600px;
}

.submit-card
{
    margin-top: 80px;
}

.submit-card h2
{
    color: #4b4646;
    font-size: 19px;
}

/*end of submitted page  */

/* footer */
.footer-section {
    padding: 40px 60px 5px 60px;
    background-color: #262966;
    color: #fff;
    /* background-image: linear-gradient(120deg, #80808081 62%, #dddddd 100%); */
}

.footer-section .second-row {
    /* border-top: 1px solid #feae55; */
    padding-top: 5px;
}

.footer-section p {
    /* margin-top: 40px; */
    font-size: 12px;
}

.footer-section a
{
    color: #fff;
    font-size: 12px;
}

/* end of footer */


.map-container-5
{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}

.map-container-5 iframe
{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

/* end of map */

.clients{
    margin-top: 50px;
}

.clients h1
{
    font-size: 60px;
    font-weight: 200;
    line-height: 58px;
    color: #262966;
    /* text-shadow: 0px 12px 10px rgba(0, 0, 0, 0.13); */
}

.clients .body-area
{
    height: 400px;
}

.clients .body-area img{
    width: 230px;
    transition: animation 0.5s;
}

.clients .body-area img:hover
{
    animation: none !important;
}


/* service page css */
.header-section-service
{
    margin-top: 80px;
    z-index: 999;
    position: relative;
    height: 118vh;
    background-image: url('../images/bg-images/service-hero-2.jpg');
    background-size: 55%;
    background-position: 140% -70%;
    background-repeat: no-repeat;

    /* background-position-x: 240%;
    background-position-y: center;
    background-repeat: no-repeat; */
}

.header-section-service::after
{
    content: "";
    width: 100%;
    position: relative;
    background: url('../images/bg-images/frame-outline.png');
    z-index: 1;
    display: inline-block;
    height: 645px;
    background-size: 45%;
    background-repeat: no-repeat;
    background-position-x: -50%;
    margin-left: -50px;
    margin-top: 20px;
}

.header-section-service h1, .header-h1
{
    font-size: 60px;
    color: #262966;
    line-height: 70px;
}

.header-section-service p, .sub-text-p
{
    font-size:  18px;
    color: #353535;
    margin-top: 30px;
    font-weight: 300;
    width: 80%;
}

.sub-text-p-about
{
    font-size:  1rem;
    color: #242764;
    font-weight: 300;
    width: 60%;
    margin: auto;
}


.marquee-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: scrolling 30s linear infinite;
  }
  
  .marquee-item {
    flex: 0 0 13vw;
    margin: 0 -2.5vw;
  /*   flex: 0 0 20vw; */
  /*   margin: 0 2vw; */
  }
  
  .marquee-item img {
    display: block;
    width: 40%;
    padding: 0 5px;
  }
  
.brands-section{
    padding-top: 20px;
}

.brands-section .images-container
{
    display: flex;
    justify-content: space-between;
    animation: scrolling 30s linear infinite;
}

.brands-section .images-container img
{
    display: block;
    margin: auto;
}

@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translatex(-144vw); }
  }
  

.services-section
{
    margin-top: 90px;
    margin-bottom: 30px;
    position: relative;
    z-index: 999;

}

.services-section .service-card
{
    background: rgba(255, 255, 255, 0.48);
    border-radius: 10px;
    margin-bottom: 10px;
    height: 380px;
    backdrop-filter: blur(6.9px);
    -webkit-backdrop-filter: blur(6.9px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.services-section .service-card h4
{
    color: var(--header-text-color);
}

.services-section .service-card p
{
    font-size: 0.9rem;
}

/* end of services css */


/* demo page */
.header-section-demo
{
    /* background: rgb(197,232,239); */
    /* background: linear-gradient(18deg, rgba(197,232,239,1) 0%, rgba(237,243,246,1) 33%, rgba(252,239,235,1) 60%, rgba(247,213,202,1) 100%); */
    /* background-image: url('../images/bg-images/Frame\ 104.png'); */
    /* background-size: cover; */
    margin-top: 80px;
    /* height: 550px; */
    background-repeat: no-repeat;
}

.event-bg-img
{
    margin-top: -160px;
}

.event-sub-text
{
    width: 440px;
    margin: 30px auto;
}

.ytembed-card
{
    width: 800px;
    height: 380px;
    margin: 5px auto; 
    border-radius: 5px;
}

/* end of demo page */


.contact h3
{
    color: #262966;
    text-align: center;
}

.contact h5
{
    text-align: center;
}

/* Portrait and Landscape */
@media (max-width: 768px) {

    .privacy-card
    {
        width: 100%;
    }

    .event-content_location
    {
        font-size: 17px;
    }

    .event-content_date{
        font-weight: bolder;
        font-size: 20px;
    }

    .navbar-brand img 
    {
        width: 100px;
    }

    .service-column{
        margin-top: -75px;
    }

    .ticket-section
    {
        padding: 15px !important;
    }

    /* header/hero */
    .header-section 
    {
        height: 100%;
        padding: 70px 10px 30px 10px;
    }

    .event-details_header{
        font-size: 20px;
    }

    .overlay{
        height: 100vh;
    }

    .section-6 h1
    {
        font-size: 35px;
    }

    .sub-text-p
    {
        font-size: 1rem;
        width: 100%;
    }

    .section-4 .hr-img-holder
    {
        background-size: contain;
        height: 340px;
    }

    .section-4 .hr-img-holder-about
    {
        background-size: contain;
        height: 340px;
    }

    .section-head{
        font-size: 40px;
    }

    .effect-wrap .effect-1
    {
        top: 12%;
        width: 35px;
    }

    .my-wave-base
    {
        margin-top: -60px;
    }

    .header-left {
        padding: 0px 20px 0px 25px;

    }

    .demo-btn{
        width: 60%;
        text-align: center;
    }

    .header-left h1 {
        font-weight: 500;
        font-size: 38px;
        color: #262966;
        line-height: 40px;
        animation: fadeInLeft .5s linear;
    }

    .event-bg-img
    {
        margin-top: -50px;
    }
    /* end of header/hero */
    
    /* marquee */
    .brands-section{
        padding-top: 20px;
        overflow: hidden;
    }
    
    .marquee-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        animation: scrolling 30s linear infinite;
    }
    
    .marquee-item {
        flex: 0 0 50vw;
        margin: 0 -12.5vw;
    /*   flex: 0 0 20vw; */
    /*   margin: 0 2vw; */
    }
    
    .marquee-item img {
        display: block;
        width: 50%;
        padding: 0 5px;
    }
    /* end of marquee */

    /* event section on home */
    .event-section h1
    {
        font-size: 24px;
        line-height: 35px;
    }
    /* end of event section on home */


    /* home-section-2 */
    .home-section-2
    {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .home-section-2 h1
    {
        margin: auto;
        text-align: center;
        font-size: 40px;
        color: #262966;
    }

    .home-section-2-inner
    {
        padding: 20px 25px;
    }
    /* end of home-section-2 */


    /* section-4 hr-card */
    .section-4 
    {
        padding-top: 35px;
    }

    .hr-card {
        margin: -15px 5px;
        width: fit-content;
      }

    .services-page .hr-card
    {
        margin: 30px -10px;
    }

    .hr-card h1
    {
        font-size: 28px;
    }

    .hr-card .event-hr-card-h1
    {
        font-size: 25px;
    }


    .hr-card p
    {
        font-size: 13px;
    }
    /* end of section-4 */


    /* section-3 advantages*/
    .section-3 .right
    {
        padding: 50px 20px 0px 20px;
    }

    .advantages-list 
    {
        margin-left: -40px;
    }

    .advantages-list li 
    {
        font-size: 13px;
    }

    .section-3 .right h1
    {
        font-size: 40px;
        color: #262966;
    }

    .section-3 .left
    {
        background-position-x: 70%;
        background-size: 595px;
        min-height: 380px;
    }
    /* end of section-3 */


    /* lobby section */
    .section-lobby-insert h1
    {
        font-size: 40px;
        line-height: 35px;
        margin: 10px auto;
    }

    .section-lobby-insert
    {
        padding-top: 90px;
    }

    .section-lobby-insert .left
    {
        padding-top: 65px;
    }
    /* end of lobby section */


    /* section-5 */
    .section-5 .right
    {
        margin-top: 70px;
    }

    .section-5 p, .section-5 h1
    {
        text-align: center;
    }


    .section-5 .right img
    {
        width: 180px;
        margin-left: 120px;
    }

    /* end of section-5 */

    .navbar-dark
    {
        padding-left: 0px;
        padding-right: 0px;
    }

    .page-footer {
        margin-top: 400px;
        padding: 30px;
    }

    .event-section .special-card
    {
        margin-top: 7px;
    }

    #contact-us
    {
        text-align: center;
    }

    .ytembed-card
    {
        width: auto;
    }

    .header-section-service
    {
        background-image: none;
        height: 50vh;
    }

    .header-section-service h1, .header-h1
    {
        font-size: 30px;
        line-height: 35px;
        font-weight: 200;
    }

    .header-section-service p
    {
        font-size: 1rem;
        width: 100%;
    }

    .header-section-service::after
    {
        z-index: -1;
        display: inline-block;
        height: 75%;
        background-size: 85%;
        background-repeat: no-repeat;
        margin-left: -200px;
        margin-top: -25px;
    }

    .services-section .service-card
    {
        height: 100%;
        margin: -15px 20px;
    }

    .services-section .service-card h4
    {
        color: var(--header-text-color);
    }

    .services-section .service-card p
    {
        font-size: 0.9rem;
    }

    .brands-section .images-container
    {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    /* about page */
    .sub-text-p-about{
        width: 100%;
    }
}

