@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&amp;display=swap');
html{
    scroll-behavior: smooth;
}
button{ 
    cursor: pointer;
    transition: 0.5s;
}
h1, h2, h4, h5, h6{
    font-family: 'Archivo Black', sans-serif;
}
body{
    font-family: 'Montserrat', sans-serif;
}
:root {
    --c1: #ee6d1e;
}
.container{
    max-width: 1500px;
}
img {
    width: 100%;
}
a {
    text-decoration: unset;
}
.secondary-heading {
    font-size: 60px;
    color: #101522;
    line-height: 65px;
}
.priamry-heading {
    font-size: 70px;
    line-height: 75px;
    margin-bottom: 20px;
    color: #101522;
}
p {
    font-size: 16px;
    line-height: 27px;
    color: #101522;
    font-weight: 400;
}
button.clr-btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    background: var(--c1);
    transition: all 0.5s;
    position: relative;
    z-index: 1;
    border-color: #bd400b;
    transition: all 0.5s ease;
}
button.clr-btn:hover {
    background: #000000;
    color: white !important;
    transform: translateY(-5px);
    border-color: #000000;
    box-shadow: 0px 28px 21px -22px black;
}
button.clr-btn img {
    width: 14%;
    margin-left: 10px;
    filter: invert(1);
    animation: bntimg 1s linear infinite;
}
button.trns-btn {
    padding: 14px 70px;
    background: transparent;
    border: 2px solid black;
    color: #000;
}
.slick-dots {
    padding-left: 0px;
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.slick-dots li {
    margin: 3px;
}
.slick-dots li button {
    height: 10px;
    width: 10px;
    border: none;
    color: transparent;
    border-radius: 20px;
    transition: 0.5s;
    padding: 0px;
    overflow: hidden;
    outline: none;
}
.slick-dots li.slick-active button {
    width: 40px;
    background: #ee6d1e;
}
@keyframes bntimg{
    0%{
       transform: translateX(0px);
    }
    50%{
       transform: translateX(5px);
    }
    100%{
       transform: translateX(0px);
    }
}
@keyframes bannerimg1 {
    0% {
        left: 0px;
        top: 0px;
    }
    50% {
        left: -30px;
        top: 10px;
    }
    100% {
        left: 0px;
        top: 0px;
    }
}
@keyframes bannerimg2 {
    0% {
        transform: rotate(0deg);
        bottom: 60px;
    }
    50% {
        transform: rotate(-20deg);
        bottom: 30px;
    }
    100% {
        transform: rotate(0deg);
        bottom: 60px;
    }
}
@keyframes arrowbtnb{
    0%{
       transform: translatey(0px);
    }
    50%{
       transform: translatey(-5px);
    }
    100%{
       transform: translatey(0px);
    }
}
@keyframes wave {
    0% {
      margin-left: 0;
    }
    100% {
      margin-left: -1600px;
    }
}
@keyframes port1{
    0%{
       transform: translatey(0px);
    }
    50%{
       transform: translatey(-20px);
    }
    100%{
       transform: translatey(0px);
    }
}
@keyframes port2{
    0%{
     transform: translatey(0px);
    }
    50%{
     transform: translatey(20px);
    }
    100%{
     transform: translatey(0px);
    }
}
@keyframes dash1 {
    0% {
        stroke-dashoffset: -2000;
    }
    20% {
        stroke-dashoffset: 0;
    }
    80% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 2000;
    }
}
@keyframes dash {
    0% {
      stroke-dashoffset: 4200;
    }
    50% {
        stroke-dashoffset: 0;
    }
      100% {
        stroke-dashoffset: -4200;
    }
}
@-webkit-keyframes upDown {
    0% {
        transform: translateX(-20px);
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-20px);
    }
}
@-webkit-keyframes upDowns {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(0);
    }
}