/**************************************/
/************ General CSS *************/
/**************************************/
body {
    color: #555555;
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
}

a {
    color: #5489be;
    transition: 0.3s;
}

a:hover,
a:active,
a:focus {
    color: #666666;
    outline: none;
    text-decoration: none;
}

p {
    color: #555555;
    font-weight: 400;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #666666;
    margin: 0 0 15px 0;
    padding: 0;
}

h4,
h5,
h6 {
    font-weight: 500;
}



/**************************************/
/********** Back to Top CSS ***********/
/**************************************/
.back-to-top {
    position: fixed;
    display: none;
    background: #111111;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 35px;
    right: 15px;
    bottom: 15px;
    transition: background 0.3s;
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    z-index: 9;
}

.back-to-top i {
    color: #5489be;
}

.back-to-top:hover {
    background: #5489be;
}

.back-to-top:hover i {
    color: #ffffff;
}



/**************************************/
/************* Header CSS *************/
/**************************************/
.header {
    position: relative;
    width: 100%;
    padding: 100px 0 200px 0;
    text-align: center;
    background: linear-gradient( rgba(133, 206, 255, 0.75), rgba(114, 114, 114, 0.95) ), url(/static/img/work.jpg) no-repeat top center;
    background-size: cover;
}

.header::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f6f8fa;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.header .container {
    max-width: 700px;
}

.header h4 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: 3px;
}

.header img {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    align-items:center;
    height:350px;
    width:auto;
}

.header p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
}

.header .btn {
    padding: 15px 35px;
    color: #5489be;
    font-size: 22px;
    font-weight: 500;
    border-radius: 0;
    background: #ffffff;
}

.header .btn:hover {
    background: #5e5e5e;
    color: #ffffff;
}

.header .btn i {
    margin-right: 5px;
}

@media(max-width: 767.98px) {
    .header h1 {
        font-size: 120px;
    }
    
    .header p {
        font-size: 20px;
    }

    .header img {
        height: 250px;
    }
}

@media(max-width: 575.98px) {
    .header h1 {
        font-size: 90px;
    }
    
    .header p {
        font-size: 18px;
    }

    .header img {
        height: 250px;
    }
}



/**************************************/
/******** Section Header CSS **********/
/**************************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.section-header h5 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 3px;
}

.section-header h4 {
    color: #5489be;
    font-size: 35px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 3px;
}

.section-header h2 {
    color: #5489be;
    font-size: 90px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.section-header p {
    font-size: 22px;
    margin: 0;
}

@media(max-width: 767.98px) {
    .section-header h4 {
        font-size: 30px;
    }
    
    .section-header h2 {
        font-size: 70px;
    }
    
    .section-header p {
        font-size: 20px;
    }
}

@media(max-width: 575.98px) {
    .section-header h4 {
        font-size: 25px;
    }
    
    .section-header h2 {
        font-size: 60px;
    }
    
    .section-header p {
        font-size: 18px;
    }
}



/**************************************/
/************* About CSS **************/
/**************************************/
.about {
    position: relative;
    padding: 0 0 200px 0;
    background: #ffffff;
}

.about::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: -1px;
    background: #f6f8fa;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.about .col-md-6 {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    overflow: hidden;
}

.about .about-img img {
    width: 100%;
}

.about .about-content {
    position: relative;
    width: 100%;
    padding: 0 30px 30px 30px;
    background: #f6f8fa;
}

.about .about-content::before {
    position: absolute;
    content: "";
    height: 90px;
    left: 0;
    right: 0;
    top: -89px;
    background: #f6f8fa;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.about .about-content h2 {
    position: relative;
    font-size: 25px;
    font-weight: 700;
    top: -30px;
    z-index: 1;
}

.about .about-content p {
    position: relative;
    font-size: 18px;
    top: -20px;
}

.about .btn {
    position: relative;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    background: #5489be;
    border-radius: 0;
    top: -10px;
}

.about .btn:hover {
    background: #111111;
}



/**************************************/
/************ Services CSS ************/
/**************************************/
.service {
    position: relative;
    background: #dae5f0;
    padding: 0 0 200px 0;
}

.service::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: -1px;
    background: #5489be;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.service .service-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.service .service-header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.service .service-icon {
    position: relative;
    width: 80px;
    height: 100px;
    padding: 27px 0;
    text-align: center;
    background: #5489be;
}

