:root{
    --primaryColor: #EE5027;
    --primaryLightColor: #F6E6E3;
    --secondaryColor: #2D2F75;
    --textColor: #848484;
    --grayDarkColor: #D9D9D9;
    --grayLightColor: #F6F6F6;
    --blackColor: #000000;
    --whiteColor: #FFFFFF;
}

@font-face {
    font-family: Inter-Bold;
    src: url(../fonts/inter/Inter-Bold.ttf) format("truetype");
}

@font-face {
    font-family: Inter-SemiBold;
    src: url(../fonts/inter/Inter-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: Inter-Medium;
    src: url(../fonts/inter/Inter-Medium.ttf) format("truetype");
}

@font-face {
    font-family: Inter-Regular;
    src: url(../fonts/inter/Inter-Regular.ttf) format("truetype");
}

* {
    font-family: "Inter-Regular";
}

html {
    scroll-behavior: smooth;
}

p {
    font-size: 14px;
}

a {
    color: var(--whiteColor);
    text-decoration: none;
}

a:hover {
    color: var(--whiteColor);
    text-decoration: none;
}

ul {
    list-style: none;
}

button:focus {
    outline:0;
}

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

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

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

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

#header {
    transition: all 0.5s;
    background: transparent;
    z-index: 997;
    padding: 10px 75px;
    min-height: 100px;
    color: var(--whiteColor);
}

#header.header-scrolled {
    background: linear-gradient(145deg, var(--primaryColor), var(--secondaryColor));
    color: var(--whiteColor);
}

#header .logo {
    font-size: 22px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.5px;
}

#header .logo img {
    max-height: 70px;
}

.small_header_left {
    justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.small_header_right {
    justify-content: flex-end;
}

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    padding: 25px 20px;
    position: relative;
}

.nav-menu a {
    display: block;
    position: relative;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 700;
    font-family: Inter-Bold;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    text-decoration: underline;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 20px;
    top: 30px;
    z-index: 999;
    border: 0;
    background: none;
    font-size: 32px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: var(--whiteColor);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 9999;
    overflow-y: auto;
    background: linear-gradient(145deg, var(--primaryColor), var(--secondaryColor));
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    padding: 10px;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: var(--whiteColor);
    padding: 10px 20px;
    outline: none;
    font-weight: 700;
    font-family: Inter-Bold;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: var(--whiteColor);
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(10, 38, 58, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: var(--whiteColor);
}

.hideme {
    display: none !important;
}

section {
    position: relative;
    padding: 80px;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: Inter-Bold;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--blackColor);
}

.section-title p {
    color: var(--textColor);
    font-size: 16px;
    max-width: 550px;
    margin: 0px auto;
}

#footer {
    background: linear-gradient(145deg, var(--primaryColor), var(--secondaryColor));
    color: var(--whiteColor);
}

#footer .footer_desc {
    padding: 50px 0px;
    border-bottom: 1px solid var(--grayLightColor);
}

#footer .footer_desc h3 {
    color: var(--whiteColor);
    margin-bottom: 30px;
    font-weight: 700;
    font-family: Inter-Bold;
    font-size: 24px;
}

#footer .footer_desc ul {
    padding: 0px;
    list-style: disc;
}

#footer .footer_desc ul  li {
    margin-bottom: 10px;
    list-style: none;
}

#footer .footer_desc ul  li a {
    color: var(--whiteColor);
    font-size: 16px;
}

#footer .footer_desc ul  li a:hover {
    text-decoration: underline;
}

#footer .footer_desc ul  li i {
    margin-right: 10px;
    color: var(--whiteColor);
    font-size: 28px;
}

.footer_desc img {
    height: 160px;
    width: auto;
    margin-bottom: 50px;
}

#footer .footer_social ul {
    padding: 0px;
    list-style: none;
    margin-bottom: 0px;
}

#footer .footer_social ul  li {
    display: inline;
    margin: 5px;
}


