/* ===================================
    Crafto - Lawyer
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
/* variable */
:root {     
    --base-color: #0B4EA2;  
    --dark-gray: #152833;
    --medium-gray: #898d95;
    --very-light-gray: #f6f3ef;
    --alt-font: 'Playfair Display', serif;
    --primary-font: 'DM Sans', sans-serif;
}  
body {
    font-size: 17px;
    line-height: 32px;
}
/* custom cursor */
.custom-cursor .circle-cursor-inner {
    background-color: var(--base-color);
    width: 10px;
    height: 10px;
}
.custom-cursor .circle-cursor-inner.cursor-link-hover {
    background-color: var(--base-color);
}
.custom-cursor .circle-cursor-outer {
    border: 1px solid transparent;
}
/* header */
header .navbar-brand img {
    max-height: 36px;
}
header .left-nav .navbar-nav:before {
    background-color: var(--white);
    opacity: 0.2; 
    transform: translate(-28px, 0px);
    -webkit-transform: translate(-28px, 0px);
    transition: 0s;
}
header.sticky .left-nav .navbar-nav:before {
    transform: translate(-28px, 0px);
    -webkit-transform: translate(-28px, 0px);
}
.navbar .navbar-nav .nav-link { 
    font-size: 18px;
    font-weight: 400; 
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    border-bottom: 1px solid #f6f3ef;
    padding: 16px 20px;
    font-weight: 500;
    font-size: 16px;
    color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li:hover img {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(502%) contrast(502%);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li.active:hover > a{
    background-color: var(--base-color);
    color: var(--white);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li.active > a {
    color: var(--medium-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu {
    width: 330px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a {
    color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a p {
    line-height: 22px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a img {
    width: 65px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li.active > a,
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a:hover {
    color: var(--medium-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a img {
    width: 40px;
    margin-right: 10px;
}
/* pagination */
.pagination-style-01 .page-item.active .page-link,
.pagination-style-01 .page-item .page-link:hover {
    background: var(--dark-gray);
    color: var(--white);
}
.pagination-style-01 .page-item:first-child .page-link,
.pagination-style-01 .page-item:last-child .page-link {
    background: transparent;
    box-shadow: none !important;
}
.pagination-style-01 .page-item:first-child .page-link:hover,
.pagination-style-01 .page-item:last-child .page-link:hover {
    color: var(--dark-gray);
}
/* input */
.input-small, .textarea-small {
    font-size: 14px;
}
/* bg color */
.bg-blue-whale {
    background-color: #152833;
}
.bg-blue-licorice {
    background-color: #374b57;
}
/* bg gradient transparent */
.bg-gradient-dark-transparent {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #0a171e), to(transparent));
    background: linear-gradient(to top, #0a171e 7%, transparent 70%);
}
/* btn */
.btn.btn-blue-whale {
    background-color:#152833; 
    color: var(--white);
}
.btn.btn-blue-whale:hover {
    background-color: transparent;
    border-color: #152833;
    color: #152833;
}
.btn {
    font-family: var(--primary-font);
    font-weight:500;
    text-transform: inherit;
    letter-spacing: 0px;
}
.btn.btn-link {
    padding: 0 0 2px; 
}
.btn.btn-rounded.btn-extra-large {
    padding: 18px 66px 18px 40px;
    font-size: 17px;
}
.btn.btn-rounded.btn-large {
    padding: 16px 55px 16px 38px;
    font-size: 16px;
}
.btn.btn-large {
    font-size: 15px;
}
/* number pagination style 01 */
.swiper-number-pagination-style-01 .swiper-number .swiper-pagination-bullet {
    font-size: 14px;
}
.process-step-style-02:hover .process-step-icon .number {
    color: var(--white);
}
/* page title */
.page-title-large h1 {
    font-size: 4rem;
    line-height: 3.9rem;
}
/* process step style 03 */
.process-step-style-03:hover .process-step-icon-box .progress-image {
    -webkit-transform: scale(1.3); 
    transform: scale(1.3);
}
/* social icon style 02 */
.social-icon-style-02 .small-icon li {
    margin: 0;
}
/* opacity */
.opacity-05 {
    opacity: 0.05;
}
/* top right bottom left */
.top-minus-35px {
    top: -35px;
}
.left-minus-35px {
    left: -35px;
}
.bottom-minus-35px {
    bottom: -35px;
}
/* footer */
footer .footer-logo img {
    max-height: 36px;
}
.footer-dark {
    color: #768086;
}
.footer-dark p, .footer-dark a {
    color: #768086;
}
.is-touchable .cursor-page-inner {
    display: none !important;
}

/* Navbar Sticky Scroll */
header.sticky.sticky-active #mainNavbar{
    background:#fff !important;
    box-shadow:0 4px 18px rgba(0,0,0,.08) !important;
}


header.sticky.sticky-active #mainNavbar .container-fluid > .col-auto:first-child{
    flex:0 0 430px !important;
    max-width:430px !important;
    width:430px !important;
}


header.sticky.sticky-active #mainNavbar .navbar-brand{
    width:auto !important;
    padding:20px 0 !important;
    overflow:visible !important;
}

header.sticky.sticky-active #mainNavbar .navbar-brand img{
    height:65px !important;
    max-height:65px !important;
    width:auto !important;
}


header.sticky.sticky-active #mainNavbar .nav-link,
header.sticky.sticky-active #mainNavbar .dropdown-toggle{
    color:#0B4EA2 !important;
}


header.sticky.sticky-active #mainNavbar .header-button .btn{
    color:#0B4EA2 !important;
    border-color:#0B4EA2 !important;
}

header.sticky.sticky-active #mainNavbar .container-fluid > .col-auto:first-child{
    transform: translateX(-300px) !important;
}


header.sticky.sticky-active #mainNavbar .menu-order{
    transform: translateX(-63px) !important;
}

#mainNavbar .nav-link,
#mainNavbar .dropdown-toggle{
    font-weight:550 !important;
    font-size:18px !important;
}

#mainNavbar .header-button .btn{
    font-weight:550 !important;
}

/* Vertical Divider*/
/* Divider between logo and menu in sticky navbar */
header.sticky.sticky-active #mainNavbar .menu-order{
    position: relative;
    transform: translateX(-63px) !important; /* તારી હાલની value */
}

header.sticky.sticky-active #mainNavbar .menu-order::before{
    content: "";
    position: absolute;
    left: -10px;       /* line ની position */
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 26px;
    background: rgba(11,78,162,0.10);  /* Blue divider */
}

