@import url('https://fonts.googleapis.com/css?family=Oxanium:400,700|Trade+Winds|Ubuntu:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Odibee+Sans&display=swap');
@import url('https://fonts.googleapis.com/css?family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:400,700&display=swap');
@import url('variables.css');
@import url('animations.css');
@import url('about.css');
@import url('hoverover.css');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    font-family: var(--default-font-family);
    font-size: var(--desktop-font-size);
}

.pointer {
    cursor: pointer;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video fills the header area */
    z-index: -1;
    /* Keeps the video behind the content */
    opacity: 0.8;
    /*trancperancy*/
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    /* Black with 20% opacity */
    z-index: 0;
    /* Sits above the video but behind the content */
}

header {
    height: 100vh;
    background-size: cover;
    background-position: center;
    padding: 1em;
    animation: header 15s ease-in-out infinite;
}

nav {
    overflow: hidden;
    background: transparent;
    padding-left: 1.5em;
    padding-right: 1.5em;
    z-index: 1;
}

nav .a:nth-child(2) {
    margin-left: 25%;
}

nav .a:hover {
    text-decoration: none;
    color: white;
    border-bottom: 2px solid #73e7fd;
}

nav .social {
    margin-left: 5px;
    margin-right: 10px;
    float: right;
    padding: 20px 5px;
    font-size: 20px;
    text-decoration: none;
    color: white;
    transition: 0.2s;
    transform: scale(0);
}

nav img {
    margin: 4px;
    float: left;
    height: 6em;
    animation: img 1s ease-in-out 0s forwards;
}

.bottom {
    position: absolute;
    top: 50%;
    /* Center vertically */
    left: 50%;
    /* Center horizontally */
    transform: translate(-50%, -50%);
    /* Adjust to ensure the center of the element aligns with the screen center */
    text-align: center;
    /* Align text content to the center */
}

.bottom h4 {
    color: var(--primary-color);
    font-family: var(--title-font-family);
    letter-spacing: 5px;
    opacity: 0;
    animation: bottom 1s ease-in-out 0.6s forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    /* Subtle text shadow */
}

.bottom h1 {
    color: white;
    font-family: var(--jos-font-family);
    font-size: 200px;
    font-weight: bold;
    letter-spacing: 1px;
    opacity: 0;
    animation: bottom 1s ease-in-out 0.2s forwards;
    text-shadow: 2px 10px 4px rgba(0, 0, 0, 0.3);
    /* Subtle text shadow */
}

.bottom button {
    border: none;
    background: #73e7fd;
    color: white;
    font-size: 18px;
    padding: 15px 100px;
    opacity: 0;
    animation: inside-out 1s ease-in-out 0.4s forwards;
}

.bottom div {
    width: 88vw;
}

.bottom input {
    float: right;
    border: none;
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    padding: 15px 23px;
    cursor: pointer;
    opacity: 0;
    animation: inside-out 1s ease-in-out 0.4s forwards;
}

.bottom input:focus,
button:focus {
    outline: none;
}

