@font-face {
    font-family: Micross;
    src: url(../fonts/micross.ttf);
}

:root {
    --primary-color : #E52F42;
    --secendary-color : #313033;
    --pragraph-fsize : 1rem;
}
html {
    scroll-behavior: smooth;
  }
body {
    margin: 0;
    padding: 0;
    font-family: Lato;
}

*, :after, :before {
    outline: none!important;
    box-sizing: border-box;
}
.bg-red {
    background: var(--primary-color);
}
.bg-dark {
    background: var(--secendary-color);
}
.text-white {
    color: #fff;
}
.tl-overflow {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}
.col-grid {
    display: grid;
    grid-template-areas: "grid grid";
    grid-template-rows: 50%;
    grid-template-columns: 50%;
    grid-gap: 1px;
    padding-bottom: 3px;
}

@keyframes activebackground {
    from {top: 100%;}
    to {top: 0;}
  }

@-webkit-keyframes activebackground {
    from {top: 100%;}
    to {top: 0;}
}  

@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0);
        opacity: 0;
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@keyframes fadeInUp2 {
    0% {
        transform: translate3d(0,40px,0);
        opacity: 0;
    }
    90% {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
    100% {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp2 {
    0% {
        transform: translate3d(0,40px,0);
        opacity: 0;
    }
    90% {
        transform: translate3d(0,40px,0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}


@keyframes fadeInUp1 {
    0% {
        transform: translate3d(0,40px,0);
        opacity: 0;
    }
    50% {
        transform: translate3d(0,40px,0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp1 {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}



@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes wipe-out-up {
    from {
      clip-path: inset(0 0 0 0);
    }
    to {
      clip-path: inset(0 0 100% 0);
    }
  }


@keyframes wipe-out-down {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(100% 0 0 0);
  }
}


@keyframes fullscreen {
    0% {
        opacity: 1;
        visibility: unset;
        z-index: 99999;
    }
    50% {
        opacity: 1;
        visibility: unset;
        z-index: 99999;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        z-index: -1;
    }
}
.fadeinAnim {
    -webkit-animation: fadein 0.8s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 0.8s; /* Firefox < 16 */
        -ms-animation: fadein 0.8s; /* Internet Explorer */
         -o-animation: fadein 0.8s; /* Opera < 12.1 */
            animation: fadein 0.8s;
}
.fadeupAnim {
    -webkit-animation: fadeInUp 0.8s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeInUp 0.8s; /* Firefox < 16 */
     -ms-animation: fadeInUp 0.8s; /* Internet Explorer */
      -o-animation: fadeInUp 0.8s; /* Opera < 12.1 */
         animation: fadeInUp 0.8s;
}
.fadeup1Anim {
    -webkit-animation: fadeInUp1 0.8s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeInUp1 0.8s; /* Firefox < 16 */
     -ms-animation: fadeInUp1 0.8s; /* Internet Explorer */
      -o-animation: fadeInUp1 0.8s; /* Opera < 12.1 */
         animation: fadeInUp1 0.8s;
}
.fadeup2Anim {
    -webkit-animation: fadeInUp2 0.8s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeInUp2 0.8s; /* Firefox < 16 */
     -ms-animation: fadeInUp2 0.8s; /* Internet Explorer */
      -o-animation: fadeInUp2 0.8s; /* Opera < 12.1 */
         animation: fadeInUp2 0.8s;
}
.tl-box {
    box-shadow: 0px 3px 6px #00000029;
}

.tl-overflow-h {
    overflow: hidden;
}

.tl-container {
    padding: 0 3rem;
}
/* Header */
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}
.tl-main-header {
    box-shadow: 0px 3px 6px #00000029;
    list-style: none;
    background: #fff;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: all 0.3s;
    position: relative;
}
.list-menu li {
    display: inline;
    margin-left: 2.5rem;
}
.list-menu a {
    color: var(--secendary-color);
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s;
}

.list-menu a:hover {
    color: var(--primary-color);
    transition: all 0.3s;
}

.tl-logo-nav {
    width: 155px;
    height: 70px;
    background: url(../imgs/logo_menu.svg) center/contain no-repeat;
    transition: all 0.6s;
}
.tl-logo-nav:hover {
    background: url(../imgs/logo_menu_red.svg) center/contain no-repeat;
    transition: all 0.6s;
}
.nav-mobile {
    display: none;
}


.tl-sidenav {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    width: 0;
    text-align: left;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    background-color: var(--secendary-color);
    overflow-x: hidden;
    transition: 0.5s;
}
  
.tl-sidenav a {
    padding: 1rem 0;
    text-decoration: none;
    line-height: 1.5;
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    display: block;
    transition: 0.3s;
    padding-left: 94px;
}
.tl-sidenav a:hover {
    color: var(--primary-color);
}
  

.tl-sidenav .tl-closebtn {
    position: absolute;
    top: 0;
    margin-right: -75px;
}

.tl-closebtn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0!important;
    margin: 0;
    height: 74px;
    width: 74px;
    background: url(../imgs/menu_close_red.svg);
    transition: 0.3s;
}

.tl-closebtn:hover {
    background: url(../imgs/menu_close_grey.svg);
    transition: 0.3s;
}
#main {
    transition: margin-right .5s;
}

.nav-mobile {
    background: url(../imgs/menu_red.svg) center/contain no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 74px;
    height: 74px;
    border: none;
    transition: all 0.3s;
}

.tl-main-header.sticky-top button {
    height: 60px;
}

.nav-mobile:hover {
    background: url(../imgs/menu_grey.svg) center/contain no-repeat;
    transition: all 0.3s;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10rem;
    padding-left: 94px;
}
.social-icon {
    height: 30px;
    width: 30px;
    padding: 0!important;
    margin: 0 0.75rem;
    background-repeat: no-repeat;
    background-position : center;
}
.tl-text-info {
    font-weight: bold;
}


.facebook {
    background: url(../imgs/social\ icons_facebook_white.svg);
}
.facebook:hover {
    background: url(../imgs/social\ icons_facebook_red.svg);
}

.instagram {
    background: url(../imgs/social\ icons_ins_white.svg);
}
.instagram:hover {
    background: url(../imgs/social\ icons_ins_red.svg);
}

.youtube {
    background: url(../imgs/social\ icons_youtobe_white.svg);
}
.youtube:hover {
    background: url(../imgs/social\ icons_youtobe_red.svg);
}

.linkdin {
    background: url(../imgs/social\ icons_linklin_white.svg);
}
.linkdin:hover {
    background: url(../imgs/social\ icons_linklin_red.svg);
}


.tl-hero .container-fluid {
    padding: 0;
}
.tl-bg-hero, .tl-main-hero {
    background: url(../imgs/landing_0.jpg) 70% 50% / cover no-repeat;
    height: calc(100vh - 100px);
    overflow: hidden;
    width: 100%;
    display: none;
    position: relative;
    transition: all 0.5s;
    
}
.active-content {
    display: inline-block;
}
.tl-hero-box {
    background: var(--secendary-color);
    padding: 2.5rem 1.5rem;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.tl-hero-box:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    z-index: -1;
    background: var(--primary-color);
    transition: 0.5s all;
}
.tl-hero-box:hover:before {
    content: '';
    top: 0;
    z-index: -1;
    transition: 0.3s all;
}
.tl-icon-hero-box {
    width: auto;
    height: 86px;
    transition: 0.3s all;
}
.tl-hero-box-text, .tl-hero-box-text a {
    color: #fff!important;
}
.active {
    position: relative;
    z-index: 1;
}

.active img {
    filter: brightness(5.5);
    transition: 0.3s all;
}

.active:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: var(--primary-color);
    z-index: -1;
    animation: activebackground 0.3s linear;
    transition: 0.3s all;
}


.tl-head-hero {
    padding: 5.1rem 184px 4rem 5rem;
    position: relative;
}


.tl-num {
    color: var(--primary-color);
    font-size: 20rem;
    font-weight: 900;
    font-family: Microsoft Sans serif;
    position: relative;
    z-index: 2;
}


.tl-line {
    content: '';
    position: absolute;
    top: 74.2%;
    left: 3rem;
    right: 184px;
    height: 3px;
    background: var(--primary-color);
    opacity: 1;
}

.tl-titr {
    color: #fff;
    font-size: 4rem;
    font-weight: 900;
    position: absolute;
    top: 53%;
    z-index: 3;
}

.tl-bottom {
    padding: 5rem 184px 1rem 5rem;
    margin-top: -10rem;
    color: #fff;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 5;
    font-size: 26px;
    line-height: 1.3;
}
.make-it-half {
    width: 45%;
}

.tl-footer-hero {
    position: absolute;
    left: 3rem;
    right: 0.5rem;
    bottom: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: flex-end;
    align-items: flex-end;
}
.tl-contact {
    padding: 1rem;
    color: #fff;
    font-size: 1.7rem;
    background: var(--primary-color);
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    text-decoration: none;
    
}
.tl-contact:hover {
    background: var(--secendary-color);
    transition: all 0.2s;
}

.tl-num {
    animation: 1s cubic-bezier(.25, 1, .30, 1) wipe-out-down reverse;
}


.make-it-half, .tl-titr {
    opacity: 0;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

.arrow {
    width: 68px;
    height: 68px;
    margin-left: 8rem;
    transform: rotate(-45deg);
    background: url(../imgs/mainpage_arrow_grey.svg) center/contain no-repeat;
    transition: all 0.2s;
}
.tl-contact:hover .arrow {
    transform: rotate(0deg);
    background: url(../imgs/mainpage_arrow_red.svg) center/contain no-repeat;
    transition: all 0.2s;
}
.scroll-icon {
    height: 200px;
    width: 60px;
    background: url(../imgs/scroll\ down_hover_red.svg) center/contain no-repeat;
    transition: all 0.2s;
}
.scroll-icon:hover {
    background: url(../imgs/scroll\ down_hover_white.svg) center/contain no-repeat;
    transition: all 0.2s;
}


.bg-0 {
    background: url(../imgs/landing_0.jpg) center center / cover no-repeat;
    transition: all 0.5s
}

.bg-1 {
    background: url(../imgs/landing_1.jpg) center center / cover no-repeat;
    transition: all 0.5s
}

.bg-2 {
    background: url(../imgs/landing_2.jpg) center center / cover no-repeat;
    transition: all 0.5s
}

.bg-3 {
    background: url(../imgs/landing_3.jpg) center center / cover no-repeat;
    transition: all 0.5s
}

.tl-hero-box-h {
    margin: 0;
    font-size: 24px!important;
}


.tl-head-1 {
    font-size: 62px;
    font-weight: 900;
    line-height: 0.5;
    color : var(--primary-color);
}

.tl-head-2 {
    font-size: 62px;
    font-weight: 900;
    line-height: 0.5;
    color : var(--secendary-color);
}

.tl-head-3 {
    font-size: 62px;
    font-weight: 900;
    line-height: 0.5;
    color : #fff;
}


.tl-h-slide0 {
    line-height: 0.15;
}
.tl-paragraph {
    padding-top: 2rem;
    color: #fff;
    font-size: 26px;
    line-height: 1.3;
    width: 40%;
}

.tl-bg-hero.slide-0 {
    padding: 3rem;
}

/* Section 2 */
.tl-accardeon {
    background: url(../imgs/mainpage_Atlantic\ Resouse\ font.svg) 7.8% 50%/25% no-repeat, #EEEEEE;
    position: relative;
    top: -3px;
    padding: 5rem 5rem 3rem 20rem!important;
}
.tl-num-red-box {
    color: #313033;
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 350px;
    font-family: Micross;
    z-index: 1;
    opacity: 0;
}
/* 
.tl-why.hide-why {
    opacity: 0;
    transition: 0.3s all;
} */
.tl-accardeon-box {
    background: #FBFBFB;
}

.accordion .accordion-item {
    border-bottom: 1px solid #efefef;
    padding: 1rem 2rem;
    transition: 0.3s all;
}
.accordion-item:hover {
    background: #f3f3f3;
    transition: 0.3s all;
}
.accordion-item {
    min-height: 13rem;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    padding-bottom: 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
  }
  .accordion button:hover, .accordion button:focus {
    cursor: pointer;
    color: #03b5d2;
  }
  .accordion button:hover::after, .accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
  }
  /* .accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
  } */
  .accordion button .icon {
    display: inline-block;
    position: absolute;
    background: url(../imgs/arrow-accardeon.svg) center/85% no-repeat, var(--secendary-color);
    top: 18px;
    right: 0;
    width: 3vw;
    height: 3vw;
    border-radius: 20rem;
    transition: 0.3s all;
  }

  .accordion button[aria-expanded=true] .icon {
    background: url(../imgs/arrow-accardeon.svg) center/85% no-repeat, var(--primary-color);
    transform: rotate(90deg);
    transition: 0.3s all;
  }
  .accordion button[aria-expanded=true] {
    color: #03b5d2;
  }
  .accordion button[aria-expanded=true] .icon::after {
    width: 0;
  }
  .accordion button[aria-expanded=true] + .accordion-content {
    opacity: 1;
    max-height: 40em;
    transition: all 1s linear;

  }
  .clear-border {
      border: 0!important;
  }
  .accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 1s;

  }
  .accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
  }

  .accordion-item, .accordion button[aria-expanded=false], .accordion-title {
      transition: all 1s ease;
  }
  
  .tl-red-box {
    width: 100%;
    height: 20vw;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.tl-why {
    font-size: 3vw;
    color: #fff;
    z-index: 2;
    transition: 0.3s all;
}
.sticky-box {
    position: -webkit-sticky;
    position: sticky;
    /* top: 10rem; */
}
.tl-ppding-fix {
    margin: 13rem 0!important;
}
.tl-num-red-box.desactive-box-r {
    transition: 0.3s all;
}

.tl-num-red-box.active-box-r {
    opacity: 1;
    transition: 0.3s;
}

span.accordion-title {
    font-size: 40px;
    color: var(--secendary-color);
    font-weight: bold;
}
.accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: -1rem;
}
.accordion .accordion-item button[aria-expanded=false] {
    
}
.tl-center-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}
/* Section 3 */
.tl-md-section {
    padding: 3rem 0;
}
.tl-head-howe {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
}
.col-grid-gallery {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-gap: 30px
}
.card-box-s {
    width: 100%;
    box-shadow: 0px 3px 6px #00000029;
    color: #fff;
    position: relative;
    box-sizing: border-box;
}
.tl-fix-des-h-box .tl-card-box-h {
    top: -15px;
    position: relative;
}
.card-box-s-bborder::before {
    content: '';
    border: 13px solid #fff;
    transition: 0.1s all linear;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transition: 0.3s all linear;
    z-index: 3;
}
.card-box-s-border:before {
    content: '';
    border: 1px solid #fff;
    margin: 13px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transition: 0.3s all linear;
    z-index: 3;
}
.card-box-s-border:hover:before {
    margin: 0;
    border: 0 solid transparent;
    transition: 0.3s all linear;
}
.tl-card-box-img {
    width: 100%;
}

