html {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    font-family: "微软雅黑", poppins;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.01rem;
    word-wrap: break-word;
    font-weight: 400;
    background-color: #fff;
    color: #7e7e7e
}

body::-webkit-scrollbar {
    width: 11px
}

body {
    scrollbar-width: thin;
    scrollbar-color: #999 #fff
}

body:-webkit-scrollbar-track {
    background: #fff
}

body::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 6px;
    border: 3px solid #fff
}

span#signname {
    position: relative;
    top: 6px;
    padding-left: 10px;
}

svg {
    fill: currentcolor;
    width: 15px;
    height: 15px
}

img.svg {
    width: 15px;
    height: 15px
}

.svg.custom {
    fill: none
}

::-webkit-input-placeholder {
    color: #7e7e7e
}

:-moz-placeholder {
    color: #7e7e7e;
    opacity: 1
}

::-moz-placeholder {
    color: #7e7e7e;
    opacity: 1
}

:-ms-input-placeholder {
    color: #7e7e7e
}

::-ms-input-placeholder {
    color: #7e7e7e
}

::placeholder {
    color: #7e7e7e
}

.container {
    max-width: 1400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    padding: 0 calc(4% + 20px);
    position: relative;
    clear: both
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.45;
    font-family: "微软雅黑", poppins;
    letter-spacing: 0.15rem;
    color: #1a1a1a
}

h1 {
    font-size: 45px
}

h2 {
    font-size: 36px
}

h3 {
    font-size: 30px
}

h4 {
    font-size: 24px
}

h5 {
    font-size: 20px
}

h6 {
    font-size: 16px
}

.short h3 {
    margin: 0;
}

.sophia_tm_all_wrap {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative
}

.sophia_tm_all_wrap,
.sophia_tm_all_wrap * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.sophia_tm_section {
    width: 100%;
    height: auto;
    clear: both;
    float: left
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: flex
}

#preloader:before,
#preloader:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

#preloader:after {
    left: auto;
    right: 0
}

#preloader .loader_line {
    margin: auto;
    width: 1px;
    height: 250px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    transition: all .8s ease 0s
}

.loader_line:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
    -o-animation: lineheight 1000ms ease-in-out 0s forwards;
    animation: lineheight 1000ms ease-in-out 0s forwards
}

.loader_line:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #999;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1200ms linear 0s infinite;
    -o-animation: lineround 1200ms linear 0s infinite;
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms
}

body.dark #preloader:before,
body.dark #preloader:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #191c26;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s
}

body.dark #preloader:after {
    left: auto;
    right: 0
}

body.dark .loader_line:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #555;
    -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
    -o-animation: lineheight 1000ms ease-in-out 0s forwards;
    animation: lineheight 1000ms ease-in-out 0s forwards
}

body.dark .loader_line:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #ddd;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1200ms linear 0s infinite;
    -o-animation: lineround 1200ms linear 0s infinite;
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms
}

@keyframes lineheight {
    0% {
        height: 0%
    }

    100% {
        height: 100%
    }
}

@keyframes lineround {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%)
    }
}

.preloaded .loader_line:after {
    opacity: 0
}

.preloaded .loader_line {
    opacity: 0;
    height: 100% !important
}

.preloaded:before,
.preloaded:after {
    -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    animation: preloadedzero 300ms ease-in-out 500ms forwards
}

@keyframes preloadedzero {
    0% {
        width: 50%
    }

    100% {
        width: 0%
    }
}

.sophia_tm_mobile_menu {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 10
}

.sophia_tm_mobile_menu .my_trigger {
    line-height: 1;
    position: relative;
    right: -10px
}

.sophia_tm_mobile_menu .mobile_menu_inner {
    width: 100%;
    height: auto;
    float: left;
    clear: both;
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .08)
}

.sophia_tm_mobile_menu .mobile_in {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sophia_tm_mobile_menu .mobile_in .logo img {
    max-width: 100px
}

input#bkcheck:hover {
    cursor: pointer;
}

ul.silentimg {
    position: relative;
    top: calc(70% + 100px);
    width: 100%;
    margin: auto;
    text-align: center;
    color: #ddd;
    height: 650px;
    font-size: 14px;
    line-height: 100%;
    text-shadow: 1px 1px 2px #111;
}

ul.silentimg img {
    margin-bottom: 10px;
    width: 100%;
}

#mediums {
    width: 17%;
    position: absolute;
    top: 0;
    left: 6%;
}

#heavys {
    width: 17%;
    position: absolute;
    top: 0;
    left: 27%;
}

#extremes {
    width: 17%;
    position: absolute;
    top: 0;
    left: 48%;
}

.checke {
    position: relative;
    appearance: none;
    width: 45px;
    content: "中 en";
    height: 22px;
    line-height: 18px;
    vertical-align: middle;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    background: rgba(96, 125, 139, 0.3);
    border-radius: 2px;
    outline: none !important;
}

.checke::before {
    position: absolute;
    left: 0px;
    content: "中";
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 12px;
    padding-top: 2px;
    width: 22px;
    height: 20px;
    border-radius: 2px;
    background: rgb(121, 62, 165);
    transition: all 0.2s linear 0s;
}

.checke:checked {
    background: #607d8b7d;
}

.checke:checked:before {
    left: 23px;
    background: #894db5;
    content: 'EN';
    color: #fff;
    transition: all 0.2s linear;
}

div#commentbk {
    float: right;
    right: 3rem;
    top: 1.5rem;
    position: absolute;
    z-index: 99;
}