@media (min-width: 1000px) {
    .mobile {
        display: none;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    nav .a:nth-child(2) {
        margin-left: 20%;
    }
}

@media (min-width: 1000px) and (max-width: 1200px) {
    nav .a:nth-child(2) {
        margin-left: 3%;
    }
}

@media (max-width: 500px) {
    .mobile {
        display: none;
    }
    .video-overlay{
        display:none;
    }
    .video{
        display: none;
    }
    nav .a {
        font-family: var(--jos-font-family);
        float: left;
        padding: 10px 0px;
        width: 100%;
        font-size: 16px;
        text-decoration: none;
        color: white;
        text-align: right;
        opacity: 0;
    }

    nav .a:nth-child(2) {
        margin-left: 0%;
    }

    nav .a:nth-child(2) {
        animation: right 1s ease-in-out 0.0s forwards;
    }

    nav .a:nth-child(3) {
        animation: right 1s ease-in-out 0.2s forwards;
    }

    nav .a:nth-child(4) {
        animation: right 1s ease-in-out 0.4s forwards;
    }

    nav .a:nth-child(5) {
        animation: right 1s ease-in-out 0.6s forwards;
    }

    nav .a:nth-child(6) {
        animation: right 1s ease-in-out 0.8s forwards;
    }

    nav .a:nth-child(7) {
        animation: right 1s ease-in-out 1s forwards;
    }

    nav .social {
        display: none;
    }

    header nav img {
        position: absolute;
        float: left;
        top: 1em;
        left: 1em;
    }

    .bottom {
        position: absolute;
        top: 50%;
        /* Center vertically */
        left: 50%;
        /* Center horizontally */
        transform: translate(-50%, -50%);
        /* Adjust to ensure the center of the element aligns with the screen center */
        text-align: center;
        /* Align text content to the center */
    }

    .bottom h4 {
        color: var(--primary-color);
        font-family: var(--title-font-family);
        letter-spacing: 5px;
        opacity: 0;
        animation: bottom 1s ease-in-out 0.6s forwards;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        /* Subtle text shadow */
    }

    .bottom h1 {
        color: white;
        font-family: var(--jos-font-family);
        font-size: 30px;
        font-weight: bold;
        letter-spacing: 1px;
        opacity: 0;
        animation: bottom 1s ease-in-out 0.2s forwards;
        text-shadow: 2px 10px 4px rgba(0, 0, 0, 0.3);
        /* Subtle text shadow */
    }

    .bottom button {
        border: none;
        background: var(--primary-color);
        color: white;
        font-size: 14px;
        padding: 15px 100px;
        opacity: 0;
        animation: inside-out 1s ease-in-out 0.4s forwards;
    }

    .bottom input {
        display: none;
    }
}

@media (min-width: 500px) and (max-width: 1000px) {

    /* header {
        display: none;
    } */
    nav .a {
        font-family: var(--jos-font-family);
        float: left;
        padding: 20px 0px;
        width: 100%;
        font-size: 16px;
        text-decoration: none;
        color: white;
        text-align: right;
        opacity: 0;
    }

    nav .a:nth-child(2) {
        margin-left: 0%;
    }

    nav .a:nth-child(2) {
        animation: right 1s ease-in-out 0.0s forwards;
    }

    nav .a:nth-child(3) {
        animation: right 1s ease-in-out 0.2s forwards;
    }

    nav .a:nth-child(4) {
        animation: right 1s ease-in-out 0.4s forwards;
    }

    nav .a:nth-child(5) {
        animation: right 1s ease-in-out 0.6s forwards;
    }

    nav .a:nth-child(6) {
        animation: right 1s ease-in-out 0.8s forwards;
    }

    nav .a:nth-child(7) {
        animation: right 1s ease-in-out 1s forwards;
    }

    nav .social {
        display: none;
    }

    header nav img {
        position: absolute;
        float: left;
        top: 1em;
        left: 1em;
    }

    .bottom {
        position: absolute;
        top: 50%;
        /* Center vertically */
        left: 50%;
        /* Center horizontally */
        transform: translate(-50%, -50%);
        /* Adjust to ensure the center of the element aligns with the screen center */
        text-align: center;
        /* Align text content to the center */
    }

    .bottom h4 {
        color: var(--primary-color);
        font-family: var(--title-font-family);
        letter-spacing: 5px;
        opacity: 0;
        animation: bottom 1s ease-in-out 0.6s forwards;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        /* Subtle text shadow */
    }

    .bottom h1 {
        color: white;
        font-family: var(--jos-font-family);
        font-size: 45px;
        font-weight: bold;
        letter-spacing: 1px;
        opacity: 0;
        animation: bottom 1s ease-in-out 0.2s forwards;
        text-shadow: 2px 10px 4px rgba(0, 0, 0, 0.3);
        /* Subtle text shadow */
    }

    .bottom button {
        border: none;
        background: var(--primary-color);
        color: white;
        font-size: 30px;
        padding: 15px 100px;
        opacity: 0;
        animation: inside-out 1s ease-in-out 0.4s forwards;
    }

    .bottom input {
        display: none;
    }

    .mobile {
        text-align: center;
        padding: 1em;
    }

    .mobile img {
        height: 10em;
    }
}

@media (min-width: 1000px) {
    nav .a {
        font-family: var(--jos-font-family);
        margin-left: 20px;
        margin-right: 20px;
        float: left;
        padding: 20px 0px 0px 0px;
        font-size: 24px;
        text-decoration: none;
        height: 1.5em;
        color: white;
        border-bottom: 2px solid transparent;
        transform: translateY(-5em);
    }

    nav .a:nth-child(2) {
        animation: navbar 3s ease-in-out 0.0s forwards;
    }

    nav .a:nth-child(3) {
        animation: navbar 3s ease-in-out 0.1s forwards;
    }

    nav .a:nth-child(4) {
        animation: navbar 3s ease-in-out 0.2s forwards;
    }

    nav .a:nth-child(5) {
        animation: navbar 3s ease-in-out 0.3s forwards;
    }

    nav .a:nth-child(6) {
        animation: navbar 3s ease-in-out 0.4s forwards;
    }

    /* addition */
    nav .a:nth-child(7) {
        animation: navbar 3s ease-in-out 0.5s forwards;
    }

    /* --------- */
    /**/
    nav .social:nth-child(7) {
        animation: social 1s ease-in-out 3.0s forwards;
    }

    nav .social:nth-child(8) {
        animation: social 1s ease-in-out 2.8s forwards;
    }

    nav .social:nth-child(9) {
        animation: social 1s ease-in-out 2.6s forwards;
    }

    nav .social:nth-child(10) {
        animation: social 1s ease-in-out 2.4s forwards;
    }

    nav .social:nth-child(11) {
        animation: social 1s ease-in-out 2.2s forwards;
    }
}

@media (max-width:350px) {
    .bottom h1 {
        font-size: 30px;
    }

    .bottom button {
        font-size: 16px;
        padding: 15px 90px;
    }
}

.allrights {
    color: rgba(255, 255, 255, 0.349);
    position: absolute;
    font-size: 18px;
    bottom: 10px;
    right: 10px;
}

.sect-pt4 {
    padding-top: 4rem;
}

.col-sm-12,
.col-md12 {
    position: relative;
    width: 100%;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: bold;
    margin-block-start: 1em;
}

.title-a {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
}

p {
    margin-bottom: 1rem;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 20px;
}

.line-mf {
    width: 40px;
    height: 5px;
    background-color: #73e7fd;
    margin: 0 auto;
}

/* Services Container */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

/* Service Card with Background Image */
.service-card {
    position: relative;
    /* Needed for the pseudo-element */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    /* Subtle shadow for better readability */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 280px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Aligns the text to the bottom of the card */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Pseudo-element for dark overlay */
.service-card::before {
    content: '';
    /* Creates an empty element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Semi-transparent black overlay */
    border-radius: 10px;
    z-index: 1;
    /* Ensures the overlay stays behind the text */
}

/* Title and Description */
.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 3px;
    position: relative;
    /* Enables positioning */
    top: -100px;
    /* Moves the text 10px upwards */
    z-index: 2;
    /* Ensures text stays above the overlay */
}

.service-card p {
    font-size: 1em;
    line-height: 1.5;
    z-index: 2;
    /* Ensures text stays above the overlay */
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    filter: brightness(0.8);
}


.price {
    background-size: 600px;
}

.title-b {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
}

@import url(https://fonts.googleapis.com/css?family=Lato:400,100,100italic,300,300italic,400italic,700italic,700,900italic,900);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900);

body {
    background-color: #eee;
}

#generic_price_table {
    background-color: #f0eded;
}

/*PRICE COLOR CODE START*/

#generic_price_table .generic_content {
    background-color: #fff;
}

