/* ================== Font Family Start Here ================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ================== Font Family End Here ================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

.container {
    max-width: 1640px;
    padding: 0 20px;
    margin: 0 auto;
}

.container-full {
    max-width: 100%;
}

body {
    background-color: #141414;
    color: #fff;
}

img {
    max-width: 100%;
}


/* ================== Define Css Start Here ================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: "Lobster", sans-serif;
}

h1 {
    font-size: 86px;
    line-height: normal;
    font-weight: normal;
}

h2 {
    font-size: 45px;
    font-weight: normal;
    line-height: 46px;
}

h3 {
    font-size: 30px;
    font-weight: 500;
}

h4 {
    font-weight: 500;
    font-size: 25px;
}

h5 {
    font-size: 20px;
    font-weight: 500;
}

h6 {
    font-weight: 500;
    font-size: 16px;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
}

a {
    text-decoration: none;
    display: inline-block;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

button,
label,
textarea {
    font-family: "Poppins", sans-serif;
    outline: none;
}

input {
    font-family: "Poppins", sans-serif;
    outline: none;
}

.dark-red-color {
    color: #9F1215;
}

.ctm-mt-top {
    margin-top: 100px;
}

.common-primary-button {
    font-family: "Lato", sans-serif;
    font-weight: normal;
    font-size: 20px;
    color: #CFCFCF;
    display: inline-block;
    padding: 8px 30px;
    background: linear-gradient(180deg, #A01216 0%, #8A0404 100%);
    border: 1px solid #940A0C;
    text-align: center;
}

.common-primary-button:hover {
    background: #fff !important;
    transition: 0.3s ease-in-out;
    color: #940A0C;
}

.without-bg-common-primary-btn {
    background: transparent;
}

.ctm-mt-10 {
    margin-top: 10px;
}

.ctm-mt-20 {
    margin-top: 20px;
}

.ctm-mt-30 {
    margin-top: 30px;
}

.ctm-mt-40 {
    margin-top: 40px;
}

.ctm-mt-50 {
    margin-top: 50px;
}

.ctm-mt-70 {
    margin-top: 70px;
}


/* Main Div Flex Start*/

.ctm-flex-row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}


/* Main Div Flex End*/


/* Justify Content Start*/

.ctm-justify-content-center {
    justify-content: center;
}

.ctm-justify-content-between {
    justify-content: space-between;
}

.ctm-justify-content-start {
    justify-content: flex-start;
}

.ctm-justify-content-end {
    justify-items: flex-end;
}

.ctm-justify-content-around {
    justify-content: space-around;
}


/* Justify Content End*/


/* Align Items Start*/

.ctm-align-items-start {
    align-items: flex-start;
}

.ctm-align-items-end {
    align-items: flex-end;
}

.ctm-align-items-center {
    align-items: center;
}

.ctm-align-items-baseline {
    align-self: baseline;
}


/* Align Items End*/


/* Text Align End*/

.ctm-text-start {
    text-align: start;
}

.ctm-text-center {
    text-align: center;
}

.ctm-text-end {
    text-align: end;
}


/* Align Align End*/


/* Common Button Start*/


/* ================== Define Css End Here ================== */


/* ================== Header Section Start Here ================== */

header {
    background-color: #000000;
    padding: 60px 0;
    transition: all 0.3s ease-in-out;
}


/* fixed header */

header {
    width: 100%;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 1);
    transition: opacity 0.5s ease, padding 0.5s ease, background-color 0.5s ease;
    transition: 0.3s ease-in-out;
    z-index: 10;
}

header.ctm-sticky {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    position: fixed;
    top: 0;
}

.logo-image-left img {
    transition: all 0.5s ease-in-out;
}

.ctm-sticky .logo-image-left img {
    max-width: 250px !important;
    transition: all 0.5s ease-in-out;
}


/* fixed header */