ul.cerimg {
    position: relative;
    top: calc(0.5% + 210px);
}

.sophia_tm_title p {
    font-size: 20px;
    letter-spacing: 0.05rem;
    padding: 20px 0px;
}

.list_inner.current {
    margin-bottom: 20px;
}

#cer115 {
    width: 19%;
    position: absolute;
    top: 0;
    left: 6%;
}

#cer230 {
    width: 19%;
    position: absolute;
    top: 0;
    left: 29%;
}

#ceratx3 {
    width: 19%;
    position: absolute;
    top: 0;
    right: 6%;
}

#cernoise {
    width: 19%;
    position: absolute;
    top: 0;
    left: 52%;
}

.cersign {
    /* height: 290px; */
    padding: calc(5% + 150px) 13% 160px;
    text-align: right;
}

span#signname img {
    width: 100px;
    margin-left: 20px;
    height: 75px;
    border-bottom: 1px dashed #666;
    padding-bottom: 6px;
}

sup {
    vertical-align: super;
    font-size: 70%;
    /* color: #aaa; */
    margin-right: 0.1rem;
    margin-left: 0rem;
    letter-spacing: 0rem;
}

supc {
    vertical-align: super;
    font-size: 75%;
    color: #bbb;
    margin-right: 0rem;
    margin-left: 0.3rem;
    letter-spacing: 0rem;
}

rtins {
    /* margin-left: -8px; */
}

csup {
    vertical-align: super;
    font-size: 75%;
    color: #bbbbbb00;
    margin-right: 0.3rem;
    margin-left: 0rem;
    letter-spacing: 0rem;
}

div#cermsg {
    /* position: absolute; */
    width: 100%;
    margin: auto;
    text-align: center;
    color: #ddd;
    height: 650px;
    font-size: 20px;
    line-height: 170%;
    text-shadow: 1px 1px 2px #111;
}

ul.cerimg img {
    margin-bottom: 10px;
    width: 100%;
}

.my_trigger .hamburger-box {
    display: block
}

.my_trigger .hamburger {
    padding: 0
}

.my_trigger .hamburger .hamburger-inner::before,
.my_trigger .hamburger .hamburger-inner::after,
.my_trigger .hamburger .hamburger-inner {
    background-color: #000;
    width: 30px;
    height: 2px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_mobile_menu .dropdown {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .08);
    display: none
}

.sophia_tm_mobile_menu .dropdown .dropdown_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding: 25px 0
}

.sophia_tm_mobile_menu .dropdown .dropdown_inner ul {
    margin: 0;
    list-style-type: none
}

.sophia_tm_mobile_menu .dropdown .dropdown_inner ul li {
    margin: 0;
    float: left;
    width: 100%
}

.sophia_tm_mobile_menu .dropdown .dropdown_inner ul li a {
    text-decoration: none;
    color: #000;
    display: inline-block;
    padding: 4px 0;
    font-family: "微软雅黑", poppins;
    font-weight: 500
}

