/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


/* Custom Fonts */

@font-face {
    font-family: 'DINNextLTPro-BoldCondensed';
    src: url('fonts/custom_fonts/DINNextLTPro-BoldCondensed.eot?#iefix') format('embedded-opentype'), url('fonts/custom_fonts/DINNextLTPro-BoldCondensed.otf') format('opentype'), url('fonts/custom_fonts/DINNextLTPro-BoldCondensed.woff') format('woff'), url('fonts/custom_fonts/DINNextLTPro-BoldCondensed.ttf') format('truetype'), url('fonts/custom_fonts/DINNextLTPro-BoldCondensed.svg#DINNextLTPro-BoldCondensed') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DINNextLTPro-Regular';
    src: url("../css/fonts/custom_fonts/DIN-Next-LT-Pro-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DINNextLTPro-Condensed';
    src: url("../css/fonts/custom_fonts/DINNextLTPro-MediumCond.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DINNextLTPro-Light';
    src: url("../css/fonts/custom_fonts/dinnextltpro-light.woff.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DINNextLTPro-Medium';
    src: url("fonts/custom_fonts/DIN-Next-LT-Pro-Medium.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DINNextLTPro-Bold';
    src: url("../css/fonts/custom_fonts/DINNextLTPro-Bold.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DINCondensed-Bold';
    src: url("fonts/custom_fonts/DINCondensed-Bold.ttf");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'DINNextLTPro-Regular';
    color: #555;
    font-size: 18px;
    overflow-x: hidden;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #ed502e;
    text-decoration: none;
}

a:hover {
    color: #f1775d;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DINNextLTPro-Medium';
    line-height: 1;
}

.section-heading {
    font-family: 'DINCondensed-Bold';
    font-size: 130px;
    font-stretch: condensed;
    line-height: 1;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.common-padding-left-right {
    padding: 0 120px;
}

.no-scroll {
    overflow-y: hidden;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ed502e;
    border-top-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 0px;
    transition: all 0.4s;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    color: #FFF;
}

.back-to-top i {
    font-size: 20px;
    color: #fff;
    line-height: 36px;
}

.back-to-top:hover {
    background-color: #ae0c24;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.navbar {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 8px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navabar .logo img {
    display: block;
    max-width: 190px;
    height: auto !important;
}

.navbar .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar li a {
    display: block;
    line-height: 22px;
    padding: 39px 20px !important;
    color: #000;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'DINCondensed-Bold';
    font-stretch: condensed;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    color: #0b2341;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 25px;
    line-height: 0;
    margin-left: 5px;
    color: #ae0c24 !important;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #ae0c24 !important;
}

.active-link {
    color: #ae0c24;
}

.nav-link:focus,
.nav-link:active {
    color: #ae0c24;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px !important;
    text-transform: none;
    color: #777;
    font-weight: 400;
    font-size: 16px;
    font-family: 'DINNextLTPro-Regular';
    text-transform: uppercase;
}

.navbar .dropdown ul li:hover a {
    background-color: rgba(0, 0, 0, 0.1);
    color: #777 !important;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 102%;
    visibility: visible;
    border-top: 2px solid #ae0c24;
}

.logo .navbar-brand {
    padding: 0
}

.navbar-brand img {
    display: block;
    max-width: 190px;
    height: auto !important;
    margin: 12px 0px 0px;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

.navbar-toggler {
    padding: 0;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    background: #ae0c24;
}


/* #Mega Menu Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.mega-menu {
    display: block;
    left: 0;
    top: calc(100% + 28px);
    position: absolute;
    text-align: left;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    width: 96%;
    margin: 0 40px;
    height: auto;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.mega-menu .col-lg-3 {
    border-right: 1px solid #ae0c24;
    padding: 30px 20px;
}

.mega-menu .col-lg-3:nth-child(4n+4) {
    border-right: none;
}

.mega-menu ul {
    float: left;
    width: 205px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mega-menu ul li {
    width: 100%;
    display: flex;
    align-items: center;
}

.mega-menu ul:last-child {
    margin-right: 0;
}

.navbar .mega-menu li a {
    color: #777;
    display: block;
    padding: 5px 10px !important;
    font-size: 14px;
    text-align: left;
    width: 100%;
    padding-left: 0;
    font-family: 'DINNextLTPro-Regular';
    font-weight: 500;
    text-transform: uppercase;
    white-space: pre-wrap;
}

.navbar .mega-menu li:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #777;
    padding-left: 12px;
}

.mega-menu li:focus {
    display: block;
}

.mega-menu li:focus {
    display: block;
}

.megamenu-padding {
    padding: 0px 30px;
}

.offcanvas-menu.animate__animated {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}


/* #Droppable Class Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.droppable {
    position: static !important;
}

.droppable:hover .mega-menu {
    opacity: 1;
    top: 102%;
    visibility: visible;
    border-top: 2px solid #ae0c24;
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.navbar-mobile {
    position: fixed !important;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(4, 12, 21, 0.8);
    overflow: hidden;
    position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel {
    top: 95px;
}

#hero .carousel-item {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

#hero .carousel-container {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0px;
    left: 50px;
    right: 50px;
}

.banner-news-heading {
    color: #fff;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.banner-label {
    font-size: 14px;
    font-family: 'DINNextLTPro-Regular';
    letter-spacing: 3.5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-bottom: 25px;
    padding-right: 10px;
    display: block;
}

.banner-description {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    width: 100%;
}

.banner_note_text {
    font-family: 'DINNextLTPro-Medium';
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-next,
.carousel-control-prev {
    top: 85%;
}

.carousel-control-next {
    right: 50px;
}

.carousel-control-prev {
    left: 50px;
}

#hero .carousel-indicators li {
    display: inline-block;
    cursor: pointer;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    opacity: 1;
    background-color: transparent;
    border: 1px solid #FFF;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.carousel-indicators {
    top: 92%;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #ffffff;
}

.carousel-indicators li:first-child:after {
    border-top: 1px dashed #fff;
    content: "";
    display: block;
    padding: 0px;
    width: 104px;
    height: 1px;
    margin: 5px -145px;
}

#hero .carousel-indicators li:last-child:after {
    border-top: 1px dashed #fff;
    content: "";
    width: 104px;
    display: block;
    height: 1px;
    margin: 5px 45px;
}

.primarybtn {
    display: inline-block;
    cursor: pointer;
    outline: none;
    font-size: 16px;
    padding: 10px 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-family: "DINNextLTPro-Regular";
    border: none;
}

.btn-read-more {
    transition: 0.5s;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 45px;
    color: #FFF;
    border: 1px solid #fff;
    background: transparent;
}

.btn-read-more:hover {
    background: #ffffff;
    color: #000;
}

@media (max-width: 992px) {
    /* #hero .carousel-container {
    text-align: center;
    top: 74px;
  } */
    #hero {
        height: 100vh;
    }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-height: 500px) {
    /* #hero {
    height: 120vh;
  } */
}


/*--------------------------------------------------------------
# A B O U T    P A G E
--------------------------------------------------------------*/

.about {
    position: relative;
    height: 100%;
    padding: 100px 0 0;
}

.about-content {
    padding: 60px 100px 100px;
    width: 95%;
}

.page-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    z-index: -1;
    background-position: 50% 15%;
}

.about.uptoDesktop::after {
    background-image: url("../img/about/about_bg.png");
}

.red {
    color: #ae0c24;
}

.btn-recognition {
    background-color: #ae0c24;
    text-shadow: none;
    color: #ffffff;
    margin-top: 20px;
    transition: all .2s ease-in-out;
}

.btn-recognition:hover {
    background-color: #000;
}


/* Recognition Modal */

.page-about {
    position: relative;
}

#slideup-modal {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    background: #252525;
    padding: 100px 0px 0px;
}

#slideup-modal .col-lg-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 120px;
}

.br {
    top: 0;
}

#slideup-modal .content {
    position: relative;
    height: 100%;
}

.close {
    font-size: 22px;
    cursor: pointer;
    color: #fff;
    position: absolute;
    right: 5%;
    top: 18%;
    font-weight: bold;
    background: #555;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 100px;
}

.close:hover {
    color: #ae0c24;
}

.recognition img {
    width: 250px;
}

#slideup-modal h2 {
    font-family: 'DINCondensed-Bold';
    font-size: 150px;
    line-height: 130px;
    color: #000000;
    text-transform: uppercase;
    font-stretch: condensed;
    text-align: center;
    color: #ffffff;
    margin-bottom: 100px;
    margin-top: 100px
}