/* Contact button hover */
header.sticky.sticky-active #mainNavbar .header-button .btn{
    transition:all .35s ease !important;
}
header.sticky.sticky-active #mainNavbar .header-button .btn:hover{
    background:#0B4EA2 !important;
    color:#ffffff !important;
    border-color:#0B4EA2 !important;
    box-shadow:0 8px 20px rgba(11,78,162,.25) !important;
}
header.sticky.sticky-active #mainNavbar .header-button .btn:hover i{
    color:#ffffff !important;
}

/*============ Circle Animation Css==============*/
.csa-stats-wrap{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:center;
}

.csa-stat-item{
    display:flex;
    align-items:center;
}

.csa-stat-circle{
    width:100px;
    height:100px;
    min-width:100px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:conic-gradient(#0B4EA2 0deg, #d9e4f5 0deg);
    position:relative;
}

.csa-stat-circle::before{
    content:"";
    position:absolute;
    width:80px;
    height:80px;
    background:white;
    border-radius:50%;
}

.csa-stat-circle span{
    position:relative;
    z-index:1;
    color:#0B4EA2;
    font-size:18px;
    font-weight:700;
}

.csa-stat-text{
    margin-left:18px;
    color:#0B4EA2;
    font-size:18px;
    line-height:28px;
    font-weight:600;
}

#chirag-shah,
#raimeen-maradiya,
#neha-soni,
#keta-chheda{
    scroll-margin-top: 130px;
}


