/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #929292;
    padding-top: 73px;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.form-control {
    height: 40px;
    padding: 0 10px;
    background-color: #fff;
    border-radius: 2px;
    border-color: #e4e4e4;
}

.form-control:focus {
    box-shadow: none;
    border-color: #3d3b6c;
}

.space {padding: 80px 0;}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {font-family: 'Ubuntu', sans-serif; color: #222;}

h1 {font-size: 26px; line-height: 32px;}
h2 {font-size: 22px; line-height: 28px;}
h3 {font-size: 18px; line-height: 28px;}
h4 {font-size: 18px; line-height: 28px;}
h5 {font-size: 18px; line-height: 28px;}
h6 {font-size: 18px; line-height: 28px;}

strong {font-weight: 700;}

a {
    color: #da763a;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active {
    color: #da763a;
    outline: 0;
    text-decoration: none;
}

p {
    color: #929292;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.heading {
    font-family: 'Ubuntu', sans-serif;
    margin: 0 0 20px 0;
    font-size: 28px;
    line-height: 34px;
    color: #3d3b6c;
    font-weight: bold;
    position: relative;
}

.line {
    margin: 0 0 45px 0;
    position: relative;
}

.line:before {
    content: "";
    height: 5px;
    width: 50px;
    background-color: #3d3b6c;
    position: absolute;
    bottom: -20px;
    left: 0;
    border-radius: 50px;
}

.line-center:before {
    position: absolute;
    left: 50%;
    margin-left: -25px;
}

.small-heading {
    font-size: 18px;
    line-height: 24px;
}

.btn {
    border-width: 2px;
    height: 40px;
    line-height: 36px;
    padding: 0 30px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn:focus,
.btn:active {
    box-shadow: none !important;
}

.btn-primary {
    background-color: #3d3b6c;
    border-color: #3d3b6c;
    color: #fff;
}

.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle {
    background-color: #3d3b6c;
    border-color: #3d3b6c;
    box-shadow: none !important;
    color: #fff;
    opacity: .7;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    background-color: #3d3b6c;
    border-color: #3d3b6c;
    box-shadow: none !important;
    color: #fff;
    opacity: .7;
}

.btn-outline-primary {
    border-color: #3d3b6c;
    color: #3d3b6c;
}

.btn-outline-primary:not(:disabled):not(.disabled).active, 
.btn-outline-primary:not(:disabled):not(.disabled):active, 
.show>.btn-outline-primary.dropdown-toggle {
    background-color: #3d3b6c;
    border-color: #3d3b6c;
    box-shadow: none !important;
    color: #fff;
}

.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover {
    background-color: #3d3b6c;
    border-color: #3d3b6c;
    box-shadow: none !important;
    color: #fff;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    background-color: #fff;

    box-shadow: 0 4px 3px 0 rgba(162, 162, 162, 0.12), 0 0 1px 0 rgba(144, 144, 144, 0.25);
}

header .logo {
    display: block;
    margin: 11px 0;
}

header .logo img {
    max-height: 50px;
}

header .btn {
    float: right;
    margin: 16px 0;
    background-color: #e4007b;
    border-color: #e4007b;
    color: #fff;
}

header .btn-primary:visited,
header .btn-primary:focus,
header .btn-primary:hover {
    background-color: #e4007b !important;
    border-color: #e4007b !important;
    box-shadow: none !important;
    opacity: .7;
}

header .menu {
    font-size: 0;
    float: left;
    padding-left: 20px;
    position: relative;
}

header .menu .menu-item {
    display: inline-block;
    margin: 24px 0;

    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

header .menu .menu-item .menu-link {
    display: block;
    font-size: 16px;
    text-decoration: none;
    color: #3d3b6c;
    position: relative;
    padding: 0 18px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

header .menu .menu-item .menu-link:hover {
    color: #e4007b;
}

header .menu .menu-item .menu-link i {
    position: absolute;
    top: 4px;
    right: 0;
}

header .menu > .menu-item:hover > .sub-menu {
    display: block;
    width: max-content;
}

header .menu ul.sub-menu:after {
    content: "";
    height: 35px;
    width: 100%;
    position: absolute;
    top: -25px;
}

header .menu ul.sub-menu:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: -10px;
    left: 17px;
    background-color: #fff;
    border-right: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
    transform: rotate(-45deg);
}

header .menu ul.sub-menu {
    background-color: #fff;
    left: auto;
    position: absolute;
    top: 100%;
    padding: 15px 0;
    z-index: 10;
    display: none;
    border: 1px solid #ebebeb;
    box-shadow: 0 4px 3px 0 rgba(162, 162, 162, 0.12), 
        0 0 1px 0 rgba(144, 144, 144, 0.25);
}

header .menu ul.sub-menu li:hover > ul.sub-menu {
    display: block;
}

header .menu ul.sub-menu li > ul.sub-menu:before {
    display: none;
}

header .menu ul.sub-menu li > ul.sub-menu {
    top: 0;
    left: 100%;
    right: auto;
    display: none;
}

header .menu ul.sub-menu .sub-menu-item {
    display: block;
    position: relative;
}

header .menu ul.sub-menu .sub-menu-link {
    display: block;
    position: relative;
    font-size: 14px;
    text-align: left;
    margin: 0;
    padding: 3px 20px;
    color: #3d3b6c;
    text-decoration: none;
    font-weight: 300;
}

header .menu ul.sub-menu .sub-menu-link:hover {
    color: #e4007b;
}

.lang-menu img {
    vertical-align: inherit;
    margin-right: 4px;
}

#magic-line { 
    position: absolute;
    bottom: 18px; 
    left: 0; 
    width: 35px;
    height: 4px;
    background-color: #e4007b;
    border-radius: 50px;
}

.ie6 #example-one li, 
.ie7 #example-one li { 
    display: inline; 
}

.ie6 #magic-line {
    bottom: -3px;
}



