/*--------------------------------------------------------------------------------------------

Name: Tech-X Web Solutions
Author: Kevin Teixeira

----------------------------------------------------------------------------------------------
SUMMARY OF CONTENTS
----------------------------------------------------------------------------------------------
*   1 - COLORS AND BOX SHADOW CSS
*   2 - MAIN CSS                            2.1 - RESPONSIVE MAIN CSS
*   3 - NAVBAR CSS                          3.1 - RESPONSIVE NAVBAR CSS
*   4 - ADVERTISING INDEX PAGE CSS          4.1 - RESPONSIVE ADVERTISING INDEX PAGE CSS
*   5 - ABOUT TECHX CSS                     5.1 - RESPONSIVE ABOUT TECHX CSS
*   6 - SERVICES AND PLANS (INDEX) CSS      6.1 - RESPONSIVE SERVICES AND PLANS (INDEX) CSS
*   7 - SERVICES AND PLANS (PAGES) CSS      7.1 - RESPONSIVE SERVICES AND PLANS (PAGES) CSS
*   8 - TECHX TEAM CSS                      8.1 - RESPONSIVE TECHX TEAM CSS
*   9 - TECHX TEAM CALLING CSS              9.1 - RESPONSIVE TECHX TEAM CALLING CSS
*   10- TESTIMONIALS CSS                    10.1- RESPONSIVE TESTIMONIALS CSS
*   11- CLIENTS SLIDER CSS                  11.1- RESPONSIVE CLIENTS SLIDER CSS
*   12- FOOTER CSS                          12.1- RESPONSIVE FOOTER CSS
*   13- FOOTER-TOP CSS                      13.1- RESPONSIVE FOOTER-TOP CSS
*   14- FOOTER-DETAILS CSS                  14.1- RESPONSIVE FOOTER-DETAILS CSS
*   15- PORTFOLIO CSS                       15.1- RESPONSIVE PORTFOLIO CSS
*   16- COPY AREA CSS
--------------------------------------------------------------------------------------------*/

/* #### Generated By: http://font.download #### */

@font-face {
    font-family: 'Bicubik Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Bicubik Regular'), url('./bicubik-webfont/Bicubik.woff') format('woff');
}

/*==========================================================================
* 1 - COLORS AND BOX SHADOW CSS
==========================================================================*/

:root {
    --primary: #EDFF71;
    --secondary: #27363D;
    --tertiary: #FF0000;
    --white: #FFFFFF;
    --medium-gray: #7A7A7A;
    --light-gray: #ADADAD;
    --dark-white: #ECECEC;
    --portfolio-bg: #C8C7D5;
    --black-semitransparent-bg-color: rgba(0, 0, 0, 0.85);
    --secondary-semitransparent-bg-color: rgba(39, 54, 61, 0.7);
  }

/*==========================================================================
* 2 - MAIN CSS
==========================================================================*/

main {
    overflow: hidden;
}

.row {
    margin: 0;
}

.container {
    padding: 70px 0;
}

.main-bg {
    background-color: var(--dark-white);
}

.text-light p {
    color: var(--secondary);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.text-light h4 {
    color: var(--secondary);
    font-size: 14px;
    font-family: 'Anton', sans-serif;
}

.blink-logo {
    font-family: 'Bicubik Regular';
    font-size: 50px;
    color: var(--tertiary);
    animation: blink 1.4s infinite alternate;
}

@keyframes blink {
    0%{
        color: transparent;
    }
    50%{
        color: var(--tertiary);
    }
    75%{
        color: var(--tertiary);
    }
    100%{
        color: transparent
    }
}

/*==========================================================================
* 2.1 - RESPONSIVE MAIN CSS
==========================================================================*/

@media (max-width: 768px) {
    
    .container {
        padding: 20px 0;
    }
}

/*==========================================================================
* 3 - NAVBAR CSS
==========================================================================*/

nav {
    background-color: var(--black-semitransparent-bg-color);
}

#navmenu {
    overflow: hidden;
}

#nav-container {
    padding-top: 0;
    padding-bottom: 0;
}

#logo {
    width: 200px;
}

.navbar-brand {
    padding: 0;
    color: var(--secondary);
    transition: .5s;
}

.navbar-brand:hover {
    transform: scale(1.1);
}

#navbar-links a {
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: .5s ease-in-out;
}


#navbar-links a.active {
    color: var(--primary);
}

