/*!
Theme Name: osc
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: osc
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

osc is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
  - Normalize
  - Box sizing
# Base
  - Typography
  - Elements
  - Links
  - Forms
## Layouts
# Components
  - Navigation
  - Posts and pages
  - Comments
  - Widgets
  - Media
  - Captions
  - Galleries
# plugins
  - Jetpack infinite scroll
# Utilities
  - Accessibility
  - Alignments

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

/* Sections
   ========================================================================== */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.08;

}

h2,
.h2 {
    font-size: 40px;
    font-weight: 700;
}

h3,
.h3 {
    font-size: 40px;
}

h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

.fade-in-element {
  opacity: 0;
  transition: opacity 1s ease-in;
  will-change: opacity;
}
.fade-in-element.visible {
  opacity: 1;
}

.container {
    max-width: 1220px;
    margin: auto;
    padding: 0 30px;
}

/* site-btn */
a.site-btn {
    background: #FFF;
    padding: 12px 26px 12px 73px;
    display: inline-block;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.5s;
    text-decoration: none;
    line-height: 1.563;
        background-color: #3781C3;
}

a.site-btn span.icon {
    position: absolute;
    left: calc(15px);
   /* transition: all 0.5s; */
    color: #FFF;
    width: 18px;
    height: 18px;
    top: 16px;
}

a.site-btn:hover {
    padding-left: 30px;
    padding-right: 69px;
}

a.site-btn:hover span.icon {
    left: calc(100% - 45px);
}

a.site-btn span.grey-shape {
    background: #23acff;
    position: absolute;
    height: 100%;
    width: calc(63px);
    left: 0;
    top: 0px;
    /*transition: all 0.2s ease-in-out;*/
    z-index: 0;
    background: #3781C3;
    background: linear-gradient(90deg, rgba(55, 129, 195, 1) 0%, rgba(80, 199, 181, 1) 100%);
}

a.site-btn:hover span.grey-shape {
    animation: expandAndFade 0.3s forwards;
}
@keyframes expandAndFade {
    0% {
        left: auto;
        width: 63px;
        opacity: 1;
    }
    99% {
         
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

a.site-btn * {
    z-index: 1;
    position: relative;
}

a.site-btn span.text {
    color: #203C74;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.024em;
    text-transform: uppercase;
}

a.site-btn:hover span.text {
    color: #FFF;
}

a.site-btn span.grey-shape:after {
    content: '';
    position: absolute;
    height: 100%;
        width: 500px;
    background: #ffffff;
    left: 100%;
    transform: skewX(-27deg);
    transform-origin: right top;
    transition: all 0.3s;
}

a.site-btn:hover span.grey-shape:after {
    transform: skewX(0deg);
}

a.site-btn {}

a.site-btn span.icon:after,
a.site-btn span.icon:before {
    content: '';
    position: absolute;
    width: 17px;
    height: 2px;
    background: #FFF;
    left: 0px;
    top: 8px;
}

a.site-btn span.icon:before {
    /*transform: rotate(90deg);*/
}
a.site-btn span.icon:before {
    height: 17px;
    width: 2px;
    top: 0px;
    left: 7px;
}


a.btn {
    background: #3781C3;
    color: #FFF;
    background: linear-gradient(90deg, rgba(55, 129, 195, 1) 0%, rgba(80, 199, 181, 1) 100%);
    text-decoration: none;
    padding: 13px 29px;
    display: inline-block;
    line-height: 1.438;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: -0.018em;
    position: relative;
    overflow: hidden; 
        font-weight: 600;
}
a.btn:after {
    display: none;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(55, 129, 195, 1) 0%, rgba(80, 199, 181, 1) 100%);
    opacity: 1;
        z-index: -1;
    transition: all 0.3s;
}
a.btn:hover:after  {
   opacity: 0; 
}
a.btn span {
    transform: scale(1.0);
    position: relative;
    transition: all 0.2s;
    display: inline-block;
    color: #FFF;
    letter-spacing: 0.015em;
        font-weight: 600;
}

a.btn:hover span {
    transform: scale(1.02);
}

a.btn:hover,
.site-header .header-cover a.btn:hover,
a.btn:focus,
.site-header .header-cover a.btn:focus {
 
    color: #FFF;
        background: linear-gradient(90deg, #3781C3 0%, #3781C3 100%);
}

/* site-btn End */

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
    box-sizing: inherit;
}

html, * {
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
    color: #203C74;
    font-family: "Inter", sans-serif;

    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    margin-top: 0;
    margin-bottom: 25px;
}


p {
    margin-top: 0;
    margin-bottom: 29px;
    line-height: 1.75;

}

.large p {
    font-size: 17px;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

.footer-menu ul li.menu-item-346 > a, .footer-menu ul li.menu-item-345 > a {
    cursor: default;
    pointer-events: none;
}

/* Elements
--------------------------------------------- */
body {
    background: #fff;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

img {
    height: auto;
    max-width: 100%;
}

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

/* Links
--------------------------------------------- */
a {
    color: #203C74;
    transition: all 0.3s;
}

 

a:hover,
a:focus,
a:active {
    color: #59A5E9;
}

a:focus {
    outline: none;
}

a:hover,
a:active {
    outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

select {
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
    display: block;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    display: block;
    left: auto;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 37.5em) {

    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: flex;
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    text-align: end;
    flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
    display: block;
}

.post,
.page {
    margin: 0;
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
    margin: 0 0 1.5em;
}

.widget select {
    max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {

    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}



/* Animation
--------------------------------------------- */
/*
.fade-in {
    transition: 1s all ease;
    top: 20px;
    opacity: 0;
    position: relative;
}

.fade-in.onView {
    top: 0;
    opacity: 1;
}
*/


/* site-header
--------------------------------------------- */
header#masthead {
    position: relative;
    width: 100%;
    top: 0;
    padding: 6px 0;
    background-color: #FAF6F3;
    box-shadow: 0px 4px 7px rgb(0 0 0 / 10%);
    z-index: 9;

}
header#masthead .for-mobile {
    display: none;
}
.site-header .header-cover {
    display: flex;
    justify-content: space-between;
}

.site-header .header-cover .menu-right {
    display: flex;
    align-items: center;
}

.site-header .header-cover .menu-right a.top-call {
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    margin: 0 41px 0 0px;
    letter-spacing: 0.02em;
}
.site-header .header-cover .menu-right a.top-call img{
    display: none;
}
.site-header .header-cover .site-logo img.white {
    display: none;
}

.site-header .header-cover a.btn {
        background: #3781C3;
    color: #FFF;
    text-decoration: none;
    padding: 9px 25px;
    display: inline-block;
    line-height: 1.438;
    border-radius: 4px;
    font-size: 15px;
    margin-right: 26px;
        font-weight: 600;
}
.site-header .header-cover a.btn:after {
    content: '';
    background: linear-gradient(90deg, rgba(55, 129, 195, 1) 0%, rgba(80, 199, 181, 1) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    display: block !important;
    z-index: 0;
    opacity: 1;
    transition: all 0.2s;
}

.site-header .header-cover a.btn:hover:after {
    opacity: 0;
}
.site-header .header-cover a.btn span {
    z-index: 1;
}
.site-header .header-cover a.btn:hover,
.site-header .header-cover a.btn:focus{
     background: #3781C3;
}
header#masthead.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
   /* animation: 0.3s fixedhead;
    -webkit-transition: animation 0.3s ease-in-out;
    -moz-transition: animation 0.3s ease-in-out;
    -o-transition: animation 0.3s ease-in-out;
    transition: animation 0.3s ease-in-out;*/
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 16%);
    -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 16%);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .16);
    width: 100%;
}

@-webkit-keyframes fixedhead {
    0% {
        top: 150px;
    }

    100% {
        top: 0px;
    }
}

@keyframes fixedhead {
    0% {
        transform: translateY(-145px);
    }

    100% {
        transform: translateY(0px);
    }
}

header#masthead.is-transparent:not(.is-sticky) {
    position: absolute;
    padding: 31px 0;
    background: none;
    box-shadow: none;
}

header#masthead.is-transparent:not(.is-sticky) img {
    display: none;
}

header#masthead.is-transparent:not(.is-sticky) img.white {
    display: inline-block;
}

header#masthead.is-transparent:not(.is-sticky) .header-cover .menu-right a.top-call {
    color: #FFF;
}
header#masthead.is-transparent:not(.is-sticky) .header-cover .menu-right a.top-call:hover {
    color:#50c7b5;
}

header#masthead.is-transparent:not(.is-sticky) .header-cover a.btn {
    padding: 13px 20px;
}

header#masthead.is-transparent:not(.is-sticky) .header-cover a.btn a.btn span {
    font-size: 20px;
}

header#masthead.is-transparent:not(.is-sticky) .menu-icon .menu-box span {
    background-color: #fff;
}

