@charset "utf-8";
/* CSS Document */

/* Table of Contents
-----------------------------------------------------------------------------
1. Clean Base
2. Base Typography
3. Images
4. Links
5. Forms
6. Tables
7. Framework 
*/

/* 1. Clean Base
------------------------------------------------------------------------------*/
html, body, br, hr, div, span, a, object, iframe, ul, ol, dl, li, dt, dd, h1, h2, h3, h4, h5, h6, p, blockquote, q, address,
small, big, cite, dfn, ins, del, i, em, b, strong, sup, sub, strike, pre, code, samp, kbd, var, tt, form, fieldset, legend, label,
input, textarea, option, .nobox {background: transparent; border: 0; font-size: 100%; margin: 0; outline: 0; padding: 0; vertical-align: baseline;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
audio,canvas,progress,video {display: inline-block;vertical-align: baseline;}
blockquote, q {quotes: none;}
br {height: 0;}
ul, ol, dl, li {margin:0; padding:0;}
html, body{height: 100%; border:none; -webkit-appearance:none;-ms-appearance:none; -webkit-text-size-adjust:none;-ms-text-size-adjust:none;}

/* Class for clearing floats */
.clear {clear:both; display:block; overflow:hidden; visibility:hidden; width:0; height:0;}
.cf:after,.cf:before{display: table;content: ''}
.cf:after{clear: both;}
*, *:before, *:after {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}

/* 2. Base Typography
------------------------------------------------------------------------------*/
@font-face {
    font-family: 'larsseitextrabold';
    src: url('../fonts/larsseit-extrabold.woff2') format('woff2'),
         url('../fonts/larsseit-extrabold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'larsseitregular';
    src: url('../fonts/larsseit.woff2') format('woff2'),
         url('../fonts/larsseit.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'larsseitbold';
    src: url('../fonts/larsseit-bold.woff2') format('woff2'),
         url('../fonts/larsseit-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body {
    overflow-x: hidden;
    /* Typography */
    color: #1a1a1a;
    font: 400 20px/37px 'larsseitregular';
}

h1, h2, h3, h4, h5, h6 {
    /* Typography */
    font-family: 'larsseitbold';
    font-weight: normal;    
}

h1 {
    /* Typography */
    font-size: 47px;
    line-height: 54px;
    color: #fff;
}

h2 {
    /* Box-model */
    margin-bottom: 15px;
    
    /* Typography */
    font-size: 35px;
    line-height: 50px;
    color: #1a1a1a;
}

h3 {
    /* Box-model */
    margin-bottom: 10px;
    
    /* Typography s*/
    font-size: 33px;
    line-height: normal;
    font-weight: 700;
}

h4 {
    /* Box-model */
    margin-bottom: 20px;
    
    /* Typography */
    font-size: 24px;
    line-height: 28px;
    color: #000;
}

h5 {
    /* Box-model */
    margin-bottom: 20px;
    
    /* Typography */
    font-size: 27px;
    line-height: 30px;
    color: #ea7617;
}

h6 {
    /* Box-model */
    margin-bottom: 10px;
    
    /* Typography */
    font-size: 16px;
    line-height: 20px;
    color: #ea7617;
}

blockquote {
    /* Box-model */
    padding: 0px 20px 0 60px;
    /* margin: 0 0 20px; */
    
    /* Typography */
    font-size: 17px;
    
    /* Visual */
    /* border-left: 5px solid #eee; */
    max-width: 910px;
    margin-left: auto;
    position: relative;
}

blockquote:before {
    content: "";
    position: absolute;
    width: 4px;
    height: calc(100% - 0px);
    background-color: #6FCBDC;
    left: 25px;
    top: 0;
}

blockquote {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 0;
}

blockquote span {
    display: block;
    font-size: 15px;
    line-height: 25px;
    font-family: 'larsseitbold';
    margin-top: 20px;
    color: #1a1a1a;
}

p {
    /* Box-model */
    margin-bottom: 20px;
    
    /* Typography */
    color: #1a1a1a;
    font: 400 20px/37px 'larsseitregular';    
}

p strong {
    /* Box-model */
    display: block;
    
    /* Typography */
    font-weight: 700;
}

p a {
    /* Typography */
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

p span {
    /* Typography */
    color: inherit;
    font-weight: 700;
}

ul {
    /* Box-model */
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
    margin-left: 15px;
}

ul li {
    /* Box-model */
    padding: 0;
    margin: 0;
    
    /* Typography */
    font-size: 15px;
    color: #333333;
    font-weight: 400;
    line-height: 22px;
}

ol {
    /* Box-model */
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    margin-left: 18px;
}

ol li {
    /* Box-model */
    padding: 0;
    margin: 0;
    
    /* Typography */
    font-size: 15px;
    color: #333333;
    font-weight: 400;
    line-height: 22px;
}

hr {
    /* Box-model */
    margin-top: 20px;
    margin-bottom: 20px;
    
    /* Visual */
    border: 0;
    border-top: 1px solid #eee;
}

/* 3. Images
------------------------------------------------------------------------------*/
img {
    /* Box-model */
    display: block;
    max-width: 100%;
    /*width: 100%;*/
    
    /* Visual */
    border: none;
    border-style: none;
}

.alignleft {
    /* Box-model */
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    /* Box-model */
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter,
.alignnone {
    /* Box-model */
    float: none;
    margin: 0 auto 20px;
}


/* 4. Link
------------------------------------------------------------------------------*/
a {
    /* Typography */
    color: #3e67b0;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    font-family: 'larsseitbold';
    
    /* Visual */
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

a:hover,
a:focus {
    /* Typography */
    color: #6fcbdc;
    
    /* Visual */
    outline: none;
}

/* 5. Forms
------------------------------------------------------------------------------*/
input,
button,
select,
textarea {
    /* Typography */
    font-family: 'larsseitregular';
    font-weight: 300;
    font-size: inherit;
    line-height: inherit;
    
    /* Visual */
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: none;    
    -webkit-text-size-adjust: none;
    outline: none
}

input[type='email'],
input[type='text'],
input[type='search'],
input[type='tel'],
input[type='password'],
textarea {
    /* Box-model */
    padding: 0 10px 0 22px;
    display: block;
    width: 100%;
    height: 42px;
    
    /* Typography */
    font-size: 14px;
    line-height: 42px;
    color: #aeaeae;
    
    /* Visual */
    background-color: #fff;
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

textarea {
    /* Box-model */
    padding: 15px 22px;
    height: 122px;
    
    /* Typography */
    line-height: 24px;
    
    /* Visual */
    overflow: auto;
    resize: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {    
    /* Box-model */
    display: inline-block;
    padding: 0 18px;
    height: 42px;
    
    /* Typography */
    text-align: center;
    font-family: 'larsseitbold';
    font-weight: 700;
    line-height: 39px;
    text-transform: uppercase;
    color: #ea7617;
    line-height: 42px;
    
    /* Visual */
    border: 1px solid #ea7617;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-appearance: none;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    /* Typography */
    color: #fff;

    /* Visual */
    background-color: #ea7617;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

::-webkit-input-placeholder { color: #1a1a1a; }
::-moz-placeholder { color: #1a1a1a; }
:-ms-input-placeholder { color: #1a1a1a; }
:-moz-placeholder { color: #1a1a1a; }

@-moz-document url-prefix() { 
    ::-webkit-input-placeholder { opacity: 1;}
    ::-moz-placeholder { opacity: 1;}
    :-ms-input-placeholder { opacity: 1;}
    :-moz-placeholder { opacity: 1;}  
}

/* 6. Tables
------------------------------------------------------------------------------*/
table {
    /* Visual */
    border-spacing: 0;
    border-collapse: collapse;
}

td {
    /* Typography */
    text-align: left;
    font-weight: normal;
}

/* 7. Layout Framework
------------------------------------------------------------------------------*/

/* commomn css */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-justify { text-align: justify; }
.left { float: left;}
.right { float: right;}

.mm-page { min-height: 100%;}

#wrapper {
    overflow: hidden;
    /* Box-model */
    width: 100%;
    min-height: 100%;
}

.container {
    /* Box-model */
    margin: 0 auto;
    max-width: 1670px;
    width: 100%;
    padding: 0 15px;
}

.medium_container{
    max-width: 1470px;
}

/* button */
.btn {    
    /* Box-model */
    display: inline-block;
    padding: 0 29px;
    height: 49px;
    min-width: 110px;
    
    /* Typography */
    text-align: center;
    font-family: 'larsseitbold';
    font-weight: normal;
    line-height: 49px;    
    color: #1a1a1a;
    font-size: 18px;
    
    /* Visual */
    cursor: pointer;    
    border:  0px solid #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    background-color: #fff;
}
.btn.blue-btn {
    background-color: #6fcbdc;
    color: #fff;
    padding: 0 29px;
}


.btn:hover,
.btn:focus {
    /* Typography */
    color: #fff;
    
    /* Visual */
    background-color: #3e67b0;
    /*padding: 0 35px 0 35px;*/
}

.btn.blue-btn:hover, .btn.blue-btn:focus {
    /*padding: 0 26px 0 27px;*/
    background-color: #fff;
    color: #6fcbdc;
}

/* header */
header {
    /* Visual */
    position: relative;
    
    /* Box-model */
    width: 100%;
    height: auto;
}

section{
    z-index: 0;
}

nav ul {
    margin: 0;
}

/* footer */
footer {
    /* Positioning */
    position: relative;
    bottom: 0;
    
    /* Box-model */
    width: 100%;
    
    /*Visual */
    background-color: #fff;
    z-index: 1;
}

.row{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

.col-1{
    max-width: 8.333333%;
    width: 100%;
}

.col-2{
    max-width: 16.666667%;
    width: 100%;
}

.col-3{
    max-width: 25%;
    width: 100%;
}

.col-4{
    max-width: 33.33%;
    width: 100%;
}

.col-5{
    max-width: 41.666667%;
    width: 100%;
}

.col-6{
    max-width: 50%;
    width: 100%;
}

.col-7{
    max-width: 58.333333%;
    width: 100%;
}

.col-8{
    max-width: 66.66666667%;
    width: 100%;
}

.col-9{
    max-width: 75%;
    width: 100%;
}

.col-10{
    max-width: 83.333333%;
    width: 100%;
}

.col-11{
    max-width: 91.666667%;
    width: 100%;
}

.col-12{
    max-width: 100%;
    width: 100%;
}

/*--------- home page ------------*/

.hero-banner {
    background-color: #3E67B0;
    position: relative;    
    overflow: hidden;
    /*height: 100vh;*/
    z-index: 9;
    padding: 230px 0 100px;
}

.hero-banner .container {
    max-width: 1470px;
}

.hero-banner span.roundcircle-opacity {
    width: 1275px;
    height: 1275px;
    background-color: rgb(26 26 26 / 20%);
    position: absolute;
    top: -450px;
    right: -240px;
    border-radius: 50%;
    z-index: 9;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 35px 0;
    z-index: 100;   
}

.logo {
    float: left;
}

header .right-header {
    float: right;
    margin-left: auto;
    margin-right: 0;
    margin-top: 13px;
    /* margin-bottom: auto; */
}

.right-header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.right-header nav ul li {
    display: inline-block;
    margin-left: 70px;
}

.right-header nav ul li:first-child {
    margin-left: 0;
}

.right-header nav ul li a {
    color: #fff;
    font-size: 18px;
}

.right-header nav ul li a:hover,
.right-header nav ul li.current-menu-item a,
footer .right nav .menu li.current-menu-item a,
.mobile_menu nav ul li.current-menu-item a{
    color: #6fcbdc;    
}
header .container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;    
    max-width: 100%;
    padding: 0 50px;

}  

.right-header nav ul li.say-button a {
    background-color: #fff;
    padding: 10px 28px 11px;
    color: #6852a1;
    border-radius: 30px;
}

.right-header nav ul li.say-button a:hover {
    background-color: #6852a1;
    color: #fff;
} 

.banerconte-withimg {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 99;
    margin-bottom: 85px;
}

.banerconte-withimg .banner-content {
    padding-top: 25px;
}

.banerconte-withimg .banner-content h1 {
    font-size: 37px;
    color: rgb(255 255 255 / 60%);
    margin-bottom: 10px;
}

.banerconte-withimg .banner-content span {
    font-size: 65px;
    color: #fff;
    line-height: 76px;
    font-family: 'larsseitbold';
    display: block;
    margin-bottom: 40px;
}

.banerconte-withimg .banner-content {
    float: left;
    width: 47%;
}
.banerconte-withimg .banner-vector {
    float: right;
    width: 53%;
}

.logos-div label {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    color: #fff;
    font-family: 'larsseitbold';
    font-weight: normal;
    width: 110px;
    padding-right: 5px;
}

.logos-div .right-logo {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 120px);
}

.logos-div .right-logo span {
    display: inline-block;
    margin-right: 60px;
    vertical-align: middle;
    max-width: 110px;
}
.logos-div.cf {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1470px;
    width: 100%;
    padding: 0 15px;
    height: 90px;
}

.title-desc-div {
    padding: 50px 0;
}

.title-desc-div h2{
    font-size: 55px;
    line-height: 70px;
}

.title-desc-div p:last-child {
    margin-bottom: 0;
}

.title-desc-div p {
    font-size: 22px;
    line-height: 36px;
}
.title-desc-div .maxwidth-divs {
    max-width: 940px;
    margin: 0 auto;
}

.title-desc-div .maxwidth-divs h2 span {
    color: #3e67b0;
}

.better-decision-section {
    /* padding: 60px 0 100px; */
    position: relative;
    /*overflow: hidden;*/
}

.better-decision-section .container{
    position: relative;
    padding: 60px 15px 100px;
}

.better-decision-section .container:after {
    content: "";
    /*background-image: url(../images/soft_white_logo.svg);
    width: 500px;
    height: 500px;
    background-size: contain;
    display: block;
    position: absolute;
    right: -30px;
    top: -30px;
    z-index: -1;*/
}
span.bigdots-opacity {
    position: absolute;
    right: -140px;
    max-width: 800px;
    z-index: -9;
    width: 100%;
    height: auto;
    top: -40px;
}

section.services-section {
    position: relative;
    margin-bottom: 140px;
}

span.bigdots-opacity img {
    opacity: .34;
}
/*-31-03-2021-*/
.multi_section {
    padding: 30px 0 100px;
}

.multi_section .container {
    max-width: 1670px;
}

.multi_section .info_card {
    padding: 120px 0;
}


.multi_section .info_card {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1095px;
    margin-right: auto;
    position: relative;
}

.multi_section .info_card:nth-child(even){
    margin-left: auto;
    margin-right: 0;
}

.multi_section .info_card .info_cover {
    max-width: 600px;
    position: relative;
}

.multi_section .info_card .info_text {
    max-width: calc(100% - 600px);
    padding-left: 90px;
    z-index: 0;
}

.info_text h3 {
    color: #3e67b0;
}

.multi_section .info_card img.card_image {
    max-width: 600px;
    width: 100%;
    box-shadow: 5px 5px 50px -20px #000;
}

.multi_section .info_card .big_bg_circle {
    display: block;
    position: absolute;
    width: 670px;
    height: 670px;
    top: 45%;
    background-color: #6fcbdc;
    border-radius: 50%;
    transform: translate(0, -50%) !important;
    opacity: 0.1 !important;
    z-index: -1;
    right: -300px;
}

.multi_section .info_card:nth-child(2) .big_bg_circle {
    width: 550px;
    height: 550px;
    background-color: #6852a1;
    top: 50%;
}

.multi_section .info_card:nth-child(3) .big_bg_circle{
    background-color: #3e67b0;
    width: 640px;
    height: 640px;
    top: 50%;
}

.multi_section .info_card:nth-child(4) .big_bg_circle{
    background-color: #ce2027;
    top: 50%;
    width: 640px;
    height: 640px;
}

.multi_section .info_card .small_bg_circle {
    height: 90px;
    width: 90px;
    background-color: #6fcbdc;
    border-radius: 50%;
    position: absolute;
    top: -90px;
    left: 100px;
}

.multi_section .info_card:nth-child(2) .small_bg_circle {
    background-color: #6852a1;
    left: auto;
    right: 50px;
    top: 0px;
    width: 140px;
    height: 140px;
}

.multi_section .info_card:nth-child(3) .small_bg_circle{
    background-color: #3e67b0;
    top: auto;
    bottom: 0;
    left: auto;
    right: -200px;
    transform: translateX(200px);
    width: 70px;
    height: 70px;
}

.multi_section .info_card:nth-child(4) .small_bg_circle{
    background-color: #ce2027;
    top: auto;
    bottom: 0;
    left: -200px;
    width: 75px;
    height: 75px;
}

.areyou_nxt .container {
    background-color: #3e67b0;
    min-height: 600px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    max-width: 1640px;
}

.areyou_nxt .container:before {
    content: "";
    width: 650px;
    height: 650px;
    background-color: #1a1a1a;
    opacity: 0.1;
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    clip-path: circle(85% at 0 0);
}

.areyou_nxt .container:after {
    content: "";
    width: 260px;
    height: 260px;
    background-color: #1a1a1a;
    opacity: 0.1;
    position: absolute;
    border-radius: 50%;
    right: 15%;
    bottom: 20%;
    z-index: -1;
}

.areyou_nxt .title-desc-div {
    padding: 60px 0;
}

.areyou_nxt .title-desc-div .maxwidth-divs {
    max-width: 1024px;
}

.areyou_nxt img {
    max-width: 100px;
    margin: 0 auto 35px;
}

.areyou_nxt h2 {
    font-size: 45px;
    line-height: 64px;
    color: #fff;
    margin-bottom: 50px;
}

footer .top_footer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
    padding: 30px 0px;
}

footer .top_footer a.footer_logo {
    display: block;
    width: 100%;
    max-width: 285px;
}

footer .top_footer .left, footer .top_footer .right {
    float: none;
    width: 50%;
    margin: 0 auto;
}

footer .top_footer nav, footer .top_footer nav ~ .social_icon {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

footer .top_footer nav li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 60px;
    line-height: 24px;
    font-size: 18px;
}

footer .top_footer nav li a {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

footer .top_footer nav ~ .social_icon a {
    background-color: #3e67b0;
    color: #fff;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    line-height: normal;
    border: 3px solid #3e67b0;
}

footer .top_footer nav ~ .social_icon a:hover{
    color: #3e67b0;
    background-color: transparent;
}

footer .top_footer .left p {
    max-width: 280px;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
    margin-top: 10px;
}

footer .bottom_footer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 15px 0 20px;
    border-top: 1px solid #eaeaea;
}

footer .bottom_footer .left, footer .bottom_footer .right {
    width: 50%;
}
 
footer .bottom_footer .left p {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

footer .bottom_footer .right nav ul{
    line-height: normal;
}

footer .bottom_footer .right nav li {
    display: inline-block;
    margin-left: 25px;
    position: relative;
}

footer .bottom_footer .right nav li:not(:first-child):before{
    content: "";
    width: 10px;
    height: 1px;
    background-color: #1a1a1a;
    display: block;
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
}

footer .bottom_footer .right nav li a{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #1a1a1a;
    font-family: 'larsseitregular';
}

footer .bottom_footer .right nav li a:hover{
    color: #3e67b0;
}

/*-Mobile_ Menu-*/
.mobile_menu_cover{
    opacity: 0;
    height: 0;
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 50px 50px 0;
    transition: all 0.4s ease-in-out;
    overflow-y: auto;
}

.menu_trigger{
    display: none;
    padding: 0;
    height: auto;
    border: none;
    line-height: normal;
}

.menu_trigger:hover {
    background-color: transparent;
}

.menu_trigger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}

.menu_close {
    padding: 0;
    height: auto;
    border: none;
    line-height: normal;
}

.menu_close:hover{
    background-color: transparent;
}

.menu_close span {
    display: block;
    width: 30px;
    height: 3px;
    margin: -3px 0;
    background-color: #3e67b0;
}

.menu_close span.bottom {
    transform: rotate(-45deg);
}

.menu_close span.top {
    transform: rotate(45deg);
}

.mobile_menu_cover .mobile_header,
.mobile_menu_cover .mobile_body,
.mobile_menu_cover .mobile_footer{
    display: none;
}

.mobile_menu_cover.show {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    opacity: 1;
    height: 100%;
    top: 0;
    flex-direction: column;
    justify-content: space-between;
}

.mobile_menu_cover.show .mobile_header,
.mobile_menu_cover.show .mobile_body,
.mobile_menu_cover.show .mobile_footer{
    display: block;
}

.mobile_menu_cover .mobile_footer {
    padding-top: 20px;
    border-top: 1px solid #d7d7d7;
}

.mobile_menu_cover .mobile_footer p {
    font-size: 15px;
    line-height: 24px;
}

.mobile_menu_cover.show .mobile_header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile_menu_cover .mobile_body {
    padding: 20px 0 65px;
}

.mobile_menu_cover .mobile_menu nav ul li {
    list-style-type: none;
    font-size: unset;
    line-height: normal;
    margin-bottom: 30px;
}

.mobile_menu_cover .mobile_menu nav ul li a {
    font-size: 21px;
    line-height: normal;
    font-weight: 700;
}

.mobile_menu_cover .mobile_menu .social_icon a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background-color: #3e67b0;
    color: #fff;
    border-radius: 50%;
    font-size: 17px;
    line-height: normal;
    border: 3px solid #3e67b0;
}

.mobile_menu_cover .mobile_menu .social_icon a:hover{
    background-color: transparent;
    color: #3e67b0;
}

body.mobile_menu_open {
    overflow: hidden;
}

.with_banner_image{
    position: relative;
    z-index: 1;
}

.with_banner_image .hero-banner{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    min-height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.with_banner_image .hero-banner:before {
    content: "";
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.with_banner_image .banerconte-withimg .banner-content {
    width: 100%;
    max-width: 900px;
}

.with_banner_image .hero-banner span.roundcircle-opacity{
    background-color: rgb(0 52 144 / 50%);
    top: -500px;
}

.with_banner_image .effect_div {
    width: 1px;
    height: 300px;
    position: absolute;
    bottom: -150px;
    left: 0;
    /* transform: translate(-15%, 50%); */
    background-color: rgb(69 95 173);
    z-index: 9;
}

.with_banner_image .hor_line {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.with_banner_image .effect_div span {
    width: 100%;
    height: 50%;
    background-color: #fff;
    display: block;
}

.banner_next_section {
    padding: 200px 0;
    position: relative;
    z-index: 0;
}

.banner_next_section:before {
    display: block;
    /*content: "";
    right: -100px;
    top: -50px;
    background-image: url(../images/soft_white_logo.svg);
    width: 820px;
    height: 820px;
    position: absolute;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;*/
}

.banner_next_section .maxwidth-divs {
    max-width: 900px;
    padding-right: 15px;
}

.our_values {
    padding: 0 0 50px;
}

.our_values .three_box_cover .col-4 {
    padding-right: 100px;
}

.our_values h2 {
    margin-bottom: 40px;
}

.our_values h3 {
    color: #3e67b0;
    font-size: 15px;
    line-height: 24px;
}

.our_values p {
    font-size: 15px;
    line-height: 24px;
    color: #3e67b0;
}

.quote_section {
    padding: 80px 0;
    position: relative;
    /*z-index: -1;*/
}

.quote_section .bigdots-opacity {
    right: auto;
    top: -50px;
    left: -70px;
    width: 650px;
    height: 650px;
}

.work_with_us, .out_team {
    padding: 80px 0;
    position: relative;
}

.service-img img {
    display: none;
}

.work_with_us h2 ~ p,
.out_team h2 ~ p {
    max-width: 480px;
    font-size: 15px;
    line-height: 24px;
}

.work_with_us .container > .row,
.our_values .three_box_cover     {
    max-width: calc(100% - 150px);
}

.counters_block {
    margin-top: 70px;
}

.counters_block .counter h4 {
    font-size: 35px;
    line-height: normal;
    color: #3e67b0;
    margin-bottom: 12px;
}

.counters_block .counter p {
    font-size: 15px;
    line-height: 24px;
}

.out_team .member_list {
    margin-top: 60px;
    max-width: calc(100% - 150px);
    margin-left: -28px;
    margin-right: -28px;
}
.member_list .col-3 {
    padding: 0 28px;
}

.member_list .member_block {
    /*max-width: 260px;*/
    width: 100%;
    margin-bottom: 80px;
}

.member_list .member_block a {
    display: block;
}

.member_list .member_block h5 {
    font-size: 15px;
    line-height: 24px;
    margin-top: 30px;
    margin-bottom: 0;
    color: #1a1a1a;
}

.member_list .member_block p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
    color: #3e67b0;
}

.right-header .say-button {
    display: inline-block;
    margin-left: 70px;
}

.right-header nav.menu-header-menu-container {
    display: inline-block;
}

.say-button a {
    background-color: #fff;
    padding: 2px 28px 2px;
    color: #6852a1;
    border-radius: 30px;
    font-size: 18px;
    display: block;
} 

.say-button a:hover {
    background-color: #6852a1;
    color: #fff;
}

.expert-blockss h3, .expert-blockss p {
    color: #1a1a1a;
}

.blue-title h2 {
    /* color: #1a1a1a; */
    color: #3e67b0;
}

/*
.counters_block.row .counter:nth-child(2) h4:after,
.counters_block.row .counter:nth-child(3) h4:after {
    content: "+";
}
*/

.client-profilediv p a:hover {
    color: #3e67b0;
}

header.white-header {
    padding: 0;
}

header.white-header .right-header nav ul li a {
    color: #3e67b0;
}

header.white-header .right-header {
    margin-top: auto;
    margin-bottom: auto;
}

section.information-section {
    padding: 280px 0;
}

section.information-section h1 {
    font-size: 37px;
    color: #1a1a1a;
    line-height: 46px;
    margin-bottom: 20px;
}

section.information-section .container {
    max-width: 1120px;
}

section.information-section p {
    font-size: 15px;
    line-height: 28px;
}

section.information-section h2 {
    font-size: 21px;
    color: #3e67b0;
    line-height: 30px;
    margin-bottom: 30px;
}

section.information-section h3{
    font-size: 19px;
    color: #3e67b0;
    line-height: 26px;
    margin-bottom: 20px;
}

section.information-section p {
    margin-bottom: 30px;
}


@charset "utf-8";
/* Custom.css CSS Document */
section.services-section .container {
    max-width: 1400px;
}

section.services-section .row {
    margin: 0 -40px;
}

.three-block {
    float: left;
    width: 33.33%;
    padding: 0 15px;
}
 
section.services-section .three-block {
    padding: 0 40px;
}

.service-block .service-img {
    height: 244px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.service-block .service-content {
    padding: 30px 0 80px;
    position: relative;
}

.service-block .service-content h3 {
    color: #3e67b0;
}

.service-block .service-content p {
    color: #1a1a1a;
    font-size: 21px;
    line-height: 28px;
}

.service-block .service-content a {
    /* background-color: #eaeaea; */
    position: absolute;
    bottom: 0;
    left: 0;
}

a.grey-btn {
    background-color: #eaeaea;
    padding: 0 29px;
}

a.grey-btn:hover {
    background-color: #3e67b0;
    /*padding: 0 27px 0 28px;*/
}

section.services-section .three-block {
    margin-bottom: 155px;
}

section.services-section .six-block {
    width: 46.66%;
    margin-right: 0;
    margin-left: auto;
    padding-right: 40px;
}

section.contact-sectionbox {
    padding: 200px 0 220px;
    position: relative;
}

section.contact-sectionbox .container {
    max-width: 1440px;
}

.contact-address .contact-titdiv h2 {
    font-size: 36px;
    line-height: 40px;
}

.contact-address .contact-titdiv {
    margin-bottom: 45px;
}

.contact-adddiv {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    max-width: 1050px;
    width: 100%;
    margin-bottom: 50px;
}

.contact-adddiv .leftaddress-div {
    width: 70%;
}

.contact-adddiv .ritcallus-div {
    flex: 1;
}

.leftaddress-div p {
    font-size: 21px;
    line-height: 28px;
    margin-bottom: 30px;
}

.leftaddress-div p a.direct-link {
    margin-top: 40px;
    display: inline-block;
    color: #1a1a1a;
    font-family: 'larsseitregular';
    position: relative;
}

.leftaddress-div p a.direct-link:before {
     content: "";
     position: absolute;
     bottom: -3px;
     height: 2px;
     width: 100%;
     background-color: #3e67b0;
 }

.leftaddress-div p a.direct-link:hover {
    color: #3e67b0;
}

.ritcallus-div label {
    display: block;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 5px;
}

.ritcallus-div a.telno {
    color: #6852a1;
    font-size: 36px;
}

.ritcallus-div a.telno:hover {
    color: #1a1a1a;
}

.contact-form {
    max-width: 1090px;
    width: 100%;
    padding-top: 85px;
}

.contact-title h2 {
    font-size: 36px;
}

.contact-title {
    margin-bottom: 35px;
}

.contact-form .form-group {
    max-width: 675px;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-form .form-group.fullwidth {
    /* width: 100%; */
    max-width: 100%;
}

.form-group label.label-text {
    width: 100%;
    max-width: 260px;
    display: inline-block;
    color: #3e67b0;
    font-size: 21px;
    margin-right: 20px;
}

.form-group  .form-fields {
    flex: 1;
}

.form-group .form-fields .form-control {
    height: 45px;
    background-color: #fcfcfc;
    border-color: #fcfcfc;
    padding:10px 15px 12px 15px;
    transition: all ease-in .2s;
    color: #1a1a1a;
    font-size: 21px;
}

.form-group .form-fields textarea.form-control{
    height: 270px;
}

.form-group .form-fields .form-control:focus {
    border: 1px solid #3e67b0;
}

.checkbox label input[type="checkbox"] {
    position: absolute;
    left: -9999px;
}

.checkbox label{
    position: relative;
    cursor: pointer;
    vertical-align: top; 
}

.checkbox label span.wpcf7-list-item-label:before,
.checkbox label span.wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #3e67b0;
    background-color: #fcfcfc;
    top: 3px;
    left: 0; 
}

.checkbox label span.wpcf7-list-item-label:after{
    transition: all ease-in .2s;
    transform: scale(0);
}

.checkbox label span{
    padding-left: 40px;
    color: #3e67b0;
    font-size: 15px;
    line-height: 28px;
    width: 100%;
    display: block;
}

.checkbox label input[type="checkbox"]:checked + span.wpcf7-list-item-label:after {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    background-color: #3e67b0; 
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    line-height: 19px;
    text-align: center;
}

.checkbox label span a {
    font-weight: normal;
    font-family: 'larsseitregular';
    border-bottom: 1px solid;
}

.checkbox label span a:hover {
    color: #1a1a1a;
}

button, input[type="button"], input[type="reset"], input[type="submit"]{
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    background-color: #6fcbdc;
    border-color: #6fcbdc;
    color: #fff;
    text-transform: inherit;
    height: 49px;
    padding: 0 30px 1px 20px;
}

button:hover, 
input[type="button"]:hover, 
input[type="reset"]:hover, 
input[type="submit"]:hover {
    padding: 0 25px 1px;
    background-color: #3e67b0;
    border-color: #3e67b0;
}

.contact-form .form-group .submit-btn {
    margin-top: 35px;
}

button.menu_trigger {
    background-color: transparent;
    padding: 0px;
}

section.customer-expertise-sec .container {
    max-width: 1470px;
}

.customer-expertise-sec .left-expertise-blk {
    float: left;
    max-width: 260px;
    width: 100%;
}

.expertise-bloc {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border: 1px solid #eaeaea;
    padding: 27px;
    margin-top: 25px;
    min-height: 238px;
}

.customer-expertise-sec .rightlisting-blocks {
    padding-left: 150px;
    float: right;
    width: calc(100% - 260px);
    padding-right: 200px;
    position: relative;
}

.rightlisting-blocks .row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.rightlisting-blocks .two-blocks {
    float: left;
    width: 50%;
    padding: 0 20px;
}

.expertise-bloc h4 {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 24px;
    margin-bottom: 12px;
    padding-bottom: 7px;
    border-bottom: 2px solid #eaeaea;
}

.category-check label input[type="checkbox"] {
    position: absolute;
    left: -9999px;
}

.category-check label {
    position: relative;
}

.category-check label span:before,
.category-check label span:after {
    content: "";
    border-radius: 3px;
    border: 1px solid rgba(104, 82, 161, 0.54);
    width: 16px;
    height: 16px;
    position: absolute;
    top: 3px;
    left: 0;
}

.category-check label span {
    padding-left: 25px;
    display: block;
    font-size: 15px;
    line-height: 21px;
    color: #1a1a1a;
}

.category-check {
    margin-bottom: 8px;
}

.expertise-bloc h4 {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 24px;
    margin-bottom: 15px;
    padding-bottom: 7px;
    border-bottom: 2px solid #eaeaea;
}

.category-check label input[type="checkbox"] {
    position: absolute;
    left: -9999px;
}

.category-check label {
    position: relative;
    display: block;
    cursor: pointer; 
}

.category-check label span:before,.category-check label span:after {
    content: "";
    border-radius: 3px;
    border: 1px solid rgba(104, 82, 161, 0.54);
    width: 16px;
    height: 16px;
    position: absolute;
    top: 3px;
    left: 0;
}

.category-check label span {
    padding-left: 25px;
    display: block;
    font-size: 15px;
    line-height: 21px;
    color: #1a1a1a;
}

.category-check {
    margin-bottom: 8px;
}

.category-check label input[type="checkbox"]:checked + span:after {
    background-color: #6fcbdc;
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    border-color: #6fcbdc;
    text-align: center;
    line-height: 15px;
}

.category-check label span:after {
    transition: all ease-in .2s;
    transform: scale(0);
}

.category-check label input[type="checkbox"]:checked + span:after {
    transform: scale(1.0);
}

.category-list-blk .produ-img {
    margin-bottom: 10px;
}

.two-blocks.category-list-blk img {
    width: 100%;
}

.category-list-blk .produ-detal-div h3 {
    font-size: 21px;
    line-height: 28px;
    margin-bottom: 5px;
}

.category-list-blk .produ-detal-div span {
    display: block;
    font-size: 21px;
    color: #3e67b0;
    line-height: 28px;
    margin-bottom: 12px;
}

.category-list-blk .produ-detal-div p {
    font-size: 12px;
    color: #aaa;
    line-height: 18px;
}

.category-list-blk .produ-detal-div {
    padding-right: 40px;
}

.rightlisting-blocks .category-list-blk {
    margin-bottom: 90px;
}

section.customer-expertise-sec {
    padding-bottom: 150px;
}

section.banner_next_section.reducd-botomspace {
    padding-bottom: 60px;
}

.userimage-divs {
    max-width: 500px;
    width: 100%;
    min-height: 365px;
    margin-right: 0;
    margin-left: auto;
    position: relative;
}

.userimage-divs span {
    border-radius: 50%;
    overflow: hidden;
}

.userimage-divs span.center-dots {
    background-color: #3e67b0;
    width: 230px;
    height: 230px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.userimage-divs span.left-dots {
    width: 37px;
    height: 37px;
    background-color: #6fcbdc;
    position: absolute;
    left: 0;
    top: 80px;
    bottom: 0;
    margin: auto 0;
}

.userimage-divs span.righttop-dots {
    width: 55px;
    height: 55px;
    background-color: #6852a1;
    position: absolute;
    right: 0;
    top: -10px;
    left: 210px;
    margin: 0 auto;
}

.userimage-divs span.rightbottom-dots {
    width: 55px;
    height: 55px;
    background-color: #ce2027;
    position: absolute;
    bottom: 0;
    right: 0;
}

.counters_block.row {margin-left: -20px;margin-right: -20px;}

.counters_block.row .counter.col-4 {
    padding: 0 20px;
}

.trusted-logo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

section.trust-us-section {
    padding: 60px 0 130px;
}

.h2-title h2 {
    font-size: 36px;
    line-height: 40px;
}

.h2-title {
    margin-bottom: 60px;
}

.trusted-logo span {
    width: 25%;
    padding-right: 50px;
    margin-top: auto;
    margin-bottom: auto;
}

section.trust-us-section .container {
    max-width: 1470px;
}

.userimage-divs .client-profilediv {
    position: absolute;
    bottom: 100px;
    right: -150px;
}

.client-profilediv h4 {
    font-size: 21px;
    line-height: 28px;
    margin: 0;
}

.client-profilediv span {
    display: block;
    color: #3e67b0;
    font-size: 21px;
    line-height: normal;
    border-radius: 0px;
}

.client-profilediv p a {
    color: #1a1a1a;
    font-size: 21px;
}

.client-profilediv p {
    margin: 0;
}

.userimage-divs.clientprod-ritdiv {
    max-width: 440px;
    margin-right: auto;
    margin-left: 17%;
}
.userimage-divs.clientprod-ritdiv span.righttop-dots {
    left: 250px;
}

header.white-header .right-header .say-button a {
    background-color: #3e67b0;
    color: #fff;
}

header.white-header .right-header .say-button a:hover {
    background-color: #6fcbdc;
}


header.white-header .right-header .say-button a {
    background-color: #3e67b0;
    color: #fff;
}

header.white-header .right-header .say-button a:hover {
    background-color: #6fcbdc ;
    color:#fff;
}

header.white-header .right-header nav ul li a:hover {
    color: #6fcbdc;
} 

.checkbox label span {
    padding-left: 0;
}

.checkbox label span.wpcf7-list-item {
    margin-left: 0;
}

.checkbox label span.wpcf7-list-item label span.wpcf7-list-item-label {
    padding-left: 40px;
}

.checkbox label span.wpcf7-list-item label span.wpcf7-list-item-label a {
    margin-left: 5px;
}

.contact-form .form-group .wpcf7-not-valid-tip {
    font-size: 15px;
    font-weight: normal;
    font-family: 'larsseitbold';
}

.wpcf7 form.invalid .wpcf7-response-output {
    color: #dc3232;
    margin: 0;
    padding: 0 0 0 280px;
    font-size: 15px;
    border: none;
    font-family: 'larsseitbold';
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
    margin: 0;
    padding: 0 0 0 280px;
    font-size: 15px;
    border: none;
    font-family: 'larsseitbold';
} 

body.error404 {}

body.error404 .information-section .page_content {
    float: left;
    width: 50%;
    padding-right: 50px;
    margin-top: auto;
    margin-bottom: auto;
}

body.error404 .information-section .pageerror_text.err-404img {
    float: right;
    width: 50%;
    margin-top: auto;
    margin-bottom: auto;
}

body.error404 .information-section .pageerror_text.err-404img {}

body.error404 .information-section .pageerror_text.err-404img .errortext-icon {
    max-width: 350px;
    height: 350px;
    position: relative;
    display: block;
    margin: 0;
    float: right;
    width: 100%;
    border-radius: 50%;
    background-color: #dbf2f6;
}

body.error404 .information-section .pageerror_text.err-404img .errortext-icon h4 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 130px;
    color: #ce2027;
    left: -110px;
}

body.error404 .information-section .container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}

body.error404 .information-section .page_content p br {
    display: none;
}

body.error404 .information-section .page_content p strong {
    display: inline-block;
}

body.error404 .information-section .page_content .title h1 {
    font-size: 60px;
    line-height: 74px;
    color: #3e67b0;
}

.customer-expertise-sec .rightlisting-blocks .client-ajax-loader {
    position: fixed;
    left: 0;
    right: 0;
    top: 10px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.customer-expertise-sec .rightlisting-blocks .client-ajax-loader span {
    width: 150px;
    height: 150px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    /*background-color: #fff;
    box-shadow: 0 0 7px 10px rgb(99 99 99 / 10%);*/
}

.banerconte-withimg.cf:before, 
.banerconte-withimg.cf:after {
    display: none;
}

footer .top_footer .left {
    width: 40%;
}

footer .top_footer .right {
    width: 60%;
}

body.home .hero-banner {
    height: 100vh;
}

section.information-section .produ-imgs img {
    max-width: 380px;
    height: auto;
}
.category-list-blk .produ-img a img {
    object-fit: cover;
    max-width: 330px;
    height: auto;
    width: 100%;
    max-height: 120px;
}

.category-list-blk .produ-img a {
    display: inline-block;
}

.service-block .service-content h3 a {
    position: relative;
}  

.service-block .service-img a {
    display: block;
    height: 100%;
    width: 100%;
}

.logos-div .right-logo span:last-child{
    margin-right: 0px;
}

.member_list .member_block a.member_mail {
    font-size: 16px;
    color: #c4c4c4;
    font-weight: normal;
    font-family: 'larsseitregular';
    line-height: 19px;
    margin-top: 15px;
    display: inline-block;
    word-break: break-word;
}

.member_list .member_block a.member_phone {
    font-size: 16px;
    color: #c4c4c4;
    font-weight: normal;
    font-family: 'larsseitregular';
    line-height: 20px;    
    word-break: break-word;
}

.member_list .member_block a.member_linkedin {
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    background-color: #3e67b0;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    margin-top: 15px;
}
 
.member_list .member_block a.member_linkedin:hover {
    background-color: #6fcbdc;
    color: #fff;
} 

.member_list .member_block a:hover {
    color: #6fcbdc;
}