.logo-image-left img {
    max-width: 380px;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li+li {
    margin-left: 55px;
}

nav ul li a {
    color: #FFFFFFA1;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}

nav ul li a.active {
    color: #fff;
}

nav ul li a:hover {
    color: #fff;
    transition: 0.3s ease-in-out;
}


/* toggle */

.toggle-btn-mobile {
    display: none;
}


/* ================== Header Section End Here ================== */


/* ================== Banner Section Start Here ================== */

.banner-heading-content {
    max-width: 730px;
    margin-left: 60px;
}

.banner-heading-content h1 span {
    display: block;
}

.banner-socila-link ul li {
    display: inline-block;
}

.stand-up-content p {
    font-size: 30px;
    font-weight: normal;
    font-family: "Lato", sans-serif;
    color: #CFCFCF;
}

.topher-content-banner span {
    font-family: "Lato", sans-serif;
    font-style: italic;
    font-size: 35px;
    color: #9F1215;
}

.banner-image {
    position: relative;
}

.banner-image>img {
    height: 800px;
    width: 100%;
    object-fit: cover;
}

.banner-main-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-socila-link ul li+li {
    margin-left: 26px;
}

.banner-socila-link ul li a {
    font-size: 26px;
    background-color: #8f0709;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 0 16px #5c5456;
}


/* ================== Banner Section End Here ================== */


/* ================== Main Section Start Here ================== */


/* ================== Where to Catch Me Live Section Start Here ================== */

.small-content-heading {
    font-style: italic;
    margin-top: 10px;
    font-size: 20px;
}

.circle-dots {
    display: block;
    width: 24px;
    height: 24px;
    background: #141414 0% 0% no-repeat padding-box;
    border: 1px solid #707070;
    opacity: 1;
    border-radius: 50%;
}

.table-catch-sec {
    max-width: 1375px;
    margin: 0 auto;
}

.upcoming-shows-btn {
    margin-top: 50px;
}


/* new */

.event-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #686868;
    margin-top: 46px;
}

.event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #494949;
}

.event-row * {
    font-family: "Lato", sans-serif;
    color: #CFCFCF;
    line-height: 30px;
}

.event-row span {
    font-size: 18px;
}

.circle-dots {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 90px;
}

.event-date,
.event-club,
.event-location {
    flex: 1;
}

.event-date p {
    margin: 0;
    font-size: 22px;
    margin-bottom: 5px;
}

.club-text {
    font-weight: 600;
    display: block;
}

.event-location,
.event-club {
    padding-left: 120px;
}


/* ================== Where to Catch Me Live Section End Here ================== */


/* ================== Meet the Comedian Live Section Start Here ================== */

.meet-the-comedian-sec-bg {
    position: relative;
}

.meet-the-comedian-sec-bg .container {
    max-width: calc(50vw - -600px);
    margin-left: auto;
    margin-right: 0;
    padding: 0;
    overflow: hidden;
}

.inner-meet-the-comedian-sec {
    background-color: #4c4c4c;
}

.meet-the-comedian-right-content {
    padding: 50px 0 50px 100px;
    max-width: 750px;
    width: 60%;
}

.meet-the-comedian-image-content img {
    height: 543px;
    object-fit: contain;
    vertical-align: bottom;
    width: 100%;
}

.follow-topher-sec-bg.ctm-mt-top {
    padding: 0 10px;
}

.follow-topher-image img {
    height: 470px;
    width: 100%;
    object-fit: cover;
}

.follow-topher-image-sec {
    gap: 5px;
}

.follow-topher-image {
    width: calc(100% / 4 - 4px);
}

.meet-the-comedian-image-content {
    width: 40%;
}


/* ================== Meet the Comedian Live Section End Here ================== */


/* ================== Main Section End Here ================== */


/* ================== Aside Section Start Here ================== */


/* ================== Aside Section End Here ================== */


/* ================== Footer Section Start Here ================== */

.main-footer-menu {
    background-color: #272727;
    padding: 34px 0;
}

.footer-menu ul li {
    display: inline-block;
}