/* site-header End
--------------------------------------------- */

.section {
    padding: 70px 0;
}
div#page {
    position: relative;
    width: 100%;
    overflow: hidden;
}
/* hero-banner
--------------------------------------------- */
section.hero-banner {
    position: relative;
    padding: 236px 0 118px 0;
    overflow: hidden;
}

section.hero-banner .shape {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
}

section.hero-banner .shape .container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

section.hero-banner .shape span {
    position: absolute;
    width: 100%;
    height: 200vh;
    background: #203c74;
    display: block;
    bottom: 0;
    
        left: calc(100% - 221px);
    transform: rotate(33.6deg);
    transform-origin: left bottom;
}


section.hero-banner .is-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

section.hero-banner .is-video video {
    width: 100%;
    height: calc(100% + 1px);
    object-fit: cover;
    object-position: center center;
}

section.hero-banner .is-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background-position: center center;
    background-size: cover;
}

section.hero-banner .text-block {
    position: relative;
    max-width: 50%;
    z-index: 1;
    color: #FFF;
    max-width: 570px;
}

section.hero-banner .text-block h1 {
    letter-spacing: 0.02em;
        line-height: 1.07;
    
}

section.hero-banner:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000000;
    opacity: 0.52;
    z-index: 0;
}
section.hero-banner .text-block p{
    font-weight: 600;
            letter-spacing: 0.008em;
}
/* hero-banner End
--------------------------------------------- */

section.hero-banner.inner-banner .text-block {
    width: 100%;
    max-width: 100%;
    text-align: center;
}
section.hero-banner.inner-banner .text-block h1 {
    font-weight: 700;
}

section.hero-banner.inner-banner:after {
    background: #0A1935;
    background: linear-gradient(90deg, rgba(9, 22, 50, 0.84) 0%, rgba(25, 87, 162, 0.546) 100%);
    opacity: 1;
}

section.hero-banner.inner-banner .text-block span.top-title {
    color: #FFF;
}

section.hero-banner.inner-banner:before {
    content: '';
    background-image: url(images/banner-shape.svg);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-position: center bottom;
    background-size: 1939px;
    background-repeat: no-repeat;
}

/* branding-block
--------------------------------------------- */
section.branding-block {
    background-color: #203C74;
    padding: 49px 0;
}

section.branding-block .branding-title {
    font-size: 26px;
    color: #59A5E9;
    position: relative;
    margin: 0;
    padding: 3px 0 6px 50px;
    letter-spacing: 0.02em;
    line-height: 1.675;
        font-weight: 700;
}

section.branding-block .branding-title:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 100%;
    left: 0;
    top: 0;
    background: #59A5E9;
}
section.branding-block.background-default {
    background: #faf6f3;
}

section.branding-block.background-default .branding-title {
    color: #3781C3;
    font-size: 24px;
    padding: 0px 0 2px 40px;
        font-weight: 600;
}

section.branding-block.background-default .branding-title:after {
    background-color: #3781C3;
}

section.branding-block .content-width-w-100 {
    width: 100%;
   
}

section.branding-block .content-width-w-90 {
    
    max-width: 1044px;
}

section.branding-block .content-width-w-80 {
   
    max-width: 923px;
}
section.branding-block .content-width-w-70 {
 
     max-width: 812px;
}
section.branding-block .content-width-w-60 {
   max-width:670px;
}

section.branding-block .set-width {
    margin-left: auto;
    margin-right: auto;
}
/* branding-block End
--------------------------------------------- */

/* accordion
--------------------------------------------- */

.accordion {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #DBDBE1;
}

.accordion-item {
  border-bottom: 1px solid #DBDBE1;
}

/* Thumb */
.accordion-thumb {
  
  cursor: pointer;
 
}
 

/* Panel */
.accordion-panel {
  margin: 0;
  padding-bottom: 0.8rem;
  display: none;
}

/* accordion End
--------------------------------------------- */



/* faqs-block
--------------------------------------------- */

.faqs-block .inner-container {
    max-width: 838px;
    margin-left: auto;
    margin-right: auto;
}
.faqs-block .inner-container h2 {
    letter-spacing: 0.035em;
}
.accordion.style-1 {
    margin: 32px 0 0 0;
}

.accordion.style-1 .accordion-item {
    padding: 28px 0;
    padding-left: 62px;
}

.accordion.style-1 .accordion-thumb {
    margin-bottom: 0;
    line-height: 1.63;
    letter-spacing: 0.018em;
        position: relative;
}

.faqs-block {
    padding: 61px 0 111px 0;
    background-color: #faf6f3;
}

.accordion.style-1 .accordion-panel {
    padding-top: 12px;
    padding-bottom: 0;
        max-width: 760px;
}

.accordion.style-1 .accordion-panel p {
    letter-spacing: -0.028em;
    font-weight: 400;
}

.accordion.style-1 .accordion-thumb span {
    position: absolute;
    width: 22px;
    height: 22px;
    display: inline-block;
    left: -46px;
    top: 9px;
    transform: rotate(0deg);
    transition: all 0.3s;
}

.accordion.style-1 .accordion-thumb span:after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: #59A5E9;
    top: 9px;
    left: 2px;
}

.accordion.style-1 .accordion-thumb span:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 18px;
    background: #59A5E9;
    top: 1px;
    left: 10px;
}

.accordion.style-1 .is-active .accordion-thumb span {
    transform: rotate(45deg);
}
/* faqs-block End
--------------------------------------------- */



/* five-columns-with-icons
--------------------------------------------- */
section.branding-block + section.five-columns-with-icons{
    padding: 8px 0 52px 0;
}
section.five-columns-with-icons {
    padding: 52px 0 52px 0;
    background: #203c74;
}

section.five-columns-with-icons .five-columns > div {


    position: relative;

}


section.five-columns-with-icons .five-columns {
    display: flex;
    gap: 0 30px;
    color: #FFF;
 
}

section.five-columns-with-icons .five-columns .column-block {}

section.five-columns-with-icons .five-columns .column-block figure {
    margin: 0 0 17px 0;
    min-height: 47px;
}

section.five-columns-with-icons .five-columns .column-block h5 {
    /* max-width: 195px; */
    line-height: 1.2;
    letter-spacing: 0.015em;
    margin-bottom: 10px;
}

section.five-columns-with-icons .five-columns .column-block p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.005em;
}