#footer ul  li img {
    height: auto;
    margin-bottom: 0px;
}

.copyright {
    text-align: center;
}

.copyright p {
    color: var(--whiteColor);
    padding: 20px;
    margin: 0px;
    font-size: 16px;
}

.copyright p span {
    color: var(--whiteColor);
    font-weight: 700;
    font-family: Inter-Bold;
}

.home {
    background-image: url(../images/homebg.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 870px;
    padding: 0px;
}

.home .hometext {
    width: 40%;
    position: absolute;
    left: 5%;
    top: 50%;
    -webkit-transform: translate(5%, -50%);
    transform: translate(5%, -50%);
}

.home .hometext h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: Inter-Bold;
    color: var(--whiteColor);
    margin-bottom: 30px;
}

.home .hometext p {
    font-size: 20px;
    color: var(--whiteColor);
    margin-bottom: 50px;
}

.home .hometext .btn-download {
    width: 250px;
    height: auto;
    margin-right: 10px;
}

.home .homebanner {
    height: 650px;
    width: auto;
    position: absolute;
    right: 5%;
    bottom: 0px;
}

.features .containtbox {
    background-color: var(--grayDarkColor);
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    min-height: 155px;
}

.features .containtbox img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.features .containtbox p {
    color: var(--textColor);
    font-weight: 600;
    font-family: Inter-SemiBold;
    font-size: 16px;
    margin-bottom: 0px;
    line-height: 18px;
}