.csa-stats-wrap{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:50px;
    margin-bottom: 0;
}

.csa-stat-item{
    display:flex;
    align-items:center;
    padding:24px 20px;
    background:#ffffff;
    border:1px solid rgba(11,78,162,.12);
    border-radius:18px;
    box-shadow:0 12px 35px rgba(11,78,162,.08);
    transition:all .35s ease;
}

.csa-stat-item:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(11,78,162,.16);
}

.csa-stat-circle{
    width:92px;
    height:92px;
    min-width:92px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:conic-gradient(#0B4EA2 0deg, #e7eef8 0deg);
    position:relative;
    .csa-stat-circle{
    box-shadow:none !important;
}
}

.csa-stat-circle::before{
    content:"";
    position:absolute;
    width:72px;
    height:72px;
    background:#ffffff;
    border-radius:50%;
    box-shadow:inset 0 0 12px rgba(11,78,162,.08);
}

.csa-stat-circle span{
    position:relative;
    z-index:1;
    color:#0B4EA2;
    font-size:20px;
    font-weight:800;
    letter-spacing:-1px;
}

.csa-stat-text{
    margin-left:18px;
    color:#172033;
    font-size:17px;
    line-height:25px;
    font-weight:700;
}

.services-name-section{
    padding-top:0;
    padding-bottom:0;
}

.service-name-card{
    min-height:150px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    position:relative;
    padding:28px 26px;
    background:#0B4EA2;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
    transition:all .35s ease;
}

.service-number{
    display:block;
    font-size:14px;
    line-height:1;
    font-weight:700;
    letter-spacing:1px;
    color:rgba(255,255,255,.35);
    opacity:.75;
    margin-bottom:28px;
}

.service-name-card h4{
    width:100%;
    max-width:none;
    margin:0;
    padding-right:55px;
    display:-webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size:17px;
    line-height:1.35;
    font-weight:600;
    color:#ffffff;
    word-break:normal;
    overflow-wrap:normal;
    hyphens:none;
}

.service-arrow{
    position:absolute;
    right:20px;
    bottom:20px;
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    color:#0B4EA2;
    font-size:18px;
    transition:all .35s ease;
}

.service-name-card:hover{
    background:#083f86;
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(11,78,162,.25);
}

.service-name-card:hover .service-number,
.service-name-card:hover h4{
    color:#ffffff;
}

.service-name-card:hover .service-arrow{
    background:#ffffff;
    color:#0B4EA2;
    transform:scale(1.1);
}

.contact-banner{
    position: relative;
    overflow: hidden;
}

.contact-banner::before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: radial-gradient(
        circle,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.25) 75%,
        rgba(0,0,0,.15) 100%
    );
    z-index:1;
}

.contact-banner .container{
    position: relative;
    z-index:2;
}

/* ===================================
   OUR SERVICES MAIN PAGE
====================================== */


/* Introduction section */

.our-services-intro-section {
    padding: 110px 0 90px;
    background-color: #ffffff;
}

.services-small-heading {
    display: inline-block;
    color: #0b4ea2;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1.8px;
    margin-bottom: 18px;
}

.our-services-intro-section h2 {
    font-size: 48px;
    line-height: 1.15;
}


/* Quick services navigation */

.services-navigation-section {
    padding: 0 0 110px;
    background-color: #ffffff;
}

.services-navigation-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #e4e8ee;
    border-left: 1px solid #e4e8ee;
}

.service-navigation-item {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 25px;
    border-right: 1px solid #e4e8ee;
    border-bottom: 1px solid #e4e8ee;
    background-color: #ffffff;
    color: #172033;
    transition: all 0.35s ease;
}

.service-navigation-number {
    flex-shrink: 0;
    font-family: var(--alt-font);
    font-size: 13px;
    font-weight: 600;
    color: #0b4ea2;
    transition: all 0.35s ease;
}