section.five-columns-with-icons.background-default {padding: 79px 0 42px 0;background: #faf6f3;}

section.five-columns-with-icons span.top-title {
    width: 100%;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 18px;
    margin-bottom: 22px;
}

section.five-columns-with-icons .general-title {
    text-align: center;
}
section.five-columns-with-icons.background-dark .general-title {
    color: #FFF;
}

section.five-columns-with-icons .general-title {
    font-size: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
    letter-spacing: 0.028em;
    line-height: 1.55;
    margin-bottom: 53px;
}

section.five-columns-with-icons.background-default .five-columns .column-block h5 {
    color: #203C74;
}

section.five-columns-with-icons.background-default .five-columns .column-block p {
    color: #203C74;
}
/* five-columns-with-icons End
--------------------------------------------- */

/* what-we-do-block
--------------------------------------------- */
.what-we-do-block {
    padding: 0;
    background: #203c74;
    position: relative;
    overflow: hidden;
}

.what-we-do-block .d-flex-cover {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.what-we-do-block .d-flex-cover .left-part {
    width: 37%;
    padding-bottom: 34px;
}

.what-we-do-block .d-flex-cover .right-part {
    width: calc(63% - 0px);
    padding: 102px 0px 5px 228px;
    position: relative;
    z-index: 1;
}

.what-we-do-block .d-flex-cover .right-part:after {
    content: '';
    position: absolute;
    width: 260%;
    height: 260%;
    transform-origin: bottom left;
    transform: rotate(33deg);
    background: #faf6f3;
    bottom: 0;
    left: -39px;
    z-index: -1;
}

span.top-title {
    margin-bottom: 18px;
    display: inline-block;
    font-weight: 600;
    color: #59A5E9;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 18px;
}

.what-we-do-block .d-flex-cover .left-part h2 {
    letter-spacing: 0.03em;
    color: #FFF;
}

.what-we-do-block .d-flex-cover .left-part .is-btn {
    margin-top: 36px;
}

.what-we-do-block .d-flex-cover .right-part p {
    letter-spacing: 0.004em;
    font-weight: 500;
}

/* what-we-do-block End
--------------------------------------------- */
/* search-form-section
--------------------------------------------- */
.search-form-section {
    background: linear-gradient(270deg, #1961A1 0%, #0A1935 100%),
linear-gradient(0deg, var(--Logo-Navy, #203C74), var(--Logo-Navy, #203C74));
    padding: 50px 0;
}

.search-form-section .search-cover {
    max-width: 720px;
    margin: auto;
    background: #6b9ecb;
    border-radius: 4px;
        height: 57px;
    display: flex;
}

.search-form-section .search-cover #news-search {
    padding: 16px 80px 16px 38px;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    background: none;
    outline: none;
    border: 0;
    border-radius: 4px 0px 0px 4px;
    width: calc(100% - 57px);
    background-color: #FFF;
    color: #203C74;
        line-height: 25px;
        height: 57px;
}

.search-form-section .search-cover ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #203C74;
}
.search-form-section .search-cover ::-moz-placeholder { /* Firefox 19+ */
  color: #203C74;
}
.search-form-section .search-cover :-ms-input-placeholder { /* IE 10+ */
  color: #203C74;
}
.search-form-section .search-cover :-moz-placeholder { /* Firefox 18- */
  color: #203C74;
}

.search-form-section .search-cover span.search-icon {
    width: 57px;
    display: inline-block;
    height: 57px;
    line-height: 57px;
    text-align: center;
    font-size: 22px;
    color: #FFF;
}

.listing-section .news-listing .news-item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #DBDBE1;
    padding-bottom: 30px;
    margin-bottom: 27px;
    padding-left: 14px;
    padding-right: 14px;
        align-items: center;
}

.listing-section .news-listing .news-item .img-part {
  /*width: 381px;*/
    position: relative;
    width:35%;
}

.listing-section .news-listing .news-item .text-part {
   /* width: calc(100% - 381px);*/
    padding-left: 47px;
   /* max-width:713px;*/
   width:65%;
    
}

.listing-section .news-listing .news-item .img-part figure {
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 0;
    /*position: relative;
    left: 0;
    top: 0;
    height: 381px;
        overflow: hidden;*/
}

.listing-section .news-listing .news-item .img-part figure img {
   /* width: 100%;
    height: 100%;*/
    width:auto;
    height:auto;
    max-width:100%;
   /* object-fit: cover;
    position: absolute;*/
}

.listing-section .news-listing .news-item .text-part h4 {
    margin: 0 0 14px 0;
    letter-spacing: 0.005em;
    font-weight: 600;
}

.listing-section .news-listing .news-item .text-part h4 a {
    text-decoration: none;
}

.listing-section .news-listing .news-item .text-part p {
    letter-spacing: 0.004em;
    margin-bottom: 00;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
        font-weight: 500;
}

.listing-section .news-listing .news-item .text-part .is-link {
    text-align: right;
    margin-top: 43px;
}

.listing-section .news-listing .news-item .text-part .is-link a {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
        color: #3781C3;
}
.listing-section .news-listing .news-item .text-part .is-link a:hover,
.listing-section .news-listing .news-item .text-part .is-link a:focus{
        color: #203C74;
}
.listing-section .news-listing .news-item .text-part span.date {
    background-color: #85C5FF;
    display: inline-block;
    padding: 4px 14px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 32px;
        font-weight: 500;
}
.listing-section {
    background-color: #FAF6F3;
    padding: 67px 0 64px 0;
}

.listing-section .pagination {
    text-align: center;
    margin: 49px 0 0px 0;
}

.listing-section .pagination .page-numbers {
    font-size: 15px;
    font-weight: 500;
    border: 0;
    padding: 0 1px;
    border-bottom: 1px solid #00000000;
}

.listing-section .pagination span.page-numbers.current {
    background: none;
    color: #3781C3;
    border-color: #3781C3;
    font-weight: 700;
}
.listing-section .pagination .next:after,
.listing-section .pagination .prev:after{
    content: '';
    border: solid #3781C3;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    opacity: 1 !important;
    left: -2px;
    position: relative;
    top: 5px;
}

.listing-section .pagination .next.page-numbers,
.listing-section .pagination .prev.page-numbers{
    font-size: 0;
    padding: 0 0px;
    height: 20px;
    display: inline-block;
    margin: 0;
    width: 20px;
    position: relative;
    top: -6px;
    left: -6px;
}
.listing-section .pagination .prev.page-numbers {
    left: inherit;
    right: -2px;
    border-width: 0 2px 2px 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
.listing-section .pagination .prev.page-numbers {
    left: inherit;
    right: -2px;
    border-width: 0 2px 2px 0;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.listing-section .pagination .prev.page-numbers:hover:after, .listing-section .pagination .next.page-numbers:hover:after {
    border-color: #50c7b5;
}
 
/* search-form-section End
--------------------------------------------- */
/* Single Post
--------------------------------------------- */
.post-content-section .is-date {
    transform: translate(0%, -50%);
    text-align: center;
}

.post-content-section .is-date span {
    display: inline-block;
    background-color: #85C5FF;
    padding: 12px 23px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    border-radius: 4px;
}

.post-content-section {}

.post-content-section .content-part {
    padding: 27px 0 30px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 928px;
}

.post-content-section .content-part .post-thumbnail {
    margin-bottom: 38px;
}

.post-content-section .content-part p {
    letter-spacing: 0.035em;
    line-height: 2.1em;
    margin-bottom: 35px;
}
.single-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 52px 0 52px 0;
}

.single-bottom-links nav.navigation {
    margin: 0;
}

.single-bottom-links nav.navigation .nav-links {
    display: flex;
    gap: 0 37px;
}

.single-bottom-links nav.navigation .nav-links .nav-previous {
    flex: none;
    position: relative;
}

.single-bottom-links nav.navigation .nav-links .nav-next {flex: none;     position: relative;}

.single-bottom-links nav.navigation .nav-links a {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.025em;
}

.single-bottom-links nav.navigation .nav-links .nav-previous + .nav-next:before {
    content: '';
    position: absolute;
    left: -20px;
    width: 1px;
    height: 26px;
    background: #0000001A;
    top: 0;
}
/* Single Post End
--------------------------------------------- */
/* general-block
--------------------------------------------- */
section.general-block {
    padding: 43px 0 60px 0;
}
section.general-block p:last-child {
    margin-bottom: 0;
}
section.general-block.remove-top-padding {
    padding-top: 0;
}
section.general-block .is-btn {
    margin-top: 29px;
}

section.general-block.background-dark-blue {
    background: #203C74;
}

section.general-block.background-dark-blue p, section.general-block.background-blue p, section.general-block.background-blue .general-title, section.general-block.background-blue .top-title {
    color: #FFF;
}

section.general-block.background-dark-blue  h2.general-title {
    color: #59A5E9;
}

section.general-block.background-blue {
    background-color: #3781C3;
}

section.general-block.background-default {
    background: #faf6f3;
}

section.general-block .alignment-center {
    text-align: center;
}

section.general-block .content-block {margin-left: auto;margin-right: auto;}

section.general-block .content-block.content-width-w-90 {
 
    max-width: 1044px;
}

section.general-block .content-block.content-width-w-80 {
   
    max-width: 923px;
}

section.general-block .content-block.content-width-w-70 {
   
    max-width: 772px;
}

section.general-block .content-block.content-width-w-60 {
     max-width: 670px;
}

span.top-title.animation-box.fade-in.onView {}

section.general-block.background-default .general-title {
    color: #3781C3;
}

/* general-block End
--------------------------------------------- */
/* our-core-values-block
--------------------------------------------- */
section.our-core-values-block {
    padding: 69px 0 60px 0;
    background: #faf6f3;
}

section.our-core-values-block .core_value_list {margin-left: auto;margin-right: auto;max-width: 905px;}

section.our-core-values-block .core_value_list .core-values {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 4px;
}

section.our-core-values-block .core_value_list .core-values figure {
    width: 105px;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #59A5E9;
    border-radius: 50%;
    position: relative;
    /* top: -17px; */
}

section.our-core-values-block .core_value_list .core-values .value-content {
    width: calc(100% - 105px);
    padding-left: 32px;
}

section.our-core-values-block h2 {
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

section.our-core-values-block .core_value_list .core-values .value-content h3.h4 {
    margin-bottom: 2px;
    letter-spacing: 0.015em;
    color: #3781C3;
}

section.our-core-values-block .core_value_list .core-values .value-content p {
    letter-spacing: 0.002em;
    margin: 0;
}
section.our-core-values-block .core_value_list .core-values .value-content ul, section.our-core-values-block .core_value_list .core-values .value-content ol {
    margin: 15px 0 0 0;
    padding: 0 0 0 20px;
    /* max-width: 460px; */
}

section.our-core-values-block .core_value_list .core-values .value-content li {
    margin-bottom: 10px;
}

/* our-core-values-block End
--------------------------------------------- */
/* services-section
--------------------------------------------- */
section.services-section {
    padding: 109px 0 75px 0;
    background-color: #203C74;
    border-top: 9px solid #50C7B5;
    position: relative;
    border-bottom: 9px solid #75BDFF;

}

section.services-section:after {
    content: '';
    /*background-image: url(images/site-logo.svg);*/
    background-image: url(images/logo-2.svg);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
    z-index: 0;
    /*mix-blend-mode: soft-light;
    background-color:#25447F;*/
    background-color: #203C74;
    
   /* opacity: 0.4;*/
}


section.services-section .services-cover {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}


section.services-section .services-cover .text-part {
    color: #FFF;
    width: 38%;
    max-width: 390px;

}

section.services-section .services-cover.icon-right .text-part {
    padding-right: 30px;
}

section.services-section .services-cover.icon-left .text-part {
    padding-left: 30px;
    padding-top: 8px;
}
section.services-section .services-cover .text-part p {
    font-weight: 600;
}
section.services-section .services-cover .icon-part {
    width: 62%;
    padding-top: 13px;
}


section.services-section .services-cover .icon-part .icon-list .icon-cover figure {
    margin: 0 0 4px 0;
    text-align: center;
    display: flex;
    justify-content: center;
        min-height: 51px;
}




section.services-section .services-cover .icon-part .icon-list .icon-cover span {
    font-weight: 600;
    display: block;
}

section.services-section .services-cover .icon-part .icon-list .icon-cover {
    width: 100%;
    background: #FAF6F3;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    padding: 20px 8px;
    position: relative;
    transition: 0.35s all ease;
    top: 0px;
    height: 100%;
        transform: scale(1);
}

section.services-section .services-cover .icon-part .icon-list .icon-cover:hover {
       transform: scale(1.03);
}

section.services-section .services-cover .icon-part .icon-list .icon-cover a.hover-link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

section.services-section .services-cover .text-part span.top-title {
    color: #FFF;
}

section.services-section .text-part h2 {
    line-height: 1.10;
    letter-spacing: 0.050em;
    font-weight: 900;
    color: #59A5E9;
    text-transform: uppercase;
        font-size: 45px;
}

section.services-section .services-cover.icon-left .text-part {
    order: 2;
}

section.services-section .services-cover.icon-left .icon-part {
    order: 1;
}

section.services-section .services-cover + .services-cover {
    margin-top: 143px;
}

/* services-section End
--------------------------------------------- */
/* text-with-icon-50
--------------------------------------------- */
section.text-with-icon-50 {
    background-color: #203C74;
    padding: 0 0;
        position: relative;
    overflow: hidden;
}
section.text-with-icon-50 .flex-cover:after {
    content: '';
    position: absolute;
    width: 360%;
    height: 230%;
    transform: rotate(33.5deg);
    transform-origin: left bottom;
    background: #3781C3;
    left: calc(50% - 94px);
    bottom: 0;
    z-index: -1;
}

section.text-with-icon-50 .flex-cover {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 79px 0 93px 0;
        position: relative;
    z-index: 2;
}

section.text-with-icon-50 .flex-cover .text-part {width: 42%;color: #FFF;}

section.text-with-icon-50 .flex-cover .right-icon-part {
    width: 58%;
    max-width: 652px;
    padding-left: 20px;
}

section.text-with-icon-50 .flex-cover .text-part h2 {
    color: #FFF;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.036em;
}

section.text-with-icon-50 .flex-cover .right-icon-part .icon-list {
    position: relative;
    
    top: 23px;
}
section.text-with-icon-50 .flex-cover .right-icon-part.two-icon-boxes .icon-list{
    top: 0px;
}
section.text-with-icon-50 .flex-cover .right-icon-part .icon-list .icon-cover {
    width: 100%;
    background: #FAF6F3;
    border-radius: 4px;
    overflow: hidden;
    text-align: left;
    padding: 20px 27px 25px 27px;
    position: relative;
    transition: 0.5s all ease;
    top: 0px;
    height: 100%;
}
 

section.text-with-icon-50 .flex-cover .right-icon-part .icon-list .icon-cover figure {
    margin: 0 0 12px 0;
}

section.text-with-icon-50 .flex-cover .right-icon-part .icon-list .icon-cover figure + span {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.01em;
    display: block;
    margin-bottom: 5px;
        line-height: 1.2;
}

section.text-with-icon-50 .flex-cover .right-icon-part .icon-list .icon-cover p {
    font-size: 15px;
    margin: 0;
    line-height: 1.70;
}
section.text-with-icon-50 .flex-cover .text-part h2{}
section.text-with-icon-50 .flex-cover .text-part span.top-title {
    color: #FFF;
    margin-bottom: 32px;
}
section.text-with-icon-50 .flex-cover .text-part span.top-title + h2{
        color: #59A5E9;
}
section.text-with-icon-50 .flex-cover .text-part p {
      letter-spacing: 0.007em;
    max-width: 458px;
    line-height: 1.65;
    font-weight: 600;
}
section.text-with-icon-50 .flex-cover .right-icon-part .icon-list .icon-cover a.hover-link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
        top: 0;
}
/* text-with-icon-50 End
--------------------------------------------- */
/* profile-section
--------------------------------------------- */
section.profile-section .profile-flex {
     
    max-width: 923px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

section.profile-section {
    padding: 52px 0 7px 0;
        background: #faf6f3;
}

section.profile-section .profile-flex .img-part {
    width: 47%;
}

section.profile-section .profile-flex .img-part figure {
    margin: 0;
}

section.profile-section .profile-flex .img-part figure img {
    width: 100%;
}

section.profile-section .profile-flex .right-part {
    width: 53%;
    padding-left: 40px;
}

section.profile-section .profile-flex .right-part .heading-part {
}

section.profile-section .profile-flex .right-part .heading-part h2 {
    letter-spacing: 0.019em;
    margin-bottom: 15px;
    color: #3781C3;
}

section.profile-section .profile-flex .right-part .heading-part p {
    letter-spacing: 0.010em;
    line-height: 1.85;
    font-weight: 500;
}

section.profile-section .profile-flex .right-part .link {
    margin-bottom: 23px;
}
section.profile-section .profile-flex .right-part .link:last-child {
    margin-bottom: 0;
}

section.profile-section .profile-flex .right-part .link a {
    display: inline-block;
    padding-left: 36px;
    position: relative;
    text-decoration: none;
    letter-spacing: 0.005em;
    font-weight: 500;
}

section.profile-section .profile-flex .right-part .link a img {
    position: absolute;
    transform: translate(0, -50%);
    left: 0;
    top: 50%;
}
/* profile-section End
--------------------------------------------- */
/* Share Page
--------------------------------------------- */
.share-page {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }
        
        .share-page span {
            color: #3781C3;
            font-weight: 600;
            transition: color 0.3s ease;
            font-size: 15px;
            letter-spacing: 0.03em;
                position: relative;
    display: inline-block;
        }
.share-page span img {
    position: relative;
    right: -3px;
    top: 3px;
}
        
        .share-page:hover span {
        
        }
        
        .share-dropdown {
            position: absolute;
            bottom: 100%;
            left: 0;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            padding: 12px;
            min-width: 200px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            margin-bottom: 8px;
        }
        
        .share-page:hover .share-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .share-dropdown::before {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 20px;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid #fff;
        }
        
        .share-dropdown::after {
            content: '';
            position: absolute;
            bottom: -7px;
            left: 20px;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid #e0e0e0;
        }
        
        .share-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .share-links li {
            margin: 0;
            padding: 0;
        }
        
        .share-links a {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            color: #203C74;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.2s ease;
            font-size: 14px;
        }
        
        .share-links a:hover {
            background-color: #f7f9fa;
        }
        
        .share-links a i {
            margin-right: 8px;
            width: 16px;
            text-align: center;
        }
        
        .share-links a.facebook:hover {
            background-color: #1877f2;
            color: #fff;
        }
        
        .share-links a.twitter:hover {
            background-color: #1da1f2;
            color: #fff;
        }
        
        .share-links a.linkedin:hover {
            background-color: #0077b5;
            color: #fff;
        }
        
        .share-links a.whatsapp:hover {
            background-color: #25d366;
            color: #fff;
        }
        
        .share-links a.email:hover {
            background-color: #ea4335;
            color: #fff;
        }
        
        .share-links a.copy:hover {
            background-color: #6c757d;
            color: #fff;
        }
        
        .copy-feedback {
position: fixed;
    background: rgb(80 199 181 / 72%);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    /*opacity: 0;
    transform: translateY(100%);*/
    transition: all 0.3s ease;
    bottom: 0;
    left: 50%;
    width: 230px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
        }
        
       /* .copy-feedback.show {
    opacity: 1;
    transform: translateY(0);
        } */
/* Share Page
--------------------------------------------- */
/* profile-background
--------------------------------------------- */
section.profile-background {
    background: #faf6f3;
    padding: 19px 0 79px 0;
}

section.profile-background h2 {
    text-align: center;
        letter-spacing: 0.027em;
}

section.profile-background .qualifications-list {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #A9D7FF;
     
}

section.profile-background .qualifications-list .block {
    width: 50%;
    border-top: 1px solid #A9D7FF;
    padding: 41px 30px 34px 30px;
}

section.profile-background .qualifications-list .block .inner {}

section.profile-background .qualifications-list .block .inner .h6 {
    font-weight: 600;
    color: #3781C3;
    letter-spacing: 0.1em;
    margin-bottom: 11px;
        text-transform: uppercase;
}

section.profile-background .qualifications-list .block .inner > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

section.profile-background .qualifications-list .block .inner > ul > li {
    position: relative;
    margin-bottom: 4px;
    padding-left: 23px;
}

section.profile-background .qualifications-list .block .inner > ul > li:after {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 50%;
    background: #203C74;
    left: 9px;
    top: 10px;
}

section.profile-background .qualifications-list .block:nth-child(odd) {
    border-right: 1px solid #A9D7FF;
}

section.profile-background .qualifications-list .block:nth-child(even) {}

section.profile-background .qualifications-list .block .inner > ul > li ul {
    margin: 3px 0 0 0;
    padding: 0;
    list-style: none;
}

section.profile-background .qualifications-list .block .inner > ul > li ul li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 4px;
    letter-spacing: 0.005em;
}

section.profile-background .qualifications-list .block .inner > ul > li ul li:after {
    content: '';
    width: 5px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 11px;
    background: #203C74;
}
section.profile-background .is-btn {
    text-align: center;
    margin-top: 40px;
}
/* profile-background End
--------------------------------------------- */
/* services_list_with_icon_image 
--------------------------------------------- */
section.services_list_with_icon_image {background: #faf6f3;padding: 50px 0 81px 0;}

section.services_list_with_icon_image .heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
    margin-bottom: 63px;
}

section.services_list_with_icon_image .heading h2 {
    margin-bottom: 15px;
    color: #3781C3;
    letter-spacing: 0.029em;
    line-height: 1.3;
}

section.services_list_with_icon_image .heading p {
    font-weight: 500;
    letter-spacing: 0.01em;
}

section.services_list_with_icon_image .services_list {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
}




section.services_list_with_icon_image .services_list.icon-set .service-block {
    width: 33.3%;
    padding: 38px 0 10px 0;
    margin-bottom: -1px;
}

section.services_list_with_icon_image .services_list.icon-set .service-block:nth-child(3n+3) {
    border-right: 0;
    border-bottom: 1px solid #DBDBE1 !important;
}

section.services_list_with_icon_image .services_list.icon-set .service-block:nth-child(3n+1) {}

section.services_list_with_icon_image .services_list.icon-set .service-block {border-right: 1px solid #DBDBE1;border-bottom: 1px solid #DBDBE1;}



section.services_list_with_icon_image .services_list.icon-set .service-block .inner {
    margin: auto;
    text-align: center;
    padding: 0 20px;
    max-width: 310px;
}


section.services_list_with_icon_image .services_list.icon-set .service-block .inner .h4 {
    font-size: 22px;
    font-weight: 600;
}

section.services_list_with_icon_image .services_list.icon-set .service-block .inner figure {
    margin: 0 0 20px 0;
        min-height: 70px;
        display: flex;
    justify-content: center;
    align-items: center;
}



section.services_list_with_icon_image .services_list.image-set {
    gap: 51px 22px;
    margin: 0 -20px;
}

section.services_list_with_icon_image .services_list.image-set .service-block {
    width: calc(33.3% - 15px);
}

section.services_list_with_icon_image .services_list.image-set .service-block .inner {
    position: relative;
}

section.services_list_with_icon_image .services_list.image-set .service-block .inner figure {
    margin: 0 0 17px 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 71%;
}

section.services_list_with_icon_image .services_list.image-set .service-block .inner figure .hover-text{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 20px;
    padding: 30px 25px;
    background: rgb(32 60 116 / 93%);
    color: #FFF;
    font-size: 15px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}


section.services_list_with_icon_image .services_list.image-set .service-block .inner figure img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}


section.services_list_with_icon_image .services_list.image-set .service-block .inner figure:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: #faf6f3;
    transform: rotate(33deg);
    transform-origin: left bottom;
    bottom: 0;
    left: calc(100% - 30px);
}

section.services_list_with_icon_image .services_list.image-set .service-block .inner:hover figure .hover-text{
    opacity: 1;
    top: 0;
}
/* services_list_with_icon_image  End
--------------------------------------------- */
/* opportunity_block
--------------------------------------------- */
section.opportunity_block {
    padding: 65px 0 23px 0;
    background: #faf6f3;
}

section.opportunity_block .heading {
    text-align: center;
}

section.opportunity_block .heading h2 {
    letter-spacing: 0.028em;
}

section.opportunity_block .positions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 35px 20px;
    max-width: 1086px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
}

section.opportunity_block .positions-list .positions-block {
    width: calc(50% - 10px);
}

section.opportunity_block .positions-list .positions-block .inn {
    background: #FFF;
    padding: 34px 46px;
    box-shadow: 0px 4px 10.4px 0px #0000000F;
    border-radius: 4px;
    position: relative;
    height: 100%;
    transition: 0.2s all ease;
    top: 0px;
}

section.opportunity_block .positions-list .positions-block .inn .h5 {
    margin-bottom: 9px;
}

section.opportunity_block .positions-list .positions-block .inn p {
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: 0.005em;
    margin: 0;
}

section.opportunity_block .positions-list .positions-block .inn a.link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

section.opportunity_block .positions-list .positions-block .inn:hover {
    top: -5px;
}
/* opportunity_block End
--------------------------------------------- */
/* slider_with_icon_box
--------------------------------------------- */

.slider-block {
    width: 100%;
        padding: 0 20px;
}

.slider-block .cover {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.slider-block .cover .text-part {
    width: 468px;
    padding-right: 60px;
}

section.slider_with_icon_box {
    background-color: #203C74;
    padding: 68px 0 127px 0;
        position: relative;
    overflow: hidden;
}
section.slider_with_icon_box:after {
content: '';
    position: absolute;
    width: 120%;
    height: 210%;
    transform-origin: bottom left;
    transform: rotate(33.45deg);
    background: #1961A1;
    bottom: 0;
    left: calc(50% - -92px);
    z-index: 0;
}

section.slider_with_icon_box * {
    z-index: 1;
}

.slider_with_icon_box .slider-cover {
    position: relative;
    z-index: 1;
}

section.slider_with_icon_box .heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 953px;
    margin-bottom: 64px;
}

section.slider_with_icon_box .heading h2 {
    color: #59A5E9;
    letter-spacing: 0.03em;
    line-height: 1.35;
}

section.slider_with_icon_box .heading p {
    color: #FFF;
    letter-spacing: 0.015em;
    line-height: 1.70;
    font-weight: 500;
}

.slider_with_icon {
    margin: 0 !important;
}

.slider-block .cover .text-part h2 {
    font-size: 50px;
    text-transform: uppercase;
    color: #59A5E9;
    font-weight: 900;
    margin: 0 0 25px 0;
    line-height: 1.1;
    letter-spacing: 0.035em;
}

.slider-block .cover .text-part p {
    color: #FFF;
    letter-spacing: -0.00em;
    line-height: 1.70;
    font-weight: 600;
}

.slider_with_icon .icon-part {
    width: calc(100% - 468px);
}

.slider_with_icon .icon-part .icon-list {display: flex;flex-wrap: wrap;gap: 15px 20px; /*opacity: 0;*/  }
/*.slider_with_icon .slick-active .icon-part .icon-list {
    opacity: 1;
     animation: fadeVisible 0.3s ease-in-out;
}*/
/*@keyframes fadeVisible {
  0% {
    opacity: 0;
  }
    50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }*/
}
.slider_with_icon .icon-part .icon-list .block {
    background: #FFF;
    border-radius: 4px;
    width: calc(50% - 10px);
    padding: 28px 27px 25px 27px;
}


.slider_with_icon .icon-part .icon-list .block .inner {}

.slider_with_icon .icon-part .icon-list .block .inner figure {
    margin: 10px 0 10px 0;
}

.slider_with_icon .icon-part .icon-list .block .inner figure img {
  width:50px;
  height:50px;
}

.slider_with_icon .icon-part .icon-list .block .inner h5 {
    margin-bottom: 7px;
    font-weight: 700;
    color:#59A5E9;
}

.slider_with_icon .icon-part .icon-list .block .inner p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    color:#fff;
}