.slideup-modal.common-padding-left-right {
    padding-left: 80px;
    padding-right: 80px;
}

.uptoTab {
    display: none;
}


/*--------------------------------------------------------------
# C A R E E R   P A G E
--------------------------------------------------------------*/

.career::after {
    background-image: url("../img/careers-bg.png");
}

.career {
    position: relative;
    height: 100%;
    padding: 100px 0 0;
}

.career-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    z-index: -1;
    background-position: 50% 15%;
}

.career-content {
    padding: 60px 100px 100px;
    width: 95%;
}

.career h3 {
    font-family: 'DINCondensed-Bold';
    font-stretch: condensed;
    font-size: 35px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}


/*--------------------------------------------------------------
#  T E R M S  , C O N D I T I O N  AND  P R I V A C Y   P A G E
--------------------------------------------------------------*/

.terms {
    position: relative;
    height: 100%;
    padding: 100px 0 0px;
}

.terms-content {
    padding: 70px 120px 30px;
}

.terms-condition h2 {
    margin-bottom: 80px;
}


/* Style the tab */

div.protab {
    overflow: hidden;
    background-color: #fff;
    border-bottom: 1px solid #d2d2d2;
    margin-top: 40px;
    margin-bottom: 30px;
}


/* Style the buttons inside the tab */

