/*
** Theme Variables - LANDING.CSS + CUSTOM.CSS
*/
:root {
    --primary:    #15C39A;
    --primary-a:  #079070;
    
    --secondary:    #151515;

    --body: #000000;
    --lightgreen: #E8F9F5;
    --gray: #BABABA;

    --formfieldbg: var(--white);
    --formfieldplaceholder: rgba(0,0,0,0.7);
    --formtextcolor: var(--body);
    --formfieldborder: #AFAFAF;

    --siteradius: 12px;

    --white: #ffffff;
    --black: #000000;

    --containerw: 1210px;

    scroll-behavior: unset;
    scroll-padding-top: 100px;
}

::selection {
    color:#ffffff;
    background:#15C39A;
}

/*
** Fonts  - LANDING.CSS + CUSTOM.CSS
**
** Inter:            Regular, Medium, SemiBold, Bold
** Poppins:          Regular, Medium, SemiBold
** Satoshi:          Regular, Medium, Bold
** Source Serif Pro: Regular, SemiBold
*/

@font-face {
    font-family: 'Inter Regular';
    src: url('../woff2/inter-regular.woff2') format('woff2'),
        url('../woff/inter-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Medium';
    src: url('../woff2/inter-medium.woff2') format('woff2'),
        url('../woff/inter-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter SemiBold';
    src: url('../woff2/inter-semibold.woff2') format('woff2'),
        url('../woff/inter-semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Bold';
    src: url('../woff2/inter-bold.woff2') format('woff2'),
        url('../woff/inter-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins Regular';
    src:url('../woff2/poppins-regular.woff2') format('woff2'),
        url('../woff/poppins-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins Medium';
    src:url('../woff2/poppins-medium.woff2') format('woff2'),
        url('../woff/poppins-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins SemiBold';
    src:url('../woff2/poppins-semibold.woff2') format('woff2'),
        url('../woff/poppins-semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi Regular';
    src: url('../woff2/satoshi-regular.woff2') format('woff2'),
        url('../woff/satoshi-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi Medium';
    src: url('../woff2/satoshi-medium.woff2') format('woff2'),
        url('../woff/satoshi-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi Bold';
    src: url('../woff2/satoshi-bold.woff2') format('woff2'),
        url('../woff/satoshi-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Source Serif Pro';
    src: url('../woff2/sourceserifpro-regular.woff2') format('woff2'),
        url('../woff/sourceserifpro-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Source Serif Pro SB';
    src: url('../woff2/sourceserifpro-semibold.woff2') format('woff2'),
        url('../woff/sourceserifpro-semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*
** Font Icons - CUSTOM.CSS
*/
@font-face {
    font-family: 'icomoon';
    src:url('../eot/icomoon7aff.eot');
    src:url('../eot/icomoon7aff.eot#iefix') format('embedded-opentype'),
        url('../ttf/icomoon7aff.ttf') format('truetype'),
        url('../woff/icomoon7aff.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
  
[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-angle-arrow:before {
    content: "\e905";
}
.icon-email-svg-icon:before {
    content: "\e904";
}
.icon-facebook-icon:before {
    content: "\e900";
}
.icon-twitter-icon:before {
    content: "\e901";
}
.icon-linkedin-icon:before {
    content: "\e902";
}
.icon-instagram-icon:before {
    content: "\e903";
}


/*
** Custom Reset - LANDING.CSS
*/
img { max-width: 100%; height: auto; }
a, span, i, label { display: inline-block; }
a { color: var(--primary); text-decoration: none; transition: 0.3s ease-in-out; }
a:hover { color: var(--primary-a); }
a:focus { outline: none; }
strong, b { font-family: 'switzer-bd', sans-serif; font-weight: 700; }

p:last-child,
ul:last-child,
ol:last-child,
li:last-child {
  margin-bottom: 0;
}

button,
button:focus {
  outline: 0;
  box-shadow: none;
}

input:focus {
    outline: none;
    box-shadow: none;
}

li { margin-bottom: 10px; }

/*
** Globals - LANDING.CSS + CUSTOM.CSS
*/
body {
    font-family: 'Satoshi Regular', sans-serif;
    font-size: 20px;
    line-height: 30px;
    color: var(--body);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Source Serif Pro', serif;
    font-weight: normal;
    font-style: normal;
    letter-spacing: -0.3px;
    color:#000000;
}

/*-- Typo --*/
h1,.h1{ font-size: 64px; line-height: 1.06; margin-bottom: 20px; }
h2,.h2{ font-size: 56px; line-height: 1.16; margin-bottom: 20px; }
h3,.h3{ font-size:40px; line-height: 1.38; margin-bottom: 12px; }
h4,.h4{ font-size:32px; line-height: 1.46; margin-bottom: 12px; }
h5,.h5{ font-size:24px; line-height: 1.5; margin-bottom: 12px; }
h6,.h6{ font-size:20px; line-height: 1.5; margin-bottom: 12px; }

/* Font Sizes */
.font-24 { font-size: 24px; line-height: 1.26; }
.font-22 { font-size: 22px; line-height: 32px; }
.font-20 { font-size: 20px; line-height: 30px; }
.font-18 { font-size: 18px; line-height: 28px; }
.font-16 { font-size: 16px; line-height: 26px; }
.font-14 { font-size: 14px; line-height: 18px; }

/* Form Fields */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="num"],
input[type="tel"],
select,
textarea {
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 16px;
    line-height: 45px;
    color: var(--formtextcolor);
    height: 45px;
    width: 100%;
    padding: 0 15px;
    border-radius: calc(var(--siteradius) - 7px);
    background-color: var(--formfieldbg);
    border: 1px solid var(--formfieldborder);
    outline: 0 !important;
    vertical-align: top;
}

input::placeholder,
textarea::placeholder {
    font-family: 'Satoshi Bold', sans-serif;
    color: var(--formfieldplaceholder);
}

textarea {
    padding-top: 12px;
    line-height: 26px;
    min-height: 120px;
    max-height: 158px;
    resize: none;
}

select {
    width: 100%;
    padding-right: 30px;
    background-image: url('../svg/angle-down.svg');
    background-size: 10px;
    background-position: right 15px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    appearance: none;
}

header ul,
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li { margin-bottom: 0; }

/*Background Utilities*/
.bg--primary { background-color: var(--primary); }
.bg--light { background-color: var(--lightgreen); }
.bg--skygreen { background-color: #F9FAFF; }

/*Text Utilities*/
.text-rg { font-family: 'Satoshi Regular', sans-serif; }
.text-md { font-family: 'Satoshi Medium', sans-serif; }
.text-bd { font-family: 'Satoshi Bold', sans-serif; }
.text-ssp { font-family: 'Source Serif Pro', serif; }
.text-ssp-sb { font-family: 'Source Serif Pro SB', serif; }
.text-int { font-family: 'Inter Regular', sans-serif; }
.text-int-md { font-family: 'Inter Medium', sans-serif; }
.text-int-sb { font-family: 'Inter SemiBold', sans-serif; }
.text-int-bd { font-family: 'Inter Bold', sans-serif; }
.text-pop { font-family: 'Poppins Regular', sans-serif; }
.text-pop-md { font-family: 'Poppins Medium', sans-serif; }
.text-pop-sb { font-family: 'Poppins SemiBold', sans-serif; }

.text--white { color: var(--white); }
.text--body { color: var(--body); }
.text--primary { color: var(--primary); }
.list-unstyled { padding: 0; margin: 0; list-style: none; }

/*Other Utilities*/
.screen-reader-text,
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/*Buttons*/
.bttn {
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 18px;
    line-height: 45px;
    min-width: 177px;
    height: 47px;
    padding: 0 30px;
    text-align: center;
    border: 1px solid var(--primary);
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.bttn-16 {
    font-size: 16px;
}

.bttn-rect {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 14px;
    height: 41px;
    line-height: 39px;
    padding: 0 20px;
    border-radius: 0;
}

.bttn-primary {
    color: var(--white);
    background-color: var(--primary);
}

.bttn-primary:hover {
    color: var(--white);
    background-color: var(--primary-a);
}

.bttn-primary-inverse {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

.bttn-primary-inverse:hover {
    color: var(--white);
    background-color: var(--primary);
}

.bttn-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bttn-separator span {
    width: 34px;
    height: 1px;
    background-color: #ffffff;
}

/* Slider */
.slick-slider { position: relative; display: block; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; -khtml-user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; } .slick-list { position: relative; display: block; overflow: hidden; margin: 0; padding: 0; } .slick-list:focus { outline: none; } .slick-list.dragging { cursor: pointer; cursor: hand; } .slick-slider .slick-track, .slick-slider .slick-list { -webkit-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .slick-track { position: relative; top: 0; left: 0; display: block; margin-left: auto; margin-right: auto; } .slick-track:before, .slick-track:after { display: table; content: ''; } .slick-track:after { clear: both; } .slick-loading .slick-track { visibility: hidden; } .slick-slide { display: none; height: 100%; min-height: 1px; } .slick-slide img { display: block; } .slick-slide.slick-loading img { display: none; } .slick-slide.dragging img { pointer-events: none; } .slick-initialized .slick-slide { display: inline-block; } .slick-loading .slick-slide { visibility: hidden; } .slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; } .slick-arrow.slick-hidden { display: none; }

.slick-slide { vertical-align: middle; }

/* Form Country */
.iti { display: block; }


/*
** Header
*/

/*Header Top*/
.tophead {
    font-family: 'Satoshi Medium', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    background: var(--primary);
    padding: 0 15px;
    text-align: center;
    z-index: 9;
}

.tophead-btn {
    display: inline-block;
    font-family: 'Satoshi Medium', serif;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    padding-right: 44px;
    margin: 10px 0 10px 40px;
    color: var(--primary);
    background-image: url('../svg/icon-arrow.svg');
    background-repeat: no-repeat;
    background-position: center right 12px;
    background-color: var(--white);
    border-radius: 9px;
}

.tophead p {
    margin: 10px 0;
}

/**/
.site-header {
    font-size: 18px;
    line-height: 24px;
    position: sticky;
    top: 0;
    width: 100%;
    padding: 11px 0 11px;
    background: var(--white);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.05s ease;
    z-index: 15;
}

.bttn-headcta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    line-height: 38px;
    padding: 0 10px;
    width: 120px;
    height: 38px;
    color: var(--white);
    background: var(--primary);
    border-radius: 10px;
}

.bttn-headcta:hover {
    color: var(--white);
    background: var(--primary-a);
}

.sitenav {
    display: inline-flex;
    align-items: center;
    column-gap: 50px;
}

.sitenav a {
    color: var(--secondary);
}

.sitenav a:hover {
    color: var(--primary);
}

.megamenu .sub-menu {
    font-family: 'Source Serif Pro SB', serif;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.384762px;
    color: #000;
}

.megamenu .sub-menu .sub-menu {
    display: flex;
    flex-direction: column;
}

[class^="navicon-"] span {
    display: block;
    font-family: 'Satoshi Regular', sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #848484;

    /*
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    */
}

[class^="navicon-"] + [class^="navicon-"] {
    margin-top: 40px;
}

@media screen and (max-height: 680px) {
    [class^="navicon-"] + [class^="navicon-"] { margin-top: 28px; }
}
/*Height 680 ENDS*/

[class^="navicon-"] {
    display: flex;
    gap: 20px;
}

[class^="navicon-"]::before {
    content: "";
    width: 35px;
    min-width: 35px;
    height: 35px;
    border-radius: 3.18px;
    background-image: url('../svg/icon-university.svg');
    background-color: var(--white);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: calc(100% - 10px);
    box-shadow: 0px 1.27273px 1.90909px rgba(0, 0, 0, 0.1);
}

.navicon-visarej::before { background-image: url('../svg/icon-visa-rejection.svg'); }
.navicon-tourvisa::before { background-image: url('../svg/icon-tourist-visa.svg'); }
.navicon-specase::before { background-image: url('../svg/icon-special-case.svg'); }
.navicon-selhelp::before { background-image: url('../svg/icon-global-uni-match.svg'); }
.navicon-testguide::before { background-image: url('../svg/icon-master-enterance.svg'); }
.navicon-profbuild::before { background-image: url('../svg/icon-dedicated-mentorship.svg'); }
.navicon-appman::before { background-image: url('../svg/icon-seamless-process.svg'); }

.navicon-navusa::before { background-image: url('../svg/flag-usa.svg'); }
.navicon-navuk::before { background-image: url('../svg/flag-uk.svg'); }
.navicon-navcan::before { background-image: url('../svg/flag-canada.svg'); }
.navicon-navgerm::before { background-image: url('../svg/flag-germany.svg'); }
.navicon-navau::before { background-image: url('../svg/flag-australia.svg'); }
.navicon-navfr::before { background-image: url('../svg/flag-france.svg'); }
.navicon-navnz::before { background-image: url('../svg/flag-new-zealand.svg'); }

.navicon-navsamp::before, .navicon-navblogs::before { background-color: var(--primary);  }

.navicon-navsamp::before { background-image: url('../svg/icon-samples.svg'); }
.navicon-navblogs::before { background-image: url('../svg/icon-blogs.svg'); }

.sitenav-col > a,
.sitenav-foo > a {
    font-family: 'Source Serif Pro SB', serif;
    color: #727272;
    pointer-events: none;
    margin-bottom: 22px;
}

.sitenav-col > a:hover, .sitenav-foo > a:hover { color: #727272; }

.navall {
    margin-top: 16px;
}

.navall a {
    font-family: 'Satoshi Medium', sans-serif;
    display: flex;
    gap: 10px;
    font-size: 12px;
    line-height: 18px;
}

.navall a::after {
    content: "";
    width: 12px;
    background: url('../svg/line-arrow.svg');
    background-size: 12px auto;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: auto;
}

.sitenav-foo {
    display: flex;
    flex: 1 0 100%;
    align-items: center;
    gap: 48px;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid #B6B6B6;
}

.sitenav-foo > a,
.sitenav-foo > a:hover { margin-bottom: 0; }

/*
.sitenav-foo > a,
.sitenav-foo > a:hover {
    font-family: 'Poppins Medium', sans-serif;
    font-size: 13px;
    line-height: 19px;
    pointer-events: none;
    color: #9D9D9D;
}
*/

.sitenav-tests {
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 0 20px;
    white-space: nowrap;
}

.sitenav-tests a {
    color: #2F2F2F;
}

/*Site Menu Toggle*/
.site-menutoggle {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    width: 33px;
    height: 40px;
    position: relative;
    margin-bottom: 0;
}

.site-menutoggle span {
    display: block;
    width: 33px;
    height: 5px;
    margin-bottom: 5px;
    position: relative;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-a) 100%);
    border-radius: 6px;
    transform-origin: 5px 5px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
    z-index: 1;
}

.site-menutoggle span:last-child { margin-bottom: 0; }
.site-menutoggle span:nth-last-child(2) { transform-origin: 0% 100%; }
.site-menutoggle input:checked~span { opacity: 1; transform: rotate(45deg) translate(-5px, -19px); }
.site-menutoggle input:checked~span:nth-last-child(2) { transform: rotate(-45deg) translate(1px, 20px); }
.site-menutoggle input:checked~span:nth-last-child(3) { opacity: 0; transform: rotate(0deg) scale(0.2, 0.2); transition: 0s; }


/* ----------------------------- */

/*
** PAGES
*/

/*Hero*/
.landinghero { padding: 50px 0; }
.landinghero .row { row-gap: 30px; }
.lhero-subtitle { font-size: 24px; line-height: 22px; padding-bottom: 20px; letter-spacing: -0.3px; }
.lhero-cta { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 42px; }
.lhero-cont { /* width: 418px; */ max-width: 100%; }
.lhero-cont p { margin-top: 30px; letter-spacing: -0.3px; color: rgba(0,0,0,0.7); }
.lhero-cta .bttn { min-width: 157px; }
.lhero-cta .bttn-h { display: inline-flex; align-items: center; justify-content: center; height: auto; min-height: 47px; line-height: 26px; padding: 10px 30px; }

/*Sections*/
section.section { padding-top: 50px; padding-bottom: 50px; }

section.sectionbg { margin-top: 50px; margin-bottom: 50px; }
.sectionbg .container { padding-top: 50px; padding-bottom: 50px; }

.section-head { margin-bottom: 40px; }
.section-head h2 { margin-bottom: 20px; }

.section-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.section-head h2 + .bttn-separator { margin-top: 8px; margin-bottom: 16px; }
.section-head p + .bttn-separator { margin-top: 32px; }

/*Services*/
.row-serv { position: relative; }
.row-serv::before {
    --rowservoff: 74px;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: var(--rowservoff);
    width: 1px;
    height: calc(100% - var(--rowservoff));
    transform: translateX(-50%);
    background-color: #B3B3B3;
}
.row-serv h3 { font-family: 'Source Serif Pro SB', serif; margin-bottom: 44px; }
.row-serv ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px 50px;
}
.row-serv ul.list-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 50px;
}

.row-serv li {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.servimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    min-width: 55px;
    height: 55px;
    margin: 0 auto;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease-in-out;
}

.row-serv li a:hover .servimg {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.servtitle {
    display: block;
    font-family: 'Source Serif Pro SB', serif;
    font-size: 16px;
    line-height: 22px;
    margin-top: 15px;
    color: var(--body);
}


/*Pricing*/
.pricing .section-head h2 { margin-bottom: 10px; }

.quality-wrap {
    border: 1px solid #BABABA;
    border-radius: 12px;
    background: #FFF;
}

.quality-row {
    display: flex;
    flex-wrap: wrap;
    padding: 48px 50px 48px;
}

.quality-left {
    width: 64%;
    padding-right: 40px;
}

.quality-right {
    width: 36%;
    padding-left: 66px;
    border-left: 1px solid #CECECE;
}

.quality-row h3 {
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 25px;
}

.price-calc-top-wrap {
    display: flex;
    flex-wrap: wrap;
    max-width: 576px;
    width: 100%;
    column-gap: 22px;
}

.price-calc-top-col { flex: 1; }

.price-calc-top-wrap label {
    font-family: 'Satoshi Medium', sans-serif;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.price-calc-top-wrap select,
.price-calc-top-wrap input {
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 18px;
    line-height: 52px;
    width: 100%;
    height: 54px;
    padding: 0px 22px;
    border-radius: 5px;
    border: 1px solid #BABABA;
    outline: 0;
    appearance: none;
}
.price-calc-input-wrap { position: relative; }
.price-calc-input-wrap input { padding-right: 140px; }
.price-calc-input-wrap span {
    position: absolute;
    right: 17px;
    top: 50%;
    font-size: 16px;
    line-height: 1;
    color: #A4A4A4;
    transform: translateY(-50%);
}

.price-calc-bottom-wrap { margin-top: 40px; }

.price-calc-bottom-wrap p {
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    margin: 0 0 4px;
}

.price-calc-bottom-wrap sup {
    font-family: 'Satoshi Bold', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    top: -1.4em;
    position: relative;
}

.price-calc-bottom-wrap div span {
    font-size: 72px;
    line-height: 90px;
    margin: 0 10px 0 5px;
    color: var(--primary);
}

.price-calc-bottom-wrap div span.priceasperreq {
    font-size: 25px;
    line-height: 38px;
    margin-top: 2px;
}

.price-calc-bottom-wrap sub {
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 16px;
    line-height: 1.2;
}

.quality-right ul { margin-bottom: 30px; }

.quality-right ul li {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Satoshi Medium', sans-serif;
    padding-left: 34px;
    margin-bottom: 15px;
    background-image: url("../svg/icon-circle-check.svg");
    background-position: top left;
    background-repeat: no-repeat;
    color: #000000;
}

/*Brand Logos*/
.list-logo { display: grid; grid-template-columns: repeat(5,1fr); }
.list-logo img {  display: block; margin: 0 auto; }

/*Why Us*/
.whyuslist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.whyuslist-3 { grid-template-columns: repeat(3, 1fr); }

.whyuslist-5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
}

.whyuslist-5 .whyusitem { flex: 1 0 calc(33.33% - 24px); max-width: calc(33.33% - 24px); }

.whyuscard {
    min-height: 240px;
    height: 100%;
    padding: 30px;
    border-radius: var(--siteradius);
    border-bottom: 3.707px solid var(--primary);
    background-color: var(--white);
    box-shadow: 0px 1.48263px 7.41314px 0px rgba(0, 0, 0, 0.10);
    transition: 0.3s ease-in-out;
}

.whyuscard:hover { box-shadow: 0px 1.48263px 20px 0px rgba(0, 0, 0, 0.26); }

.whyuslist-border .whyuscard { border: 1px solid var(--primary); }

.whyuslist-border .whyuscard:hover { border-style: dashed; box-shadow: 0px 1.48263px 10.41314px 0px rgba(0, 0, 0, 0.26); }

.whyuslist-shad .whyuscard { border: 1px solid #DCDCDC; }

.whyuscard p {
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 14px;
    line-height: 20px;
}

.whyuscard h3 {
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 22px;
    line-height: 32px;
    margin-top: 9px;
    margin-bottom: 7px;
}

.whyus-inn h3 {
    margin-top: 16px;
}

.whyus-inn p {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

/*Samples*/
.samplist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.sampimg img {
    width: 100%;
    vertical-align: top;
}

.sampcard {
    display: flex;
    flex-direction: column;
    border: 1px solid #CBCBCB;
    border-radius: 5px;
    height: 100%;
}

.sampcard img {
    width: 100%;
}

.sampbody {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 50px 35px;
}

.samptype {
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 16px;
    line-height: 1.7em;
    color: var(--primary);
}

.sampbody h3 {
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 5px;
}

.sampbody p {
    font-size: 16px;
    line-height: 1.7em;
    color: var(--body);
    margin-bottom: 38px;
}

.sampbody p .readmore {
    font-family: 'Satoshi Medium', sans-serif;
    color: var(--primary);
}

.sampbody .bttn {
    font-size: 16px;
    width: 100%;
    min-width: 0;
    border-color: #E5E8ED;
    border-radius: 3px;
    margin-top: auto;
}
.reviews h2 { margin-bottom: 26px; }
.googlereview, .reviewrates { align-self: flex-end; }
.googlereview img { width: 207px; }
.reviewrates img { width: 232px; margin-left: auto; }

.reviewlist { padding-top: 50px; }
.reviewlist .slick-track { display: flex; }
.reviewitem { margin: 0 15px; height: auto; }

.reviewcard {
    font-size: 16px;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    font-family: 'Satoshi Medium', sans-serif;
    height: 100%;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #15C39A;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}

.reviewmeta { display: flex; margin-top: auto; gap: 12px; }

.reviewpro {
    min-width: 36px;
    height: 36px;
}

.reviewinfo {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 20px;
}

.reviewlist .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.reviewlist .slick-dots li { margin-bottom: 0; }

.reviewlist .slick-dots button {
    display: block;
    font-size: 0;
    line-height: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 100%;
    background-color: #E1E1E1;
    transition: 0.3s all ease;
}

.reviewlist .slick-dots .slick-active button {
    background-color: var(--primary);
}

/*FAQ*/
.faqlist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 40px;
}

.faqitem {
    padding: 20px;
    border: 1px solid var(--primary);
    border-radius: var(--siteradius);
    background-color: var(--lightgray);
}

.faqitem + .faqitem { margin-top: 30px; }

.faqhead {
    position: relative;
    cursor: pointer;
    padding-right: 20px;
}

.faqhead::before {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    width: 15px;
    height: 26px;
    background-image: url('../svg/angle-down.svg');
    background-position: right 0 top 8px;
    background-size: 13px;
    background-repeat: no-repeat;
    transform: rotate(0deg);
    transition: 0.3s all ease;
}

.faqopen .faqhead::before {
    transform: rotate(180deg);
}

.faqhead h3 {
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
}

.faqbody {
    display: none;
    font-size: 16px;
    line-height: 22px;
    padding: 15px 0 0;
}

/*Contact Us*/
.ctaform {
    width: 859px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.form-lbl {
    display: block;
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 4px;
}

.ctaform .wpcf7-form-control-wrap { display: block; }

.ctaform .wpcf7-not-valid-tip {
    font-family: 'Satoshi Medium', sans-serif;
    font-size: 14px;
    line-height: 20px;
}

.ctaform .wpcf7-response-output {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
}

.ctaform .wpcf7-spinner { display: block; margin: 0 auto; transform: translateY(10px); }


/*Ghostwriting Landing Page*/
.gw-services .row-serv { flex-wrap: nowrap; column-gap: 60px; }
.gw-services .row-serv::before { display: none; }
.gw-services .row-serv > div {
    position: relative;
    max-width: unset;
    flex: 0 1 auto;
    width: auto;
    padding: 0;
}

.gw-services .row-serv > div + div::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #B3B3B3;
}

.gw-services .row-serv ul { gap: 28px 40px; }
.gw-services .servtitle { min-height: 44px; }

.landingpot .lhero-cont { width: 545px; max-width: 100%; }
.landingpot .lhero-cont p { color: var(--body); }
.landingpot .lhero-cta { margin-top: 9px; }

.lpstats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    font-size: 18px;
    text-align: center;
    margin-top: 40px;
}

.lpstat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 80px;
    padding: 9px 16px;
    background: #E8F9F5;
}

.lpstat-num {
    display: inline-flex;
    align-items: center;
    font-family: 'Satoshi Regular', sans-serif;
    font-size: 27px;
    line-height: 24px;
    font-weight: 600;
}

.lpstat-fact { line-height: 1.2; }

.lpstat-digit { display: flex; align-items: center; gap: 4px; }
/*Ghostwriting Landing Page ENDS*/


/* ----------------------------- */
/*
** Footer (OLD) - CUSTOM.CSS + LANDING.CSS
*/
.site-footer{padding-top: 30px;}
.site-footer-wrap h3 {
    font-family: 'Inter SemiBold', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin:0 0 12px;
}
.site-footer-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-footer-wrap ul li + li{margin-top: 12px;}
.site-footer-wrap ul a {
    font-family: 'Inter Regular', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    transition:0.3s all ease-in-out;
}
.site-footer-wrap ul a:hover{
    color:#15C39A;
}
.footer-info-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
}

.footer-info-wrap ul a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size:15px;
    width:36px;
    height:36px;
    border: 1px solid #000000;
    border-radius: 50%;
    color: #000000;
    text-decoration: none;
}
.footer-info-wrap ul li + li{margin-left: 16px;}
.footer-info-wrap p {
    margin: 0;
    font-family: 'Inter Regular', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
   
}
.footer-info-section{padding:20px 0;border-top:1px solid rgba(0, 0, 0, 0.3);margin-top:30px;}
.site-footer-wrap > .row > div:last-child div + div{margin-top: 20px;}
.site-footer-wrap > .row > div:last-child{text-align:right;}
.site-footer-wrap > .row > div:last-child p{
    width: 230px;
    max-width:100%;
    margin-bottom: 0;
    margin-left: auto;
}
.site-footer-wrap ul .view-more a {
    font-family: 'Inter Medium', sans-serif;
    color: #000000;
}

/*--- LANDING.CSS ---*/
.copyrights { font-size: 16px; padding: 10px 0; }

/*Footer (OLD) - ENDS*/


/*--- LANDING.CSS ---*/
/*Popup*/
.body-popup {
    overflow: hidden !important;
    padding-right: 17px;
}

.body-popup:before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.84);
    z-index: 1000000000;
}

.popup {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    padding: 30px 16px;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: 1000000000;
    visibility: hidden;
    opacity: 0;
    transform: scale(.86);
    transition: all .3s ease-in-out;
}

.popup.open {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    background: var(--lightgreen);
    color: var(--white);
    cursor: pointer;
    z-index: 2;
}

.icon-close {
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E") center center no-repeat;
    background-size: cover;
    display: inline-block;
    cursor: pointer;      
}

.popup-wrapper {
    display: flex;
    position: relative;
    width: 700px;
    max-width: 100%;
    padding: 0;
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
}

.popup-samples .popup-wrapper {
    width: 1024px;
}

.popup-body {
    max-height: calc(100vh - 60px);
    overflow: auto;
}

.sample-body {
    padding: 20px 30px;
}

.popup-samples-title {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 15px 55px;
    margin: 0;
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.05);
}


/*
** New Pages
*/

/*Blog Section*/

.bloglist {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.blogitem {
    flex: 1 0 33.33%;
    max-width: calc(33.33% - 24px);
    border-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.blogitem:hover {
    box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
}

.blogthumb a {
    display: block;
    width: 100%;
    height: 162px;
    max-width: 100%;
    overflow: hidden;
}

.blogthumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.bloginfo {
    padding: 14px 18px;
}

.blogcat {
    font-family: 'Poppins Medium', sans-serif;
    font-size: 14px;
}

.bloginfo h3 {
    font-family: 'Poppins Medium', sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 5px;
}

.bloginfo h3 a { color: var(--body); }

.bloginfo h3 a:hover { color: var(--primary); }

.bloginfo p { font-family: 'Poppins Regular', sans-serif; font-size: 12px; line-height: 18px; font-family: 'Poppins Regular', sans-serif;}

/*LR Sections*/
.lrsecs-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.lrsecs-head h2 {
    width: 790px;
    max-width: 100%;
    margin: 0;
}

.lrsec-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    padding: 40px 0;
}

.lrsec-row:last-child { padding-bottom: 0; }

.lrsec-col {
    flex: 1 0 50%;
    max-width: calc(50% - 25px);
}

.lrsec-row:nth-child(odd) .lrsec-col:first-child { order: 1; }

.lrsec-col img { display: block; margin: 0 auto; }

.lrsec-col h3 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
    width: 545px;
    max-width: 100%;
}

.lrsec-col p {
    font-family: 'Poppins Regular', sans-serif;
    font-size: 18px;
    line-height: 27px;
    width: 545px;
    max-width: 100%;
    margin-bottom: 16px;
    color: #505050;
}

/*Major Courses*/
.stuneeds { position: relative; }

.stuneeds::before {
    --stuartsize: 632px;
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 0;
    right: 0;
    width: var(--stuartsize);
    height: var(--stuartsize);
    margin: 0 auto;
    border-radius: 100%;
    background-color: #EDFFFB;
    transform: translateY(-50%);
    z-index: 0;
}

.stuneeds .container { position: relative; z-index: 1; }

.stuneeds h2 { width: 1030px; max-width: 100%; }

.stuneeds .section-head p {
    max-width: 752px;
}

.majcourses, .studyabroad { margin-top: 56px; }

.stuneeds h3 { font-size: 24px; line-height: 30px; color: #444444; margin-bottom: 32px; }

.mcourse-list {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

.mcourse-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1 0 20%;
    max-width: calc(20% - 64px);
    padding: 0 15px;
    text-align: center;
}

.mcourse-img {
    --mcimgsize: 80px;
    width: var(--mcimgsize);
    min-width: var(--mcimgsize);
    height: var(--mcimgsize);
    padding: 18px;
    background: var(--white);
    border: 0.8px solid #D8D8D8;
    border-radius: 100%;
    box-shadow: 1.6px 3.2px 3.2px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.mcourse-item:hover .mcourse-img { border-color: var(--primary); }

.mcourse-item h4 {
    font-size: 20px;
    line-height: 24px;
}

.studytests {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.studytests a {
    flex: 1 0 16.66%;
    max-width: calc(16.66% - 14px);
    height: 50px;
    line-height: 50px;
    color: var(--white);
    text-align: center;
    background: #4CEDC7;
    border-radius: 11.06px;
    box-shadow: 1.84412px 2.76618px 9.22061px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
}

.studytests a:hover { background-color: var(--primary); }

/*Stats*/
.wrstat { padding-top: 56px; }

.wrstat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    max-width: 992px;
    padding-top: 40px;
    margin: 0 auto;
    text-align: center;
}

.wrstat-list-5 { justify-content: center; max-width: 100%; }
.wrstat-list-5 .wrstat-item { flex:1 0 20%; max-width: calc(20% - 28px); }

.wrstat-item {
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex: 1 0 25%;
    max-width: calc(25% - 26px);
}

.wrstat-num {
    font-size: 64px;
    line-height: 48px;
}

.wrstat-inn .wrstat-num {
    font-size: 40px;
    line-height: 38px;
}

.wrstat-inn .wrstat-item {
    gap: 16px;
}

/*Abroad Plans*/
.abplans {
    display: flex;
    gap: 24px;
}

.abplan {
    padding: 24px 24px 32px 24px;
    border-radius: 24.75px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.abplan:hover {
    box-shadow: 4px 4px 19px rgba(0, 0, 0, 0.2);
}

.abplan h3 { margin-top: 23px; }

.abplan-icon {
    --abplaniconsize: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--abplaniconsize);
    height: var(--abplaniconsize);
    background-color: #C5FFF1;
    border-radius: 100%;
    border: 1.48px solid #F2F2F2;
}

.abplan p { margin-bottom: 15px; }

.abplan ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-family: 'Inter Medium', sans-serif;
    font-size: 16px;
    line-height: 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    color: #656565;
}

.abplan li {
    margin: 0 0;
}

.abplan p + hr, .abplan ul + hr { border-color: #b3b2b2; margin-bottom: 19px; }

.abplan .bttn {
    font-family: 'Poppins SemiBold', sans-serif;
    font-size: 15.44px;
    display: block;
    border: 0px;
    border-radius: 11.88px;
    background: #F5F5F5;
}

.abplan .bttn:hover { background-color: var(--primary); color: var(--white); }

.abplan-1 { background: linear-gradient(157.49deg, #EBFFFA -1.8%, #FFFFFF 66.09%); }
.abplan-2 { background: linear-gradient(157.49deg, #EAFFFF -1.8%, #FFFFFF 66.09%); }
.abplan-3 { background: linear-gradient(156.48deg, #DCFFFF -1.64%, #D3FFF5 97.65%); }

.abplan-2 .abplan-icon { background: #CEFFFF; border-color: #ffffff; }
.abplan-3 .abplan-icon { background: linear-gradient(143.34deg, #15C39A 17.69%, #00DCDC 92.11%); border-color: #ffffff; }

.abplan-2 h3, .abplan-3 h3 span { color: #00BBBB; }

.abplan-2 .bttn { color: #00BBBB; }

.abplan-3 .bttn { background-color: #13C7A3; color: #ffffff; }
.abplan-3 .bttn:hover { background-color: var(--primary-a); }

/*Services*/
.servtabs {
    display: flex;
    gap: 16px;
    width: 316px;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 30px;
    border: 1px solid #C9C9C9;
    border-radius: 42px;
}

.servtabs a {
    font-size: 14px;
    flex: 1 0 auto;
    line-height: 35px;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    border-radius: 42px;
    color: var(--body);
}

.servtabs .active, .servtabs a:hover { background-color: var(--primary); color: var(--white); }

.servpane {
    display: none;
}

.servpane.active {
    display: block;
}

.servslist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px 40px;
    text-align: center;
    max-width: 852px;
    margin: 20px auto 0;
    padding-bottom: 50px;
}

.servsitem {
    flex: 1 0 25%;
    max-width: calc(25% - 30px);
}

.testlogo-wrap {
    --size: clamp(10rem,1rem + 25vmin,30rem);
    --gap: calc(var(--size)/2.8);
    --duration: 40s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
    display: flex;
    gap: var(--gap);
    padding-bottom: 1px;
    margin: 32px 0 0;
    overflow: hidden;
}

.testlogo-list {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

.testlogo-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 152px;
    min-width: 152px;
    height: 86px;
    margin: 0;
    border: 1px solid #DADADA;
    animation: scroll-x var(--duration) linear infinite;
}

@keyframes scroll-x {
    from { transform: translateX(var(--scroll-start)); }
    to { transform: translateX(var(--scroll-end)); }
}

.sechero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    min-height: 621px;
    overflow: hidden;
}

.sechero .container { position: relative; z-index: 1; }

.sechero h1 { max-width: 850px; margin: 0 auto 24px; }

.sechero p { max-width: 660px; margin: 0 auto; color: #666666; }

.sechero .bttn-wide { width: 316px; }

/*Home Hero*/
.sechero-home { --spacediff: calc(100% - 1330px); }

.sechero-home .container { margin-top: 80px; }

.sechero-home::before {
    content: "";
    position: absolute;
    left: calc(var(--spacediff) / 2);
    top: 50%;
    width: 345px;
    height: 100%;
    transform: translateY(-50%);
    background-image: url('../webp/home-hero-lt.webp');
    background-position: center left;
    background-repeat: no-repeat;
}

.sechero-home::after {
    content: "";
    position: absolute;
    right: calc(var(--spacediff) / 2);
    top: 47%;
    width: 345px;
    height: 100%;
    transform: translateY(-50%);
    background-image: url('../webp/home-hero-rt.webp');
    background-position: center right;
    background-repeat: no-repeat;
}

.sechero-home h1 { max-width: 660px; }

.sechero-home p { max-width: 500px; color: #000000; }

.sechero-art { position: absolute; }

.sechero-art1 { left: 0; bottom: calc(100% + 90px); }

.sechero-art2 { left: 160px; top: 20px; }

.sechero-art3 { right: -35px; bottom: calc(100% + 90px); }

.sechero-art4 { right: 190px; bottom: 33%; }

/*Inner Hero*/
.sechero-inn { min-height: 586px; padding: 80px 0; }

.hero-sub { font-size: 40px; line-height: 40px; margin-bottom: 40px; }

.bannermuted {
    display: flex;
    align-items: center;
    margin-top: 16px;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

/*Test List*/
.testssec .section-head p { color: #666666; }

.testlist {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: center;
    gap: 24px;
    max-width: 846px;
    margin: 40px auto 0;
}

.testitem {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 149px;
    font-size: 32px;
    line-height: 32px;
    color: var(--primary);
    background-color: var(--lightgreen);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.16);
}

.testitem:nth-child(even) {
    color: #00BBBB;
    background-color: #CEFFFF;
}

/*Country List*/
.countrylist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 34px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.countryitem {
    position: relative;
    display: flex;
    flex: 1 0 25%;
    max-width: calc(25% - 26px);
    align-items: center;
    justify-content: center;
    gap: 17px;
    height: 74px;
    padding: 0 12px;
    border: 1px solid #A5A5A5;
    border-radius: 11px;
    background-color: var(--white);
    overflow: hidden;
}

.countryitem img {
    width: auto;
    max-height: 40px;
    border-radius: 1px;
    filter: drop-shadow(1.95553px 3.91106px 3.91106px rgba(0, 0, 0, 0.1));
}

.countryitem h3 {
    font-size: 21px;
    line-height: 21px;
    margin: 0;
}

.countrylink {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
} 

/*
** Footer
*/

.site-footer { padding: 50px 0 0; }
.site-footer .font-14 { line-height: 20px; }
.foo-copy { padding: 20px 0; border-top: 1px solid #eee; }

.nav-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-social li { margin-bottom: 0; }

.foo-main { color: #7B7B7B; padding-bottom: 20px; }
.foo-main .row { gap: 40px 0; }
.foo-firstcol { width: 192px; max-width: 100%; }

.foo-title {
    font-family: 'Satoshi Bold', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: var(--body);
    margin-bottom: 0
}

.foo-offices { margin-top: 40px; }
.foo-title { margin-bottom: 10px; }
.wr-office { margin-top: 20px; }

.wr-office h4 {
    font-family: 'Satoshi Bold', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: var(--body);
    margin-bottom: 6px;
}

.wr-office address { margin-bottom: 4px; }
.wr-office address a { color: #7B7B7B; }
.foo-nav a { color: var(--body); }
.foo-nav a:hover { color: var(--primary); }
.foo-nav-3 { column-count: 3; column-gap: 24px; }
.foo-nav-2 { column-count: 2; column-gap: 24px; }

.sechero-servd, .sechero-servd .container { position: relative; }

.sechero-servd .container {
    padding: 0 200px;
}

.sechero-servd::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 943px;
    height: 335px;
    margin: 0 auto;
    border-radius: 100%;
    background: rgba(21, 195, 154, 0.4);
    opacity: 0.2;
}


.sechero-servd .container::before,
.sechero-servd .container::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 193px;
    height: 392px;
    background-image: url('../svg/services-hero-lart9e36.svg'), url('../svg/services-hero-left.svg');
    background-position: left top, right top 9px;
    background-repeat: no-repeat, no-repeat;
    /* opacity: 0.2; */
}


.sechero-servd .container::after {
    left: auto;
    right: -10px;
    background-image: url('../svg/services-hero-rart9e36.svg'), url('../svg/services-hero-right.svg');
    background-position: right top 47px, left top 0;
}

.globuni img {
    display: block;
    margin: 0 auto;
}

.globuni h2 strong,
.globuni h2 b {
    font-family: 'Source Serif Pro', serif;
    font-weight: normal;
    color: #f9b818;
}