.slider_with_icon_box .slider-cover {
    background-color: #14274C;
    box-shadow: 0px 4px 10.4px 0px #0000000F;
    padding: 67px 44px;
    margin: 0 -34px;
    border-radius: 4px;
}
.slider_with_icon ul.slick-dots {
    bottom: -126px;
}

.slider_with_icon ul.slick-dots li {
    width: auto;
    height: auto;
    margin: 0px 5px;
}

.slider_with_icon ul.slick-dots li button {border: 1px solid #59A5E9;width: 16px;height: 16px;border-radius: 50%;outline: none;}

.slider_with_icon ul.slick-dots li.slick-active button {
    background-color: #59A5E9;
}

.slider_with_icon ul.slick-dots li button:before {
    display: none;
}

.slider_with_icon .slick-arrow {
    border-radius: 4px;
    border: 2px solid #59A5E9;
    width: 57px;
    height: 57px;
    left: 0;
    transform: none;
    bottom: -3px;
    top: auto;
    z-index: 7;
}
.slider_with_icon .slick-prev.slick-arrow {
    left: 20px;
}

.slider_with_icon .slick-prev:before {
    border: solid #50C7B5;
    border-width: 0 2px 2px 0;
    padding: 7px;
    border-color: #FFF;
}

.slider_with_icon .slick-next.slick-arrow {
        left: 90px;
}

.slider_with_icon .slick-next.slick-arrow:before {
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 7px;
    border-color: #FFF;
}

.slider_with_icon .slick-arrow:hover {
    background-color: #59A5E9;
}
/* slider_with_icon_box End
--------------------------------------------- */
/* subscription-service-plans-block
--------------------------------------------- */
section.subscription-service-plans-block {
    padding: 52px 0 69px 0;
    background: #203C74;
}

section.subscription-service-plans-block h2 {
    text-align: center;
    color: #FFF;
        letter-spacing: 0.029em;
}

section.subscription-service-plans-block .plan-list {
    display: flex;
    margin: 45px -40px 0 -40px;
    justify-content: center;
    flex-wrap: wrap;
        height: 100%;
    position: relative;
}

section.subscription-service-plans-block .plan-list .plans-block {
    width: 33.3%;
    padding: 0 24px;
}

section.subscription-service-plans-block .plan-list .plans-block .inner {
    width: 100%;
    background: #FAF6F3;
        position: relative;
    padding-bottom: 97px;
        border-radius: 4px;
    overflow: hidden;
    height: 100%;

}
 
section.subscription-service-plans-block .plan-list .plans-block .inner h3 {
    background: #59A5E9;
    color: #FFF;
    font-size: 22px;
    text-align: center;
    padding:10px 10px;
    height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    margin-bottom: 15px;
        letter-spacing: 0.03em;
}
section.subscription-service-plans-block .plan-list .plans-block:nth-child(2) .inner h3{
    background-color: #50C7B5;
}
section.subscription-service-plans-block .plan-list .plans-block:nth-child(3) .inner h3{
    background-color: #3781C3;
}

section.subscription-service-plans-block .plan-list .plans-block .inner .description {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
    position: relative;
    line-height: 1.75;
    min-height: 70px;
    margin-bottom: 24px;
    padding-bottom: 20px;
}

section.subscription-service-plans-block .plan-list .plans-block .inner .price-part {
    text-align: center;
}

section.subscription-service-plans-block .plan-list .plans-block .inner .price-part span.price {
    font-weight: 900;
    letter-spacing: 0.02em;
        text-transform: uppercase;
}

section.subscription-service-plans-block .plan-list .plans-block .inner .price-part span.price span.ymd {}

section.subscription-service-plans-block .plan-list .plans-block .inner .price-part span.ymd {
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.02em;
    margin-right: 8px;
}

section.subscription-service-plans-block .plan-list .plans-block .inner .price-part span.price + span.ymd {
}

section.subscription-service-plans-block .plan-list .plans-block .inner .content {
    padding: 0 61px;
    margin-top: 17px;
}

section.subscription-service-plans-block .plan-list .plans-block .inner .content ul {
    margin: 0;
    padding: 0;
}

section.subscription-service-plans-block .plan-list .plans-block .inner .content ul li {
    margin-bottom: 4px;
}

section.subscription-service-plans-block .plan-list .plans-block .inner .description:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #59A5E9;
    bottom: 0;
    transform: translate(-50%, 0px);
    left: 50%;
}