.page-info {
    padding: 25px 0;
}

.page-info ol li {
    display: inline-block;
    margin: 0 10px;
    position: relative;
}

.page-info ol li:first-of-type {
    margin-left: 0;
}

.page-info ol li a {
    text-decoration: none;
    color: #3d3b6c;
}

.page-info ol li::after {
    content: "›";
    position: absolute;
    top: 0px;
    right: -14px;
}

.page-info ol li:last-of-type:after {
    display: none;
}

.intro {
    background-color: #F3F7FA;
    padding: 0 0 50px 0;
}

.intro.home-intro {
    padding-top: 50px;
}

.intro h1 {
    color: #3d3b6c;
    font-size: 50px;
    line-height: 50px;
    font-weight: bold;
    margin: 0 0 30px 0;
}

.intro h1.line {
    margin: 0 0 45px 0;
}

.intro h1.line:before {
    background-color: #e4007b;
}

.intro h1 span {
    display: block;
}

.intro h2 {
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 20px 0;
    color: #929292;
}

.intro h3 {
    font-size: 22px;
    line-height: 28px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    color: #3d3b6c;
}

.intro p {
    margin: 0 0 25px 0;
}

.intro ul {
    margin: 0 0 20px 0;
}

.intro ul li {
    padding: 0 0 0 20px;
    position: relative;
}

.intro ul li:before {
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background-color: #3d3b6c;
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
}

.intro.intro-fixed {
    background-color: transparent;
}

.intro.intro-fixed:before {
    content: "";
    background-color: #F3F7FA;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
}

.intro.intro-fixed .fixed-image {
    border: 20px solid #fff;
    box-shadow: 0px 5px 30px rgb(62 62 62 / 10%);
    border-radius: 10px;
}


.about .about-stats .stat .icon {
    margin: 0 0 18px 0;
}

.about .about-stats .stat .icon img {
    height: 25px;
}

.about .about-stats .stat .stat-val {
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    color: #3d3b6c;
}