#navbar-links a:nth-child(1n):hover {
    transform: scale(1.3);
}

.navbar-expand-lg .navbar-nav .navbar-link {
    padding: 1rem .8rem;
}

/*==========================================================================
* 3.1 - RESPONSIVE NAVBAR CSS
==========================================================================*/

@media (max-width: 1440px) {

    #navbar-links a {
        font-size: 16px;
    }

    .contact-btn{
        height: 35px;
        padding: 50em 0 50em 0;
    }
}

@media (max-width: 1380px) {

    #navbar-links a {
        font-size: 14.6px;
    }
}

@media (max-width: 1024px) {

    #logo {
        width: 100px;
    }

    #navbar-links a {
        font-size: 12px;
        margin-left: -1em;
        padding-right: 0.9em;
    }

    .contact-btn{
        height: 28px;
        font-size: 11px;
    }
    
    .nav-item {
        padding-right: .05rem 0;
    }
}

@media (max-width: 768px) {

    .navbar-nav {
        text-align: center;
    }

    #navbar-links a {
        font-size: 15px;
    }

    .contact-btn {
        display: none;
    }
}

@media (max-width: 425px) {

    .navbar-expand-lg .navbar-nav .navbar-link {
        padding: 0;
    }

    #logo {
        width: 100px;
    }
}

/*==========================================================================
* 4 - ADVERTISING INDEX PAGE CSS
==========================================================================*/

.advertising {
    background-image: url(../img/backgrounds/dark-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
}

.wrap {
    width: auto;
    height: auto;
    overflow: hidden;
    position: relative;
}

.wrap > .video-bg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}

.wrap > .video-bg > video {
    width: 100%;
}

.slogan-area {
    position: relative;
    height: 40em;
    align-content: center;
    text-align: center;
    z-index: 5;
}

.slogan-area h4 {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    color: var(--white);
}

.slogan-area span {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    color: var(--primary);
}

.slogan-area p {
    font-size: 24px;
    color: var(--white);
    padding-bottom: 3em;
}

.slogan-area a {
    margin: 10px;
}

.main-btn-left, .main-btn-right {
    text-decoration: none;
    font-weight: bold;
    border: 3px solid transparent;
    transition: .5s;
}

.main-btn-left{
    width: 220px;
    height: 60px;
    padding: 5px 15px;
    border-radius: 30px;
    background-color: var(--primary);
    color: var(--secondary);
}

.main-btn-left:hover {
    color: var(--white);
    background-color: transparent;
    border: 3px solid var(--primary);
}

.main-btn-right{
    width: 220px;
    height: 60px;
    padding: 5px 15px;
    border-radius: 30px;
    background-color: var(--secondary);
    color: var(--white);
}

.main-btn-right:hover {
    color: var(--secondary);
    background-color: var(--primary);
    border: 3px solid var(--primary)
}

/*==========================================================================
* 4.1 - RESPONSIVE ADVERTISING INDEX PAGE CSS
==========================================================================*/

@media (max-width: 1440px) {
    /*

	.carousel-caption h4{
        margin-left: 15%;
    }

    .video-slider {
        width: 100%;
        transform: translate(0, 2%);
    }
    */
}

@media (max-width: 1380px) {
    /*
	.carousel-caption h4{
        margin-left: 15%;
    }
    
    #mainSlider .carousel-item>img {
        width: 100%;
    }

    .slider-title {
        color: var(--secondary);
        margin: 0 0 65px 0;
        font-size: 40px;
        text-align: center;
        position: relative;
    }

    .video-slider {
        width: 100%;
        transform: translate(0, -10%);
    }

    .video-easytenis, .video-about-easytenis{
        height: 278px;
        margin-left: 2em;
    }
    */
}

@media (max-width: 1024px) {
    /*
    #mainSlider .carousel-item>img {
        margin-top: 5em;
        width: 100%;
        overflow: hidden;
    }

    .slider-title {
        font-size: 30px;
    }

    .carousel-caption h2 {
        font-size: 30px;
    }
    
    .carousel-caption h4 {
        font-size: 7rem;
        margin-left: 12%;
    }

    .carousel-caption p {
        font-size: 16px;
    }

    .video-slider {
        width: 100%;
        transform: translate(0, 11%);
    }
    */
}