#generic_price_table .generic_content:hover {
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
}

#generic_price_table .generic_content .generic_head_price {
    background-color: #f6f6f6;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg {
    border-color: #e4e4e4 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e4e4e4;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head span {
    color: #525252;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign {
    color: #414141;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency {
    color: #414141;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent {
    color: #414141;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .month {
    color: #414141;
}

#generic_price_table .generic_content .generic_feature_list ul li {
    color: #a7a7a7;
}

#generic_price_table .generic_content .generic_feature_list ul li span {
    color: #414141;
}

/*#generic_price_table .generic_content .generic_feature_list ul li:hover {*/

/*    background-color: #E4E4E4;*/

/*    border-left: 5px solid d853f;*/

/*}*/

#generic_price_table .generic_content .generic_price_btn a {
    border: 1px solid #73e7fd;
    color: #73e7fd;
}

#generic_price_table .generic_content.active .generic_head_price .generic_head_content .head_bg,
#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head_bg {
    border-color: #73e7fd rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #73e7fd;
    color: #fff;
}

#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head span,
#generic_price_table .generic_content.active .generic_head_price .generic_head_content .head span {
    color: #fff;
}

#generic_price_table .generic_content:hover .generic_price_btn a,
#generic_price_table .generic_content.active .generic_price_btn a {
    background-color: #73e7fd;
    color: #fff;
}