.about .about-stats .stat .stat-lab {
    text-transform: uppercase;
}


.stage {
    padding: 100px 0;
}

.stage.stage-01 {
    position: relative;
}

.stage.stage-01:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 54%;
    height: 100%;
    background: url(../imgs/about-01.jpg) center right no-repeat;
    background-size: cover;
}

.stage.stage-02 {
    position: relative;
    margin: 50px 0;
}

.stage.stage-02:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 54%;
    height: 100%;
    background: url(../imgs/about-01.jpg) center right no-repeat;
    background-size: cover;
}

.stage.stage-03 {
    background-color: #f3f7fa;
    position: relative;
}

.stage.stage-03:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 54%;
    height: 100%;
    background: url(../imgs/about-01.jpg) center right no-repeat;
    background-size: cover;
}


.game-features {
    padding-bottom: 50px;
}


.team .person {
    text-align: center;
}

.team .person img {
    box-shadow: 0px 5px 30px rgb(62 62 62 / 10%);
    border-radius: 15px;
    margin: 0 0 5px 0;
}

.team .person .person-name {
    text-transform: uppercase;
    margin: 10px 0 5px;
    color: #3d3b6c;
    font-size: 18px;
    line-height: 24px;
}


.gray-bgr {
    background-color: #f3f7fa;
}


.about .licenses {
    padding-top: 80px;
}


.our-products .our-product {
    text-align: center;
    margin: 80px 0 0 0;
}

.our-products .our-product .icon {
    margin: 0 auto 15px;
    display: table;
    background-color: #fff;
    box-shadow: 0px 5px 30px rgb(62 62 62 / 10%);
    border-radius: 15px;
    padding: 0 15px 0px 15px;
}

.our-products .our-product .icon img {
    position: relative;
    top: -45px;
    margin-bottom: -20px;
}

.our-products .our-product h3 {
    text-transform: uppercase;
}


.why {
    padding: 50px 0 55px;
    position: relative;
    margin-bottom: -50px;
}

