.contact-section {
            padding: 45px 0 60px;
        }

        /* Heading */
        .section-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .heading-line {
            width: 50px;
            height: 3px;
            background: #ed1c24;
            margin-bottom: 60px;
        }

        /* Contact Details */
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 62px;
        }

        .contact-icon {
            width: 110px;
            height: 110px;
            min-width: 110px;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 38px;
        }

        .contact-icon i {
            font-size: 55px;
            color: #ed1c24;
            font-weight: normal;
        }

        .contact-content h5 {
            font-size: 17px;
            font-weight: 700;
            margin: 0 0 25px;
        }

        .contact-content p {
            font-size: 16px;
            line-height: 1.65;
            color: #344054;
            margin: 0;
        }

        /* Form */
        .form-title {
            font-size: 28px;
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .form-heading-line {
            width: 50px;
            height: 3px;
            background: #ed1c24;
            margin-bottom: 62px;
        }

        .contact-form .form-control {
            height: 62px;
            border: 1px solid #ddd;
            border-radius: 0;
            padding: 0 20px;
            font-size: 16px;
            box-shadow: none;
        }

        .contact-form textarea.form-control {
            height: 238px;
            padding-top: 20px;
            resize: none;
        }

        .contact-form .form-control::placeholder {
            color: #999;
        }

        .contact-form .form-control:focus {
            border-color: #ed1c24;
            box-shadow: none;
        }

        .form-row {
            margin-bottom: 25px;
        }

        .contact-note {
            font-size: 17px;
            color: #344054;
            margin-top: 38px;
        }

        .send-btn {
            background: #ed1c24;
            border: none;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            padding: 20px 32px;
            min-width: 190px;
            border-radius: 35px;
            text-transform: uppercase;
            transition: 0.3s;
        }

        .send-btn:hover {
            background: #c9151c;
            color: #fff;
        }

        .button-wrapper {
            text-align: right;
            margin-top: 35px;
        }

        /* Tablet */
        @media (max-width: 991.98px) {

            .contact-section {
                padding: 40px 20px;
            }

            .heading-line {
                margin-bottom: 40px;
            }

            .contact-item {
                margin-bottom: 40px;
            }

            .contact-icon {
                width: 90px;
                height: 90px;
                min-width: 90px;
                margin-right: 25px;
            }

            .contact-icon i {
                font-size: 45px;
            }

            .contact-content p {
                font-size: 16px;
            }

            .form-heading-line {
                margin-bottom: 40px;
            }
        }

        /* Mobile */
        @media (max-width: 767.98px) {

            .contact-section {
                padding: 35px 15px 50px;
            }

            .section-title {
                font-size: 21px;
            }

            .heading-line {
                margin-bottom: 35px;
            }

            .contact-item {
                margin-bottom: 35px;
            }

            .contact-icon {
                width: 75px;
                height: 75px;
                min-width: 75px;
                margin-right: 18px;
            }

            .contact-icon i {
                font-size: 36px;
            } 

            .contact-content h5 {
                font-size: 16px;
                margin-bottom: 12px;
            }

            .contact-content p {
                font-size: 15px;
                line-height: 1.55;
            }

            .form-title {
                font-size: 22px;
                margin-top: 25px;
            }

            .form-heading-line {
                margin-bottom: 35px;
            }

            .contact-form .form-control {
                height: 55px;
            }

            .contact-form textarea.form-control {
                height: 180px;
            }

            .contact-note {
                font-size: 15px;
                margin-top: 25px;
            }

            .button-wrapper {
                text-align: left;
                margin-top: 25px;
            }

            .send-btn {
                width: 100%;
            }
        }