#generic_price_table {
    margin: 50px 0 50px 0;
    font-family: 'Raleway', sans-serif;
}

.row .table {
    padding: 28px 0;
}

/*PRICE BODY CODE START*/

#generic_price_table .generic_content {
    overflow: hidden;
    position: relative;
    text-align: center;
}

#generic_price_table .generic_content .generic_head_price {
    margin: 0 0 20px 0;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content {
    margin: 0 0 50px 0;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg {
    border-style: solid;
    border-width: 90px 1411px 23px 399px;
    position: absolute;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head {
    padding-top: 40px;
    position: relative;
    z-index: 1;
}

#generic_price_table .generic_content .generic_head_price .generic_head_content .head span {
    font-family: "Raleway", sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag {
    padding: 0 0 20px;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price {
    display: block;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .sign {
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: 28px;
    font-weight: 400;
    vertical-align: middle;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .currency {
    font-family: "Lato", sans-serif;
    font-size: 60px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 60px;
    padding: 0;
    vertical-align: middle;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .price .cent {
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 400;
    vertical-align: bottom;
}

#generic_price_table .generic_content .generic_head_price .generic_price_tag .month {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    vertical-align: bottom;
}

#generic_price_table .generic_content .generic_feature_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#generic_price_table .generic_content .generic_feature_list ul li {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    padding: 15px 0;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table .generic_content .generic_feature_list ul li:hover {
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
}

#generic_price_table .generic_content .generic_feature_list ul li .fa {
    padding: 0 10px;
}

#generic_price_table .generic_content .generic_price_btn {
    margin: 20px 0 32px;
}

#generic_price_table .generic_content .generic_price_btn a {
    border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-border-radius: 50px;
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    outline: medium none;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
}

#generic_price_table .generic_content,
#generic_price_table .generic_content:hover,
#generic_price_table .generic_content .generic_head_price .generic_head_content .head_bg,
#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head_bg,
#generic_price_table .generic_content .generic_head_price .generic_head_content .head h2,
#generic_price_table .generic_content:hover .generic_head_price .generic_head_content .head h2,
#generic_price_table .generic_content .price,
#generic_price_table .generic_content:hover .price,
#generic_price_table .generic_content .generic_price_btn a,
#generic_price_table .generic_content:hover .generic_price_btn a {
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
}

@media (max-width: 320px) {}

@media (max-width: 767px) {
    #generic_price_table .generic_content {
        margin-bottom: 75px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #generic_price_table .col-md-3 {
        float: left;
        width: 50%;
    }

    #generic_price_table .col-md-4 {
        float: left;
        width: 50%;
    }

    #generic_price_table .generic_content {
        margin-bottom: 75px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {}

@media (min-width: 1200px) {}

#generic_price_table_home {
    font-family: 'Raleway', sans-serif;
}

.text-center h1,
.text-center h1 a {
    color: #7885CB;
    font-size: 30px;
    font-weight: 300;
    text-decoration: none;
}

.demo-pic {
    margin: 0 auto;
}

.demo-pic:hover {
    opacity: 0.7;
}

#generic_price_table_home ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: table;
}

#generic_price_table_home li {
    float: left;
}