section.subscription-service-plans-block .plan-list .plans-block .inner .price-part span {font-size: 20px;}

section.subscription-service-plans-block .plan-list .plans-block .inner .price-part span.price + span.ymd:before {
    content: '/';
    margin-right: 6px;
    margin-left: 3px;
}
section.subscription-service-plans-block .plan-list .plans-block .inner .is-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    top: auto !important;
    width: 100%;
    padding: 10px 19px;
}

section.subscription-service-plans-block .plan-list .plans-block .inner .is-btn a.btn {
    width: 100%;
    text-align: center;
    letter-spacing: 0.035em;
}
/* subscription-service-plans-block End
--------------------------------------------- */
/* compare-subscription-plan-block
--------------------------------------------- */

section.compare-subscription-plan-block {
       background: #faf6f3;
    padding: 90px 0 90px 0;
}

section.compare-subscription-plan-block .compare-subscription-content {
    padding:0px 0 0 0;
}

section.compare-subscription-plan-block .compare-subscription-content h2 {
    text-align: center;
    letter-spacing: 0.025em;
}
.compare-subscription-list table.tablepress {background: none;}

.compare-subscription-list table.tablepress th {
    font-size: 18px;
}

.compare-subscription-list table.tablepress tr td, .compare-subscription-list table.tablepress tr th {
    width: 25%;
    border: 2px solid #FFF;
    background: none;
}

