﻿
html {
    height: 100%;
}

body {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    height: 100%;
    line-height: 1.7;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #646464;
    background-color: #fff;
}

p {
    margin: 0 0 20px 0;
    color: #646464;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    margin: 0 0 20px 0;
    color: #111;
}

h1,
h2 {
    line-height: 1.2;
}

h3,
h4,
h5,
h6 {
    line-height: 1.4;
}

h1 {
    font-size: 36px;
}

@media only screen and (max-width: 1199px) {
    h1 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 30px;
    }
}

h2 {
    font-size: 28px;
}

@media only screen and (max-width: 1199px) {
    h2 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 991px) {
    h2 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 22px;
    }
}

h3 {
    font-size: 22px;
}

@media only screen and (max-width: 991px) {
    h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    h3 {
        font-size: 18px;
    }
}

h4 {
    font-size: 20px;
}

@media only screen and (max-width: 991px) {
    h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    h4 {
        font-size: 16px;
    }
}

h5 {
    font-size: 18px;
}

@media only screen and (max-width: 991px) {
    h5 {
        font-size: 16px;
    }
}
/*=======================================================================
2. Template Default Style
=========================================================================*/
a {
    text-decoration: none;
}

    a:active,
    a:hover,
    a:focus {
        text-decoration: none;
    }

    a:active,
    a:hover,
    a:focus {
        outline: 0 none;
    }

img {
    max-width: 95%;
    height: auto;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.fxt-content-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .fxt-none-767 {
        display: none !important;
    }
}