.sophia_tm_sidebar {
    width: 320px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -320px;
    background-color: #fff;
    box-shadow: 3px 0 5px #f5f5f5;
    z-index: 3;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

body.opened .sophia_tm_sidebar {
    left: 0
}

.sophia_tm_sidebar .logo {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    border-bottom: 1px dashed #cbd3d9;
    padding: 40px
}

.sophia_tm_sidebar .logo img {
    max-width: 150px
}

.sophia_tm_sidebar .menu {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding: 60px 40px 0 0
}

.sophia_tm_sidebar .menu ul {
    margin: 0;
    list-style-type: none
}

.sophia_tm_sidebar .menu ul li {
    margin: 0 0 8px;
    width: 100%;
    float: left
}

.sophia_tm_sidebar .menu ul li:last-child {
    margin-bottom: 0
}

.sophia_tm_sidebar .menu ul li a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    display: block;
    border-radius: 6px;
    padding: 12px 15px;
    position: relative;
    letter-spacing: 0.2rem;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_sidebar .menu ul li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #f9f9fc;
    border-radius: 6px;
    z-index: -1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_sidebar .menu ul li a:hover:before {
    width: 100%
}

.sophia_tm_sidebar .menu ul li .list_inner.current a:before {
    width: 100%
}

.sophia_tm_sidebar .menu ul li .svg {
    width: 19px;
    height: 19px;
    position: relative;
    top: 5px;
    margin-right: 15px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_sidebar .author {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px dashed #cbd3d9
}

.sophia_tm_sidebar .author .inner {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 40px 55px
}

.sophia_tm_sidebar .author .image {
    position: relative;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    display: inline-block
}

.inner .image img {
    width: 100%;
    opacity: 0.7;
}

.sophia_tm_sidebar .author .main {
    position: absolute;
    top: -6px;
    bottom: -4px;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* border-radius: 100% */
}

.sophia_tm_sidebar .short {
    padding-left: 13px
}

.sophia_tm_sidebar .short h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2
}

.sophia_tm_sidebar .short a {
    text-decoration: none;
    color: #7e7e7e;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_mainpart {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-left: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

body.opened .sophia_tm_mainpart {
    padding-left: 320px
}

.sophia_tm_hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    float: left;
    background-color: #f9f9fc
}

.sophia_tm_hero .content {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 48%;
    transform: translateY(-50%);
    z-index: 1;
    padding: 0 20px
}

.sophia_tm_hero .image {
    display: inline-block;
    width: 480px;
    height: 480px;
    border-radius: 100%;
    position: relative;
    opacity: 0;
    visibility: hidden;
    margin-bottom: -10px;
    left: -20px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

body.opened .sophia_tm_hero .image {
    opacity: 1;
    visibility: visible;
    left: 0;
    transition-delay: .4s
}

.sophia_tm_hero .image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 70px 50px 32px 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 100%
}

.sophia_tm_hero .image:before {
    content: "";
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: -10px;
    right: -10px;
    margin: 70px 50px 32px 50px;
    background-color: #e2e2e2;
    border-radius: 100%;
    border: 10px solid #4e286a;
}

.sophia_tm_hero .name {
    font-size: 70px;
    font-weight: 600;
    margin: 10px 0 60px;
    color: #fff;
}

.sophia_tm_hero .extra {
    position: relative;
    opacity: 0;
    /* visibility: hidden; */
    left: -20px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease
}

body.opened .sophia_tm_hero .extra {
    opacity: 1;
    visibility: visible;
    left: 0;
    /* transition-delay: .8s */
}

tll {
    margin: 0 8px;
    color: #7e7e7eba;
}

.sophia_tm_hero .text {
    /* max-width: 380px; */
    margin: 10px auto;
    font-size: 16px;
    text-align: center;
    line-height: 200%;
    opacity: 0;
    /* color: #666; */
}

.datalist {
    position: relative;
    height: 440px;
    /* overflow: auto; */
    /* min-width: 550px; */
    /* padding-top: 200px; */
}

.charttext {
    position: relative;
    height: 40px;
    width: 100%;
    text-align: center;
    margin: auto;
    font-size: 22px;
    padding-top: 180px;
    padding-bottom: 45px;
    color: #cfcfcf;
    letter-spacing: 0.03rem;
}

.retesttips {
    margin-bottom: 20px;
    text-align: left;
    margin-top: -20px;
    margin-left: 2% !important;
}

enzh {
    display: none;
}

.High100 {
    position: relative;
    height: 40px;
    width: 100%;
    margin: auto;
    font-size: 22px;
    padding-top: 120px;
}

.High50 {
    position: relative;
    height: 40px;
    width: 100%;
    margin: auto;
    font-size: 22px;
    padding-top: 60px;
}

.pchart {
    height: 450px;
    margin: auto;
    padding-top: 1px;
    /* width: 92%; */
}

.progress_inner:hover {
    color: #985cc3;
    cursor: pointer;
}

subtitle {
    font-size: 16px;
    color: #777;
    font-weight: 300;
    margin-bottom: 15px;
}

#testplat {
    height: 440px;
}

#testresult {
    height: 900px;
}

#atx3test {
    /* height: 700px; */
}

.sophia_tm_hero .social ul {
    margin: 0;
    list-style-type: none
}

.sophia_tm_hero .social ul li {
    margin: 0;
    display: inline-block
}

.sophia_tm_hero .social ul li a {
    text-decoration: none;
    color: #e7e7e7;
    display: inline-block;
    position: relative;
    line-height: 1;
    padding: 0 20px
}

.sophia_tm_hero .social ul li a:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #e5e5e5;
    top: 0;
    right: 0
}

.sophia_tm_hero .social ul li:last-child a:after {
    display: none
}

.sophia_tm_hero .social ul li .svg {
    width: 19px;
    height: 19px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_about {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-bottom: 150px;
    padding-top: 100px
}

.sophia_tm_about .about_title {
    width: 100%;
    float: left
}

.sophia_tm_about .about_title h3 {
    font-size: 55px;
    letter-spacing: 0.2rem;
    font-weight: 600;
    color: #fff;
    margin-top: 0px;
}

.sophia_tm_about .content {
    width: 100%;
    height: auto;
    clear: both;
    display: flex;
    padding-top: 50px
}

.sophia_tm_about .leftpart {
    width: 55%;
}

.sophia_tm_about .leftpart .info {
    width: 100%;
    float: left;
    margin-bottom: 55px
}

.sophia_tm_about .leftpart .info h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px
}

.sophia_tm_about .leftpart .info h3 span {
    font-weight: 600
}

.sophia_tm_about .leftpart .info p {
    max-width: 90%
}

.sophia_tm_about .my_skills {
    width: 100%;
    float: left
}

.sophia_tm_about .my_skills .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px
}

.sophia_tm_about .wrapper {
    width: 100%;
    /* max-width: 550px; */
    display: flex;
    padding-top: 0px
}

.sophia_tm_about .desc {
    max-width: 90%
}

.sophia_tm_about .wrapper .left {
    width: 50%;
    padding-right: 15px
}

.sophia_tm_about .wrapper .right {
    width: 50%;
    padding-left: 15px;
}

subsupfs {
    font-size: 70%;
}

.dodo_progress {
    width: 100%;
    height: auto;
    clear: both;
    float: left
}

table {
    border-spacing: 0;
}

#samplespec .label {
    /* width: 70px; */
}

#sampleinfo .label {
    /* width: 50px; */
}

.progress_inner {
    width: 100%;
    margin-bottom: 15px;
    border-bottom: 1px dashed #333;
    letter-spacing: 0.5px;
}

.progress_inner:last-child {
    margin-bottom: 0
}

.progress_inner .label {
    font-size: 16px;
    /* font-weight: 600; */
    color: #1a1a1a;
    margin-bottom: 1px;
    display: inline-block;
    line-height: 20px;
}

