<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(https://fonts.googleapis.com/css?family=Open+Sans);



a.btn-theme, .btn-theme {
    position: relative;
	cursor: pointer;
	color: #ffffff;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	text-align: center;
	display: inline-block;
	padding: 10px 20px;
	border: solid 0 transparent;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	line-height: 1;
	vertical-align: top;
	/*margin: 0px auto;*/
	-webkit-transition: ease-out all 0.1s 0s;
	transition: ease-out all 0.1s 0s;
}
a.btn-theme:hover, .btn-theme:hover{border: solid 0 transparent;}
a.btn-theme:before, .btn-theme:before{
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    background-color: rgba(0,0,0,0);
    content: "";
    -webkit-transition: ease-out all 0.1s 0s;
	transition: ease-out all 0.1s 0s;
}
a.btn-theme:hover:before, .btn-theme:hover:before{background-color: rgba(0,0,0,0.05);}

.page-title{
	font-size: 30px;
	line-height: 36px;
	color: #001837;
	position: relative;
	font-family: 'helveticaneuecyrmedium';
    margin-bottom: 40px;
}
img,canvas {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
}

/*******************************
Grids
*******************************/
.fix-container{
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.page-row,.page-row-table{}
.page-row:after,.page-row-table:after{
    display: table;
    content: " ";
    clear: both;
}
.page-row.start--left{}
.page-row.start--right{}

.page-col{
    position: relative;
    display: block;
    min-height: 1px;
    width: 100%;
    margin: 0; padding: 0;
}

@media(min-width:1024px){
    .page-row-table{
        position: relative;
        display: table;
        table-layout: fixed;
    }
    .page-row-table.start--left{direction: ltr;}
    .page-row-table.start--right{direction: rtl;}
    .page-row-table.start--right &gt; *,
    .page-row-table.start--left &gt; *{direction: ltr;}

    .page-row-table .page-col{
        display: table-cell;
        vertical-align: middle;
        overflow: hidden;
    }
    .col--one-third{width: 31.76157%;}
    .col--two-third{width: 65.88078%;}
    .col--one-fourth{width: 23.23176%;}
    .col--three-fourth{width: 74.41059%;}
    .col--half{width: 48.82117%;}
    .col--full{width: 100%;}

    .page-row.start--left .page-col{float: left;}
    .page-row.start--right .page-col{float: right;}
    .page-row.start--left .page-col{margin-right: 2.35765%;}
    .page-row.start--right .page-col{margin-left: 2.35765%;}
    .page-row.start--left .page-col:last-child,
    .page-row.start--right .page-col:last-child{margin: 0;}
}

/*******************************
Essential Classes
*******************************/
@media(min-width:1024px){
    .text--center{text-align: center!important;}
    .text--left{text-align: left!important;}
    .text--right{text-align: right!important;}

    .fl--left{float: left!important;}
    .fl--right{float: right!important;}
    .fl--center{float: none!important; margin: 0 auto!important;}   
    
    .col-center{
        float: none;
        margin: auto;
    }
}

/*******************************
Header
*******************************/
.dm-header{
    position: relative;
    display: block;
    width: 100%;
    height: 630px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
}
.dm-header-circle{
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.dm-circle-bg{
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    display: block;
    width: 460px;
    height: 460px;
    -webkit-border-radius: 460px;
    border-radius: 460px;
    overflow: hidden;
}
.dm-circle-bg:hover{
    /*width: 1920px;
    height: 1920px;
    -webkit-border-radius: 0;
    border-radius: 0;*/
    overflow: visible;
}
.dm-circle-bg-image{
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 460px;
    height: 460px;
    -webkit-border-radius: 460px;
    border-radius: 460px;
    background-position: center center;
    background-repeat: no-repeat;
}
.dm-header-circle .dm-circle-content &gt; h2 {
    font-family: open sans;
}
.dm-circle-bg:hover .dm-circle-bg-image{
    width: 4000px;
    height: 630px;
}
.dm-circle-content{
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 3;
    width: 100%;
    height: 100%;
    max-width: 390px;
    max-height: 390px;
    padding: 50px;
    -webkit-border-radius: 390px;
    border-radius: 390px;
    background-color: rgba(255,255,255,1);
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-align: center;
}
.dm-circle-bg:hover .dm-circle-content{
    -webkit-box-shadow: 0 0 0 35px rgba(255,255,255,0.7);
    box-shadow: 0 0 0 35px rgba(255,255,255,0.7);
}
.dm-circle-content &gt; *{margin-bottom: 30px;}
.dm-circle-content .page-title{
    font-family: 'helveticaneuecyrbold';
    font-size: 52px;
    line-height: 48px;
    color: #4ccead;
}
.conversion-Optimization{width:620px;height:450px;overflow:hidden;}
/*******************************
Body
*******************************/
.feature-row{padding: 80px 0;}
.feature-content{}
.feature-content &gt; *:not(:last-child){margin-bottom:30px;}

@media(min-width:767px){
    .fix-container{width: 100%;}
}
@media(min-width:1100px){
    .fix-container{width: 1024px;}
}
@media(min-width:1280px){
    .fix-container{width: 1200px;}
}
@media(min-width:1600px){
    .fix-container{width: 1400px;}
}

@media(max-width:767px){
    
    #wrapper{text-align: center;}
    .nav-bar{text-align:left;}
    .fix-container{
        padding-left:15px;
        padding-right:15px;
    }
    .feature-row{padding:30px 0;}
    
.feature-image svg {
    width: 100%;
    height: auto;
}
    /*.page-col{margin-bottom: 30px;}*/
}
@media(max-width:480px){
    .dm-header{
        height: 400px;
        margin-bottom: 20px;
    }
    .dm-circle-bg{
        width: 300px;
        height: 300px;
        -webkit-border-radius: 300px;
        border-radius: 300px;
        overflow: visible;
    }
    .dm-circle-bg-image{
        width: 4000px;
        height: 400px;
        -webkit-border-radius: 0;
        border-radius: 0;
    }
    .dm-circle-bg:hover .dm-circle-bg-image{
        width: 4000px;
        height: 400px;
    }
    .dm-circle-content{
        max-width: 320px;
        max-height: 320px;
        padding: 30px;
        -webkit-border-radius: 330px;
        border-radius: 330px;
    }
    .dm-circle-bg .dm-circle-content,
    .dm-circle-bg:hover .dm-circle-content{
        -webkit-box-shadow: 0 0 0 10px rgba(255,255,255,0.7);
        box-shadow: 0 0 0 10px rgba(255,255,255,0.7);
    }
    .dm-circle-content &gt; *{margin-bottom: 20px;}
    .dm-circle-content .page-title{
        font-size: 32px;
        line-height: 32px;
    }
    a.btn-theme, .btn-theme {
        font-size: 15px;
        padding: 10px 10px;
    }
}

</pre></body></html>