.tl-des-card-box {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 2rem;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1;
    overflow: hidden;
}
.tl-first-card:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    background: rgba(0,0,0,0.2);
}

.tl-card-box-h {
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 40px;
    margin: 0;
}
.accordion .accordion-content p {
    font-size: 22px;
    line-height: 1.3;
}
.tl-card-box-p {
    max-height: 0;
    opacity: 0;
    font-size: 24px;
    transition: 0.5s all linear 1s;
}
.card-box-s:hover {
    padding: clac(15px + 2rem);
    transition: 0.3s all linear;
}
.card-box-s:hover .tl-card-box-p {
    max-height: 100%;
    opacity: 1;
    transition: 0.7s all;
}
.card-box-s-bborder:hover:before {
    border: 0 solid transparent;
    transition: 0.1s all linear;
}

/* End Section 3 */

/* footer */

.tl-footer {
    position: relative;
    z-index: 2;
}
.tl-footer:before {
    content: '';
    position: absolute;
    left: 0;
    width: 45%;
    top: 0;
    bottom: 0;
    background: var(--primary-color);
    z-index: -1;
}
.tl-footer:after {
    content: '';
    position: absolute;
    width: 57%;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--secendary-color);
    z-index: -1;
}
.tl-footer-col-p-1 {
    padding: 3rem 5rem 3rem 0;
}
.tl-footer-col-p-2 {
    padding: 3rem 0 3rem 5rem;
}
.tl-footer-head {
    font-size: 35px;
    font-weight: 800;
}
.tl-footer-para {
    font-size: 24px;
    line-height: 1.5;
}
.tl-footer-para a{
    color: #EEEEEE;

}
.tl-footer-copyright {
    font-size: 20px;
    line-height: 2;
}
img.tl-logo-footer {
    position: absolute;
    width: 15%;
    bottom: 4rem;
    right: 5rem;
}
.tl-footer-smedia {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 6rem;
}