@media (max-width: 768px) {
    /*
    #mainSlider .carousel-inner, #mainSlider .carousel-item {
        height: auto;
    }
    
    .main-btn {
        font-size: 15px;
    }

    #mainSlider .carousel-indicators {
        bottom: -5%;
    }
    
    #mainSlider .carousel-caption h2 {
        font-size: 26px;
    }

    .carousel-caption h4 {
        font-size: 7rem;
        margin-left: 0;
    }

    #mainSlider .carousel-caption p {
        font-size: 17px;
    }

    .carousel-caption {
        display: block;
        left: 10%;
        right: 10%;
    }

    .video-slider {
        width: 100%;
        transform: translate(0, 4%);
    }
    */
}

@media (max-width: 425px) {
	/*
    #mainSlider{
        width: 400px;
    }

    .carousel-item {
        margin-top: 30px;
    }

    .carousel-caption {
        display: none;
    }

    .video-slider {
        width: 95%;
        transform: translate(0, 3%);
    }

    .carousel-control-next span, .carousel-control-prev span {
        display: none;
    }
    */
}

@media (max-width: 375px) {
    /*
    .carousel-caption h4{
        font-size: 45px;
        margin-left: 10%;
    }
    */
}

@media (max-width: 320px) {
	/*
    .carousel-caption h4{
        font-size: 35px;
        margin-left: 12%;
    }
    */
}

/*==========================================================================
* 5 - ABOUT TECHX CSS
==========================================================================*/

.border {
    border-left: 2px solid var(--black-semitransparent-bg-color);
    border-right: 2px solid var(--black-semitransparent-bg-color);
    border-top: 2px solid var(--black-semitransparent-bg-color);
    border-bottom: 2px solid var(--black-semitransparent-bg-color);
}

.left-border {
    border-left: 2px solid var(--secondary);
}

.right-border {
    border-right: 2px solid var(--secondary);
}

.top-border {
    border-top: 2px solid var(--secondary);
}

.bottom-border {
    border-bottom: 2px solid var(--secondary);
}

#about-area {
    align-content: center;
    text-align: center;
}

#about-area h4 {
    font-family: 'Anton',sans-serif;
    font-size: 60px;
    padding-bottom: 1em;
}

.main-title {
    color: var(--secondary);
    text-align: center;
    position: relative;
}

.about-title {
    font-size: 17px;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: bold;
}

#about-list {
    list-style: none;
    padding-left: 0;
}

#about-list li {
    line-height: 30px;
}

#about-list i {
    color: var(--light-gray);
    margin-right: 15px;
}

/*==========================================================================
* 5.1 - RESPONSIVE ABOUT TECHX CSS
==========================================================================*/

@media (max-width: 1440px) {
    /*
    .time-btn-right{
        left: 41.2em;
    }
    */
}

@media (max-width: 1380px) {
    /*
    .time-btn-right{
        left: 35.3em;
    }
    */
}

@media (max-width: 1024px) {
    /*
    .time-btn-right{
        left: 29.3em;
    }

    .video-easytenis, .video-about-easytenis{
        height: 225px;
    }
    */
}

@media (max-width: 768px) {
    /*
    
    #about-area img{
        margin-top: 100px;
    }

    .time-btn-right{
        left: 21.2em;
    }

    .video-easytenis, .video-about-easytenis{
        height: 175px;
        margin-left: 1.5em;
    }
    */
}

@media (max-width: 425px) {
    /*
    .main-title {
        font-size: 30px;
    }

    #about-area img {
        margin-top: 0;
        margin-bottom: 30px;
    }

    .img-425{
        display: flex;
        transition: .5s;
    }

    .img-1024{
        display: none;
    }

    .time-btn-left{
        right: -5em;
        top: 2.7em;
    }
    
    .time-btn-right{
        left: 5em;
        top: 2.7em;
    }

    .video-easytenis, .video-about-easytenis{
        height: 170px;
        margin-left: 0;
    }
    */
}

@media (max-width: 375px) {
    /*
    .time-btn-left, .time-btn-right{
        left: 3.5em;
    }

    .video-easytenis{
        height: 145px;
    }
    */
}

@media (max-width: 320px) {
    /*
    .time-title {
        font-size: 24.7px;
    }

    .time-btn-left, .time-btn-right{
        left: 2.7em;
    }

    .video-easytenis{
        height: 110px;
    }
    */
}

/*==========================================================================
* 6 - SERVICES AND PLANS (INDEX) CSS
==========================================================================*/