.progress_inner .background {
    width: 100%;
    min-width: 100%;
    position: relative;
    height: 16px;
    border: 1px solid #7e7e7e;
    padding: 2px
}

.progress_inner .background .bar_in {
    height: 100%;
    background: #34495e;
    width: 0;
    overflow: hidden
}

.progress_inner .background .bar {
    width: 0;
    height: 100%
}

.progress_inner .background .bar.open {
    -webkit-animation: wow 2s cubic-bezier(.165, .84, .44, 1);
    -moz-animation: wow 2s cubic-bezier(.165, .84, .44, 1);
    animation: wow 2s cubic-bezier(.165, .84, .44, 1);
    width: 100%
}

@-webkit-keyframes wow {
    0% {
        width: 0%
    }

    100% {
        width: 100%
    }
}

@-moz-keyframes wow {
    0% {
        width: 0%
    }

    100% {
        width: 100%
    }
}

@keyframes wow {
    0% {
        width: 0%
    }

    100% {
        width: 100%
    }
}

.sophia_tm_about .rightpart {
    width: 45%;
    padding-left: 20px;
}

.sophia_tm_about .rightpart .image {
    position: relative
}

.sophia_tm_about .rightpart .image img {
    position: relative;
    min-width: 100%;
    height: 445px;
    opacity: 0
}

.sophia_tm_about .rightpart .image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 10px
}

.sophia_tm_about .experience {
    position: absolute;
    bottom: -10px;
    right: -25px;
    z-index: 1;
    width: 160px;
    height: 160px;
    border-radius: 100%;
    opacity: 0.85;
    background-color: #34495e;
}

.sophia_tm_about .experience .info {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    width: 100%;
    transform: translate(-50%, -50%);
    padding: 10px
}

.sophia_tm_about .experience .info h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 1px 0;
    color: #fff
}

.sophia_tm_about .experience .info span {
    font-size: 22px;
    font-weight: 500;
    color: #fff
}

.sophia_tm_title {
    width: 100%;
    height: auto;
    clear: both;
    float: left
}

.sophia_tm_title h3 {
    font-size: 55px;
    letter-spacing: 0.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0px;
    color: #fff !important;
}

div#portfolio h3 {
    margin-top: -20px;
}

div#contact h3 {
    margin-top: 0;
}

tr:hover {
    background: #38383850;
    cursor: pointer;
    color: #985cc3;
}

tr,
th,
td {
    vertical-align: middle;
}

.sophia_tm_title p {
    font-size: 22px;
    /* max-width: 600px */
}

.sophia_tm_services {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    background-color: #f9f9fc;
    padding: 100px 0 0px
}

.sophia_tm_services .service_list {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-top: 310px
}

.sophia_tm_services ul {
    margin: 0 0 0 -30px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap
}

.sophia_tm_services ul li {
    margin: 0 0 30px;
    width: 25%;
    padding-left: 30px;
    float: left
}