div.protab .button1 {
    float: left;
    text-align: center;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 20px;
    color: #555;
    height: 40px;
    line-height: 40px;
    background-color: transparent;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-stretch: condensed;
    font-family: 'DINNextLTPro-Condensed';
    outline: none;
    border: none;
}


/* Create an active/current tablink class */

div.protab button.active {
    border-bottom: 2px solid #be202f;
    color: #be202f;
}


/* Style the tab content */

.protabcontent {
    margin-top: 20px;
    display: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

.protabcontent p {
    color: #555;
}

.protabcontent ul {
    padding: 1rem;
}

.protabcontent ul li {
    color: #555;
    font-size: 18px;
    margin-bottom: 10px;
}

.protabcontent ul li p {
    margin-bottom: 0;
}

.protabcontent p span {
    color: #ae0c24;
    font-weight: bold;
}


/* Fade in tabs */

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/*--------------------------------------------------------------
#  E X P E R T I S E   P A G E
--------------------------------------------------------------*/

.filter-button {
    background: transparent;
    color: #666;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    padding: 12px 18px;
    font-size: 13px;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
}

.expertise-submenu-grid {
    position: relative;
    overflow: hidden;
}

.expertise-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    opacity: 1;
}

.expertise-submenu-grid:hover .expertise-overlay {
    background: rgba(190, 32, 47, 0.5);
}

.filters-button-group .filter-button:last-child {
    border-right: unset;
}

.filter-button:hover {
    color: #ae0c24;
}

.filter-button:active,
.filter-button.is-checked {
    background-color: #ae0c24;
    color: #fff;
    border-right: unset;
}

.button-group {
    margin: 20px 0;
    text-align: center;
}

.button-group:after {
    content: '';
    display: block;
    clear: both;
}