.service .service-icon::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 50px;
    top: 0;
    right: -50px;
    background: #5489be;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 0 0);
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    z-index: 1;
}

.service .service-icon i {
    font-size: 45px;
    color: #ffffff;
    margin-left: 10px;
}

.service .service-title {
    position: relative;
    display: flex;
    align-items: center;
    width: calc(100% - 80px);
    height: 100px;
    padding-left: 45px;
    background: #ffffff;
}

.service .service-title h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-detail {
    position: relative;
    width: 100%;
    padding: 30px;
    background: #ffffff;
}

.service .service-detail p {
    font-size: 18px;
    margin: 0;
}


/**************************************/
/************ Services Extra CSS ************/
/**************************************/
.service-extra {
    position: relative;
    background: #d0dae5;
    padding: 0 0 200px 0;
}

.service-extra::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: -1px;
    background: #dae5f0;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.service-extra .container {
    min-width: 75% !important;
}

.service-extra .service-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.service-extra .service-header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.service-extra .service-icon {
    position: relative;
    width: 80px;
    height: 100px;
    padding: 27px 0;
    text-align: center;
    background: #5489be;
}

.service-extra .service-icon::after {
    position: absolute;
    content: "";
    height: 100px;
    width: 50px;
    top: 0;
    right: -50px;
    background: #5489be;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 0 0);
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    z-index: 1;
}

.service-extra .service-icon i {
    font-size: 45px;
    color: #ffffff;
    margin-left: 10px;
}

.service-extra .service-title {
    position: relative;
    display: flex;
    align-items: center;
    width: calc(100% - 80px);
    height: 100px;
    padding-left: 45px;
    background: #ffffff;
}

.service-extra .service-title h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-extra .service-detail {
    position: relative;
    width: 100%;
    padding: 30px;
    background: #ffffff;
}

.service-extra .service-detail p {
    font-size: 18px;
    margin: 0;
}

.service-extra .details-list {
    padding: 0;
    font-size: 16px;
    list-style: none;
    text-align: left;
}

.service-extra .details-list li:last-child {
    border: none;
}

.service-extra .details-list li i.fa-check {
    color: #5489be;
    margin-right: 8px;
}

.service-extra .details-list li i.fa-times {
    color: #ea4335;
    margin-right: 12px;
}

.service-extra .btn {
    color: #ffffff;
    padding: 10px 20px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    text-align: center !important;
}

.service-extra .features-price-btn {
    margin-top: 10px;
    background: #5489be;
}

.service-extra .features-price-btn:hover {
    background: #353535;
}



/**************************************/
/********* Call To Action CSS *********/
/**************************************/
.call-to-action {
    position: relative;
    padding: 0px 0 200px 0;
    background: #5489be;
}

.call-to-action::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.call-to-action .container {
    max-width: 700px;
}

.call-to-action .section-header h4,
.call-to-action .section-header h2 {
    color: #ffffff;
}

.call-to-action .section-header::before {
    background: #ffffff;
}

.call-to-action .section-header p {
    color: #ffffff;
}

.call-to-action .btn {
    padding: 15px 30px;
    color: #5489be;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffffff;
    border-radius: 0;
    transition: 0.3s;
}

.call-to-action .btn:hover {
    color: #ffffff;
    /* background: #353535; */
    background: #5e5e5e;
}

.call-to-action .btn i {
    margin-right: 5px;
}


/************ Reviews CSS ************/
.reviews {
    position: relative;
    background: #dae5f0;
    padding: 0px 0 200px 0;
}

.reviews::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.review-item {
    display: none;
    opacity: 0;
    transition: all 0.4s ease;
    max-width: 700px;
    margin: 0 auto;
}

.review-item.active {
    display: block;
    opacity: 1;
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-header {
    display: flex;
    align-items: center;
}

.review-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: auto;
    min-height: 100px;

    padding: 25px 0;
    text-align: center;
    background: #5489be;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    position: relative;
}


.review-rating::after {
    content: "";
    position: absolute;
    right: -50px;
    top: 0;
    width: 50px;
    height: auto;
    min-height: 100px;
    background: #5489be;
    clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.review-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 50px;
    background: #fff;
    min-height: 100px;
    height: auto;
    width: 100%;
}