.services, .plans {
    background-image: url(../img/backgrounds/dark-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 43em;
}

.services h4, .plans h4 { 
    padding-bottom: 1em;
}

.service-area {
    position: relative;
    height: 30em;
    align-content: center;
    text-align: center;
    z-index: 5;
}

.service-area h4 {
    position: relative;
    bottom: 1em;
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    color: var(--white);
}

.service-area span {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    color: var(--primary);
}

.service-box, .plan-box {
    display: inline-flexbox;
    height: auto;
    padding: 4em;
    margin-left: 3em;
    border-radius: 0.6em;
    transition: .5s;
}

.service-box {
    position: relative;
    bottom: 120px;
    text-align: center;
    background-color: var(--secondary-semitransparent-bg-color);
    color: var(--white);
}

.service-box:hover, .plan-box:hover {
    transform: scale(1.1);
}

.service-box ul{
    padding-bottom: 2em;
}

.service-box ul li {
    color: var(--white);
    list-style-type: '\2713';
    font-size: 15px;
    text-align: left;
    transition: .5s all ease-in-out;
}

.service-box ul li span, .plan-box ul li span  {   
    padding-left: 1em; 
    color: var(--white);
}

.service-box ul li:hover {
    list-style: '\1f892';
    color: var(--white);
    transform: scale(1.2);
    margin-left: 1.1em;
}

.service-box ul li span:hover {
    color: var(--white);
}

.service-box i, .plan-box i {
    font-size: 28px;
    margin-bottom: 20px;
    padding: 0.4em;
    border-radius: 0.4em;
    color: var(--tertiary);
    background-color: var(--white);
}

.service-box h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* .plan-box, .general-plan, #planning-area is a shared index/packs css property */

.plan-box {
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary-semitransparent-bg-color);
    color: var(--white);   
}

.plan-box ul {
    padding-top: 2em;
    padding-bottom: 3em;
}

.plan-box ul li:hover {
    list-style: '\1f892';
    color: var(--white);
    transform: scale(1.1);
    margin-left: 1.1em;
}

.general-plan {
    text-align: center;
    margin-bottom: 5em;
}

#planning-area {
    height: auto;
    align-content: center;
    text-align: center;
}

/* .plan-area is a shared multi-page css property */

.plan-area {
    height: 30em;
    align-content: center;
    text-align: center;
}

.plan-area h4 {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    color: var(--secondary);
    padding-bottom: 1em;
}

.plan-area span {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    color: var(--primary);
}

.plan-area p {
    font-size: 17px;
    color: var(--secondary);
    
}

/*==========================================================================
* 6.1 - RESPONSIVE SERVICES AND PLANS (INDEX) CSS
==========================================================================*/



/*==========================================================================
* 7 - SERVICES AND PLANS (PAGES) CSS
==========================================================================*/

.services-details {
    height: auto;
}

.services-title {
    font-size: 17px;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: bold;
}

#services-list {
    list-style: none;
    padding-left: 0;
    padding-bottom: 2em;
}

#services-list li {
    line-height: 30px;
}

#services-list i {
    color: var(--light-gray);
    margin-right: 15px;
}

/* services upper left circle quadrant*/
.frame1 {
    border-radius: 90% 10% 30% 10%;
}

/* services upper right circle quadrant*/
.frame2 {
    border-radius: 10% 90% 10% 30%;
}

/* services lower right circle quadrant*/
.frame3 {
    border-radius: 30% 10% 90% 10%;
}

/* services lower left circle quadrant*/
.frame4 {
    border-radius: 10% 30% 10% 90%;
}

.price {
    font-size: 20px;
}

.combo-price {
    font-size: 40px;
    font-family: 'Anton', sans-serif;
}