.service-navigation-name {
    font-family: var(--alt-font);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    transition: all 0.35s ease;
}

.service-navigation-item:hover {
    background-color: #0b4ea2;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(11, 78, 162, 0.14);
}

.service-navigation-item:hover .service-navigation-number,
.service-navigation-item:hover .service-navigation-name {
    color: #ffffff;
}


/* Services showcase */

.services-showcase-section {
    padding: 0;
    background-color: #f7f8fa;
}

.service-showcase-item {
    position: relative;
    padding: 120px 0;
    border-bottom: 1px solid #dde2e8;
    scroll-margin-top: 120px;
}

.service-showcase-item:last-child {
    border-bottom: 0;
}

.service-showcase-reverse {
    background-color: #ffffff;
}


/* Service visual box */

.service-visual-box {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    background:
        linear-gradient(
            135deg,
            rgba(11, 78, 162, 0.98),
            rgba(5, 42, 88, 0.98)
        );
    box-shadow: 0 25px 60px rgba(17, 32, 51, 0.18);
}

.service-visual-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -120px;
    left: -100px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.service-visual-box::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -70px;
    bottom: -75px;
    border: 45px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.service-visual-box-reverse {
    background:
        linear-gradient(
            135deg,
            rgba(21, 40, 64, 0.98),
            rgba(11, 78, 162, 0.98)
        );
}

.service-large-number {
    position: absolute;
    top: 24px;
    left: 30px;
    font-family: var(--alt-font);
    font-size: 100px;
    line-height: 1;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.09);
}

.service-main-icon {
    position: relative;
    z-index: 2;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    color: #ffffff;
    font-size: 48px;
    transition: all 0.4s ease;
}

.service-main-icon::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.service-visual-box:hover .service-main-icon {
    transform: scale(1.08);
    background-color: #ffffff;
    color: #0b4ea2;
}

.service-vertical-text {
    position: absolute;
    right: 22px;
    bottom: 35px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--alt-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* Service content */

.service-showcase-item h3 {
    max-width: 650px;
    font-size: 38px;
    line-height: 1.22;
}

.service-feature-list {
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
    color: #344052;
    font-size: 16px;
    line-height: 1.6;
}

.service-feature-list li:last-child {
    margin-bottom: 0;
}

.service-feature-list li i {
    margin-top: 6px;
    color: #0b4ea2;
    font-size: 12px;
}

.service-explore-link {
    padding-left: 0;
    padding-right: 0;
    color: #172033;
}

.service-explore-link .btn-text {
    font-family: var(--alt-font);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-explore-link:hover {
    color: #0b4ea2;
}


/* Smooth anchor scrolling */

html {
    scroll-behavior: smooth;
}





/* ===================================
   SERVICE APPROACH SECTION
====================================== */

.service-approach-section {
    padding: 110px 0 90px;
    background-color: #f7f8fa;
}

.service-approach-section h2 {
    font-size: 46px;
    line-height: 1.18;
}

.service-approach-box {
    position: relative;
    min-height: 335px;
    height: 100%;
    padding: 45px 30px 35px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e7eaf0;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(23, 32, 51, 0.06);
    transition: all 0.35s ease;
}

.service-approach-box:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 78, 162, 0.3);
    box-shadow: 0 22px 45px rgba(11, 78, 162, 0.12);
}

.service-approach-number {
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: var(--alt-font);
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    color: rgba(11, 78, 162, 0.07);
}

.service-approach-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: #0b4ea2;
    font-size: 30px;
    border-radius: 50%;
    background-color: rgba(11, 78, 162, 0.08);
    transition: all 0.35s ease;
}

.service-approach-box:hover .service-approach-icon {
    color: #ffffff;
    background-color: #0b4ea2;
    transform: rotateY(180deg);
}

.service-approach-box h3 {
    margin-bottom: 15px;
    font-size: 23px;
    line-height: 1.3;
}