.review-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.review-title span {
    font-size: 14px;
    color: #777;
}

.review-text {
    background: #fff;
    padding: 30px;
    font-size: 17px;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reviews-controls {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.reviews-controls button {
    width: 45px;
    height: 45px;
    border: 2px solid #5489be;
    background: transparent;
    color: #5489be;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.reviews-controls button:hover {
    background: #5489be;
    color: #fff;
}

.reviews-action {
    text-align: center;
    margin-top: 30px;
}

.reviews .btn {
    padding: 15px 30px;
    color: #5489be;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffffff;
    border-radius: 0;
    transition: 0.3s;
}

.reviews .btn:hover {
    color: #ffffff;
    background: #5e5e5e;
}

.reviews .btn i {
    margin-right: 5px;
}


/**************************************/
/************ Portfolio CSS ***********/
/**************************************/
.portfolio {
    position: relative;
    padding: 0 0 200px 0;
    background: #ffffff;
}

.portfolio::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #dae5f0;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img {
    position: relative;
    background: #000000;
    overflow: hidden;
    
}

.portfolio .portfolio-item .portfolio-link {
    position: absolute;
    width: 100%;
    top: -70px;
    padding: 0 15px 15px 0;
    text-align: center;
    background: #ffffff;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-link a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    padding: 4px 0;
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    background: #5489be;
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.portfolio .portfolio-item:hover .portfolio-link {
    top: 0;
}

.portfolio .portfolio-item .portfolio-info {
    position: relative;
    width: 100%;
    padding: 0 15px 30px 15px;
    text-align: center;
    background: #f6f8fa;
}

.portfolio .portfolio-item .portfolio-info::before {
    position: absolute;
    content: "";
    height: 90px;
    left: 0;
    right: 0;
    top: -89px;
    background: #f6f8fa;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.portfolio .portfolio-item .portfolio-info p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
}



/**************************************/
/************* Pricing CSS ************/
/**************************************/
.pricing {
    position: relative;
    background: #f6f8fa;
    padding: 0 0 200px 0;
}

.pricing::after {
    position: absolute;
    content: "";
    height: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d0dae5;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.pricing .price-content {
    position: relative;
    background: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.pricing .price-plan {
    position: relative;
    background: #111111;
    padding: 20px 0 80px 0;
}

.pricing .price-plan::after {
    position: absolute;
    content: "";
    height: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 1;
}

.pricing .price-overlay {
    position: absolute;
    width: 100%;
    top: -70px;
    padding: 15px 0;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #5489be;
    background: #f6f8fa;
    transition: all .3s;
    z-index: 1;
}

.pricing .price-content:hover .price-overlay {
    top: 0;
}

.pricing .price-title {
    display: block;
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pricing .price-title i {
    color: #ffffff;
    font-size: 35px;
    margin-right: 10px;
}

.pricing .price-amount {
    position: relative;
    font-family: 'Arial, Helvetica', sans-serif;
    color: #ffffff;
    font-size: 60px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.pricing .price-amount span {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    text-transform: lowercase;
}

.pricing .price-amount span:first-child {
    position: relative;
    top: -27px;
    left: -5px;
}

.pricing .price-date {
    color: #ffffff;
    font-size: 12px;
    margin-top: 5px;
    text-transform: uppercase;
    margin-bottom:0;
}

.pricing .price-details {
    padding: 0;
    font-size: 16px;
    list-style: none;
    text-align: left;
}

.pricing .price-details li {
    padding: 6px 30px;
    border-bottom: 1px solid #f6f8fa;
}

.pricing .price-details li:last-child {
    border: none;
}

.pricing .price-details li i.fa-check {
    color: #5489be;
    margin-right: 8px;
}

.pricing .price-details li i.fa-times {
    color: #ea4335;
    margin-right: 12px;
}

.pricing .btn {
    color: #ffffff;
    padding: 10px 30px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
}

.pricing .price-btn {
    margin-top: 10px;
    margin-bottom: 30px;
    background: #111111;
    color: #ffffff;
}

.pricing .price-btn:hover {
    background: #5489be;
}

.pricing .features-price-btn {
    background: #5489be;
}

.pricing .features-price-btn:hover {
    background: #353535;
}

.pricing .features-price .price-plan {
    background: #5489be;
}

.pricing .features-price .price-plan p{
    color:#FFFFFF;
}

.pricing .features-price .price-plan .price-amount, 
.pricing .features-price .price-plan .price-amount span {
    color: #ffffff;
}

.pricing .features-price .price-plan .price-title {
    color:#ffffff;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 5px;
}

.new-price {
    color: #ea4335;
    font-weight: bold;
}


/**************************************/
/************* Contact CSS ************/
/**************************************/
.contact {
    position: relative;
    padding: 0 0 90px 0;
    background: #ffffff;
    text-align: center;
}

.contact .contact-inner h2 {
    font-size: 60px;
    margin-bottom: 30px;
    padding-bottom: 60px;
}

.contact .contact-inner h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 8px;
    left: calc(50% - 50px);
    bottom: 60px;
    background: #666666;
}

.contact .contact-inner i {
    display: inline-block;
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    padding: 22px 0;
    text-align: center;
    font-size: 45px;
    color: #ffffff;
    background: #5489be;
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.contact .contact-inner p {
    font-size: 35px;
    font-weight: 500;
}

@media(max-width: 767.98px) {
    .contact .contact-inner h2 {
        font-size: 45px;
    }
    
    .contact .contact-inner i {
        width: 60px;
        height: 60px;
        padding: 12px 0;
        font-size: 35px;
    }
    
    .contact .contact-inner p {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media(max-width: 575.98px) {
    .contact .contact-inner h2 {
        font-size: 30px;
    }
    
    .contact .contact-inner i {
        width: 50px;
        height: 50px;
        padding: 12px 0;
        font-size: 25px;
    }
    
    .contact .contact-inner p {
        font-size: 24px;
        margin-bottom: 30px;
    }
}



/**************************************/
/************* Footer CSS *************/
/**************************************/
.footer {
    position: relative;
    padding: 5px 0 30px 0;
    background: #f6f8fa;
    text-align: center;
}

.footer .social-links {
    padding-top: 30px;
}

.footer .social-links a {
    font-size: 28px;
    display: inline-block;
    background: #ffffff;
    color: #5489be;
    line-height: 1;
    padding: 9px 0;
    margin-right: 4px;
    text-align: center;
    width: 45px;
    height: 45px;
    -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transition: 0.3s;
}

.footer .social-links a:hover {
    background: #b1b1b1;
    color: #5489be;
}

.footer .copyright,
.footer .credit {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

.footer .social-links a {
    margin: 0 5px;
}

.footer .copyright a,
.footer .credit a {
    color: #111111;
    font-weight: 500;
}

.footer .copyright a:hover,
.footer .credit a:hover {
    color: #ffffff;
}



/* ===== MODAL ===== */

.modal{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:2000;
    padding: 20px;
    padding-top: calc(20px + env(safe-area-inset-top));
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.modal.active{
    opacity:1;
    visibility:visible;
}

.modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
    backdrop-filter:blur(4px);
}

.modal-content{
    position:relative;
    background:white;
    width:95%;
    max-width:500px;
    padding:40px;
    border-radius:18px;
    box-shadow:0 30px 60px rgba(0,0,0,.25);
    transform:translateY(30px);
    transition:.3s;
    z-index:2;

    max-height: 90vh;
    overflow-y: auto;

    -webkit-overflow-scrolling: touch;
}

.modal.active .modal-content{
    transform:translateY(0);
}

.modal-close{
    position:absolute;
    right:15px;
    top:15px;
    background:none;
    border:none;
    font-size:26px;
    cursor:pointer;
    color:#888;
}

.modal h2{
    margin-bottom:10px;
}

.modal-subtitle{
    color:#666;
    margin-bottom:25px;
    font-size:14px;
}

/* ===== FORM ===== */

.lead-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:14px;
    margin-bottom:6px;
}

.form-group input,
.form-group select,
.form-group textarea{
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#ff6b00;
    outline:none;
}

.checkbox{
    font-size:13px;
    display:flex;
    gap:8px;
    align-items:flex-start;
}

.btn-primary.full{
    width:100%;
}

.hidden-field{
    display:none;
}

/* MOBILE */

@media(max-width:500px){
    .modal-content{
    padding:28px;
    }
}