.combo-price-small {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.combo-details, .plan-box ul li {
    list-style-type: '\2713';
    text-align: left;
    font-size: 18px;
    transition: .5s all ease-in-out;
}

/*==========================================================================
* 7.1 - RESPONSIVE SERVICES CSS
==========================================================================*/

@media (max-width: 768px) {
    /*
    .service-box h4 {
        font-size: 20px;
    }
    */
}

/*==========================================================================
* 8 - TECH-X TEAM CSS
==========================================================================*/

.team {
    background-image: url(../img/backgrounds/dark-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
}

.team-area img {
    transition: 0.5s all ease-in-out;
}

.team-area img:hover {
    transform: scale(1.2);
}

.team-text {
    text-align: justify;
}

.mission {
    text-align: center;
}

.mission i {
    font-size: 28px;
    margin-bottom: 20px;
    padding: 0.4em;
    border-radius: 0.4em;
    color: var(--tertiary);
    text-shadow: 2px 2px 5px var(--secondary-semitransparent-bg-color);
    box-shadow: 2px 2px 5px var(--secondary-semitransparent-bg-color);
}

/*==========================================================================
* 8.1 - RESPONSIVE EASYTÊNIS TEAM CSS
==========================================================================*/

@media (max-width: 1530px) {
    
    /*
    .easytenis__team-item-content {
      right: -1px;
    }

    .easytenis__team-item-content-left {
      width: 0;
      height: 100px;
      padding: 0 50px;
    }
    
    .easytenis__team-item-content-left i {
      width: 55px;
      height: 55px;
      font-size: 24px;
    }
    
    .easytenis__team-item-content-right {
      padding: 0 20px;
    }
    
    .portfolio__three-item {
      flex: 1.3;
    }
    */
}

@media (max-width: 1420px) {
    /*
    .project__one-item-content {
        position: absolute;
        left: 25px;
        right: 25px;
        bottom: 25px;
        padding: 35px 25px;
    }
    */
}

@media (max-width: 768px) {
    /*
    .card-title {
        font-size: 14px;
    }
    */
}

@media (max-width: 425px) {
    /*
    #team-area .col-md-3 {
        width: 100%;
        margin-bottom: 30px;
    }
    */
}

@media (max-width: 359px) {
    /*
    .easytenis__team-item-content {
        right: -1px;
    }

    .easytenis__team-item-content-left {
        padding: 0 40px;
    }

    .easytenis__team-item-content-right h4 {
        font-size: 20px;
        line-height: 30px;
    }
    */
}

/*==========================================================================
* 9 - TECHX TEAM CALLING (INDEX) CSS
==========================================================================*/

.working-area {
    display: flex;
    background-image: url(../img/backgrounds/dark-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 55em;
}

.working-area h4, .working-area span {
    position: relative;
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    padding-bottom: 1em;
}

.working-area h4, .working-area p {
    color: var(--white);
}

.working-area p {
    font-weight: bold;
    font-size: 20px;
}

.working-area span {
    color: var(--primary);
}

/* 9.1 - RESPONSIVE TECHX CALLING CSS */

@media (max-width: 768px) {
    /*
    #free-class-area .free-class-box {
        padding: 50px 25px;
    }

    #free-class-img {
        height: 100%;
    }
    */
}

@media (max-width: 425px) {
    /*
    #free-classes-area {
        padding-top: 500px;
        height: 800px;
    }
    */
}

/*==========================================================================
* 10 - TESTIMONIALS CSS
==========================================================================*/

.testimonial__one {
    background: var(--color-4);
    position: relative;
    z-index: 1;
}

.testimonial__one-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testimonial__one-title {
    margin-right: 90px;
}

.testimonial__one-title h2 {
    margin-bottom: 20px;
}

.testimonial__one-title p {
    max-width: 570px;
    margin: 0;
    margin-bottom: 30px;
}

.testimonial__one-title h6 {
    background: var(--bg-white);
    padding: 20px 30px;
    margin-bottom: 40px;
    border-left: 3px solid var(--primary-color-2);
}

.testimonial__one-title h6 span {
    color: var(--primary-color-2);
}

.testimonial__one-title h6 i {
    color: #ffc600;
    font-size: 14px;
    margin-left: 2px;
}

.testimonial__one-title h6 i:nth-child(3) {
    margin-left: 10px;
}

.testimonial__one-pagination {
    width: 280px;
    padding-left: 10px;
    margin-bottom: 15px;
}

.testimonial__one-pagination-item img {
    width: 70px;
    height: 70px;
    max-width: 70px;
    border-radius: 50%;
    cursor: pointer;
    border: 5px solid var(--color-3);
}

.testimonial__one-pagination .swiper-slide {
    width: 33.3333333333%;
    height: 80px;
    margin-top: 5px;
    transition: 0.3s;
}

.testimonial__one-pagination .swiper-slide-active {
    margin-top: 0;
}

.testimonial__one-pagination .swiper-slide-active img {
    width: 80px;
    height: 80px;
    max-width: 80px;
    border-color: var(--primary-color-2);
}

.testimonial__one-item {
    padding: 35px 50px;
    background: var(--bg-white);
    border: 1px solid rgba(5, 6, 8, 0.1);
    position: relative;
    margin-top: 25px;
}

.testimonial__one-item::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -16px;
    width: 30px;
    height: 30px;
    background: var(--bg-white);
    border-top: var(--border-color-1) solid 1px;
    border-left: var(--border-color-1) solid 1px;
    transform: translateX(-50%) rotate(45deg);
}

.testimonial__one-item-review {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.testimonial__one-item-review-rating i {
    color: #ffc600;
}

.testimonial__one-item-bottom {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.testimonial__one-item-bottom i {
    color: var(--primary-color-2);
    font-size: 70px;
    line-height: 0;
}

/*==========================================================================
* 10.1 - RESPONSIVE TESTIMONIALS CSS
==========================================================================*/

@media (max-width: 425px) {
    /*
	#classes-area .filter-btn {
        margin-bottom: 20px;
    }

    .class-box {
        width: 50%;
    }
    */
}

/*==========================================================================
* 11- CLIENTS SLIDER CSS
==========================================================================*/

.clients{
    background-color: var(--light-gray);
}

#clients-area {
    padding-top: 5em;
    padding-bottom: 3em;
    text-align: center;
}

#clients-area h4 {
    font-family: 'Anton', sans-serif;
    font-size: 50px;
    padding-bottom: 1em;
}

.responsive {
    background: transparent;
    text-align: center;
    cursor: grab;
}

.responsive .parent-slide {
  padding: 15px;
}

.responsive img {
  display: block;
  margin: auto;
  height: 4em;
}

/*==========================================================================
* 11.1- RESPONSIVE CLIENTS SLIDER CSS
==========================================================================*/

@media (max-width: 768px) {

    .responsive {
        margin: 20px 0;
    }

    .responsive .parent-slide {
    padding: 50em;
    }

    .responsive img {
        margin-left: 2em;
        height: 3em;
    }
}

@media (max-width: 425px) {

    .responsive img {
        margin-left: 6.7em;
        height: 3em;
    }
}

/*==========================================================================
* 12- FOOTER CSS
==========================================================================*/

#footer {
    padding: 1.4em;
}

.btn {
    border-radius: 50px;
}

.bg-footer {
    background-image: url(../img/backgrounds/dark-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.secondary-color {
    color: var(--white);
}

/*==========================================================================
* 12.1- RESPONSIVE FOOTER CSS
==========================================================================*/

@media (max-width: 768px) {

    #footer {
        margin-top: 2em;
        padding: 3em 2em;
    }
}

/*==========================================================================
* 13 - FOOTER-TOP CSS
==========================================================================*/

#footer-top {
    margin-bottom: 2em;
    color: var(--white);
}

.footer-title {
    font-family: 'Anton' ,sans-serif;
    font-size: 50px;
}

/*==========================================================================
* 13.1 - RESPONSIVE FOOTER-TOP CSS
==========================================================================*/

@media (max-width: 768px) {
    /*
    #social-icons {
        text-align: right;
    }
    
    #social-icons i {
        font-size: 1.5em;
    }
    */
}

/*==========================================================================
* 14 - FOOTER-DETAILS CSS
==========================================================================*/

#footer-details {
    margin-bottom: 1em;
}