.tl-footer-smedia .facebook {
    background: url(../imgs/social\ icons_facebook_w.svg) center/contain no-repeat;
}
.tl-footer-smedia .facebook:hover {
    background: url(../imgs/social\ icons_facebook_g.svg) center/contain no-repeat;
}

.tl-footer-smedia .instagram {
    background: url(../imgs/social\ icons_ins_w.svg) center/contain no-repeat;
}
.tl-footer-smedia .instagram:hover {
    background: url(../imgs/social\ icons_ins_g.svg) center/contain no-repeat;
}

.tl-footer-smedia .youtube {
    background: url(../imgs/social\ icons_youtobe_w.svg) center/contain no-repeat;
}
.tl-footer-smedia .youtube:hover {
    background: url(../imgs/social\ icons_youtobe_g.svg) center/contain no-repeat;
}

.tl-footer-smedia .linkdin {
    background: url(../imgs/social\ icons_linklin_w.svg) center/contain no-repeat;
}
.tl-footer-smedia .linkdin:hover {
    background: url(../imgs/social\ icons_linklin_g.svg) center/contain no-repeat;
}



/* contact  */
.tl-events.tl-fullscreen , .tl-contactus.tl-fullscreen {
    opacity: 0;
    animation: fullscreen 1s linear;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
}