.compare-subscription-list  .tablepress>:where(thead,tfoot)>tr>* {
    padding: 0 10px;
    text-align: center;
    font-size: 18px !important;
    text-transform: uppercase;
    font-weight: 900;
    color: #FFF;
    height: 85px;
}

.compare-subscription-list .tablepress>:where(thead,tfoot)>tr> td.column-1 {
    background: none;
    border: 0;
}

.compare-subscription-list .tablepress>:where(thead,tfoot)>tr> td.column-2 {
    background-color: #59A5E9 !important;
}
 

.compare-subscription-list .tablepress>:where(thead,tfoot) th.column-2 {
    background-color: #59A5E9;
}
.compare-subscription-list .tablepress>:where(thead,tfoot) th.column-3 {
    background-color: #50C7B5;
}
.compare-subscription-list .tablepress>:where(thead,tfoot) th.column-4 {
    background-color: #3781C3;
}

.compare-subscription-list table.tablepress .row-striping {}

.compare-subscription-list table.tablepress .row-striping tr:first-child td {
    padding: 15px 20px;
    font-size: 14px;
    font-style: italic;
    color: #203C74;
    background: #FFF;
}

.compare-subscription-list table.tablepress .row-striping tr:first-child td strong {
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    margin-right: 15px;
}

.compare-subscription-list {
    margin: 50px -16px 0px -16px;
}

.compare-subscription-list table.tablepress tr td {
    font-size: 18px;
    color: #203C74;
    padding: 17px 20px;
    height: auto;
    line-height: 1.30;
    font-weight: 500;
    text-align: center;
        position: relative;
}
.compare-subscription-list table.tablepress tr td * {
    position: relative;
    z-index: 1;
}
.compare-subscription-list table.tablepress span.white, .compare-subscription-list table.tablepress span.blue {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #FFFFFF;
    z-index: 0;
    margin-top: 0 !important;
}

.compare-subscription-list table.tablepress tr td * {
    position: relative;
    z-index: 1;
}

.compare-subscription-list table.tablepress span.blue {
    background: #DDEFFF;
}
.compare-subscription-list table.tablepress tr td:first-child {
    text-align: left;
        width: 27.5%;
}

.compare-subscription-list table.tablepress tr td:first-child strong {
     
    color: #203C74;
    font-weight: 900;
    background: none !important;
    font-size: 20px;
}

.compare-subscription-list table.tablepress tr td:first-child strong + br * {
}

.compare-subscription-list table.tablepress tr td.column-2, .compare-subscription-list table.tablepress tr td.column-3, .compare-subscription-list table.tablepress tr td.column-4 {
    align-items: center;
    vertical-align: middle;
    font-weight: 700;
}
.compare-subscription-list table.tablepress tr td.column-2{
    background-color: rgb(168 215 255 / 20%);
    color: #3781C3;
}
.compare-subscription-list table.tablepress tr td.column-3{
    background-color: rgb(81 200 182 / 20%);
    color: #009982;
}
.compare-subscription-list table.tablepress tr td.column-4{
    background-color: rgb(55 130 195 / 20%);
    color: #203C74;
}