.watchvideo {
    background-image: url(../images/bgoverlay.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 100px 0px;
}

.watchvideo:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.watchvideo .watchvideobox {
    z-index: 900;
    position: relative;
}

.watchvideo .watchvideobox img {
    height: 100px;
    width: 100px;
}

.watchvideo .watchvideobox h5 {
    color: var(--whiteColor);
    font-weight: 700;
    font-family: Inter-Bold;
    font-size: 36px;
    margin: 25px 0px 0px 0px;
}

.howitworks {
    background-image: url(../images/bgcircle.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.howitworks .contentbox p {
    text-align: center;
    color: var(--textColor);
    font-weight: 600;
    font-family: Inter-SemiBold;
    font-size: 16px;
    margin-bottom: 25px;
}

.reviews {
    background: linear-gradient(145deg, var(--primaryColor), var(--secondaryColor));
    color: var(--whiteColor);
    padding: 60px 0px 0px 0px;
}

.reviews .containtbox {
    text-align: center;
    margin-bottom: 60px;
}

.reviews .containtbox img {
    width: auto;
    height: 70px;
}

.reviews .containtbox h4 {
    font-weight: 700;
    font-family: Inter-Bold;
    font-size: 36px;
    margin: 25px 0px 0px 0px;
}

.reviews .containtbox p {
    font-size: 16px;
    margin: 0px;
}

.screenshots {
    padding: 80px 0px;
}

.pricing {
    padding-top: 40px;
}

.pricing:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    background-image: url(../images/bgcircle.png);
    background-repeat: no-repeat;
    background-size: 100% 80%;
    transform: rotate(180deg);
}

.pricing .contentbox {
    border-radius: 8px;
    background-color: var(--whiteColor);
}

.pricing .contentbox .box-header {
    background: linear-gradient(145deg, var(--primaryColor), var(--secondaryColor));
    color: var(--whiteColor);
    text-align: center;
    margin: 0px;
    border-radius: 10px 10px 0px 0px;
    height: 80px;
    position: relative;
    padding: 0px 10px;
}

.pricing .contentbox .box-header h3 {
    font-weight: 700;
    font-family: Inter-Bold;
    font-size: 22px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}

.pricing .contentbox .box-body {
    padding: 20px;
    min-height: 400px;
}

.pricing .contentbox .box-body .baseprice {
    color: var(--primaryColor);
    text-decoration: line-through;
    text-align: center;
    font-size: 24px;
    opacity: 0.5;
    margin: 0px;
}

.pricing .contentbox .box-body .planprice {
    color: var(--secondaryColor);
    text-align: center;
    font-weight: 700;
    font-family: Inter-Bold;
    font-size: 54px;
}

.pricing .contentbox .box-body .planprice sup, .pricing .contentbox .box-body .planprice sub {
    color: var(--textColor);
    font-weight: 400;
    font-family: Inter-Regular;
    font-size: 16px;
}

.pricing .contentbox .box-body ul {
    list-style: disc;
    margin-top: 20px;
}

.pricing .contentbox .box-body ul li {
    color: var(--textColor);
    font-size: 16px;
    margin-bottom: 10px;
}

.pricing .contentbox .box-footer {
    text-align: center;
    padding: 20px 40px;
}

.pricing .contentbox .box-footer a {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    font-weight: 700;
    font-family: Inter-Bold;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    width: 100%;
    padding: 10px 0px;
    display: block;
}

.subscribetonewsletter {
    background-image: url(../images/bgoverlay.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 100px 0px;
}

.subscribetonewsletter:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.subscribetonewsletter .containtbox {
    z-index: 900;
    position: relative;
}

.subscribetonewsletter .containtbox h5 {
    color: var(--whiteColor);
    font-weight: 700;
    font-family: Inter-Bold;
    font-size: 36px;
    margin-bottom: 20px;
}

.subscribetonewsletter .containtbox p {
    color: var(--whiteColor);
    font-size: 16px;
    margin: 0px;
}

.subscribetonewsletter .containtbox input {
    padding: 0px 50px;
    height: 60px;
}

.subscribetonewsletter .containtbox input:focus {
    border: none;
    box-shadow: none; 
}

.subscribetonewsletter .containtbox button {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    font-weight: 700;
    font-family: Inter-Bold;
    font-size: 16px;
    border: none;
    border-radius: 0px 5px 5px 0px;
    height: 60px;
    padding: 0px 25px;
}

.contact .contactinfo {
    background: linear-gradient(145deg, var(--primaryColor), var(--secondaryColor));
    padding: 40px;
    border-radius: 8px;
    position: relative;
    height: 100%;
}

.contact .info .detailbox {
    margin-bottom: 40px;
    position: relative;
}

.contact .info img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 33px;
    height: 33px;
    background-color: var(--whiteColor);
    border-radius: 50%;
    text-align: center;
    padding: 7px;
}

.contact .info p {
    padding-left: 50px;
    margin-bottom: 0;
    font-size: 16px;
    color: var(--whiteColor);
}

.contact .info a {
    color: var(--whiteColor);
}

.contactform .form-group input, .contactform .form-group textarea {
    height: 60px;
    background-color: var(--grayLightColor);
    font-size: 18px;
    margin-bottom: 20px;
    border: 1px solid var(--grayDarkColor);
    border-radius: 8px;
    padding: 10px 40px;
}

.contactform .form-group textarea {
    min-height: 150px;
}

.contactform .form-group input:focus, .contactform .form-group textarea:focus {
    box-shadow: none;
}

.contact .contactform button {
    background: linear-gradient(145deg, var(--primaryColor), var(--secondaryColor));
    color: var(--whiteColor);
    font-weight: 700;
    font-family: Inter-Bold;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    padding: 10px 40px;
}

.screenshotSlider .slick-track {
    padding: 50px 0px;
}

.screenshotSlider .item img {
    justify-self: center;
    filter: blur(1px);
    -webkit-filter: blur(1px);
    width: 80%;
}

.screenshotSlider .item.slick-center img {
    filter: blur(0px);
    -webkit-filter: blur(0px);
    transform: scale(1.18);
}

.screenshotSlider:after {
    content: "";
    position: absolute;
    left: 50.5%;
    top: 50%;
    height: 100%;
    width: 24.5%;
    -webkit-transform: translate(-50.5%, -50%);
    transform: translate(-50.5%, -50%);
    background-image: url(../images/mobilebg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    text-align: center;
    pointer-events: none;
}