.service-approach-box p {
    margin-bottom: 0;
    color: #6f7785;
    font-size: 16px;
    line-height: 1.75;
}






/* Commitment */

.commitment-box{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:25px;
    background:#fff;
    border:1px solid #e9edf4;
    border-radius:8px;
    transition:.35s;
}

.commitment-box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.commitment-box i{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#0b4ea2;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.commitment-box h6{
    margin-bottom:8px;
    font-size:20px;
}

.commitment-box p{
    margin:0;
    color:#6d7683;
    line-height:28px;
}


/* =====================================
   EVENT MOMENTS GALLERY
===================================== */

.event-moments-section{
    padding-top:100px;
    padding-bottom:100px;
}

.event-gallery-item{
    position:relative;
    width:100%;
    overflow:hidden;
    border-radius:12px;
    background:#ffffff;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.event-gallery-item img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.event-gallery-item:hover img{
    transform:scale(1.06);
}

.event-gallery-large{
    height:530px;
}

.event-gallery-wide{
    height:255px;
}

.event-gallery-small{
    height:250px;
}


/* =====================================
   EVENT VIDEO
===================================== */

.event-video-section{
    padding-top:100px;
    padding-bottom:100px;
}

.event-video-box{
    width:100%;
    overflow:hidden;
    border-radius:14px;
    background:#000;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.event-video-box video{
    display:block;
    width:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
}


/* =====================================
   BACK TO EVENTS
===================================== */

.event-back-section{
    padding:0 0 90px;
    background:#ffffff;
}

/*.event-back-wrap{
    border-top:1px solid rgba(11,78,162,.15);
    border-bottom:1px solid rgba(11,78,162,.15);
}*/

.event-back-link{
    min-height:125px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    text-decoration:none;
    transition:all .35s ease;
}

.event-back-icon{
    width:52px;
    height:52px;
    border:1px solid #0B4EA2;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#0B4EA2;
    font-size:17px;

    transition:all .35s ease;
}

.event-back-text{
    display:flex;
    flex-direction:column;
}

.event-back-text small{
    margin-bottom:3px;

    color:#8b8b8b;
    font-size:13px;
    line-height:20px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.event-back-text strong{
    color:#172033;
    font-size:22px;
    line-height:28px;
    font-weight:600;
    transition:color .35s ease;
}


/* Hover */

.event-back-link:hover .event-back-icon{
    background:#0B4EA2;
    color:#ffffff;
    transform:translateX(-5px);
}

.event-back-link:hover .event-back-text strong{
    color:#0B4EA2;
}


/* Tablet */

@media(max-width:991px){

    .event-back-section{
        padding-bottom:70px;
    }

    .event-back-link{
        min-height:110px;
    }

}


/* Mobile */

@media(max-width:575px){

    .event-back-section{
        padding-bottom:55px;
    }

    .event-back-link{
        min-height:100px;
        gap:15px;
    }

    .event-back-icon{
        width:45px;
        height:45px;
        font-size:15px;
    }

    .event-back-text strong{
        font-size:19px;
    }

    .event-back-text small{
        font-size:11px;
    }
}

/* Tablet */

@media(max-width:991px){

    .event-video-section{
        padding-top:80px;
        padding-bottom:80px;
    }

}


/* Mobile */

@media(max-width:575px){

    .event-video-section{
        padding-top:65px;
        padding-bottom:65px;
    }

}

/* Tablet */

@media(max-width:991px){

    .event-moments-section{
        padding-top:80px;
        padding-bottom:80px;
    }

    .event-gallery-large{
        height:430px;
    }

    .event-gallery-wide{
        height:300px;
    }

    .event-gallery-small{
        height:260px;
    }

}


/* Mobile */

@media(max-width:575px){

    .event-moments-section{
        padding-top:65px;
        padding-bottom:65px;
    }

    .event-gallery-large,
    .event-gallery-wide,
    .event-gallery-small{
        height:300px;
    }

}