@media only screen and (max-width: 991px) {
    .fxt-none-991 {
        display: none !important;
    }
}
/*Preloader Styles Start*/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    z-index: 999999;
}

    .preloader .inner {
        width: 99px;
        height: 99px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

        .preloader .inner > div {
            border-radius: 50%;
            position: absolute;
            -webkit-animation-name: circle_rotate;
            animation-name: circle_rotate;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-timing-function: linear cubic-bezier(0.075, 0.82, 0.165, 1);
            animation-timing-function: linear cubic-bezier(0.075, 0.82, 0.165, 1);
            -webkit-animation-duration: 2s;
            animation-duration: 2s;
        }

        .preloader .inner .line1 {
            width: 100%;
            height: 100%;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            border-top: 6px solid #004c6d;
            border-left: 6px solid rgba(116, 14, 175, 0);
            border-right: 6px solid rgba(116, 14, 175, 0);
            border-bottom: 6px solid rgba(116, 14, 175, 0);
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

        .preloader .inner .line2 {
            width: 70%;
            height: 70%;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            border-top: 6px solid #004c6d;
            border-left: 6px solid rgba(151, 38, 216, 0);
            border-right: 6px solid rgba(151, 38, 216, 0);
            border-bottom: 6px solid rgba(151, 38, 216, 0);
            -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
        }

        .preloader .inner .line3 {
            width: 40%;
            height: 40%;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            border-top: 6px solid #015a80;
            border-left: 6px solid rgba(190, 112, 235, 0);
            border-right: 6px solid rgba(190, 112, 235, 0);
            border-bottom: 6px solid rgba(190, 112, 235, 0);
            -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
        }

@-webkit-keyframes circle_rotate {
    50%, 100% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
}

@keyframes circle_rotate {
    50%, 100% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
}
/*Preloader Styles End*/
/*========================================================================
3. Template Animation
=========================================================================*/
.fxt-template-animation {
    position: relative;
    z-index: 1;
    width: 100%;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .fxt-template-animation .fxt-opacity {
        opacity: 0;
    }

    .fxt-template-animation .fxt-transformY-50 {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px);
    }

    .fxt-template-animation .fxt-transformX-L-50 {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px);
    }

    .fxt-template-animation .fxt-transformX-R-50 {
        opacity: 0;
        -webkit-transform: translateX(50px);
        -ms-transform: translateX(50px);
        transform: translateX(50px);
    }

.loaded.fxt-template-animation {
    opacity: 1;
}

    .loaded.fxt-template-animation .fxt-opacity {
        opacity: 1;
        -webkit-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        -o-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .loaded.fxt-template-animation .fxt-transformY-50 {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        -webkit-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        -o-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .loaded.fxt-template-animation .fxt-transformX-L-50 {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -webkit-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        -o-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .loaded.fxt-template-animation .fxt-transformX-R-50 {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -webkit-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        -o-transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
        transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .loaded.fxt-template-animation .fxt-transition-delay-1 {
        -webkit-transition-delay: 0.1s;
        -o-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-2 {
        -webkit-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-3 {
        -webkit-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-4 {
        -webkit-transition-delay: 0.4s;
        -o-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-5 {
        -webkit-transition-delay: 0.5s;
        -o-transition-delay: 0.5s;
        transition-delay: 0.5s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-6 {
        -webkit-transition-delay: 0.6s;
        -o-transition-delay: 0.6s;
        transition-delay: 0.6s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-7 {
        -webkit-transition-delay: 0.7s;
        -o-transition-delay: 0.7s;
        transition-delay: 0.7s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-8 {
        -webkit-transition-delay: 0.8s;
        -o-transition-delay: 0.8s;
        transition-delay: 0.8s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-9 {
        -webkit-transition-delay: 0.9s;
        -o-transition-delay: 0.9s;
        transition-delay: 0.9s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-10 {
        -webkit-transition-delay: 1s;
        -o-transition-delay: 1s;
        transition-delay: 1s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-11 {
        -webkit-transition-delay: 1.1s;
        -o-transition-delay: 1.1s;
        transition-delay: 1.1s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-12 {
        -webkit-transition-delay: 1.2s;
        -o-transition-delay: 1.2s;
        transition-delay: 1.2s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-13 {
        -webkit-transition-delay: 1.3s;
        -o-transition-delay: 1.3s;
        transition-delay: 1.3s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-14 {
        -webkit-transition-delay: 1.4s;
        -o-transition-delay: 1.4s;
        transition-delay: 1.4s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-15 {
        -webkit-transition-delay: 1.5s;
        -o-transition-delay: 1.5s;
        transition-delay: 1.5s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-16 {
        -webkit-transition-delay: 1.6s;
        -o-transition-delay: 1.6s;
        transition-delay: 1.6s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-17 {
        -webkit-transition-delay: 1.7s;
        -o-transition-delay: 1.7s;
        transition-delay: 1.7s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-18 {
        -webkit-transition-delay: 1.8s;
        -o-transition-delay: 1.8s;
        transition-delay: 1.8s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-19 {
        -webkit-transition-delay: 1.9s;
        -o-transition-delay: 1.9s;
        transition-delay: 1.9s;
    }

    .loaded.fxt-template-animation .fxt-transition-delay-20 {
        -webkit-transition-delay: 2s;
        -o-transition-delay: 2s;
        transition-delay: 2s;
    }
/*========================================================================
39. Demo Layout Thirty Six
=========================================================================*/
.fxt-template-layout36 {
    background-color: #ffffff;
    width: 100%;
    min-height: 100vh;
    display: -ms-grid;
    display: grid;
    position: relative;
    z-index: 1;
}

    .fxt-template-layout36 .fxt-content-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

@media only screen and (max-width: 991px) {
    .fxt-template-layout36 .fxt-content-wrap {
        display: block;
    }
}

.fxt-template-layout36 .fxt-heading-content {
    padding: 70px calc(9vw + 70px) 70px 70px;
    position: relative;
    z-index: 1;
    width: 60%;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .fxt-template-layout36 .fxt-heading-content {
        padding: 50px calc(3vw + 30px) 50px 30px;
    }
}

@media only screen and (max-width: 991px) {
    .fxt-template-layout36 .fxt-heading-content {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .fxt-template-layout36 .fxt-heading-content {
        padding: 30px 15px;
    }
}

.fxt-template-layout36 .fxt-heading-content:before {
    content: "";
    position: absolute;
    z-index: -2;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("https://www.su.edu.om/pwg/assets/img/bgfinal.jpg");
    top: 0;
    left: 0;
}

.fxt-template-layout36 .fxt-heading-content:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.73);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.fxt-template-layout36 .fxt-heading-content .fxt-video-background {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

    .fxt-template-layout36 .fxt-heading-content .fxt-video-background .fxt-video {
        height: 100%;
        width: 100%;
        position: absolute;
        z-index: 1;
    }

.fxt-template-layout36 .fxt-heading-content .fxt-inner-wrap {
    display: grid;
    row-gap: 70px;
    max-width: 800px;
    width: 100%;
}

.fxt-template-layout36 .fxt-heading-content .fxt-logo {
    margin-bottom: 30px;
    display: block;
    max-width: 35vw;
}

.fxt-template-layout36 .fxt-heading-content .fxt-main-title {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 52px;
    font-weight: 700;
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .fxt-template-layout36 .fxt-heading-content .fxt-main-title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .fxt-template-layout36 .fxt-heading-content .fxt-main-title {
        font-size: 30px;
    }
}

.fxt-template-layout36 .fxt-heading-content .fxt-description {
    color: #ffffff;
    font-weight: 300;
    width: 100%;
}

.fxt-template-layout36 .fxt-heading-content ul.fxt-socials li {
    display: inline-block;
    margin-right: 4px;
    margin-bottom: 8px;
}

@media only screen and (max-width: 575px) {
    .fxt-template-layout36 .fxt-heading-content ul.fxt-socials li {
        margin-right: 2px;
    }
}

.fxt-template-layout36 .fxt-heading-content ul.fxt-socials li:last-child {
    margin-right: 0;
}

.fxt-template-layout36 .fxt-heading-content ul.fxt-socials li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    height: 40px;
    width: 40px;
    color: #ffffff;
    border-radius: 50%;
    border: 1px solid;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-facebook a {
    background-color: #3b5998;
    border-color: #3b5998;
}

    .fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-facebook a:hover {
        background-color: transparent;
        color: #3b5998;
    }

.fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-twitter a {
    background-color: #00acee;
    border-color: #00acee;
}

    .fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-twitter a:hover {
        background-color: transparent;
        color: #00acee;
    }

.fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-google a {
    background-color: #CC3333;
    border-color: #CC3333;
}

    .fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-google a:hover {
        background-color: transparent;
        color: #CC3333;
    }

.fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-instagram a {
    background-color: #3f729b;
    border-color: #3f729b;
}

    .fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-instagram a:hover {
        background-color: transparent;
        color: #3f729b;
    }

.fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-linkedin a {
    background-color: #0077B5;
    border-color: #0077B5;
}

    .fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-linkedin a:hover {
        background-color: transparent;
        color: #0077B5;
    }

.fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-youtube a {
    background-color: #c4302b;
    border-color: #c4302b;
}

    .fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-youtube a:hover {
        background-color: transparent;
        color: #c4302b;
    }

.fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-pinterest a {
    background-color: #bd081c;
    border-color: #bd081c;
}

    .fxt-template-layout36 .fxt-heading-content ul.fxt-socials li.fxt-pinterest a:hover {
        background-color: transparent;
        color: #bd081c;
    }

.fxt-template-layout36 .fxt-heading-content .fxt-copyright-text {
    color: #ffffff;
    font-size: 15px;
}

.fxt-template-layout36 .fxt-form-content {
    width: 40%;
}

@media only screen and (max-width: 991px) {
    .fxt-template-layout36 .fxt-form-content {
        width: 100%;
    }
}

.fxt-template-layout36 .fxt-form-content h2.fxt-page-title {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 600;
    color: #14133b;
}

    .fxt-template-layout36 .fxt-form-content h2.fxt-page-title span {
        font-size: 14px;
        font-weight: 300;
    }

.fxt-template-layout36 .fxt-form-content h3.fxt-page-title {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #14133b;
}

.fxt-template-layout36 .fxt-form-content .fxt-steps {
    font-size: 20px;
    margin-bottom: 20px;
    color: #14133b;
}

.fxt-template-layout36 .fxt-form-content .progress {
    height: 10px;
    margin-bottom: 20px;
}

.fxt-template-layout36 .fxt-form-content .progress-bar {
    background-color: #1877f2;
}

.fxt-template-layout36 .fxt-form-content .fxt-label {
    color: #14133b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.fxt-template-layout36 .fxt-form-content .fxt-main-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 991px) {
    .fxt-template-layout36 .fxt-form-content .fxt-main-form {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 30px 15px;
    }
}

.fxt-template-layout36 .fxt-form-content .fxt-main-form .fxt-form-step:not(:first-of-type) {
    display: none;
}

.fxt-template-layout36 .fxt-form-content .fxt-inner-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    margin-left: -9vw;
    max-width: 770px;
    width: 100%;
    background-color: #ffffff;
    padding: 70px;
    border-radius: 70px;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.09);
}

@media only screen and (max-width: 1199px) {
    .fxt-template-layout36 .fxt-form-content .fxt-inner-wrap {
        margin-left: -3vw;
        border-radius: 50px;
        padding: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .fxt-template-layout36 .fxt-form-content .fxt-inner-wrap {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        padding: 30px;
        border-radius: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .fxt-template-layout36 .fxt-form-content .fxt-inner-wrap {
        padding: 20px;
        border-radius: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .fxt-template-layout36 .fxt-form-content .fxt-inner-wrap {
        padding: 15px;
        border-radius: 20px;
    }
}

.fxt-template-layout36 .fxt-form-content .form-group {
    margin-bottom: 10px;
}

.fxt-template-layout36 .fxt-form-content .form-control {
    margin-bottom: 30px;
    min-height: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #e7e7e7;
    padding: 10px 15px 10px 30px;
    color: #111;
}

.fxt-template-layout36 .fxt-form-content select,
.fxt-template-layout36 .fxt-form-content input {
    border-radius: 45px;
}

.fxt-template-layout36 .fxt-form-content select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 12px;
    border: 1px solid #e7e7e7;
    margin-right: 5px;
    padding: 1rem;
    padding-right: 5px;
}

.fxt-template-layout36 .fxt-form-content textarea.form-control {
    border-radius: 20px;
    padding: 20px 30px;
}

.fxt-template-layout36 .fxt-form-content input[type=file] {
    padding: 13px 15px 10px 20px;
}

    .fxt-template-layout36 .fxt-form-content input[type=file]::file-selector-button {
        border-radius: 45px;
        border: 0;
        padding: 10px 15px 7px;
        line-height: 1;
    }

.fxt-template-layout36 .fxt-form-content input::-webkit-input-placeholder,
.fxt-template-layout36 .fxt-form-content textarea::-webkit-input-placeholder {
    color: #acacac;
    font-size: 17px;
    font-weight: 400;
}

.fxt-template-layout36 .fxt-form-content input::-moz-placeholder,
.fxt-template-layout36 .fxt-form-content textarea::-moz-placeholder {
    color: #acacac;
    font-size: 17px;
    font-weight: 400;
}

.fxt-template-layout36 .fxt-form-content input:-moz-placeholder,
.fxt-template-layout36 .fxt-form-content textarea:-moz-placeholder {
    color: #acacac;
    font-size: 17px;
    font-weight: 400;
}

.fxt-template-layout36 .fxt-form-content input:-ms-input-placeholder,
.fxt-template-layout36 .fxt-form-content textarea:-ms-input-placeholder {
    color: #acacac;
    font-size: 17px;
    font-weight: 400;
}

.fxt-template-layout36 .fxt-form-content .radio-box.style-2 {
    padding: 6px 20px 6px 6px;
    border: 1px solid;
    border-color: #d2d2d2;
    border-radius: 45px;
    width: fit-content;
}

    .fxt-template-layout36 .fxt-form-content .radio-box.style-2 label {
        padding-left: 38px;
        color: #acacad;
        font-weight: 300;
        margin-bottom: 0;
        font-size: 15px;
        position: relative;
        transition: color 0.4s ease-in-out;
    }

        .fxt-template-layout36 .fxt-form-content .radio-box.style-2 label:before {
            font-family: 'Font Awesome 5 Free';
            content: "\f00c";
            font-weight: 900;
            font-size: 12px;
            color: #13e935;
            position: absolute;
            width: 30px;
            height: 30px;
            top: -3px;
            left: 4px;
            margin-left: -5px;
            border: 1px solid;
            border-color: #dcdcdc;
            border-radius: 50%;
            background-color: #d9fade;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border 0.4s ease-in-out, background-color 0.4s ease-in-out;
        }

        .fxt-template-layout36 .fxt-form-content .radio-box.style-2 label:after {
            font-family: 'Font Awesome 5 Free';
            content: "\f00c";
            font-weight: 900;
            font-size: 12px;
            position: absolute;
            left: 7px;
            top: 2px;
            color: #13e935;
            transition: color 0.4s ease-in-out;
        }

    .fxt-template-layout36 .fxt-form-content .radio-box.style-2 input[type="radio"] {
        display: none;
    }

        .fxt-template-layout36 .fxt-form-content .radio-box.style-2 input[type="radio"]:checked + label {
            color: #14133b;
            transition: color 0.4s ease-in-out;
        }

            .fxt-template-layout36 .fxt-form-content .radio-box.style-2 input[type="radio"]:checked + label::after {
                color: #ffffff;
            }

            .fxt-template-layout36 .fxt-form-content .radio-box.style-2 input[type="radio"]:checked + label::before {
                background-color: #13e935;
                border-color: #13e935;
            }

.fxt-template-layout36 .fxt-form-content .checkbox {
    padding-left: 5px;
    margin-right: 30px;
    margin-bottom: 30px;
}

    .fxt-template-layout36 .fxt-form-content .checkbox label {
        padding-left: 20px;
        color: #a4a4a4;
        margin-bottom: 0;
        font-size: 15px;
        position: relative;
    }

        .fxt-template-layout36 .fxt-form-content .checkbox label:before {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            top: 2px;
            left: 0;
            margin-left: -5px;
            border: 1px solid;
            border-color: #dcdcdc;
            border-radius: 50%;
            background-color: #fff;
            transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
        }

        .fxt-template-layout36 .fxt-form-content .checkbox label:after {
            position: absolute;
            margin-left: -20px;
            padding-left: 3px;
            font-size: 10px;
            color: #555555;
        }

    .fxt-template-layout36 .fxt-form-content .checkbox input[type="checkbox"] {
        display: none;
    }

        .fxt-template-layout36 .fxt-form-content .checkbox input[type="checkbox"]:checked + label::after {
            font-family: 'Font Awesome 5 Free';
            content: "\f00c";
            font-weight: 900;
            color: #ffffff;
            left: 17px;
            top: 4px;
            font-size: 10px;
        }

        .fxt-template-layout36 .fxt-form-content .checkbox input[type="checkbox"]:checked + label::before {
            background-color: #13e935;
            border-color: #13e935;
        }

.fxt-template-layout36 .fxt-form-content .fxt-btn-fill {
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    box-shadow: none;
    outline: none;
    border: 1px solid;
    border-color: #1f6f93;
    color: #fff;
    border-radius: 45px;
    background-color: #004c6d;
    padding: 9px 40px;
    transition: all 0.3s ease-in-out;
}

    .fxt-template-layout36 .fxt-form-content .fxt-btn-fill:hover {
        background-color: #1f6f93;
        border-color: #0f63d1;
    }

    .fxt-template-layout36 .fxt-form-content .fxt-btn-fill:focus {
        outline: none;
    }

.fxt-template-layout36.fxt-template-animation .fxt-heading-content:before {
    opacity: 0;
    visibility: hidden;
}

.fxt-template-layout36.loaded.fxt-template-animation .fxt-heading-content:before {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 1.5s ease-in-out;
    -o-transition: opacity 1.5s ease-in-out;
    transition: opacity 1.5s ease-in-out;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.fxt-template-layout36 .success-page-wrap {
    height: 100vh;
    width: 100%;
    background-color: #3b60fe;
}

    .fxt-template-layout36 .success-page-wrap .icon-success {
        font-size: 56px;
        margin: 0 auto 20px;
        color: #3b60fe;
        background-color: #ffffff;
        height: 100px;
        width: 100px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .fxt-template-layout36 .success-page-wrap .title-success {
        color: #ffffff;
        margin-bottom: 15px;
        font-weight: 500;
        font-size: 40px;
    }

    .fxt-template-layout36 .success-page-wrap .description-success {
        color: #ffffff;
    }

.fxt-template-layout36 .fxt-btn-ghost {
    margin-top: 15px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 45px;
    background-color: transparent;
    padding: 10px 36px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .fxt-template-layout36 .fxt-btn-ghost:hover {
        background-color: #fff;
        border-color: #fff;
        color: #0f63d1;
    }

    .fxt-template-layout36 .fxt-btn-ghost:focus {
        outline: none;
    }

.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 20px; /* Adjust the gap between buttons as needed */
}

.mt-5 {
    margin-top: 20px; /* Adjust margin as needed */
}