.sophia_tm_services ul li .list_inner {
    width: 100%;
    height: 100%;
    clear: both;
    float: left;
    position: relative;
    background-color: #fff;
    padding: 50px 100px 45px 50px;
    border-radius: 6px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_services ul li .list_inner:hover {
    background-color: #000
}

.sophia_tm_services ul li .svg {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_services ul li .list_inner:hover .svg {
    color: #fff
}

.sophia_tm_services ul li .list_inner:hover .svg.custom {
    stroke: #fff
}

.sophia_tm_services ul li h3 {
    font-weight: 600;
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 20px
}

.sophia_tm_services ul li .list_inner:hover h3 {
    color: #fff
}

.sophia_tm_services ul li .learn_more {
    text-decoration: none;
    color: #7e7e7e;
    font-size: 18px;
    display: inline-block;
    position: relative;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_services ul li .learn_more span {
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 2px;
    background-color: #7e7e7e;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 14px;
    border-radius: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_services ul li .learn_more span:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 2px;
    background-color: #7e7e7e;
    transform: rotate(45deg);
    right: 0;
    top: -2px;
    border-radius: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_services ul li .learn_more span:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 2px;
    background-color: #7e7e7e;
    transform: rotate(-45deg);
    right: 0;
    bottom: -2px;
    border-radius: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_services ul li .list_inner:hover .learn_more span {
    width: 30px;
    background-color: #fff
}

.sophia_tm_services ul li .list_inner:hover .learn_more span:before,
.sophia_tm_services ul li .list_inner:hover .learn_more span:after {
    background-color: #fff
}

.sophia_tm_services ul li .list_inner:hover .learn_more {
    color: #fff
}

.sophia_tm_full_link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5
}

.sophia_tm_modalbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 15;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_modalbox.opened {
    opacity: 1;
    visibility: visible
}

.sophia_tm_modalbox .container {
    height: 100vh
}

.sophia_tm_modalbox .box_inner {
    position: absolute;
    top: 70px;
    bottom: 70px;
    width: 968px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    margin-top: -20px;
    transition-delay: .3s;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_modalbox.opened .box_inner {
    opacity: 1;
    visibility: visible;
    margin-top: 0
}

.sophia_tm_modalbox .close {
    position: fixed;
    left: 100%;
    top: 0;
    margin-left: 40px;
    z-index: 111111
}

.sophia_tm_modalbox .close a {
    text-decoration: none;
    color: #fff
}

.sophia_tm_modalbox .close .svg {
    width: 50px;
    height: 50px
}

.sophia_tm_modalbox .description_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    padding: 50px;
    overflow-y: scroll
}

.sophia_tm_services .popup_informations {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -11;
    display: none
}

.sophia_tm_modalbox .service_title {
    display: none
}

.sophia_tm_modalbox .description_wrap .svg {
    display: none
}

.sophia_tm_modalbox .description_wrap .learn_more {
    display: none
}

.sophia_tm_modalbox .description_wrap .sophia_tm_full_link {
    display: none
}

.sophia_tm_modalbox .popup_informations {
    width: 100%;
    height: auto;
    clear: both;
    float: left
}

.sophia_tm_modalbox .popup_informations .image {
    position: relative;
    max-height: 450px;
    margin-bottom: 50px;
    overflow: hidden
}

.sophia_tm_modalbox .popup_informations .image img {
    position: relative;
    min-width: 100%;
    opacity: 0
}

.sophia_tm_modalbox .popup_informations .image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.sophia_tm_modalbox .popup_informations h3 {
    color: #0f172a;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 30px
}

.sophia_tm_modalbox .popup_informations p {
    margin-bottom: 30px
}

.sophia_tm_modalbox .in_list {
    width: 100%;
    float: left;
    margin-bottom: 30px;
    padding-left: 20px
}

.sophia_tm_modalbox .in_list ul {
    margin: 0;
    list-style-type: none
}

.sophia_tm_modalbox .in_list ul li {
    margin: 0 0 15px;
    width: 100%;
    float: left;
    position: relative;
    padding-left: 20px
}

.sophia_tm_modalbox .in_list ul li:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: #7e7e7e;
    left: 0;
    top: 13px
}

.sophia_tm_modalbox .in_list ul li:last-child {
    margin-bottom: 0
}

.sophia_tm_modalbox .in_list ul li p {
    margin-bottom: 0
}

.sophia_tm_portfolio {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding: 100px 0 0px
}

.sophia_tm_portfolio .portfolio_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-top: 80px
}

.my_carousel {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative
}

.my_carousel ul {
    margin: 0;
    list-style-type: none
}

.my_carousel ul li {
    margin: 0
}

.my_carousel ul li .list_inner {
    width: 95%;
    height: auto;
    clear: both;
    float: left;
    position: relative
}

.my_carousel ul li .image {
    position: relative;
    width: 85%;
    overflow: hidden;
    border-radius: 10px;
    margin-left: 42px;
}

.my_carousel ul li .image img {
    position: relative;
    opacity: 0;
    min-width: 60%
}

.my_carousel ul li .image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.my_carousel ul li .list_inner:hover .image .main {
    transform: scale(1.1) translateZ(0)
}

.my_carousel ul .details {
    width: 100%;
    float: left;
    padding-top: 10px
}

.my_carousel ul .details h3 a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 700
}

.my_carousel ul .details span a {
    text-decoration: none;
    color: #7e7e7e;
    font-size: 16px;
    font-weight: 400
}