.why:before {
    content: "";
    background: url(../imgs/why-bgr.svg) top center no-repeat;
    position: absolute;
    top: -300px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.why:after {
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #f3f7fa;
    z-index: -1;
}

.why .sub-heading {
    margin-bottom: 35px;
}

.why .block {
    margin: 0 0 30px 0;
}

.why .block .icon {
    margin: 0 0 5px 0;
}

.why .block .icon img {
    width: 24px;
}

.why .block h4 {
    text-transform: uppercase;
    margin: 10px 0;
    color: #3d3b6c;
    font-size: 18px;
    line-height: 24px;
}

.why .block p {
    padding-right: 50px;
}


.experience {
    position: relative;
    padding: 100px 0 0;
}

.experience:before {
    content: "";
    background: url(../imgs/experience-bgr.svg) center top no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
}

.experience:after {
    content: "";
    background: url(../imgs/experience-bgr.svg) center bottom no-repeat;
    position: absolute;
    left: 0;
    bottom: 80px;
    width: 100%;
    height: 50%;
    z-index: -1;
}

.experience .heading {
    text-align: center;
    font-weight: normal;
    color: #fff;
}

.experience .heading span {
    display: block;
}

.experience .heading.line:before {
    background-color: #fff;
}

.experience .sub-heading {
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}

.experience .block {
    margin: 0 0 30px 0;
}

.experience .block.block-right {
    text-align: right;
}

.experience .block.block-right p {
    padding-left: 70px;
}

.experience .block.block-left p {
    padding-right: 70px;
}

.experience .block .icon {
    margin: 0 0 5px 0;
}

.experience .block .icon img {
    height: 24px;
    width: inherit;
    display: inline-block;
}

.experience .block h3 {
    font-size: 22px;
    line-height: 26px;
    margin: 10px 0;
}

.experience .block h3,
.experience .block p {
    color: #fff;
}

.experience .block p {
    opacity: .8;
}


.integrations {
    padding-top: 0;
}

.integrations h3 {
    text-transform: uppercase;
    margin: 10px 0;
    color: #3d3b6c;
    font-size: 18px;
    line-height: 24px;
}

.integrations .heading span {
    display: block;
}

.integrations .line:before {
    background-color: #e4007b;
}

.integrations img {
    max-width: 500px;
    float: right;
}


.stats {    
    background-color: #fff;
    box-shadow: 0px 5px 30px rgb(62 62 62 / 10%);
    border-radius: 15px;
    padding: 30px 40px;
    margin-bottom: -70px;
}

.stats .stat .icon {
    margin: 0 0 18px 0;
}

.stats .stat .icon img {
    height: 25px;
}

.stats .stat .stat-val {
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    color: #3d3b6c;
}

.stats .stat .stat-lab {
    text-transform: uppercase;
}


.awesome-slogan {
    text-align: center;
    position: relative;
    padding: 120px 0 80px 0;
}

.awesome-slogan .heading,
.awesome-slogan h2,
.awesome-slogan p {
    color: #fff;
}

.awesome-slogan p {
    opacity: .8;
}

.awesome-slogan h2 {
    text-transform: uppercase;
    margin: 0 0 30px 0;
    font-weight: normal;
}

.awesome-slogan .heading.line:before {
    background-color: #fff;
}

.awesome-slogan:before {
    content: "";
    background: url(../imgs/awesome-slogan-bgr.svg) center top no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
}

.awesome-slogan:after {
    content: "";
    background: url(../imgs/awesome-slogan-bgr.svg) center bottom no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
}


.awesome-text {
    text-align: center;
    position: relative;
    padding: 60px 30px;
    background-color: #3C3B6B;
    border-radius: 20px;
}

.awesome-text .heading,
.awesome-text h2,
.awesome-text p {
    color: #fff;
}

.awesome-text p {
    opacity: .8;
}

.awesome-text h2 {
    text-transform: uppercase;
    margin: 0 0 30px 0;
    font-weight: normal;
}

.awesome-text .heading.line:before {
    background-color: #fff;
}

.service-info {
    padding: 50px 0;
}

.service .stage {
    margin: 50px 0;
}

.service .slot-games-slogan {
    padding: 80px 0;
}

.slot-games-slogan {
    margin: 0 0 50px 0;
}


.white-label-solutions {
    position: relative;
    padding: 50px 0;
}

.white-label-solutions ul {
    margin: 0 0 20px 0;
}

.white-label-solutions ul li {
    padding: 0 0 0 20px;
    position: relative;
}

.white-label-solutions ul li:before {
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background-color: #3d3b6c;
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
}

.white-label-solutions:before {
    content: "";
    background: url(../imgs/white-label-solutions-bgr.svg) center top no-repeat;
    background-size: cover;
    position: absolute;
    top: -80px;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}


.back-office-tool {
    padding: 50px 0;
}

.why-our-slots .line:before,
.back-office-tool .line:before {
    background-color: #e4007b;
}

.why-our-slots h3,
.back-office-tool h3 {
    text-transform: uppercase;
    margin: 10px 0;
    color: #3d3b6c;
    font-size: 18px;
    line-height: 24px;
}


.why-our-slots ul li {
    padding: 0 0 0 20px;
    position: relative;
}

.why-our-slots ul li:before {
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background-color: #3d3b6c;
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
}

.slot-game {
    margin: 0 0 30px 0;
}

.slot-games img {
    margin: 0 0 10px 0;
    border-radius: 4px;
}

.slot-games h4 {
    font-size: 18px;
    line-height: 24px;
}

.slot-games .game-image {
    position: relative;
}

.slot-games .game-image:hover .on-hover {
    display: block;
}

.slot-games .game-image .on-hover {
    position: absolute;
    bottom: 100px;
    left: 50%;
    width: 400px;
    margin-left: -200px;
    padding: 30px;
    background-color: #fff;
    z-index: 3;
    border-radius: 25px;
    box-shadow: 0px 5px 30px rgb(62 62 62 / 10%);
    display: none;
}

.slot-games .game-image .on-hover:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: 25px solid #ffffff;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.slot-games .game-image .on-hover h3 {
    font-size: 22px;
    line-height: 26px;
    margin: 0 0 20px 0;
}