.tl-contactus, .tl-events {
    position: relative;
    padding: 3rem 0;
    background: url(../imgs/contact.jpg) 50% 40%/cover no-repeat,var(--secendary-color);
    color: #fff!important;
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s all;
}
.tl-arp {
    background: url(../imgs/landing_2_new.jpg) 50% 25%/cover no-repeat,var(--secendary-color)!important;
}
.tl-events {
    background: url(../imgs/events.jpg) 100% 35%/cover no-repeat,var(--secendary-color);
}
.contact-head {
    font-size: 66px;
    animation-duration: 0.1s;
}
.tl-contact-line {
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    margin-top: -1rem;
    margin-bottom: 2rem;
}
.col-12.tl-contact-col {
    display: flex;
    justify-content: flex-end;
}
.tl-contact-info {
    padding-right: 5rem;
    animation-duration: 1.5s;
}
.tl-contact-info div {
    font-size: 24px;
    margin-bottom: 1rem;
}
.tl-question {
    color: var(--secendary-color);
    font-size: 66px;
    text-align: center;
    font-weight: bold;
}
.col-querstion {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
}
.col-querstion input {
    display: block;
    margin-bottom: 1rem;
    height: 80px;
    width: 958px;
    font-size: 28px;
    font-family: lato;
    padding: 0 1.5rem;
    border: 1px solid #313033;
}
.col-querstion input::placeholder , .col-querstion textarea::placeholder{
    color: #E2E2E2;
    font-weight: 100;
}
.col-querstion textarea {
    height: 404px;
    width: 958px;
    font-size: 28px;
    font-family: lato;
    padding: .5rem 1.5rem;
    border: 1px solid #313033;
}
.tl-btn-contact {
    border: 1px solid var(--primary-color)!important;
    color : var(--primary-color)!important;
    font-size: 40px!important;
    height: 80px!important;
    width: 384px!important;
    background: #fff!important;
    text-align: center!important;
    -webkit-appearance: none;
    transition: 0.3s all;
}
.tl-btn-contact {
    border: 1px solid var(--primary-color)!important;
    color: var(--primary-color)!important;
    font-size: 40px!important;
    height: 80px!important;
    width: 384px!important;
    background: #fff!important;
    text-align: center!important;
    margin: 2rem auto;
    -webkit-appearance: none;
}
.tl-btn-contact:hover {
    background: var(--primary-color)!important;
    color: #fff!important;
    transition: 0.3s all;
}
.tl-contact-forms {
    padding: 3rem 0;
}

.map-responsive {
    margin-top: 3rem !important;
    text-align: center;
    display: block;   

}

.contact-head span 
{
    color: var(--primary-color);
}
.tl-event-edition {
    font-size: 24px!important;
    font-weight: 100;
    width: 60%;
}
.tl-eventes-contents {
    padding: 5rem 0;
} 
.tl-date-icon {
    width: 6%;
    margin-right: 0.5rem;
}
.tl-evenet-date {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    margin-top: 0.5rem;
}
.tl-perv {
    font-size: 66px;
    font-weight: bold;
    color: #fff;
    background: #707070;
    text-align: center;
    padding: 1rem;
}
.tl-event-posts {
    padding: 2.5rem 0;
}
.tl-evenet-item {
    padding: 1rem 0;
}
.tl-event-title {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: var(--secendary-color);
    text-decoration: none;
    position: relative;
    transition: 0.3s all;
}
.tl-event-title:hover {
    font-weight: 900;
    transition: 0.3s all;
}
.tl-event-title:before {
    width: 85%;
    content: "";
    height: 2px;
    background-color: var(--primary-color);;
    position: absolute;
    bottom: -3px;
    left: 0;
    transform: scaleX(.2);
    transition: transform 0.3s;
    transform-origin: top left;
}
.tl-event-title:hover:before {
    transform: scaleX(1);
}
.tl-btn-read {
    width: 45%;
    background: var(--primary-color);
    padding: 1rem;
    border: 0;
    font-size: 24px;
    color: #fff;
    transition: 0.3s all;
    cursor: pointer;
}
.tl-btn-read:hover {
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: 0.3s all;
}
.tl-evenet-date span {
    font-size: 24px;
    color: #707070;
}
.tl-eve-titr {
    font-size: 66px;
    font-weight: bold;
    color: #fff;
    background: var(--primary-color);
    text-align: left;
    padding: 1rem;
    padding-left: 3rem;
    margin-bottom: 1rem;
}
img.tl-eve-img {
    width: 100%;
    margin-bottom: -3px;
}
.tl-eve-box {
    margin-bottom: 1rem;
    margin-top: 3.5rem;
}
.tl-eve-bg {
    transition: 0.3s all;
}
.tl-eve-bg:hover {
    background-size: 150%!important;
    transition: 0.3s all;
}
.tl-eve-bg-1 {
    background: url(../imgs/events_1_img.jpg) 50% 50%/120% no-repeat;
}
.tl-eve-bg-2 {
    background: url(../imgs/events_2_img.jpg) 50% 50%/120% no-repeat;
}
.tl-eve-sub-titr {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}
.tl-eve-address {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}
img.tl-img-post {
    width: 100%;
}
img.tl-more {
    width: 20%;
}
h2.tl-post-eve-titr {
    font-size: 40px;
    color: #707070;
}
.tl-s-post-ev.row {
    padding-bottom: 2rem;
    margin: 2rem -1rem;
    border-bottom: 1px solid #707070;
}
.tl-evenet-more.tl-post-more {
    margin-top: -2rem;
    margin-bottom: 2rem;
    display: block;
    text-align: center;
}
.tl-post-more button {
    width: 20%;
}
.tl-atlantic-resource {
    display: none;
}

.tl-main-header.sticky-top nav {
    height: 80px;
    transition: 0.3s all;
}

.tl-main-header.sticky-top nav .tl-logo-nav {
    width: 155px;
    height: 60px;
    transition: 0.3s all;
}

h2.tl-head-howe {
    margin-top: 1rem;
}
.tl-post-eve-titr {
    margin-bottom: 3.4rem;
    margin-top: 0;
    margin-left: .2rem;

 }
 .first-title {
    margin-bottom: 9.3rem;
 }

 .third-title {
    margin-bottom: 6.4rem;
 }
.tl-eve-b {
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
}
.tl-eve-date-img {
    width: 33.65%;
}
.tl-eve-con {
    padding: 2rem;
}
.tl-img-photo {
    height: 250px;
    transition: 0.3s all;
}
.tl-img-photo:hover {
    background-size: 150%!important;
    transition: 0.3s all;
}
.tl-read-more {
    position: relative;
    transition: 0.3s all;
    padding: 1.2rem 0;
    padding-right: 1.5rem;
    font-size: 26px;
    color: var(--primary-color);
    z-index: 1;
}
.tl-read-more:before {
    content: '';
    background: url(../imgs/arrow-accardeon.svg) 50% 50%/80% no-repeat,var(--primary-color);
    padding: 1.2rem 2.3rem;
    margin-right: 1rem;

}
.tl-read-more:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 100%;
    background: var(--primary-color);
    transition: 0.3s all;
    z-index: -1;
}
.tl-read-more:hover:before {
    background-position: 100% 50%;
}
.tl-read-more:hover:after {
    right: 0;
    transition: 0.3s all;
}
.tl-read-more:hover {
    color: #fff;
    transition: 0.3s all;
}
.tl-num.tl-num-3 {
    top: -0.1rem;
}