.my_carousel .prev_button,
.my_carousel .next_button {
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 2px solid #7e7e7e;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -43px;
    z-index: 6;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.my_carousel .prev_button:hover,
.my_carousel .next_button:hover {
    border-color: rgba(255, 255, 255, .2);
    background-color: #000
}

.my_carousel .prev_button {
    left: -33px
}

.my_carousel .next_button {
    right: -33px
}

.my_carousel .prev_button span,
.my_carousel .next_button span {
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: #7e7e7e;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.my_carousel .prev_button:hover span,
.my_carousel .next_button:hover span {
    background-color: #fff
}

.my_carousel .prev_button span:before {
    position: absolute;
    content: "";
    width: 22px;
    height: 2px;
    background-color: #7e7e7e;
    left: -2px;
    top: -8px;
    transform: rotate(-45deg);
    border-radius: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.my_carousel .prev_button span:after {
    position: absolute;
    content: "";
    width: 22px;
    height: 2px;
    background-color: #7e7e7e;
    left: -2px;
    bottom: -8px;
    transform: rotate(45deg);
    border-radius: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.my_carousel .next_button span:before {
    position: absolute;
    content: "";
    width: 22px;
    height: 2px;
    background-color: #7e7e7e;
    right: -2px;
    top: -8px;
    transform: rotate(45deg);
    border-radius: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.my_carousel .next_button span:after {
    position: absolute;
    content: "";
    width: 22px;
    height: 2px;
    background-color: #7e7e7e;
    right: -2px;
    bottom: -8px;
    transform: rotate(-45deg);
    border-radius: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.my_carousel .prev_button:hover span:before,
.my_carousel .prev_button:hover span:after,
.my_carousel .next_button:hover span:before,
.my_carousel .next_button:hover span:after {
    background-color: #fff
}

.sophia_tm_testimonials {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    background-color: #f9f9fc;
    padding: 100px 0 90px
}

.sophia_tm_testimonials .list {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-top: 60px
}

.sophia_tm_testimonials .list ul {
    margin: 0;
    list-style-type: none
}

.sophia_tm_testimonials .list ul li {
    margin: 0
}

.sophia_tm_testimonials .list ul li .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    background-color: #fff;
    padding: 50px 50px 60px;
    border-radius: 6px
}

.sophia_tm_testimonials .list .details {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px
}

.sophia_tm_testimonials .list .author {
    display: flex;
    align-items: center
}

.sophia_tm_testimonials .list .image {
    position: relative;
    width: 120px;
    height: 120px
}

.sophia_tm_testimonials .list .image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 6px
}

.sophia_tm_testimonials .list .short {
    padding-left: 30px
}

.sophia_tm_testimonials .list .short h3 {
    font-size: 24px;
    font-weight: 500
}

.sophia_tm_testimonials .list .short span {
    font-size: 18px;
    font-weight: 400
}

.sophia_tm_testimonials .list .text p {
    font-size: 20px
}

.sophia_tm_testimonials .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 33px
}

.sophia_tm_testimonials .owl-theme .owl-dots .owl-dot span {
    margin: 0 10px 0 0;
    width: 14px;
    height: 14px;
    background-color: #7e7e7e;
    border: 1px solid transparent;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_testimonials .owl-theme .owl-dots .owl-dot.active span {
    background-color: transparent;
    border-color: #34495e;
    width: 16px;
    height: 16px
}

.sophia_tm_testimonials .svg {
    width: 80px;
    height: 80px
}

.sophia_tm_news {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding: 60px 0
}

.sophia_tm_news .news_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-top: 60px
}

.sophia_tm_news ul li .news_details {
    width: 100%;
    float: left;
    padding-top: 9px;
    margin-left: 40px;
}

.sophia_tm_news ul li .news_details span {
    font-size: 16px;
    display: inline-block
}

.sophia_tm_news ul li .news_details span a {
    text-decoration: none;
    color: #7e7e7e;
    position: relative;
    display: inline-block;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_news ul li .news_details span a:before {
    position: relative;
    content: ".";
    font-size: 40px;
    top: -3px;
    color: #7e7e7e;
    padding: 0 5px
}

.sophia_tm_news ul li .news_details .title {
    line-height: 1.2
}

.sophia_tm_news ul li .news_details .title a {
    text-decoration: none;
    color: #34495e;
    font-size: 22px;
    font-weight: 600;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_modalbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 15;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_modalbox.opened {
    opacity: 1;
    visibility: visible
}

.sophia_tm_modalbox .container {
    height: 100vh
}

.sophia_tm_modalbox .box_inner {
    position: absolute;
    top: 70px;
    bottom: 70px;
    width: 968px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    margin-top: -20px;
    transition-delay: .3s;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_modalbox.opened .box_inner {
    opacity: 1;
    visibility: visible;
    margin-top: 0
}

.sophia_tm_modalbox .close {
    position: fixed;
    left: 100%;
    top: 0;
    margin-left: 40px;
    z-index: 111111
}

.sophia_tm_modalbox .close a {
    text-decoration: none;
    color: #fff
}

.sophia_tm_modalbox .close .svg {
    width: 50px;
    height: 50px
}

.sophia_tm_modalbox .description_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    float: left;
    overflow: hidden;
    padding: 50px;
    overflow-y: scroll
}

.sophia_tm_modalbox .details {
    width: 100%;
    float: left;
    margin-bottom: 20px
}

.sophia_tm_modalbox .description_wrap .image {
    position: relative;
    max-height: 450px;
    z-index: -1;
    margin-bottom: 45px
}

.sophia_tm_modalbox .description_wrap .image img {
    min-width: 100%;
    opacity: 0
}

.sophia_tm_modalbox .description_wrap .image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.sophia_tm_modalbox .news_details {
    margin-bottom: 20px
}

.sophia_tm_modalbox .news_details .title {
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 9px
}

.sophia_tm_modalbox .news_details .title a {
    text-decoration: none;
    color: #1a1a1a
}

.sophia_tm_modalbox .news_details span {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 5px
}

.sophia_tm_modalbox .news_details span a {
    text-decoration: none;
    color: #7e7e7e;
    position: relative;
    display: inline-block;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_modalbox .news_details span a:before {
    position: relative;
    content: ".";
    font-size: 40px;
    top: -3px;
    color: #7e7e7e;
    padding: 0 5px
}

.sophia_tm_news .main_content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -11;
    display: none
}

body.modal {
    overflow-y: hidden
}

.sophia_tm_modalbox .main_content {
    width: 100%;
    float: left
}

.sophia_tm_modalbox .main_content .descriptions {
    width: 100%;
    float: left;
    margin-bottom: 15px
}

.sophia_tm_modalbox .main_content .descriptions .bigger {
    color: #888;
    font-size: 20px;
    margin-bottom: 31px
}

.sophia_tm_modalbox .main_content .descriptions p {
    margin-bottom: 22px
}

.sophia_tm_modalbox .main_content .quotebox {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px
}

.sophia_tm_modalbox .main_content .quotebox p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 23px;
    border-left: 2px solid #1a1a1a;
    padding-left: 30px;
    color: #1a1a1a
}

.sophia_tm_contact {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    background-color: #f9f9fc;
    padding: 100px 0 50px 0;
}

.sophia_tm_contact .extra_info {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-top: 60px;
    margin-bottom: 30px
}

.sophia_tm_contact .extra_info .wrapper {
    margin: 0 0 0 -30px;
    list-style-type: none
}

.sophia_tm_contact .extra_info .wrapper>li {
    margin: 0 0 30px;
    float: left;
    width: 33.3333%;
    padding-left: 30px
}

.sophia_tm_contact .extra_info .wrapper>li .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    background-color: #fff;
    padding: 33px 35px 41px
}

.sophia_tm_contact .extra_info .in {
    margin: 0;
    list-style-type: none
}

.sophia_tm_contact .extra_info .in li {
    margin: 0 0 8px;
    width: 100%;
    float: left
}

.sophia_tm_contact .extra_info .in li :last-child {
    margin-bottom: 0
}

.sophia_tm_contact .extra_info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px
}

.sophia_tm_contact .extra_info a {
    text-decoration: none;
    color: #7e7e7e
}

.sophia_tm_contact .mainpart {
    width: 100%;
    height: auto;
    clear: both;
    display: flex
}

#retestinfo .left {
    width: 64%;
}

resetpass {
    color: #4CAF50;
    font-weight: 600;
    font-size: 130%;
    letter-spacing: 1px;
}

.spcimg img {
    max-width: 33%;
    max-height: 370px;
    margin-top: -130px;
}

.spcimg {
    text-align: center;
}

.sampleinfo {
    width: 33%;
    right: 0%;
    position: absolute;
    margin: -5px 5% 0 0;
    font-size: 14px;
    color: #777;
    letter-spacing: 1px;
}

.testtips.vpdate {
    padding-bottom: 180px;
    margin-top: -60px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444444;
}

.sophia_tm_contact .mainpart .left {
    width: 100%;
    background-color: #fff;
    padding: 55px 45px 60px;
    margin-right: 30px
}

.sophia_tm_contact .mainpart .left .title {
    width: 100%;
    float: left;
    margin-bottom: 14px;
    letter-spacing: 0.05rem;
}

.sophia_tm_contact .mainpart .left p {
    font-size: 25px;
    line-height: 2
}

.sophia_tm_contact .mainpart .left .title span {
    font-weight: 600;
    color: #1a1a1a
}

.sophia_tm_contact .fields {
    width: 100%;
    height: auto;
    clear: both;
    float: left
}

.sophia_tm_contact .first_row {
    width: 100%;
    margin-bottom: 60px
}

.sophia_tm_contact .second {
    width: 100%;
    margin-bottom: 60px
}

.sophia_tm_contact .third {
    width: 100%;
    margin-bottom: 30px
}

.sophia_tm_contact input {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #cbd3d9;
    background-color: transparent;
    font-size: 16px;
    color: #7e7e7e;
    font-weight: 500;
    font-family: "微软雅黑", poppins;
    padding-left: 0 !important
}

.sophia_tm_contact input:focus {
    outline: none;
    border-bottom-color: #0f172a;
    background-color: transparent
}

.sophia_tm_contact textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #cbd3d9;
    background-color: transparent;
    font-size: 16px;
    color: #7e7e7e;
    font-weight: 500;
    font-family: "微软雅黑", poppins;
    height: 50px;
    resize: none;
    padding-left: 0 !important
}