.slot-games .game-image .on-hover ul {
    margin: 0 0 20px 0;
}

.slot-games .game-image .on-hover ul li {
    padding: 0 0 0 20px;
    position: relative;
}

.slot-games .game-image .on-hover ul li:before {
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background-color: #3d3b6c;
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
}

.slot-games .game-image .on-hover .devices {
    display: flex;
}

.slot-games .game-image .on-hover .devices i {
    margin-right: 15px;
    font-size: 20px;
    color: #3d3b6c;
}

.slot-games .game-name {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #3d3b6c;
    text-transform: uppercase;
    display: block;
}


.licenses {
    margin: 0 0 -30px 0;
}

.licenses .heading,
.licenses .sub-heading {
    text-align: center;
}

.licenses .sub-heading {
    margin-bottom: 50px;
}

.licenses .lic-logo {
    box-shadow: 0px 5px 30px rgb(62 62 62 / 10%);
    border-radius: 15px;
}


.games {
    padding-bottom: 20px;
}

.games .heading,
.games .sub-heading {
    text-align: center;
}

.games .sub-heading {
    margin: 0 0 35px 0;
}


.game-about {

}

.game-about .table tr td:first-of-type {
    color: #3d3b6c;
}

.game-gallery {

}

.game-gallery img {
    border-radius: 4px;
}

.service .game-features,
.about .game-features {
    padding-top: 80px;
}

.game-features {
    position: relative;
    padding-bottom: 10px;
    padding-top: 0;
}

.game-features .sub-heading {
    margin-bottom: 35px;
}

.game-features .block {
    margin: 0 0 30px 0;
}

.game-features .block .icon {
    margin: 0 0 5px 0;
}

.game-features .block .icon img {
    width: 24px;
}

.game-features .block h4 {
    text-transform: uppercase;
    margin: 10px 0;
    color: #3d3b6c;
    font-size: 18px;
    line-height: 24px;
}

.game-features .block p {
    padding-right: 50px;
}


.contact-form {
    background-color: #fff;
    box-shadow: 0px 5px 30px rgb(62 62 62 / 10%);
    border-radius: 30px;
    padding: 30px 50px;
    position: relative;
    width: 700px;
    margin: 0 auto;
    display: table;
    z-index: 3;
}

.contact-form:before {    
    content: "";
    background: url(../imgs/contacts.svg) center center no-repeat;
    width: 1000px;
    height: 100%;
    background-size: 100%;
    display: block;
    position: absolute;
    left: -80px;
    top: -80px;
    z-index: 1;
}

.contact-form label {
    text-transform: uppercase;
    margin: 0 0 3px 0;
}

.contact-form button {
    margin: 0 auto;
    display: table;
}


.contact-info {
    text-align: center;
    margin: 0 0 100px 0;
}

.contact-info a {
    color: #3d3b6c;
    font-weight: bold;
    margin: 0 3px;
}



.cstm-pagination {
    display: table;
    margin: 30px auto 0;
}

.cstm-pagination ul {
    font-size: 0;
}

.cstm-pagination ul li {
    display: inline-block;
    font-size: 12px;
}

.cstm-pagination ul li .page-numbers {
    font-size: 12px;
    line-height: 12px;
    display: block;
    padding: 11px 14px;
    border: 2px solid transparent;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 700;
    margin: 0 6px;
}

.cstm-pagination ul li .page-numbers:hover {
    border: 2px solid rgba(0,0,0,.4);
}

.cstm-pagination ul li.active .page-numbers {
    border: 2px solid rgba(0,0,0,.4);
}

.meta .date {
    margin-right: 5px;
}

.meta .category {
    margin: 0 5px;
}