.card {
    transform-style: preserve-3d;
    width: 100%;
    position: relative;
    margin: 0 1rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
    overflow: hidden;
  }
  .card-warpper:hover .card .info {
    border: 0 solid rgb(255, 255, 255);
    padding: 10px;
    transition: 0.3s;
  }
  .info {
    position: absolute;
    padding: 20px;
    border: 10px solid rgb(255, 255, 255);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    transition: 0.3s;
  }
  
  .title {
    font-size: 3rem;
    transition: all 0.75s ease-out;
  }
  .describ{
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    font-size: 1.3rem;
    color: #fff;
    font-weight: lighter;
    transition: all 0.5s;
  }
  .card-warpper:hover .info .describ {
    opacity: 1;
    visibility: unset;
    max-height: 100%;
    padding: 2rem 0rem;
    transition: all 0.5s;
  }
  .bg-img-cards {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    width: 100%;
  }


.tl-sales {
    padding: 7rem 0;
    padding-bottom: 13rem;
    background: var(--primary-color);
    color: #fff;
}
.tl-logistics {
    padding: 7rem 0;
    background: #fff;
    color: var(--secendary-color);
}
.tl-color-logistics-num {
    background: var(--primary-color)!important;
    color: #fff!important;
}
.tl-color-logistics-h {
    color: var(--primary-color);
}
.tl-sales-title.tl-color-logistics-h {
    font-size: 60px;
}
.tl-sales-desc-title.tl-color-logistics-h {
    font-size: 25px;
    margin: 0.5rem 0;
    margin-top: 2rem;
    margin-bottom: 1rem !important;
}
.tl-sales-title {
    display: flex;
    align-items: center;
    font-size: 60px;
    font-weight: 900;
}
.tl-sales-num {
    width: 126px;
    height: 126px;
    background: #fff;
    color: var(--primary-color);
    text-align: center;
    font-size: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin-right: 2rem;
    font-family: Micross;
    font-weight: 500;
    margin-bottom: 2rem;
}
.tl-p-l {
    padding-left: 15rem;
}
.tl-sales .container-fluid, .tl-logistics .container-fluid {
    padding: 0 10rem;
}
.tl-sales-desc {
    font-size: 24px;
}
.tl-sales-desc-title {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 1rem;
}
.tl-desc-sales-top {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 1rem;
}
.tl-desc-sales-top.tl-color-logistics-p {
    color: var(--secendary-color);
}
.tl-desc-sales-top.w-52 {
    margin-top: 15px;
}
.tl-desc-sales-bottom-h {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 1rem;
}
ul.tl-desc-sales-bottom {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 2rem;
    font-size: 24px;
    line-height: 1.5;
}