img {
    vertical-align: middle;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.grid article {
    background-color: #FFFFFF;
    display: block;
    float: left;
    width: 25%;
}

.expertise-submenu-heading {
    position: absolute;
    left: 5%;
    bottom: 5%;
}

.expertise-heading {
    font-family: 'DINCondensed-Bold';
    color: rgba(255, 255, 255, 1);
    z-index: 1;
    font-size: 32px;
    font-weight: 500;
    text-align: left;
    line-height: 28px;
    transition: all 0.45s ease 0s;
    letter-spacing: 2px;
    cursor: pointer;
}

.expertise-heading:hover {
    color: #ae0c24;
}

.expertise-heading::after {
    border-bottom: 6px solid #ae0c24;
    content: "";
    display: block;
    padding: 0px;
    width: 45px;
    padding: 10px 0px 0px;
}


/*-------------------------------------------------------------
#  E X P E R T I S E    L I S T I N G   D E T A I L S  P A G E
--------------------------------------------------------------*/

.expertise-listing-details-banner {
    background-image: url("../img/expertise-listing-details/banner-img.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 40vh;
    width: 100%;
}

.banner-title {
    float: left;
    font-size: 90px;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 1) !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.banner-content {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.banner-content .button {
    background: transparent;
    outline: none;
    border: none;
    margin-left: 30px;
}

.expertise-listing-modal {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    bottom: 0px;
    transition: all .5s ease-in-out;
    opacity: 0;
    z-index: -1;
    display: block;
}

.expertise-listing-modal:target {
    opacity: 1;
    transition: all .5s ease-in-out;
    z-index: 999;
}

.expertise-listing-modal-content {
    position: fixed;
    top: 50%;
    left: 30%;
    background: #fff;
    border-radius: 0;
    transform: translate(-50%, -200%);
    transition: all .5s ease-in-out;
    perspective: 1000;
    outline: 1px solid transparent;
    opacity: 0;
    width: 48%;
    padding: 25px;
    box-shadow: 0 2px 35px 0 rgba(0, 0, 0, 0.19);
    border: none;
}

.expertise-listing-modal-content .col-12 {
    padding: 0 15px;
}

.expertise-listing-modal:target .expertise-listing-modal-content {
    transform: translate(-50%, -50%);
    transition: all .5s ease-in-out;
    transition-delay: .5s;
    z-index: 9999;
    opacity: 1;
}

.modal-close {
    transition: all .5s ease-in-out;
    z-index: +1;
    display: flex;
    justify-content: end;
    position: absolute;
    right: 20px;
}

.modal-close:hover img {
    color: #fff;
}

.modal-close:hover,
.modal-close:hover:focus {
    color: #000000;
    opacity: 0.5;
}

.expertise-listing-modal-content h3 {
    font-family: 'DINCondensed-Bold';
    font-size: 100px;
    font-stretch: condensed;
    font-weight: bold;
    line-height: 1.4;
    color: #000000;
    text-transform: uppercase;
    display: block;
    text-align: left;
    text-transform: uppercase;
}

.modal-area {
    padding: 20px;
}

.expertise-submenu-list {
    padding-left: 0;
}

.expertise-submenu-list li {
    list-style: none;
}

.expertise-submenu-list li a {
    font-family: 'DINNextLTPro-Condensed';
    font-size: 20px;
    font-weight: 500;
    color: #000;
    transition: all 0.45s ease 0s;
    line-height: 30px;
}

.expertise-submenu-list li a:hover {
    color: #ae0c24;
}

.expertise-details {
    padding: 80px 0;
}

.expertise-lawyers .row {
    display: flex;
    flex-wrap: wrap;
}

.lawyer {
    position: relative;
    padding: 0;
    margin-right: 20px;
    margin-bottom: 20px;
}

.expertise-lawyers .lawyer {
    width: 200px;
}

.expertise-lawyers h3 {
    font-family: 'DINCondensed-Bold';
    font-stretch: condensed;
    font-size: 40px;
    font-weight: bold;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.expertise-lawyers .lawyer img {
    width: 100%;
}

.expertise-details-left-content {
    width: 85%;
    color: #000;
    font-size: 16px;
    text-align: left;
}

.expertise-details-left-content p {
    margin-bottom: 20px;
}

.lawyer-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(189, 35, 51, 0.6);
    top: 0px;
    left: 0px;
    opacity: 0;
    transition: all 0.45s ease 0s;
}

.lawyer .more:hover .lawyer-overlay {
    opacity: 1;
}

.expertise-lawyers h4 {
    font-family: 'DINNextLTPro-Light';
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    bottom: 0px;
    left: 25px;
    position: absolute;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: capitalize;
}


/*-------------------------------------------------------------
#  P U B L I C A T I O N
--------------------------------------------------------------*/

.publication,
.expertise {
    position: relative;
    height: 100%;
    padding: 100px 0 0;
}

.publication h2,
.expertise>div>h2 {
    margin: 70px 0 60px
}

.publication-slider {
    padding-bottom: 100px;
}

.publication-slider h2 {
    margin-bottom: 80px;
}

.publication-slider .swiper-slide {
    background: #fff;
    padding: 0px 0px 0px;
    transition: all 0.45s ease 0s;
    height: 500px;
    border: 1px solid #ddd;
}

.publication-slider .swiper-slide:hover {
    box-shadow: 0px 0px 15px 0px rgba(213, 213, 213, 0.5);
}

.publication-slider .swiper-slide img {
    width: 100%;
    height: 300px;
}

.publication-img {
    margin-bottom: -6px;
}

.publication-tag {
    text-align: center;
    margin-top: -16px;
}

.publication-tag h5 {
    background: #ae0c24;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    padding: 7px 15px 4px;
    position: relative;
    text-transform: uppercase;
}

.publication-content {
    padding: 0 20px;
}

.publication-title h4 {
    font-family: 'DINNextLTPro-Regular';
    font-size: 20px !important;
    line-height: 24px;
    color: #000;
    transition: all 0.45s ease 0s;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
}

.publication-title h4:hover {
    color: #ae0c24;
}

.publication-description {
    margin-top: 20px;
}

.publication-description p {
    font-size: 16px;
    line-height: 18px !important;
    color: #000;
    opacity: 0.5;
    text-align: justify;
}

.publication-slider .swiper {
    margin-bottom: 40px;
}

.publication-slider .swiper-button-prev,
.publication-slider .swiper-button-next {
    height: 50px;
    width: 50px;
    background-color: #ae0c24;
    border-radius: 50%;
}

.publication-slider .swiper-button-next::after,
.publication-slider .swiper-button-prev::after {
    font-size: 18px;
    color: #fff;
}

.publication-slider .swiper-button-next,
.publication-slider .swiper-button-prev {
    top: 55%;
}

.publication-slider .swiper-button-prev {
    left: 2%;
}

.publication-slider .swiper-button-next {
    right: 2%;
}

.publication-slider .swiper-button-next.swiper-button-disabled,
.publication-slider .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.btn-all-publication {
    background: #ae0c24;
    color: #fff;
    transition: all .2s ease-in-out;
}

.btn-all-publication:hover {
    background: #000;
    color: #fff;
}


/*--------------------------------------------------------------
# L A W Y E R   P R O F I L E   P A G E
--------------------------------------------------------------*/

.lawyer-details {
    position: relative;
    height: 100%;
    padding: 100px 0 0;
}

.lawyer-banner {
    overflow-x: hidden;
}

.profile-image-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.00) 25%, rgba(0, 0, 0, 0.76) 100%);
}