.footer-menu ul li+li {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #707070;
}

.footer-menu ul li a {
    color: #FFFFFFA1;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

.footer-menu ul li a:hover {
    color: #fff;
    transition: 0.3s ease-in-out;
}

.footer-menu ul li a.active {
    color: #fff;
}

.copy-right {
    padding: 30px 0;
    border-bottom: 1px solid #6a6a6a;
    margin-bottom: 60px;
}

.copy-right p {
    color: #FFFFFFA1;
    font-family: "Montserrat", sans-serif;
}

footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #6a6a6a;
}


/* ================== Footer Section End Here ================== */


/* ================== Bio Page Css Start Here ================== */

.bio-banner-sec .banner-heading-content {
    max-width: 520px;
    margin-left: 200px;
}

.bio-banner-sec .stand-up-content p {
    line-height: 47px;
    font-style: italic;
}

.bio-banner-sec.banner-image>img {
    object-position: 77% 30%;
    height: 682px;
}

.bio-meet-the-comedian-sec-bg {
    background-image: url(../images/about-me-bg-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bio-meet-the-comedian-sec-bg .inner-meet-the-comedian-sec {
    background-color: transparent;
}

.bio-meet-the-comedian-sec-bg .container {
    max-width: 1640px;
    padding: 0 20px;
    margin: 0 auto;
}

.bio-meet-the-comedian-sec-bg .meet-the-comedian-right-content {
    max-width: 896px;
}

.toperro-two-person-left img {
    height: 464px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 20%;
}

.toperro-two-person-bg .row .col-md-6:last-child .toperro-two-person-left {
    margin-left: 20px;
}

.my-goal-simple-content {
    max-width: 1470px;
    margin: 0 auto;
}

.where-you-seen-me-sec-content h3 {
    font-family: "Lato", sans-serif;
    line-height: 47px;
    font-size: 25px;
}

.inner-toperro-two-person {
    gap: 18px;
}

.toperro-two-person-left {
    width: calc(100% / 2 - 9px);
}

.where-you-seen-me-sec-img {
    width: 40%;
}

.where-you-seen-me-sec-content {
    width: 60%;
    background-color: #434343;
    padding: 100px;
}

.where-you-seen-me-sec-img img {
    width: 100%;
    height: 604px;
    object-fit: cover;
}

.bio-banner-heading {
    font-size: 60px;
}


/* ================== Bio Page Css Start Here ================== */


/* ================== Upcoming Shows Page Css Start Here ================== */

.upcoming-shows-sec .banner-heading-content {
    padding-left: 50px;
}

.glance-upcoming-events-sec-bg .event-list {
    border-top: none;
}


/* Wanna Catch Me Live? Start */

.wanna-catch-me-live-sec-bg {
    background-image: url(../images/wanna-catch-me-live-bg-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 164px 0;
    background-position: center;
}

.inner-wanna-catch-me-live {
    max-width: 600px;
    margin-left: auto;
}

.gallary-contact-btn ul {
    gap: 27px;
}

.glance-upcoming-events-sec-bg .event-row:last-child {
    border: none;
}

.need-laugh-your-event-sec-bg .inner-meet-the-comedian-sec {
    background-color: #020202;
}

.need-laugh-your-event-sec-bg .meet-the-comedian-right-content {
    padding: 80px 110px 90px 120px;
    background-color: #020202;
    height: 381px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.need-laugh-your-event-sec-bg .meet-the-comedian-image-content img {
    height: 100%;
}

.need-laugh-your-event-sec-bg {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    z-index: 1;
}

.need-laugh-your-event-sec-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/need-laugh-your-event-sec-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 50%;
    filter: blur(4px);
    z-index: -1;
}

.need-laugh-your-event-sec-bg .meet-the-comedian-right-content p {
    max-width: 400px;
}


/* Wanna Catch Me Live? End */


/* ================== Upcoming Shows Page Css Start Here ================== */