li.tl-desc-sales-b-l {
    position: relative;
}
li.tl-desc-sales-b-l:before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 17px;
    height: 17px;
    background: #fff;
    border-radius: 50%;
}
.tl-logistics-u {
    padding-left: 4rem!important;
}
li.tl-desc-sales-b-l.tl-logistics-l:before {
    background: var(--primary-color);
    left: -4rem;
}
.row-center {
    align-items: center;
}
.tl-consult-h {
    font-size: 2.8rem!important;
}
.tl-consult {
    background: #EEEEEE;
}
.g-5, .gx-5 {
    --bs-gutter-x: 10rem;
}
.accordion-content {
    width: 85%;
}
.tl-lowcost {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 3px;
}
.tl-consult-h {
    font-size: 60px!important;
}
.tl-modal {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
    z-index: 2;
    padding: 3rem;
}
.tl-model-bg {
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
}
.tl-modal-content {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secendary-color);
    margin-bottom: 3rem;
}
.tl-ok-btn {
    background: var(--primary-color);
    color: #fff;
    border: 0;
    padding: 0.5rem 2rem;
    font-size: 1.2rem;
    border-radius: 10rem;
    box-shadow: 0 10px 30px #e52f4141;
    cursor: pointer;
}
.tl-bg-blur {
    backdrop-filter: blur(10px);
}
.tl-main-page-modal {
    background: rgb(112 112 112 / 91%);
    border-radius: 0;
    text-align: left;
    padding: 2.5rem;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: flex-start;
    position: relative;
}
.tl-modal-content.tl-main-page-content-modal {
    color: #fff;
    font-weight: 400;
    font-size: 40px;
}
.tl-main-page-btn-modal {
    border-radius: 15px;
    font-size: 30px;
    text-decoration: none;
}
.tl-close-img-modal {
    width: 57.98px;
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    z-index: 5;
    cursor: pointer;
}
.tl-close-img-modal:active {
    filter: brightness(2.5);
}
input.invalid-form {
    border: 1px solid var(--primary-color);
    background: #e52f424f;
    color: #E52F42!important;
}
input.invalid-form::placeholder {
    color: #E52F42!important;
}
.tl-head-4 {
    font-size: 40px;
    line-height: 1.2!important;
    font-weight: 900;
    background: var(--primary-color);
    color: #fff;
    display: inline-block;
    margin: 0;
    padding: 0.5rem;
}
.tl-col-service-center {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
}
.serv-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: 0;
}
.btn-white {
    background: #fff;
    color: var(--primary-color);
}
.btn-red {
    background: var(--primary-color);
    color: #fff;
}
.tl-form-ss {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-evenly;
}
.tl-form-ss input,.tl-form-ss textarea, .tl-form-ss select {
    display: block;
    margin-bottom: 1rem;
    padding: 1.2rem 1.5rem!important;
    width: 100%;
    font-size: 1.1rem;
    font-family: lato;
    padding: 0 1.5rem;
    border: 1px solid #313033;
}
.tl-form-ss p {
    font-weight: 900;
    font-size:1.1rem;
    margin-bottom: 1rem;
}
.tl-ss-g-r {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.tl-ss-g-r input, .tl-ss-g-r label {
    display: inline!important;
    width: auto;
}
.tl-ss-g-r label{
    font-size: 1rem!important;
}
.tl-modal {
    position: relative;
}
.close-btn-ss {
    position: absolute;
    top: 1rem;
    left: 1rem;
    line-height: 0;
    background: none;
    color: var(--primary-color)!important;
    cursor: pointer;
    box-shadow: none;
    width: auto;
    padding: 0;
    transition: 0.3s;
}
.close-btn-ss {
    color: var(--secendary-color)!important;
    transition: 0.3s;
}
.submit-ss-form {
    background: var(--primary-color);
    color: #fff;
    border: 0;
    padding: 0.5rem 2rem;
    font-size: 1.2rem;
    border-radius: 10rem;
    box-shadow: 0 10px 30px #e52f4141;
    cursor: pointer;
}
.tl-footer-head a {
    color: #fff!important;
    text-decoration: none!important;
}
.tl-contact {
    font-size: 1.2rem;
    padding: 0.7rem;
    padding-left: 2.5rem;
    padding-right: 1rem;
}
.tl-active-menu-item , .tl-active-menu-item a ,.tl-active-menu-item li {
    color: var(--primary-color);
}
@media (max-width: 1700px) {
    .tl-accardeon {
        padding: 5rem 5rem 3rem 18rem!important;
    }
}
@media (max-width: 1500px) {
    .tl-num.tl-num-3 {
        top: -0.3rem;
    }
    .tl-accardeon {
        padding: 5rem 5rem 3rem 16rem!important;
    }
    .tl-p-l {
        padding-left: 13;
    }
}

@media (max-width: 1400px) {

    .tl-sales .container-fluid, .tl-logistics .container-fluid {
        padding: 0 5rem;
    }
    .tl-sales-desc {
        font-size: 18px;
        margin-bottom: 1rem !important;
    }
    .tl-desc-sales-bottom-h {
        font-size: 25px;
    }
    ul.tl-desc-sales-bottom {
        font-size: 18px;
    }
    .tl-desc-sales-top {
        font-size: 20px;
    }
    .tl-consult-h {
        font-size: 40px!important;
        font-weight: 900;
    }
    .tl-sales-title.tl-color-logistics-h {
        font-size: 40px;
    }
    .tl-sales-title {
        font-size: 40px;
    }
    .tl-sales-num {
        width: 95px;
        height: 95px;
        font-size: 70px;
    }
    span.accordion-title {
        display: inline-block;
        width: 97%;
        font-size: 35px;
        color: var(--secendary-color);
        font-weight: bold;
    }

    .tl-accardeon {
        background: url(../imgs/mainpage_Atlantic\ Resouse\ font.svg) 1.8% 50%/25% no-repeat, #EEEEEE;
        padding: 5rem 5rem 3rem 11rem!important;
        transition: 0.3s all;
    }

    .tl-num-red-box {
        font-size: 20vw;
    }

    .tl-titr {
        font-size: 3.5rem;
    }

    

    .tl-contact {
        font-size: 1.2rem;
        padding: 0.7rem 1.2rem;
    }
    .arrow {
        margin-left: 7rem;
    }

    .make-it-half {
        width: 40%;
        font-size: 1rem;
    }

    .tl-head-hero {
        padding: 3rem 115px 3rem 3rem;
    }

    .tl-bottom {
        padding: 5rem 115px 3rem 3rem;
    }

    .tl-line {
        right: 115px;
    }

    .tl-hero-box-h {
        font-size: 1rem!important;
    }
    .tl-paragraph {
        font-size: 1.2rem;
    }

    .tl-head-howe {
        font-size: 78px;
        font-weight: 900;
        color: var(--primary-color);
    }

    .tl-head-howe {
        font-size: 3rem;
    }
    .tl-p-l {
        padding-left: 13;
    }

}

@media (max-width: 1300px) {

   
    span.accordion-title {
        font-size: 25px;
    }
    .tl-accardeon {
        padding: 5rem 5rem 3rem 10rem!important;
        transition: 0.3s all;
    }
    .tl-card-box-h {
        font-size: 40px;
    }
    .tl-p-l {
        padding-left: 13;
    }
}

@media (max-width: 1200px) {
    .col-12.col-lg-12.col-xl-8.m-0 {
        margin-bottom: -5px!important;
        border: 0;
        padding: 0;
    }
}

@media (min-width: 1000px) and (max-height: 750px) {
    .tl-bg-hero, .tl-main-hero {
        height: 100vh;
    }
}
@media (min-width: 1000px) and (max-height: 599px) {
    .tl-bg-hero, .tl-main-hero {
        height: 650px;
    }
}
@media (max-width: 1050px) {
    .g-5, .gx-5 {
        --bs-gutter-x: 3rem;
    }
    .tl-card-box-h {
        font-size: 30px;
    }
    .tl-card-box-p {
        font-size: 16px;
    }
    span.accordion-title {
        font-size: 18px;
    }
    .col-12.col-lg-12.col-xl-8.m-0 {
        z-index: 3;
    }
    .col-grid {
        margin-top: -0.5rem;
    }
    .col-querstion textarea, .col-querstion input {
        width: 100%!important;
    }
    .col-querstion {
        display: block;
    }
    .tl-accardeon {
        padding: 5rem 5rem 3rem 8rem!important;
        transition: 0.3s all;
    }
    .col-grid {
        grid-template-areas: "grid grid grid grid";
        grid-template-rows: 100%;
        grid-template-columns: 25%;
        grid-gap: 1px;
        padding-bottom: 0;
    }
    .tl-bg-hero, .tl-main-hero {
        height: calc(90vh - 100px);
    }
}

@media (max-width: 990px) {
    .g-5, .gx-5 {
        --bs-gutter-x: 0;
    }
    .tl-s-post-ev.row {
        margin: 2rem -2rem;
    }
    .tl-post-eve-titr {
        margin-bottom: 3rem;
        margin-top: 0;
    }
    .tl-eve-titr {
        margin: 0 -3rem;
    }
    .tl-evenet-more.tl-post-more {
        margin-top: -2.1rem;
    }
    .tl-eve-con {
        padding: 1rem;
    }
    .tl-num-red-box {
        font-size: 35vw;
        top: 0;
        left: 0;
    }
    .tl-logo-nav {
        width: 120px;
        height: 55px;
    }
    .tl-main-header.sticky-top nav {
        height: 60px;
        transition: 0.3s all;
    }
    .tl-main-header.sticky-top nav .nav-mobile {
        width: 60px;
        transition: 0.3s all;
    }
    .tl-main-header.sticky-top nav .tl-logo-nav {
        width: 100px;
        height: 50px;
        transition: 0.3s all;
    }
    .tl-atlantic-resource {
        position: relative;
        display: block;
        font-size: 11.5vw;
        line-height: 0.9;
        font-weight: 900;
        color: rgb(255, 255, 255);
        margin-bottom: -2px;
        left: -2px;
    }
    .col-12.col-lg-3.p-0.m-0 {
        display: flex;
        align-items: flex-end;
        align-content: flex-end;
        justify-content: space-between;
    }
    .tl-accardeon {
        background: #EEEEEE;
        padding: 5rem 4rem!important;
    }
    .tl-ppding-fix {
        margin: 0!important;
    }
    .tl-red-box {
        width: 35vw;
        height: 35vw!important;
        z-index: 2;
    }
    .tl-why {
        font-size: 5vw;
    }
    span.accordion-title {
        font-size: 23px;
    }
    .accordion button .icon {
        background: url(../imgs/arrow-accardeon.svg) center/85% no-repeat, var(--secendary-color);
        width: 6vw;
        height: 6vw;
    }
    .tl-footer:before {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        bottom: 0;
        top: 0;
        background: var(--secendary-color);
        z-index: -1;
    }
    .tl-footer:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 45%;
        right: 0;
        bottom: 0;
        background: var(--primary-color);
        z-index: -1;
    }
    .tl-footer-col-p-2 {
        padding: 3rem 0;
    }
    .map-responsive iframe{
    
        height:90%;
        width:90%;

    }
}
/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) { 
    
    .tl-post-more button {
        width: 25%;
    }
    .tl-accardeon {
        background: #EEEEEE;
        padding: 5rem 3rem!important;
    }
    .col-grid {
        display: block;
    }
    .col-fixer-m {
        margin-top: -0.2rem;
    }

    .tl-footer-hero {
        position: absolute;
        bottom: .7rem;
    }
    .tl-head-1, .tl-head-2, .tl-head-3 {
        font-size: 28px;
    }

    .tl-bg-hero.slide-0 {
        padding: 1rem;
    }

    .tl-line {
        top: 79%;
        left: 1rem;
        right: 1rem;
        bottom: 1.5rem;
        height: 2px;
        opacity: 1;
    }

    .tl-container {
        padding: 0 1rem;
    }

    /* Header */
    .nav {
        height: 74px;
    }
    .tl-logo-img {
        height: 52px;
    }

    .list-menu {
        display: none;
    }
    .nav-mobile {
        display: block;
    }



    .tl-num {
        font-size: 6rem;
        font-weight: 400;
        left: 1rem;
    }

    .tl-num.tl-num-3 {
        top: -0.1rem;
    }

    .tl-titr {
        font-size: 1.7rem;
        top: 55%;
    }
    .tl-bottom {
        padding: 1rem!important;
        padding-right: 2rem!important;
        display: block;
        font-size: 18px;
        margin-top: 4rem;
    }
    .tl-paragraph {
        padding-top: 6.5rem;
        padding-right: 2rem!important;
        display: block;
        font-size: 18px;
        margin-top: 1rem;
    }
    
    .tl-head-hero {
        padding: 1rem;
        padding-top: 3.1rem;
    }

    .tl-bg-hero {
        height: 465px;
    }

    
    .tl-contact {
        padding: 1rem 2rem;
        font-size: 1.2rem;
        font-weight: 900;
    }

    .arrow {
        width: 35px;
        height: 35px;
        margin-left: 4rem;
    }

    .make-it-half,.tl-paragraph {
        width: 95%;
    }

    .tl-footer-hero {
        left: 1rem;
        right: 0;
    }

    .scroll-icon {
        height: 200px;
    }
    .tl-hero-box {
        height: 70px;
        padding: 1.5rem 1.5rem;
        display: flex;
        flex-direction: row;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
        border: 0;
        border-bottom: 1px solid rgba(255,255,255,0.4);
    }
    .tl-hero-box-h {
        margin: 0;
        font-size: 1rem!important;
    }
    .tl-icon-hero-box {
        width: 7%;
        height: auto;
        margin-right: 3.5rem;
    }
    .tl-hero-box-p {
        font-size: 0.75rem;
    }

    .col-grid-gallery {
        grid-template-columns: 48% 48%;
    }
    .tl-card-box-h {
        font-size: 2.5rem;
    }

    .accordion-item {
        min-height: 8rem;
    }
    .map-responsive iframe{
        height:90%;
        width:90%;

    }
    .tl-modal-content {
        font-size: .5rem;
        font-weight: bold;
        color: var(--secendary-color);
        margin-bottom: 1rem;
    }
    .tl-main-page-modal {
        background: rgb(112 112 112 / 91%);
        border-radius: 0;
        text-align: left;
        padding: 1.5rem;
        box-sizing: border-box;
        display: flex;
        justify-content: flex-start;
        align-content: center;
        align-items: flex-start;
        position: relative;
    }
    .tl-modal-content.tl-main-page-content-modal {
        color: #fff;
        font-weight: 200;
        font-size: 20px;
    }
    .tl-main-page-btn-modal {
        border-radius: 15px;
        font-size: 15px;
        text-decoration: none;
    }
    .tl-close-img-modal {
        width: 44.98px;
      
    }


}
.d-m-block {
        display: none;
    }