#footer-details h4 {
    font-family: 'Anton' ,sans-serif;
    font-size: 20px;
}

.social-area {
    width: 100px;
}

#social-icons {
    text-align: left;
}

#social-icons a {
    text-decoration: none;
}

#social-icons i {
    color: var(--white);
    margin-left: 0.5em;
    font-size: 1.5em;
    cursor: pointer;
    transition: .5s;
}

#social-icons i:hover {
    color: var(--primary);
}

#links-container {
    padding-left: 2em;
}

#contact-container {
    padding: 0 2em;
}

.contact-title-link {
    font-size: 18px;
    text-decoration: none;
    color: var(--white);
}

#contact-container, #links-container {
    margin-bottom: 2em;
}

#footer-details h4 {
    color: var(--white);
    margin-bottom: 1.5em;
}

#links-container li {
    font-size: 18px;
    margin-bottom: 0.5em;
}

#links-container a {
    text-decoration: none;
    transition: 0.5s;
}

#links-container a:hover {
    color: var(--primary);
}

/*==========================================================================
* 14.1- RESPONSIVE FOOTER-DETAILS CSS
==========================================================================*/

@media (max-width: 768px) {
        
    #news-container, #contact-container, #links-container {
        padding: 0;
        bottom: 0;
        margin-bottom: 2em;
    }
    
    #contact-container{
        padding-left: 2%;
        border-radius: 0;
        border: none;
    }

    #contact-container .contact-title-link{
        font-size: 11px;
    }
    
    #links-container a {
        font-size: 12.5px;
    }

    #social-icons i {
        font-size: 1.5em;
    }
}