.profile-image {
    position: relative;
}

.profile-image img {
    max-width: 100%;
}

.profile-details {
    z-index: 99;
    position: relative;
}

.profile-meta-section {
    margin: -240px 0px 0px 0px;
}

.profile-meta-section h2 {
    font-size: 55px;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    font-family: 'DINNextLTPro-Medium';
    margin-bottom: 0;
}

.profile-meta-section h4 {
    font-family: 'DINNextLTPro-Light';
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.3;
    text-transform: capitalize;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

label {
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.profile-meta-white-box {
    background: #fff;
    padding: 40px 30px 20px;
    box-shadow: 0px 0 50px rgba(0, 0, 0, 0.1);
}

.profile-label {
    font-size: 14px;
    font-weight: 300;
    font-family: 'DINNextLTPro-Regular';
    color: #be202f;
    display: block;
    line-height: 12px;
    margin-bottom: 10px;
}

.profile-email {
    font-size: 20px;
    color: #ae0c24;
    font-family: 'DINNextLTPro-Regular';
}

.profile-meta-white-box p {
    font-size: 20px;
    font-weight: 300px;
    color: #000;
    line-height: 25px !important;
}

.profile-expericence {
    margin-top: 60px;
    margin-left: 30px;
    margin-bottom: 60px;
}

.profile-expericence p {
    font-size: 20px;
    line-height: 1.6 !important;
    color: #000;
    text-align: left;
    margin-bottom: 20px;
}

.profile-practice-list {
    padding-left: 0;
    margin-bottom: 30px;
}

.profile-practice-list li {
    list-style: none;
}

.profile-practice-list li a {
    text-decoration: underline !important;
    font-family: 'DINNextLTPro-Light';
    font-size: 20px;
    line-height: 1.2;
    color: #0f8b8d;
    transition: all 0.45s ease 0s;
    text-transform: capitalize;
}


/*--------------------------------------------------------------
# P U B L I C A T I O N  P A G E
--------------------------------------------------------------*/

.publication .swiper-publication {
    height: 72vh;
    overflow-x: hidden;
    position: relative;
}

.publication .swiper-slide {
    overflow: hidden;
}

.publication .swiper-slide-next {
    border-right: 10px solid white;
}

.publication .swiper-slide {
    margin-left: 0;
    overflow-x: hidden;
}

.publication .slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
}

.publication .swiper-button-prev::after {
    content: '';
}

.publication .swiper-button-next::after {
    content: '';
}

.publication .carousel-control-next,
.publication .carousel-control-prev {
    top: 85%;
}

.publication .carousel-control-next {
    right: 0%;
}

.publication .carousel-control-prev {
    left: 0%;
}

.swiper-pagination span {
    display: inline-block;
    cursor: pointer;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    opacity: 1;
    background-color: transparent;
    border: 1px solid #FFF;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 0px;
}

.swiper-pagination-bullet:first-child::before {
    border-top: 1px dashed #fff;
    content: "";
    display: block;
    padding: 0px;
    width: 104px;
    height: 1px;
    margin: 5px -145px;
}

.swiper-pagination-bullet:last-child::after {
    border-top: 1px dashed #fff;
    content: "";
    width: 104px;
    display: block;
    height: 1px;
    margin: 5px 45px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    top: 85%;
}

.publication .slide-inner .container {
    height: 100%;
}

.publication .slide-inner .container .col-xl-6 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 90px;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
}

.search-publication {
    background: #494949;
    padding: 20px 0;
}