.compare-subscription-list table.tablepress tr td:first-child span {
    font-size: 16px;
    display: inline-block;
    margin-top: 5px;
}
.compare-subscription-list table.tablepress tr td  span.i-true {
    width: 25px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.compare-subscription-list table.tablepress tr td span.i-true:after {
    content: '';
    width: 3px;
    height: 14px;
    background: #17a917;
    position: absolute;
    transform: rotate(45deg);
    top: 3px;
    left: 15px;
}

.compare-subscription-list table.tablepress tr td span.i-true:before {
    width: 3px;
    height: 9px;
    background: #17a917;
    content: '';
    transform: rotate(-47deg);
    position: absolute;
    top: 9px;
    left: 7px;
}

.compare-subscription-list table.tablepress tr td span.i-false {
    width: 25px;
    height: 20px;
    display: inline-block;
    position: relative;
    transform: rotate(45deg);
}

.compare-subscription-list table.tablepress tr td span.i-false:after {
    content: '';
    width: 17px;
    height: 3px;
    background: #c50000;
    position: absolute;
    left: 4px;
    top: 9px;
}

.compare-subscription-list table.tablepress tr td span.i-false:before {
    content: '';
    width: 3px;
    height: 17px;
    background: #c50000;
    position: absolute;
    left: 11px;
    top: 2px;
}
/* compare-subscription-plan-block End
--------------------------------------------- */
/* location-section
--------------------------------------------- */
.location-section {
    padding:49px 0 75px 0;
}

.location-section .location-list h2 {
    letter-spacing: 0.03em;
    margin-bottom: 35px;
}

.location-section .location-list .locations {
    margin-bottom: 51px;
    padding-left: 24px;
}
.location-section .location-list .locations:last-child {
    margin-bottom: 0;
}
.location-section .location-list .locations .location-content {}

.location-section .location-list .locations .location-content .h4 {
letter-spacing: 0.015em;
    margin-bottom: 19px;
    position: relative;
    left: -13px;
}
.location-section .location-list .locations .location-content .h4:before {
    content: '';
    border: solid #59A5E9;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    opacity: 1 !important;
    left: -17px;
    position: relative;
    top: -1px;
}
.location-section .location-list .locations .location-content .h4 + span {
    font-size: 18px;
}

.location-section .location-list .locations .location-content .link {
    margin-top: 20px;
}

.location-section .location-list .locations .location-content .link a {
    font-size: 18px;
    text-decoration: none;
    margin-left: 34px;
    position: relative;
}

.location-section .location-list .locations .location-content .link a img {
    position: absolute;
    transform: translate(0px, -50%);
    top: 50%;
    left: -34px;
}

.location-section .location-list .locations .location-content .link + .link {
    margin-top: 21px;
}

.location-section .location-list .locations .location-content .link + .link a {
        border-bottom: 1px solid #203C74;
}



/* location-section End
--------------------------------------------- */
/* content-with-form
--------------------------------------------- */
.content-with-form {
      padding: 68px 0;
    background-color: #203C74;
    max-height: 465px;
}

.content-with-form .block-cover {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.content-with-form .block-cover .left-content {
     width: 50%;
max-width: 540px;
    padding-right: 40px;
}

.content-with-form .block-cover .right-content {
    width: 50%;
    max-width: 546px;
        padding-top: 7px;
        position: relative;
    z-index: 1;
}

.content-with-form .block-cover .left-content h2 {
    color: #59A5E9;
    letter-spacing: 0.03em;
    line-height: 1.35;
    margin-bottom: 17px;
}

.content-with-form .block-cover .left-content p {
    color: #FFF;
    font-size: 20px;
    letter-spacing: 0.01em;
    line-height: 1.70;
    margin-bottom: 40px;
}

.content-with-form .block-cover .left-content p a {
    color: #59A5E9;
    text-decoration: none;
}

.content-with-form .block-cover .right-content .form {
       background-color: #DDEFFF;
    padding: 44px 57px;
    border-radius: 4px;
}
.content-with-form .block-cover .right-content .form .gform_title {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.content-with-form .block-cover .right-content .form p.gform_description {
    font-size: 16px;
    letter-spacing: 0.010em;
}

.content-with-form .block-cover .right-content .form p.gform_required_legend {
    display: none;
}
.content-with-form .block-cover .right-content .form .gform_required_legend {
    display: none;
}

.content-with-form .block-cover .right-content .form .gform_wrapper {}

.content-with-form .block-cover .right-content .form .gform_wrapper .gfield {}

.gform_fields {}

.content-with-form .block-cover .right-content .form .gform_wrapper .gform_fields {row-gap: 20px;}

.content-with-form .block-cover .right-content .form .gform_wrapper .gform_fields input {
    border: 1px solid #B8C6DA;
    background: #00000000;
    border-radius: 0;
    padding: 19px 20px;
    height: auto;
    line-height: 1;
    max-height: 57px;
    font-size: 16px;
        box-shadow: none;
        outline: none;
    
}

.content-with-form .block-cover .right-content .form .gform_wrapper .gform_fields select {
    border: 1px solid #B8C6DA;
    background: #00000000;
    border-radius: 0;
    padding: 19px 20px;
    height: auto;
    line-height: 1;
    max-height: 57px;
    font-size: 16px;
    box-shadow: none;
    color: #203C74;
        outline: none;
}
.content-with-form .block-cover .right-content .form .gform_wrapper .gform_fields textarea {
    background: none;
    border: 1px solid #B8C6DA;
    background: #00000000;
    border-radius: 0;
    padding: 19px 20px;
    height: auto;
    line-height: 1;
    max-height: 57px;
    font-size: 16px;
    max-height: 100px;
    height: 115px !important;
    box-shadow: none;
        outline: none;
}
.content-with-form .block-cover .right-content .gform_footer input[type="submit"] {
    display: block !important;
    max-width: 100% !important;
    padding: 14px 60px !important;
    width: 100% !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    background: linear-gradient(90deg, #3781C3 0%, #50C7B5 100%);
        outline: none !important;
    box-shadow: none !important;
        outline: none;
}
.content-with-form .block-cover .right-content .form .gform_wrapper .gfield .ginput_container_select {
    position: relative;
}
body .content-with-form .block-cover .right-content .gform_footer input[type="submit"]:hover,
body .content-with-form .block-cover .right-content .gform_footer input[type="submit"]:focus{
    outline: none;
    border: 1px solid #3781C3;
}

.content-with-form .block-cover .right-content .form .gform_wrapper .gfield .ginput_container_select:after {
    content: '';
    border: solid #203C74;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    opacity: 1 !important;
    top: calc(50% - 3px);
    position: absolute;
    right: 20px;
    transform: translate(0%, -50%) rotate(45deg);
}
.content-with-form .block-cover .right-content .gform_footer input[type="submit"]:hover,
.content-with-form .block-cover .right-content .gform_footer input[type="submit"]:focus{
    background: #3781C3 !important;
}
.content-with-form .block-cover .right-content .form .gform_validation_errors {
    display: none;
}
 

.content-with-form .block-cover .right-content .form .gform_wrapper .gform_fields .gfield_error  input,
.content-with-form .block-cover .right-content .form .gform_wrapper .gfield.gfield_error select,
.content-with-form .block-cover .right-content .form .gform_wrapper .gfield.gfield_error textarea{
    border-color: #c02b0a;
}
 
.content-with-form .block-cover .right-content .form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #203C74;
}
.content-with-form .block-cover .right-content .form ::-moz-placeholder { /* Firefox 19+ */
  color: #203C74;
}
.content-with-form .block-cover .right-content .form :-ms-input-placeholder { /* IE 10+ */
  color: #203C74;
}
.content-with-form .block-cover .right-content .form :-moz-placeholder { /* Firefox 18- */
  color: #203C74;
}

/* content-with-form End
--------------------------------------------- */
/* footer.site-footer
--------------------------------------------- */
footer.site-footer {
    background: #182A4D;
    background: linear-gradient(0deg, rgba(24, 42, 77, 1) 0%, rgba(32, 60, 116, 1) 100%);

    position: relative;
}

footer.site-footer:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(images/site-logo.svg);
    z-index: 0;
    background-repeat: no-repeat;
    background-position: right;
    background-size: auto 100%;
 
    mix-blend-mode: soft-light;
}

footer.site-footer * {
    position: relative;
    z-index: 1;
}

footer.site-footer .site-info {
    display: flex;
    flex-wrap: wrap;
    padding: 70px 0 66px 0;
    margin-right: -4px;
}

footer.site-footer .site-info .left-part {
    width: 40%;
    display: flex;
}

footer.site-footer .site-info .left-part .site-logo-part {
    padding: 0 18px;
    text-align: center;
}

footer.site-footer .site-info .left-part .site-logo-part .phone a {
    color: #FFF;
    font-size: 17px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.015em;
}

footer.site-footer .site-info .left-part .site-logo-part .phone a:hover,
footer.site-footer .site-info .left-part .site-logo-part .phone a:focus {
    color: #50c7b5;

}

footer.site-footer .site-info .left-part .address {
    border-left: 1px solid #59A5E940;
    padding-left: 55px;
    margin-left: 51px;
}

footer.site-footer .site-info .left-part .address address {
    margin: 0 0 35px 0;
    font-style: normal;
}

footer.site-footer .site-info .left-part .address address span {
    color: #59A5E9;
    font-weight: 600;
        letter-spacing: 0.04em;
    margin-bottom: 6px;
    display: block;
    font-size: 15px;
}

footer.site-footer .site-info .left-part .address address p {
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.010em;
}
footer.site-footer .site-info .left-part .address address p a{
     color: #FFF;
    text-decoration: none;
}
footer.site-footer .site-info .left-part .address address p a:hover {
    color: #50c7b5;
}
footer.site-footer .site-info .right-part {
    display: flex;
    flex-wrap: wrap;
    width: 60%;
        justify-content: end;
        padding-left: 39px;
        height: fit-content;

}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 0px 12px;
}

.social-icons a {
    width: 34px;
    line-height: 34px;
    height: 34px;
    background: #59A5E9;
    border-radius: 50%;
    font-size: 16px;
    color: #FFF;
}

.social-icons a:hover,
.social-icons a:focus {
    background: #50c7b5;

}

footer.site-footer .social-icons {
    margin-top: 27px;
    margin-bottom: 25px;
}

footer.site-footer .site-info .right-part .footer-menu {
    width: 50%;
}

footer.site-footer .site-info .right-part .book-now {
    background-color: #FAF6F3;
    padding: 21px 31px;
    border-radius: 4px;
    width: 251px;
}

footer.site-footer .site-info .right-part .footer-menu > ul {
    margin: -4px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
}

footer.site-footer .site-info .right-part .footer-menu > ul > li {
    width: 50%;
}

footer.site-footer .site-info .right-part .footer-menu > ul > li a {
    color: #59A5E9;
    font-weight: 600;
        letter-spacing: 0.03em;
}
footer.site-footer .site-info .right-part .footer-menu > ul > li a:hover{
    color:#50c7b5;
}
footer.site-footer .site-info .right-part .footer-menu > ul > li ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer.site-footer .site-info .right-part .footer-menu > ul > li ul li{
    
}
footer.site-footer .site-info .right-part .footer-menu > ul > li ul li {
    margin-bottom: 5px;
}

footer.site-footer .site-info .right-part .footer-menu > ul > li ul li a {
    color: #FFF;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: capitalize;


}
footer.site-footer .site-info .right-part .footer-menu > ul > li ul li a:hover{
    color:#50c7b5;
}

footer.site-footer .site-info .right-part .footer-menu ul li a {
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 3px;
}

footer.site-footer .site-info .right-part .book-now span.h5 {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0.010em;
    display: block;
    margin-bottom: 14px;
}

footer.site-footer .site-info .right-part .book-now p {
    margin-bottom: 18px;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: 0.015em;
}

footer.site-footer .site-info .right-part .book-now a {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #3781C3;
    color: #3781C3;
    padding: 0 3px 3px 3px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
footer.site-footer .site-info .right-part .book-now a:hover{
        color: #50c7b5;
    border-bottom: 2px solid #50c7b5;
}

footer.site-footer .footer-bottom {
    border-top: 1px solid #59A5E940;
    padding: 35px 0 45px 0;
}

footer.site-footer .footer-bottom .site-copy {
    color: #FFF;
    font-size: 15px;
    font-weight: 300;
    display: inline-block;
    letter-spacing: 0.013em;
}

footer.site-footer .footer-bottom ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    margin-left: auto;
    align-items: center;
}

footer.site-footer .footer-bottom .container {
    display: flex;
    align-items: center;
}

footer.site-footer .footer-bottom ul li {
    margin-left: 36px;
}

footer.site-footer .footer-bottom ul li a {
    color: #FFF;
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.02em;
}

footer.site-footer .footer-bottom ul li a:hover,
footer.site-footer .footer-bottom ul li a:focus {
    color: #50c7b5;
}

footer.site-footer .footer-cta {
    padding: 51px 0 0 0;
}

footer.site-footer .footer-cta .text-part {
    text-align: center;
    color: #FFF;
    margin-left: auto;
    margin-right: auto;
    max-width: 896px;
    padding-bottom: 30px;
}
footer.site-footer .footer-cta .text-part.content-width-w-100 {
    width: 100%;
}
footer.site-footer .footer-cta .text-part.content-width-w-90 {
    max-width: 1044px;
}
footer.site-footer .footer-cta .text-part.content-width-w-80 {
 
    max-width: 896px;
}
footer.site-footer .footer-cta .text-part.content-width-w-70 {
    max-width: 812px;
}

footer.site-footer .footer-cta .text-part.content-width-w-60 {
    max-width: 696px;
}
footer.site-footer .footer-cta h2 {
    letter-spacing: 0.026em;
    margin-bottom: 18px;
    color: #59A5E9;
}

footer.site-footer .footer-cta p {
    letter-spacing: 0.010em;
        font-weight: 500;
}
    .is-btn.is-mob {
    display: none;
}
footer.site-footer .footer-cta p a {
    color: #FFF;
}

footer.site-footer .footer-cta p a:hover,
footer.site-footer .footer-cta p a:focus{
    color: #50c7b5;
}
footer.site-footer .footer-cta a.btn {
    font-size: 15px;
}
/* footer.site-footer End
--------------------------------------------- */
button.slick-arrow.slick-disabled {
    opacity: 0.3;
    cursor: default;
}

@media screen and (min-width: 1355px) {
     
    .site-header .container {
        max-width: 1352px;
    }

    section.services-section .text-part h2 {
        font-size: 50px;
        margin-bottom: 17px;
    }

    section.services-section .services-cover.icon-right .icon-list {
        margin-right: -58px;
    }

    section.services-section .services-cover .text-part span.top-title {
        margin-bottom: 52px;
    }

    section.services-section .services-cover.icon-left {
        margin-right: -26px;
    }



    section.services-section .services-cover.icon-left .icon-part .icon-list {
        margin: 0 -25px 0 -17px;
    }
    section.text-with-icon-50 .flex-cover .text-part span.top-title {
   
    font-size: 18px;
 
}
    section.text-with-icon-50 .flex-cover .text-part h2{
        font-size: 50px;
                margin-bottom: 30px;
        
    }
    section.text-with-icon-50 .flex-cover .text-part p{
            font-size: 18px;
    }
    section.five-columns-with-icons .five-columns{
            margin-right: -42px;
    }
    section.text-with-icon-50 .flex-cover .right-icon-part .icon-list{
            right: -40px;
    }
    section.profile-background .qualifications-list{
            margin: 0 -32px;
    }
    .listing-section .news-listing .news-item .text-part {
   
    padding-top: 14px;
}
}

@media screen and (min-width: 1251px) {
    span.top-title {font-size:18px;}
    section.profile-background h2 { margin-bottom: 36px;}
    
    section.profile-background .qualifications-list .block{
            padding: 41px 51px 34px 51px;
    }
    section.profile-section .profile-flex .right-part .heading-part p{
        font-size: 18px;
    }
    section.profile-section .profile-flex .right-part .heading-part {
    margin-bottom: 65px;
}
    section.profile-section .profile-flex .right-part {
    padding-bottom: 20px;
}
    section.services-section .services-cover .text-part span.top-title,
    section.services_list_with_icon_image .heading p{

        font-size: 18px;
    }

    section.hero-banner:not(.inner-banner) .text-block h1 {
        font-size: 75px;
        letter-spacing: 0.02em;
        margin-bottom: 22px;
    }

    section.hero-banner .text-block p,
    .large p {
        font-size: 18px;
        line-height: 1.67;
                letter-spacing: 0.008em;
    }

    section.hero-banner .text-block .is-btn {
        margin-top: 43px;
    }

    section.services-section .services-cover .text-part .is-btn {
        margin-top: 37px;
    }
}

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

    h2,
    .h2 {
        font-size: 36px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {

        margin-bottom: 20px;
    }

}

@media screen and (min-width: 1025px) {

    /*section.five-columns-with-icons .five-columns > div,
    section.services-section .services-cover .icon-part .icon-list > div,
   section.text-with-icon-50 .flex-cover .right-icon-part .icon-list > div{
        opacity: 0;
       
        transition: 1s all ease;
    }

    section.five-columns-with-icons .five-columns > div.active,
    section.services-section .services-cover .icon-part .icon-list > div.active,
    section.text-with-icon-50 .flex-cover .right-icon-part .icon-list > div.active{
        opacity: 1;
        top: 0;
    }*/

    section.services-section .services-cover .icon-part .icon-list {
        display: grid;
        gap: 18px 20px;
        grid-template-columns: repeat(3, 1fr);
    }
    section.text-with-icon-50 .flex-cover .right-icon-part .icon-list {
    display: grid;
    gap: 14px 20px;
    grid-template-columns: repeat(2, 1fr);
}
    
     section.text-with-icon-50 .flex-cover .right-icon-part.two-icon-boxes .icon-list {
    grid-template-columns: repeat(1, 1fr);
}    

    section.five-columns-with-icons .five-columns > div {
        width: 25%;

    }

}

 
