@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 300;
    src: local("Open Sans Light"), url("fonts/OpenSans-Light.woff2") format("woff2")
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    src: local("Open Sans"), url("fonts/OpenSans.woff2") format("woff2")
}

body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #666;
    background-color: #f4f4f4
}

p,
q {
    line-height: 1.8
}

h2 {
    font-size: 1.8rem
}

.tm-site-name {
    font-size: 4rem
}

.tm-quote {
    font-size: 1.35rem;
    font-style: italic
}

.container {
    margin-top: 30px
}

.tm-container-inner {
    margin: 0 auto;
    max-width: 1080px
}

.tm-section {
    background-color: white
}

.tm-section,
.tm-section-min-h {
    min-height: 300px
}

.tm-flex-center {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.tm-flex-col {
    flex-direction: column
}

.tm-mb-30 {
    margin-bottom: 30px
}

.tm-align-left {
    align-self: left
}


.tm-align-right {
    align-self: right
}

.btn {
    border-radius: 0;
    text-transform: uppercase;
    color: #9775A5;
    padding: 1px 1px;
    align-items: right;
    font-size: 0.85rem
}

.btn-primary {
    background: #ffffff;
    border-color: #ffffff
}

.btn-secondary {
    background: #730a7c;
    border-color: #730a7c
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #730a7c;
    border-color: #730a7c
}

.btn-primary:focus,
.btn-primary:hover {
    background: #f1e0f3;
    border-color: #f1dcee
}

.tm-bg-color-primary {
    background-color: #9775A5
}

.tm-bg-color-secondary {
    background-color: rgb(110, 0, 153)
}

.tm-bg-color-gray {
    background-color: #666
}

.tm-text-color-primary {
    color: #9775A5
}

.tm-text-color-white {
    color: white
}

.tm-text-color-gray {
    color: #666
}

.tm-font-thin {
    font-weight: 300
}

.tm-max-w-400 {
    max-width: 400px
}

.form-control::placeholder {
    color: #666;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #666
}

.form-control::-ms-input-placeholder {
    color: #666
}

.tm-contact-form select,
.tm-contact-form input {
    color: #666
}

.tm-contact-form textarea {
    height: 205px
}

.tm-pricing-table {
    border: 1px solid #099;
    width: 100%;
    max-width: 340px;
    min-width: 340px;
    max-height: 650px
}

.tm-pricing-header {
    padding: 20px
}

.tm-pricing-body {
    padding-bottom: 15px;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: left
}

.tm-pricing-header-title {
    font-size: 1.6rem
}

.tm-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.75;
    padding: -1px
}

.tm-form-header {
    background: #9775A5;
    padding: 40px 40px 90px
}

.tm-form-footer {
    background: #9775A5;
   padding-top: 15px;
    padding-left: 100px;
    padding-bottom: 15px
}

.tm-footer-info-box {
    max-width: 760px;
    margin: 0 auto
}

.tm-contact-form {
    padding: 68px;
    background: white;
    margin-top: -56px;
    position: relative;
    z-index: 900
}

.form-control {
    color: #666;
    font-size: 1.2rem;
    padding: 12px 20px;
    border-radius: 0
}

.form-control:focus {
    border-color: #9775A5;
    box-shadow: 0 0 0 0.2rem #9933343b
}

select:focus {
    outline-color: #9775A5
}

.tm-contact-form select {
    width: 100%;
    padding: 15px
}

.tm-contact-form input[type="radio"] {
    margin-right: 10px
}

.tm-center {
    width: 100%;
    text-align: center
}

.tm-copyright-text {
    padding: 20px;
    font-size: 1rem
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #4f0c679e;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222;
    z-index: 1000;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

#loader-wrapper .loader-section.section-left {
    left: 0
}

#loader-wrapper .loader-section.section-right {
    right: 0
}

.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000)
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000)
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out
}

.no-js #loader-wrapper {
    display: none
}

.tm-col-md-reverse {
    flex-direction: column-reverse
}

.tm-col-md-reverse>* {
    flex: 1
}

@media(min-width:992px) {
    .tm-col-md-reverse {
        flex-direction: row
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1200px
    }
}

@media (max-width:992px) {
    .tm-md-flex-center {
        display: flex;
        flex-direction: column
    }

    .tm-md-align-center {
        align-self: center
    }

    .tm-pl-l {
        padding: 0 3rem
    }
}

@media (max-width:600px) {
    .tm-contact-form {
        padding: 30px 25px
    }

}
 
    .menucontainer {
        width: 100%;
    }
    
 
    .menu {
        display: flex;
        justify-content: space-between;
        padding: 0;
        margin: 0;
        list-style-type: none;
        width: 100%;
    }
    
    .menu li {
        margin: 0px 0;
    }
    
    .menu a {
        text-decoration: none;
        color: #9775A5;
        font-size: 18px;
    }
    
/* Responsive styles */
@media (max-width: 992px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu li {
        margin: 10px 0;
    }
}