.publication-search-heading {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.publication-search-input {
    background: none !important;
    -webkit-transition: border-color ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s;
    transition: border-color ease-in-out .15s;
    outline: none;
}

.team-form-field {
    border: 2px solid #fff;
    padding: 15px 18px !important;
    color: #b9b9b9 !important;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 21px;
    margin: 30px 0px;
    display: block;
    width: 100%;
}

.publication-search-input:focus {
    border-color: #AAA !important;
}

.publication-filter-box {
    width: 100%;
}

.search-list-publication ul li a:hover {
    text-decoration: underline !important;
    color: rgba(255, 255, 255, 1);
}

.publication-search-dropdown {
    background: none;
    color: #fff;
    transition: all 0.45s ease 0s;
    text-align: left;
    position: relative;
}

.publication-search-dropdown span {
    position: absolute;
    right: 25px;
}

.search-list-publication ul {
    margin: 25px 0px 0px;
}

.publication-search-dropdown:hover {
    background: #ae0c24;
    border: 2px solid #ae0c24;
}

.search-list-publication {
    display: none;
}

.publication-filter-label {
    text-transform: uppercase;
    font-weight: bold;
    cursor: text;
    color: #fff;
    font-size: 14px;
    font-family: 'DINNextLTPro-Regular';
    margin-bottom: 20px;
}

.search-list-publication h4 {
    color: #fff;
    text-transform: uppercase;
    font-family: 'DINNextLTPro-Regular';
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.publication-search-year,
.publication-search-lawyer {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.search-list-publication ul li {
    list-style: none;
}

.search-list-publication ul li a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 32px;
    transition: all 0.45s ease 0s;
    text-transform: capitalize;
}

.publication-search-year-list {
    text-align: center;
    margin-bottom: 30px;
}

.publication-search-year-list li {
    display: inline-table;
    padding: 0px 25px;
}

.publication-search-year-list {
    text-align: center;
    margin-bottom: 30px !important;
}

.chosen-container .chosen-results li {
    font-size: 16px;
    text-align: left;
    padding: 6px 20px;
}

.chosen-container .chosen-results {
    color: #333;
}

.button-secondary {
    padding: 0 32px;
    font-size: 18px;
    letter-spacing: 2px;
    height: 42px;
    line-height: 42px;
}

.publication-search-submit button,
.filter-box button {
    font-size: 16px;
    font-family: 'DINNextLTPro-Regular';
    background: none;
    font-weight: 500;
    transition: all 0.45s ease 0s;
    border: 1px solid #494949;
}

.publication-search-submit button:hover {
    border: 1px solid #fff;
    background: none;
    color: #FFF;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.search-publication .button,
.filter-box .button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    margin: 5px;
    color: #FFF;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.chosen-container {
    font-size: 14px;
    margin: 30px 0;
}

.chosen-container-single .chosen-single div b {
    background: url('../img/chosen-sprite.png') no-repeat 0 2px;
}

.chosen-container-single .chosen-single div {
    top: 5px;
}

.chosen-container-single .chosen-single {
    padding: 6px 12px 6px 6px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    height: 33px;
}

.chosen-container-single .chosen-single span {
    margin-right: 0;
}

.chosen-container-single .chosen-single {
    color: #333333;
}

.chosen-container-single .chosen-search input[type="text"] {
    display: block;
    height: 34px;
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.chosen-container-single .chosen-search input[type="text"]:focus {
    border-color: #999;
}


/*  Masonry */

.publication-masonry {
    padding-top: 60px;
    padding-bottom: 60px;
}

.publication-masonry h3 {
    font-size: 35px;
    color: #000;
    text-transform: uppercase;
    font-family: 'DINCondensed-Bold';
    margin-bottom: 45px;
    text-align: center;
}

h4.media-title a {
    font-size: 20px;
    font-family: 'DINNextLTPro-Regular';
    font-weight: 600;
    color: #000;
    transition: all 0.45s ease 0s;
    text-transform: uppercase;
    line-height: 1.3;
}

h4.media-title a:hover {
    color: #ae0c24;
}

.publication-masonry .grid-item {
    padding: 10px;
    color: #555;
    opacity: 1;
}

.publication-masonry .animation {
    animation: open 0.3s;
    opacity: 1;
}

.publication-masonry .grid-item-content {
    background-color: #fff;
    border-bottom: 6px solid #ae0c24;
    padding-bottom: 40px;
}

.publication-masonry .entry-image img {
    width: 100%;
    max-height: 250px;
    margin-bottom: 30px;
    opacity: 1;
    transition: opacity ease-in-out 200ms;
}

.entry-image img:hover {
    opacity: 0.8;
}

.publication-masonry .description {
    border: 1px solid #fff;
    padding: 30px;
    line-height: 2;
    width: 100%;
}

.publication-masonry .description a {
    color: #fff;
}

.publication-masonry .entry-title ul {
    list-style-type: none;
    padding-left: 0;
    margin: 25px 0;
}

.publication-masonry .entry-title ul li {
    color: #555;
    font-size: 14px;
}

.publication-masonry .btn-read-more {
    border: 1px solid #333;
    color: #333;
}

.publication-masonry .btn-read-more:hover {
    color: #fff !important;
    background: #ae0c24;
}

.publication-masonry .entry {
    padding: 0 15px 40px;
}

.publication-masonry .entry-title li a {
    color: #ae0c24;
}

.publication-masonry .entry-description p span {
    color: #ae0c24;
}


/* Subscribe Section */

.subscribe-section {
    padding: 80px 0;
}

.subscribe-section p {
    font-family: 'DINNextLTPro-Medium';
    font-weight: 500;
    font-size: 20px;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.2;
}

.subscription-form {
    width: 75%;
    margin: 0px auto 30px;
}

.subscription-form .team-form-field {
    border: 1px solid #000;
    outline: none;
    transition: border-color ease-in-out .15s;
    margin: 0;
}

.team-form-field::placeholder {
    color: #b9b9b9;
    font-size: 16px;
    line-height: 24px;
}

.subscription-form .team-form-field:focus {
    border-color: #AAA;
}

.subscription-form .subscribe-btn {
    padding: 12px 18px;
    background: #ae0c24;
    border: 2px solid #ae0c24;
    transition: all 0.45s ease 0s;
    color: #fff;
}

.subscription-form .subscribe-btn:hover {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}


/*--------------------------------------------------------------
# P E O P L E  P A G E
--------------------------------------------------------------*/

.filter-category {
    position: relative;
    height: 100%;
    padding: 100px 0 0;
}

.filter-category h2 {
    margin: 70px 0 60px;
}

.filter-buttons a,
.publication-filter input,
.filter-category input {
    float: left;
    box-shadow: 0 0 1px #fff;
    border: 1px solid #dbdbdb;
    text-shadow: 1px 1px 1px #fff;
    text-indent: 5px;
    background: #fff;
    width: 100%;
    transition: all ease-in-out 300ms;
    font-size: 16px;
    color: #b9b9b9;
    border: 1px solid #dbdbdb;
    outline: none;
    position: relative;
}

.filter-category a:focus,
.filter-category input:focus {
    border-color: #AAA !important;
}

.filter-category .filter-buttons .col-md-3,
.filter-category .filter-buttons .col-md-12 {
    padding: 0 10px;
    margin-bottom: 50px;
}

.team-form-field::placeholder {
    color: #b9b9b9;
    font-size: 16px;
    line-height: 24px;
}

.filter-buttons .col-md-3 a span {
    position: absolute;
    right: 12px;
    color: black;
    font-size: 24px
}

.filter-buttons .show_hide {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-btn {
    height: auto;
    background: #ae0c24;
    padding: 15px 60px;
    text-shadow: none;
    font-family: "DINNextLTPro-Regular";
    text-align: center;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 500;
    transition: all 300ms ease-in-out;
    margin: 30px 0;
}

.cta-btn:hover {
    background: #222 !important;
    color: #fff !important;
}

.filter-box ul {
    margin: 25px 0px 30px 0;
}

.filter-box ul li button {
    color: rgba(255, 255, 255, 0.8);
    line-height: 32px;
    transition: all 0.45s ease 0s;
    text-transform: capitalize;
    border: none;
    text-align: left;
    width: 100%;
}

.filter-box ul li button:hover {
    text-decoration: underline;
    color: rgba(255, 255, 255, 1);
    border: none;
}

.filter-box h4 {
    color: #fff;
    text-transform: uppercase;
    font-family: 'DINNextLTPro-Regular';
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    ;
}

.filter-box {
    padding: 60px 0px;
    background: rgb(68, 68, 68);
}

.filter-box ul li {
    list-style: none;
}

.filter-box button:hover {
    border: 1px solid #fff;
}

.location-filter li {
    display: inline-table;
    padding: 0px 25px;
}

.lawyer img {
    width: 100%;
}

.lawyer h4 {
    font-family: 'DINNextLTPro-Regular';
    font-size: 23px;
    color: #fff;
    bottom: 0px;
    left: 20px;
    position: absolute;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: capitalize;
    z-index: 999;
    line-height: 1.2;
}

.lawyer .text-overlay {
    position: absolute;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
    bottom: 0;
    left: 0;
    right: 0;
    top: 70%;
    opacity: 1;
    transition: all 0.45s ease 0s;
}

.lawyer .more:hover .text-overlay {
    opacity: 0;
}

.partners .lawyer {
    margin-bottom: 40px;
}

.partners h3 {
    font-family: 'DINCondensed-Bold';
    font-size: 35px;
    line-height: 1.03em;
    font-weight: 500;
    text-transform: capitalize;
    margin: 40px 0px 45px;
    color: #000;
}

.lawyer .retired-text {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 90%;
    line-height: 1.2;
}

sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.lawyer sup {
    top: -0.5em;
}

.retired-counselor {
    bottom: 70px !important;
}

.filter-buttons .show_hide:after,
.filter-buttons .show_hide.is-active:after {
    position: absolute;
    right: 10px;
    font-family: FontAwesome;
    color: #000;
    font-weight: 500;
    font-size: 20px;
}

.filter-buttons .show_hide:after {
    content: "\f078";
}

.filter-buttons .show_hide.is-active:after {
    content: "\f106";
}

.active {
    color: #ae0c24 !important;
}

.show_hide:hover {
    background-color: #ae0c24;
    color: #fff !important;
    text-shadow: none;
    border-color: #ae0c24;
}


/*--------------------------------------------------------------
# C O N N E C T    P A G E
--------------------------------------------------------------*/

.connect {
    position: relative;
    height: 100%;
    padding: 100px 0 0;
}

.office-detail {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    margin-bottom: 20px;
}

#google-map {
    height: 100%;
    position: fixed !important;
    top: 0px;
    right: 0;
    left: 46%;
    z-index: -999;
}

.office-detail h3 {
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-family: "DINCondensed-Bold";
}

.office-detail p {
    font-family: "DINNextLTPro-Regular";
    font-size: 16px;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
}

.office-detail a {
    color: rgb(0, 0, 0);
    font-size: 16px;
}

.office-detail a:hover {
    color: #ae0c24;
}

.connect .common-padding-left-right {
    padding: 80px 0 0 100px;
}


/*--------------------------------------------------------------
# R E C O G N I T I O N   P A G E
--------------------------------------------------------------*/

.recognition {
    padding: 100px 0 0;
    background-color: #252525;
}


/*--------------------------------------------------------------
#   P A G E  L O A D E R
--------------------------------------------------------------*/

.animsition-loading,
.animsition-loading::after {
    width: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
    margin-top: 0;
}

.animsition-loading img {
    width: 100%;
}


/*--------------------------------------------------------------
#   I N D U S  L A W  M O V E
--------------------------------------------------------------*/

.indus-law-move {
    position: relative;
    height: 100%;
    padding: 100px 0 0;
}


/* Hermove banner */

.hermove-banner {
    width: 100%;
}

.hermove-banner img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.indus-law-move .wrapper {
    width: 100%;
    height: 600px;
}

.indus-law-move .wrapper iframe {
    width: 100%;
    height: 100%;
}


/*--------------------------------------------------------------
#   Cookie Consent
--------------------------------------------------------------*/

.modal-dialog {
    margin: 0;
    max-width: 100%;
}

.modal-content {
    border-radius: 0;
}

.modal-header .row {
    width: 100%;
}

.modal {
    height: unset;
}

.modal-header {
    border-bottom: unset;
}

.terms-pop-main .terms-content {
    padding: 0;
}

.modal-title {
    font-family: "DINCondensed-Bold";
    font-size: 60px;
    font-weight: bold;
    font-stretch: condensed;
    color: #000000;
    text-transform: uppercase;
}

.popup-list a:hover {
    color: #ae0c24 !important;
}

.popup-list {
    list-style: none;
    float: right;
    margin: 12px 0px;
}

.popup-list li {
    display: inline-table;
}

.popup-list li a {
    font-family: "DINNextLTPro-BoldCondensed";
    font-size: 32px;
    font-weight: bold;
    font-stretch: condensed;
    text-align: center;
    color: #000000;
    text-transform: uppercase;
    padding-left: 40px;
}

.popup-main p {
    font-size: 20px;
    line-height: 32px;
    color: #000;
}

.popup-main p a {
    color: #ae0c24;
    text-decoration: underline !important;
    text-transform: capitalize;
    transition: all 0.45s ease 0s;
}

.popup-note {
    text-align: center;
    margin: 30px 0px;
    font-family: "DINNextLTPro-Medium";
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #000000;
}

.popup-note a {
    color: #ae0c24 !important;
    transition: all 0.45s ease 0s;
    text-decoration: underline !important;
    font-family: 'DINNextLTPro-Medium';
    font-weight: 500;
    cursor: pointer;
}

.popup-note a:hover {
    color: #222 !important;
}

.popup-footer {
    border-top: 2px solid #e6e6e6 !important;
    justify-content: space-between;
}

.popup-footer button {
    float: right;
    border-radius: 0;
    border: none;
}

.popup-subscribe {
    font-family: 'DINNextLTPro-Medium';
    color: #ae0c24;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: underline !important;
    display: inline-table;
    cursor: pointer;
    margin: 30px 0;
}

.popup-main .terms-content {
    padding: 0;
}

#disclaimer-popup a:hover {
    color: #222;
}

.protabcontent.active {
    display: block;
}

.terms-content .protab {
    padding: 0 120px;
}

.terms-content .protabcontent {
    padding: 0 120px;
}

.subscribed {
    background-color: rgb(26, 188, 156) !important;
    color: rgb(255, 255, 255) !important;
}

.g-recaptcha {
    display: flex;
    justify-content: end;
}

.grecaptcha-badge {
    bottom: unset !important;
    top: 51%;
}

#disclaimer-popup .cta-btn {
    z-index: 999;
    position: relative;
}

.close-cookies {
    border: 1px solid #000;
    background: #fff;
    color: #000;
}

.close-cookies:hover,
.accept-cookies:hover {
    background: #000 !important;
    color: #fff !important;
}

.filter-box button.active {
    color: #fff !important;
}