/*==========================================================================
* 15 - PORTFOLIO CSS
==========================================================================*/

.portfolio {
    background-image: url(../img/backgrounds/dark-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 43em;
}

.portfolio h4 {
    padding-bottom: 1em;
}

.gallery-title h3 {
    font-size: 30px;
}

.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

.gallery-events-row {
    display: grid;
    padding-left: 3em;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.gallery-events-row {
    width: 100%;
    height: auto;
}

.gallery-events-row img {
    position: relative;
    display: flex;
    justify-content: center;
    width: 75%;
    border-radius: 1em;
    border: 0.5em solid var(--portfolio-bg);
    transition: 0.5s all ease-in-out;
}

.gallery-events-row img:hover {
    border: 0.5em solid transparent;
}

.gallery-events-row .portfolio-details {
    margin-top: 2em;
    display: inline-flex;
    justify-content: space-between;
    width: 60%;
}

.gallery-events-column{
    grid-column: span 5;
    padding-left: 25%;
    width: 100%;
    height: auto;
    overflow: hidden;
    flex-direction: column;
    gap: 1em;
    transition: all .5s ease-in-out;
    border-radius: 2em;
}

.gallery-events-column:hover{
    transform: translateY(-4em);
    box-shadow: 5px 5px 5px var(--secondary-semitransparent-bg-color);
    background-color: var(--white);
}

.portfolio-details {
    color: var(--secondary);
    font-weight: bold;
}

.portfolio-details span {
    color: var(--medium-gray);
    font-weight: normal;
}

.portfolio-btn {
    text-align: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    height: 55%;
    width: auto;
}

.gallery-btn-left, .gallery-btn-right {
    position: relative;
    text-decoration: none;
    background-color: var(--secondary);
    font-size: 30px;
    color: var(--white);
    text-transform: uppercase;
    border-radius: 30px;
    border: 2px solid transparent;
    transition: .5s;
}

.gallery-btn-left{
    right: 2.55em;
    top: 2.7em;
}

.gallery-btn-right{
    left: 41.3em;
    top: 2.7em;
}

.gallery-btn-left:hover, .gallery-btn-right:hover {
    transform: scale(1.1);
    background-color: var(--white);
    color: var(--black);
    border-color: var(--secondary);
}

/*==========================================================================
* 15.1 - RESPONSIVE PORTFOLIO CSS
==========================================================================*/

@media (max-width: 1440px) {

    .gallery-btn-right{
        left: 41.2em;
    }
}

@media (max-width: 1380px) {

    .gallery-btn-right{
        left: 35.3em;
    }
}

@media (max-width: 1024px) {

    .gallery-btn-left{
        left: 0;
        top: 2.7em;
    }

    .gallery-btn-right{
        left: 29.3em;
    }
}

@media (max-width: 768px) {

    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: block;
    }

    .hidden-thumb img {
        display: none;
    }

    .gallery-btn-left, .gallery-btn-right {
        top: 0.5em;
        left: 85%;
    }

    .gallery-events-row {
        display: flex;
    }
}

@media (max-width: 425px) {
    
    .gallery-btn-left, .gallery-btn-right {
        left: 80%;
    }
}

@media (max-width: 375px) {
   
    .gallery-btn-left, .gallery-btn-right{
        left: 80%;
    }
}

@media (max-width: 320px) {

    .gallery-btn-left, .gallery-btn-right{
        left: 2.7em;
    }
}

/*==========================================================================
* 16 - COPY AREA CSS
==========================================================================*/

#copy-area {
    height: 3em;
    border-top: 1px solid var(--medium-gray);
}

#copy-area .container {
    text-align: center;
    height: 6em;
}

#copy-area .container p{
    font-size: 16px;
}

#copy-area .container p {
    margin-bottom: 0;
    color: var(--white);
}

#copy-area .container a {
    text-decoration: none;
    font-weight: bold;
    color: var(--white);
    transition: .5s;
}

#copy-area .copy-text {
    font-weight: lighter;
}

#copy-area .container a:hover {
    color: var(--primary);
}