#generic_price_table_home li+li {
    margin-left: 10px;
    padding-bottom: 10px;
}

#generic_price_table_home li a {
    display: block;
    width: 50px;
    height: 50px;
    font-size: 0px;
}

#generic_price_table_home .blue {
    background: #3498DB;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .emerald {
    background: #73c6fd;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .blue:hover,
#generic_price_table_home .emerald:hover,
#generic_price_table_home .grey:hover,
#generic_price_table_home .midnight:hover,
#generic_price_table_home .orange:hover,
#generic_price_table_home .purple:hover,
#generic_price_table_home .red:hover,
#generic_price_table_home .turquoise:hover {
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    transition: all 0.3s ease-in-out 0s;
}

#generic_price_table_home .divider {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px;
}

#generic_price_table_home .divider span {
    width: 100%;
    display: table;
    height: 2px;
    background: #ddd;
    margin: 50px auto;
    line-height: 2px;
}

#generic_price_table_home .itemname {
    text-align: center;
    font-size: 50px;
    padding: 50px 0 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
    text-decoration: none;
    font-weight: 300;
}

#generic_price_table_home .itemnametext {
    text-align: center;
    font-size: 20px;
    padding-top: 5px;
    text-transform: uppercase;
    display: inline-block;
}

#generic_price_table_home .footer {
    padding: 40px 0;
}

.price-heading {
    text-align: center;
}

.price-heading h1 {
    margin: 0;
    padding: 0 0 50px 0;
    font-weight: bold;
}

.demo-button {
    background-color: #333333;
    color: #ffffff;
    display: table;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    outline-color: -moz-use-text-color;
    outline-style: none;
    outline-width: medium;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

.bottom_btn {
    background-color: #333333;
    color: #ffffff;
    display: table;
    font-size: 28px;
    margin: 60px auto 20px;
    padding: 10px 25px;
    text-align: center;
    text-transform: uppercase;
}

.demo-button:hover {
    background-color: #666;
    color: #FFF;
    text-decoration: none;
}

.bottom_btn:hover {
    background-color: #666;
    color: #FFF;
    text-decoration: none;
}

.container-1 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.form {
    width: 100%;
    max-width: 820px;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form {
    background-color: #73e7fd;
}

form {
    padding: 2.3rem 2.3rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.title-c {
    color: white;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.input-container {
    position: relative;
    margin: 1rem 0;
}

input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

textarea.input {
    border: 2px solid #fafafa;
    border-radius: 25px;
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    resize: none;
    overflow-y: auto;
    background: none;
    outline: 0;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.btn {
    padding: 0.8rem 1.3rem;
    background-color: white;
    font-size: 0.95rem;
    color: #73e7fd;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #73e7fd;
    color: #fff;
    border: 2px solid white;
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.input-container span::before,
.input-container span::after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #73e7fd;
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%
}

.input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact-info .title {
    color: #73e7fd;
}

.text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.information {
    display: flex;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.icon {
    width: 30px;
    margin-right: 0.7rem;
}

.social-media {
    padding: 2rem 0 0 0;
}

.social-media p {
    color: #333;
}

.social-icon {
    display: flex;
    margin-top: 0.5rem;
}

.social-icon a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #73e7fd, #73e7fd);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.social-icon a:hover {
    transform: scale(1.05);
}

.contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #2ac5da;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}

.big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #73e7fd, #1f7186);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
}

.big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #73e7fd);
    position: absolute;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

@media (max-width: 850px) {
    .form {
        grid-template-columns: 1fr;
    }

    .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }

    .text {
        margin: 1rem 0 1.5rem 0;
    }

    .social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .contact-info:before {
        display: none;
    }

    .square,
    .big-circle {
        display: none;
    }

    form,
    .contact-info {
        padding: 1.7rem 1.6rem;
    }

    .text,
    .information,
    .social-media p {
        font-size: 0.8rem;
    }

    .title {
        font-size: 1.15rem;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .icon {
        width: 23px;
    }

    .input {
        padding: 0.45rem 1.2rem;
    }

    .btn {
        padding: 0.45rem 1.2rem;
    }
}