.meta .category,
.meta .date {
    display: inline-block;
    font-size: 14px;
}

.news-article .meta {
    margin-top: 0;
    margin-bottom: 30px;
}

.meta {
    margin: 15px 0;
    font-size: 0;
}

.meta .category:before {
    content: "|";
    position: relative;
    top: -1px;
    left: -5px;
}


.news-article ul {
    margin: 0 0 20px 0;
}

.news-article ul li {
    padding: 0 0 0 20px;
    position: relative;
}

.news-article ul li:before {
    content: "";
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background-color: #3d3b6c;
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
}

.news-article.space {
    padding-top: 0;
}

.news-article .article-image {
    border: 20px solid #fff;
    box-shadow: 0px 5px 30px rgb(62 62 62 / 10%);
    border-radius: 10px;
}

.news-article h2,
.news-article h3,
.news-article h4,
.news-article h5,
.news-article h6 {
    color: #3d3b6c;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.news-article .article-social li {
    display: inline-block;
    margin-right: 8px;
    color: #3d3b6c;
}

.news-article .article-social li a {
    font-size: 26px;
    color: #3d3b6c;
}

.news-article .article-social li a i {
    box-shadow: 0px 0px 20px rgb(62 62 62 / 10%);
}


.search {
    position: relative;
    margin: 0 0 30px 0;
}

.search input[type=text]:focus {
    border: 2px solid #3d3b6c;
}

.search input[type=text] {
    border-radius: 6px;
    padding: 0 13px;
}

.search button {
    position: absolute;
    top: 6px;
    right: 15px;
    border: 0;
    background-color: transparent;
    font-size: 18px;
}

.news-list .news-item {
    text-align: center;
    margin: 0 0 30px 0;
    border-radius: 30px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.news-list .news-item:hover {
    box-shadow: 0px 5px 20px rgb(62 62 62 / 5%);
}

.news-list .news-content {
    border: 1px solid #efefef;
    padding: 10px 15px;
    border-radius: 0 0 30px 30px;
}

.news-list .news-item img {
    border-radius: 30px 30px 0 0;
}

.news-list .news-item h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    margin: 15px 0 0 0;
}

.news-list .news-item a {
    color: #3d3b6c;
}



footer {
    background-color: #f3f7fa;
    padding: 100px 0 0 0;
}

footer h3 {
    color: #3d3b6c;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
}

footer .footer-menu li {
    margin: 0 0 6px 0;
}

footer .footer-menu li a {
    display: block;
    color: #929292;
}

footer .footer-menu li a:hover {
    color: #3d3b6c;
}

footer .footer-contacts li {
    margin: 0 0 6px 0;
}

footer .footer-contacts li a {
    color: #3d3b6c;
}

footer .footer-contacts li a i {
    margin-right: 7px;
}

footer .footer-contacts li a:hover {
    text-decoration: underline;
}

footer .copyright {
    margin: 50px 0 0 0;
    background-color: #3d3b6b;
    padding: 15px 0;
}

footer .copyright p {
    margin: 0;
    color: #fff;
    opacity: .6;
}

footer .copyright .footer-social {
    float: right;
}

footer .copyright .footer-social li {
    display: inline-block;
    margin-left: 10px;
}

footer .copyright .footer-social li a {
    color: #fff;
    display: block;
    font-size: 24px;
}

.table td, .table th {
    padding: 5px 15px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #F3F7FA;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #f1f1f1;
}

.video {
    display: flex;
    border: 20px solid #fff;
    box-shadow: 0px 5px 30px rgb(62 62 62 / 10%);
    border-radius: 10px;
}

.video video {
    width: 100%;
    height: 100%;
}


.owl-carousel .owl-nav {
    width: 100%;
}

.owl-carousel .owl-nav button .fa {
    font-size: 60px;
    line-height: 60px;
    height: 63px;
    display: block;
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -32px;
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -32px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    color: #869791;
}

.owl-theme .owl-nav [class*=owl-] {
    outline: none;
}