.sophia_tm_contact textarea:focus {
    outline: none;
    border-bottom-color: #0f172a;
    background-color: transparent
}

.sophia_tm_contact .empty_notice {
    color: #f52225;
    margin-bottom: 7px;
    display: none;
    text-align: left;
    font-weight: 500
}

.sophia_tm_contact .contact_error {
    color: #f52225;
    text-align: left;
    font-weight: 500
}

.sophia_tm_contact .returnmessage {
    color: #3a00ff;
    margin-bottom: 7px;
    text-align: left;
    font-weight: 500
}

.sophia_tm_contact .sophia_tm_button a {
    border-radius: 6px;
    padding: 6px 33px
}

.sophia_tm_button {
    width: 100%;
    float: left;
    clear: both;
    padding: 35px 0 100px 0;
    border-bottom: 1px dashed #666666aa;
    margin: 0px 0 23px 0;
}

.fields.wow.fadeInLeft .short {
    margin: 60px 0 30px 0;
}

.sophia_tm_button a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid #7e7e7e55;
    padding: 8px 35px 7px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_button a:hover {
    color: #fff;
    background-color: #1a1a1a;
    border-color: #1a1a1a
}

.sophia_tm_contact .right {
    width: 50%;
    margin-left: 30px
}

.sophia_tm_contact .right .map {
    min-height: 594px;
    width: 100%;
    filter: grayscale(1)
}

.sophia_tm_intro {
    width: 100%;
    height: auto;
    clear: both;
    float: left
}

.sophia_tm_intro .main_title {
    width: 100%;
    float: left
}

.sophia_tm_intro .main_title img {
    margin-bottom: 15px
}

.sophia_tm_intro .main_title p {
    font-size: 20px
}

.sophia_tm_intro .hero .content p {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    padding: 45px 0
}

.sophia_tm_intro .sophia_tm_button a {
    color: #fff;
    border-color: #1473e6;
    background-color: #1473e6
}

.sophia_tm_intro .mainpart {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-top: 100px
}

.sophia_tm_intro .main_title {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    text-align: center
}

.sophia_tm_intro .main_title span {
    color: #1473e6;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 6px
}

.sophia_tm_intro .main_title h3 {
    font-size: 55px;
    letter-spacing: 0.2rem;
    font-weight: 700
}

.sophia_tm_intro .demo_list {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    margin-top: 100px
}

.sophia_tm_intro .demo_list ul {
    margin: 0 0 0 -140px;
    list-style-type: none
}

.sophia_tm_intro .demo_list ul li {
    margin: 0 0 140px;
    width: 50%;
    float: left;
    padding-left: 140px;
    text-align: center
}

.sophia_tm_intro .demo_list ul li .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative
}

.sophia_tm_intro .demo_list ul li .list_inner img {
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2)
}

.sophia_tm_intro .demo_list ul li .list_inner h3 {
    font-size: 24px;
    font-weight: 500;
    padding-top: 40px
}