@media (max-width: 567px) { 
    
    .tl-ss-modal {
        height: 100vh;
        padding: 2rem 2rem;
    }
    
    .tl-ss-modal input, .tl-ss-modal select, .tl-ss-modal textarea {
        padding: 0.5rem 1rem!important;
    }
    .d-m-block {
        display: block;
    }
    .d-m-none {
        display: none;
    }
    
    .tl-head-4 {
        font-size: 22px;
        line-height: 1.2!important;
        font-weight: 900;
        background: var(--primary-color);
        color: #fff;
        display: inline-block;
        margin: 0;
        padding: 0.3rem;
    }
    .tl-sales-num {
        width: 96px;
        height: 96px;
        font-size: 70px;
    }
    .tl-sales-title {
        font-size: 50px;
        display: flex;
        margin-bottom: 1rem;
    }
    .tl-consult-h .tl-sales-num {
    width: 200px;
    }
    .tl-sales-title.tl-color-logistics-h {
    font-size: 50px;
}
.tl-sales-num {
    margin-right: 1rem;
}
    .tl-p-l {
        padding-left: unset;
    }
    .tl-sales, .tl-logistics {
        padding: 2rem 0;
    }
    .tl-sales .container-fluid, .tl-logistics .container-fluid {
        padding: 0 1rem;
    }
    
    
    .tl-bg-hero, .tl-main-hero {
        background: url(../imgs/landing_0_m.jpg) 50% 50% / cover no-repeat;
    }

    .accordion-content {
        width: 100%;
    }
    .tl-desc-sales-top {
        font-size: 18px;
        margin-bottom: 0rem;
    }
    .tl-sales-num {
        margin-bottom: 0;
    }
    
    .tl-consult-h {
        font-size: 1.8rem!important;
    }

    /* .col-12.col-lg-3.p-0.m-0:before {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        width: 100%;
        height: 110px;
        background: url(../imgs/mobile_Atlantic\ Resourse\ font.svg) 90% 100%/55% no-repeat, #EEEEEE;
    } */

    .accordion .accordion-item {
        padding: 1rem;
    }

    .tl-eve-titr {
        margin: 0;
    }

    .tl-s-post-ev.row {
        margin: 0;
    }
    .tl-post-eve-titr {
        margin-bottom: 1rem;
        margin-top: 0;
    }
    .tl-read-more:before {
        content: '';
        background: url(../imgs/arrow-accardeon.svg) 50% 50%/80% no-repeat,var(--primary-color);
        padding: 0.35rem 1rem;
        margin-right: 0.5rem;
    }
    .tl-read-more {
        padding: 0.35rem 0;
        padding-right: 1rem;
        font-size: 18px;
        color: var(--primary-color);
    }
    .tl-eve-date-img {
        width: 40%;
    }
    .tl-eve-con {
        padding: 1rem;
    }
    h2.tl-head-howe {
        font-size: 26px;
        font-weight: 500;
    }
    .tl-card-box-p {
        font-size: 20px;
    }
    .tl-md-section {
        padding: 1rem 0;
        padding-bottom: 2rem;
    }
    .accordion .accordion-content p {
        font-size: 1rem;
    }
    section.tl-eve-posts-sec .container {
        padding: 0;
    }
    .tl-post-box-ev {
        padding: 1rem;
    }
    h2.tl-post-eve-titr {
        font-size: 18px;
    }
    img.tl-more {
        width: 30%;
    }
    .tl-evenet-more.tl-post-more {
        margin-top: -5.05rem;
    }
    .tl-post-more button {
        width: 40%;
    }
    .tl-post-more button {
        font-size: 1.2rem;
        width: 40%;
    }
    .tl-eventes-contents, .tl-eventes-contents .container {
        padding: 0;
    }
    .tl-eve-titr, .tl-perv{
        font-size: 45px;
        text-align: left;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .tl-event-posts {
        padding: 1rem;
    }
    .tl-event-title {
        font-size: 1.2rem;
    }
    .tl-evenet-date span {
        font-size: 1rem;
    }
    .tl-date-icon {
        width: 5%;
    }
    button.tl-btn-read {
        margin: 4rem auto;
        text-align: center;
        display: block;
    }
    .tl-eve-box {
        margin-bottom: 0;
        padding: 1rem;
    }
    .tl-eve-sub-titr {
        font-size: 1rem;
    }
    .tl-eve-address {
        font-size: 1rem;
    }

    .tl-event-edition {
        width: 100%;
        padding: 0!important;
    }
    .col-querstion textarea, .col-querstion input {
        width: 100%!important;
        height: 33px!important;
        font-size: 18px!important;
        padding: 1rem .5rem!important;
    }
    .col-querstion textarea {
        height: 164px!important;
    }
    input.tl-btn-contact {
        width: 50%!important;
        height: 50px!important;
    }
    .col-querstion {
        display: block;
    }
    .tl-footer-head {
        font-size: 28px;
    }
    .tl-logo-footer {
        display: none;
    }
    .tl-footer-col-p-1 {
        padding: 2rem;
    }
    .tl-footer:after {
        height: 52%;
    }
    .tl-footer-col-p-2 {
        padding: 2rem;
    }
    .col-grid-gallery {
        grid-template-columns: 100%;
    }
    .tl-icon-hero-box {
        width: 15%;
    }
    .tl-card-box-h {
        font-size: 2rem;
    }
    .tl-num.tl-num-3 {
        top: 0;
    }
    .tl-accardeon {
        background: #EEEEEE;
        padding: 5rem 2rem!important;
    }
    .accordion button .icon {
        background: url(../imgs/arrow-accardeon.svg) center/85% no-repeat, var(--secendary-color);
        width: 8vw;
        height: 8vw;
        margin-top: 0.1rem;
    }
    span.accordion-title {
        font-size: 20px;
        padding: 0!important;
        line-height: unset;
        display: inline-block;
        width: 89%;
        margin-top: 0.1rem;
    }
    .contact-head {
        font-size: 34px;
    }
    .tl-contact-info div {
        font-size: 18px;
        font-weight: 200;
        margin-bottom: 1rem;
    }
    .col-12.tl-contact-col {
        display: block;
    }
    .tl-contact-info {
        padding: 0;
    }
    h2.tl-question {
        font-size: 34px;
    }
    .map-responsive iframe{
        height:90%;
        width:90%;

    }
    .tl-modal-content {
        font-size: .5rem;
        font-weight: bold;
        color: var(--secendary-color);
        margin-bottom: 1rem;
    }
    .tl-main-page-modal {
        background: rgb(112 112 112 / 91%);
        border-radius: 0;
        text-align: left;
        padding: 1.5rem;
        box-sizing: border-box;
        display: flex;
        justify-content: flex-start;
        align-content: center;
        align-items: flex-start;
        position: relative;
    }
    .tl-modal-content.tl-main-page-content-modal {
        color: #fff;
        font-weight: 200;
        font-size: 20px;
    }
    .tl-main-page-btn-modal {
        border-radius: 15px;
        font-size: 15px;
        text-decoration: none;
    }
    .tl-close-img-modal {
        width: 44.98px;
      
    }


}

@media (max-width: 360px) {
    .tl-bg-hero, .tl-main-hero {
        height: 460px;
        
    }
    .map-responsive iframe{
        height:70%;
        width:70%;

      
    }
}
@media screen and (max-height: 450px) {
    
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

@media screen and (max-height: 720px) and (max-width: 1280){
    
    .tl-head-1 {
        font-size: 42px;
    }
    .tl-head-3 {
        font-size: 42px;
    }
    .tl-head-4 {
        font-size: 20px;
    }
    .tl-paragraph{
        font-size: 1rem;
    }
}