.sophia_tm_intro .go_purchase {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    background-color: #000;
    padding: 53px 20px 120px;
    text-align: center
}

.sophia_tm_intro .go_purchase h3 {
    font-size: 55px;
    letter-spacing: 0.2rem;
    font-weight: 600;
    color: #fff;
    margin: 43px
}

.sophia_tm_intro .copyright {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    background-color: #1a1a1a;
    text-align: center;
    padding: 15px 20px
}

.sophia_tm_intro .copyright p {
    font-size: 14px;
    color: #faf9fd
}

.sophia_tm_intro .copyright p a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.sophia_tm_intro .copyright p a:hover {
    color: #1473e6
}


/* ===================================================================
 * # preloader - (_preloader-dots.scss)
 *
 * ------------------------------------------------------------------- */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #191c26;
    z-index: 800;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.no-js #preloader,
.oldie #preloader {
    display: none;
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    padding: 0;
    display: inline-block;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

#loader>div {
    content: "";
    background: #FFFFFF;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

#loader>div:nth-of-type(1) {
    left: 15px;
}

#loader>div:nth-of-type(3) {
    left: -15px;
}


/* dots jump */

.dots-jump>div {
    -webkit-animation: dots-jump 1.2s infinite ease;
    animation: dots-jump 1.2s infinite ease;
    animation-delay: 0.2s;
}

.dots-jump>div:nth-of-type(1) {
    animation-delay: 0.4s;
}

.dots-jump>div:nth-of-type(3) {
    animation-delay: 0s;
}

@-webkit-keyframes dots-jump {
    0% {
        top: 0;
    }

    40% {
        top: -6px;
    }

    80% {
        top: 0;
    }
}

@keyframes dots-jump {
    0% {
        top: 0;
    }

    40% {
        top: -6px;
    }

    80% {
        top: 0;
    }
}


/* dots fade */

.dots-fade>div {
    -webkit-animation: dots-fade 1.6s infinite ease;
    animation: dots-fade 1.6s infinite ease;
    animation-delay: 0.4s;
}

.dots-fade>div:nth-of-type(1) {
    animation-delay: 0.8s;
}

.dots-fade>div:nth-of-type(3) {
    animation-delay: 0s;
}

@-webkit-keyframes dots-fade {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 0.2;
    }

    80% {
        opacity: 1;
    }
}

@keyframes dots-fade {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 0.2;
    }

    80% {
        opacity: 1;
    }
}


/* dots pulse */

.dots-pulse>div {
    -webkit-animation: dots-pulse 1.2s infinite ease;
    animation: dots-pulse 1.2s infinite ease;
    animation-delay: 0.2s;
}

.dots-pulse>div:nth-of-type(1) {
    animation-delay: 0.4s;
}

.dots-pulse>div:nth-of-type(3) {
    animation-delay: 0s;
}

@-webkit-keyframes dots-pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(1.1);
        transform: scale(1.3);
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes dots-pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(1.1);
        transform: scale(1.3);
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


@media only screen and (max-width: 600px) {

    #mediums {
        width: 28%;
        left: 4%;
    }

    #heavys {
        width: 28%;
        left: 36%;
    }

    #extremes {
        width: 28%;
        left: 68%;
    }

    ul.silentimg {

        font-size: 11px;
    }
}


/* add */

ptitle {
    color: #915ab9;
    margin: 0 2px;
}


tll {
    margin: 0 9px;
    color: #888;
    /* font-size: 90%; */
    font-weight: 400;
}

unitll {
    margin: 0 0px 0 4px;
    color: #888;
    font-size: 88%;
    font-weight: 400;
}

subll {
    margin: 0 0px 0 4px;
    color: #888;
    font-size: 82%;
    font-weight: 400;
}

headerll {
    margin: 0 4px;
    color: #222;
    font-size: 80%;
    font-weight: 400;
}

#a_retest .progress_inner {
    margin-bottom: 15px;
    padding: 0px 0 5px;
    margin-left: 2.5%;
    width: 93%;
}

.sophia_tm_title.retestarea {
    margin-bottom: 60px;
}

div#retestinfo {
    /* margin-bottom: 40px; */
    height: 510px;
}

div#service {
    background: center;
}

.imglist {
    opacity: 0;
    text-align: center;
    position: absolute;
}

.imglist img {
    width: 1px;
}


.charttext.silentspeed_title2 {
    padding-bottom: 70px;
}

.testtips {
    margin-left: 4%;
    margin-top: -30px;
    letter-spacing: 1px;
    color: #777;
}

div#smokepic {
    text-align: center;
    margin: auto;
}

#smokepic img {
    width: 90%;
    height: auto;
    border: 4px solid #ffffff;
    border-radius: 4px;
}

/*轮播*/

.slideshow-container {
    max-width: 300px;
    position: relative;
    margin: 20px auto;
}

.imgslide {
    display: none;
    width: 100%;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); */
}

.imgfade {
    animation-name: imgfade;
    animation-duration: 1s;
}

/* 箭头样式 */
.imgarrow {
    cursor: pointer;
    position: absolute;
    top: 49%;
    transform: translateY(-50%);
    padding: 1%;
    color: rgb(255, 255, 255);
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: 0.1s;
    user-select: none;
    z-index: 9;
}

.imgprev {
    left: 10px;
}

.imgnext {
    right: 10px;
}

.imgarrow:hover {
    transform: translateY(-50%) scale(1.2);
}

@keyframes imgfade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}