@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: "Fira Sans", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: #0a1048;
}

main {
    flex: 1 0 auto;
}

.container {
    width: 96%;
    max-width: 1400px;
}

nav {
    background-color: transparent;
    box-shadow: none;
}

nav i.right {
    font-size: 1.2rem;
}

.hoverable:hover {
    box-shadow: 0 8px 17px 0 #48668540, 0 6px 20px 0 #48668540;
}


.divider {
    margin: 80px 0;
}

.btn-red, .btn-red:active, .btn-red:focus {
	background: #da5e85;
}

.btn-blue, .btn-blue:active, .btn-blue:focus {
	background: #060552;
}

.btn-gradient, .btn-gradient:active, .btn-gradient:focus {
    background: rgb(228,120,150);
    background: -webkit-linear-gradient(164deg, rgba(228,120,150,1) 0%, rgba(98,71,231,1) 100%);
    background: -moz-linear-gradient(164deg, rgba(228,120,150,1) 0%, rgba(98,71,231,1) 100%);
    background: -o-linear-gradient(164deg, rgba(228,120,150,1) 0%, rgba(98,71,231,1) 100%);
    background: linear-gradient(164deg, rgba(228,120,150,1) 0%, rgba(98,71,231,1) 100%);
}

.btn-large {
    border-radius: 10px;
    height: auto;
    padding: 18px 32px;
    text-transform: none;
    font-size: 16px;
    line-height: normal;
}

.btn-large i,
.btn-large span {
    vertical-align: middle;
}

.btn-large i {
    margin-right: 10px;
    opacity: 0.3;
}

.btn:hover, .btn-large:hover, .btn-small:hover {
    background-color: #b0232a;
}


.nav ul a {
    font-weight: bold;
}


.dropdown-content {
    width: auto !important;
    top: 60px !important;
}

.dropdown-content li > a,
.dropdown-content li > span {
    font-size: 16px;
    color: #212121;
    font-weight: 500;
    display: block;
    line-height: 22px;
    padding: 14px 16px;
    transition: all .3s ease-out;
}

 #up-arrow {
    position: fixed;
    right: 10px;
    bottom: 60px;
    width: 60px;
    height: 60px;
    background: #da5e85;
    color: white;
    font-size: 30px;
    text-align: center;
    padding-top: 15px;
    border-radius: 50%;
    display: none;
    cursor: pointer;
    border: solid 3px #da5e85;
    transition: .5s;
}

 #up-arrow:hover {
    background: white;
    color: #da5e85;
}


/*------------------------------------------------------------------------------ BLOCK 1
*/

.block-parralax.parallax-container {
    height: 100vh;
}

.parallax-container .parallax {
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

.block-parralax .brand-logo img {
    height: 120px;
    margin-top: 20px
}

.block-parralax .flex-container {
    height: 100vh;
    margin-top: -120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-parralax .card-blue-panel {
    background: #5a43da;
    padding: 40px;
    border-radius: 20px;
    color: white;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.block-parralax h1 {
    color: white;
    font-weight: 800;
    font-size: 8rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.block-parralax h2 {
    color: white;
    font-weight: 500;
    line-height: 1.2;
    font-size: 2rem;
    margin: 0;
}



/*------------------------------------------------------------------------------ BLOCK 2
*/

.block-info {
    display: block;
    padding: 100px 0;
}



ul.infoGraphic {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  padding-bottom: 80px;
}

ul.infoGraphic li {
  position: relative;
  width: 100%;
  max-width: 25em;
  background: #fff;
  border-radius: 0.5em;
  padding: 0.5em;
  z-index: 1;
  transition: all 0.2s;
  cursor: pointer;
}

ul.infoGraphic li .numberWrap {
  position: absolute;
}

ul.infoGraphic li .number {
  font-size: 5rem;
  font-weight: 900;
  width: 0.9em;
  text-align: center;
  white-space: nowrap;
  color: #5a43da;
}

ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -0.5em;
  top: -1em;
}
ul.infoGraphic li .coverWrap .numberCover {
  position: absolute;
  background: #fff;
  width: 18em;
  height: 6em;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
}
ul.infoGraphic li .coverWrap .numberCover::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 4em;
  right: 4em;
  top: 5em;
  box-shadow: 0 0 30px 17px #48668540;
  border-radius: 100px/10px;
  z-index: -1;
}

ul.infoGraphic li .coverWrap .numberCover::after {
  position: absolute;
  bottom: 0;
  content: "";
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668526, transparent, transparent);
  z-index: 1;
}

ul.infoGraphic li .content {
  margin: 8em 3em 1em 7em;
  position: relative;
  left: 20px;
}

ul.infoGraphic li .content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-left: 20px;
}


.block-info .info {
    background: #E47896;
    background: linear-gradient(to right, #E47896 0%, #6247E7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center;
    padding: 40px 0 80px 0;
}

/*------------------------------------------------------------------------------ мы приглашаем
*/


.block-hello .parallax-container {
    padding: 120px 0;
    height: auto;
}

.block-hello h3 { 
    text-align: center;
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
    color: #ffffffa8;
}

.block-hello .stage {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.block-hello .stage .card-item {
    flex: 0 0 320px;
    border-radius: 20px;
    padding: 0 20px;
    background: #ffffffe6;
    margin: 10px;
    white-space: pre-line;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.block-hello .stage .card-item i {
    font-size: 3rem;
    height: 3rem;
    opacity: 0.2;
    display: none;
}


/*------------------------------------------------------------------------------ ФОРМАТЫ УЧАСТИЯ
*/

.block-format {
    padding: 80px 0;
}

.block-format h3 {
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
}

.block-format .gradient-card {
    width: 100%;
    background: linear-gradient(164deg, rgba(228,120,150,1) 0%, rgba(98,71,231,1) 100%);;
    padding: 40px;
    color: white;
    border-radius: 20px; 
}

.block-format .gradient-card  .gradient-card-content {
    padding: 10%;
}

.block-format h4 {
    font-size: 2rem;
    font-weight: 600;
}


/*------------------------------------------------------------------------------ ОРГАНИЗАТОРЫ
*/


.block-organizators {
    padding: 80px 0;
    background: #f4f5f6;
}

.block-organizators h3 {
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
}

.org_item {
    display: block;
    border-radius: 20px;
    background-color: white;
    margin-bottom: 20px;
    padding: 3rem 2rem;
    text-align: center;
    font-size: 14px;
    color: #212121;
    height: 300px;
    overflow: hidden;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.org_item img {
    max-height: 100px;
}


.block-partners {
    padding: 0 0 80px 0;
    background: #f4f5f6;
}

.block-partners h3 {
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
}



/*------------------------------------------------------------------------------ VIDEO BLOCK
*/


.videotitle {
    padding: 10px;
    line-height: 1.2rem;
    font-size: 1rem;
}

.videotitle strong{
    font-weight: 500;
    color: #da5e85;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 10px;
}


/*------------------------------------------------------------------------------ BLOCK 4 ПРОГРАММА КОНФЕРЕНЦИИ
*/

a.video-container {
    display: block;
}

a.video-container:hover:after {
    opacity: 1;
}

a.video-container:after {
    content: 'Подключиться';
    opacity: 0;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    color: white;
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    background: #212121;
    padding-top: 25%;
    transition: all .3s ease-out;
}

a.video-container:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.block4 {
    background-color: white;
    padding: 80px 0;
}

.block4 h3 {
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
}

.block4 h4 {
    font-weight: 600;
    color: #060552;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.block4 p {
    font-weight: 700;
    font-size: 1.2rem;
}

.block4 .white-content {
    padding: 20px;
    line-height: 1.5;
    background-color: white;
}

.block4 .collapsible {
    box-shadow: none;
    border: none;
}

.block4 .collapsible li {
    padding: 20px 0;
}

.block4 .collapsible .collapsible-header {
    display: block !important;
    padding: 10px 70px 10px 0;
    position: relative;
}

.block4 .collapsible .collapsible-header span {
    display: inline !important;
    font-weight: 500;
    font-size: 20px;
    color: #060552;
}

.block4 .collapsible .collapsible-header h4 span  {
    font-weight: 600;
    font-size: 1.6rem;
    text-transform: uppercase;
}


.block4 .collapsible .collapsible-header:before {
    content: "+";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 32px;
    height: 49px;
    margin: auto;
    font-size: 34px;
    font-weight: 600;
}

.block4 .collapsible li.active .collapsible-header span {
    border-color: transparent;
    font-weight: 700;
}

.block4 .collapsible .collapsible-header:hover span {
    border-color: transparent;
}

.block4 .collapsible .collapsible-header .date {
    color: #da5e85;
    text-transform: uppercase;
    font-weight: 700;
} 

.block4 .collapsible li.active .collapsible-header:before {
    transform: rotate(45deg);
}

.block4 .collapsible .collapsible-body {
    padding: 20px;
    line-height: 1.5;
    border-bottom: 1px solid white;
}

.block4 .collapsible .collapsible-body p {
    margin-top: -20px;
    padding: 40px 0 20px 0;
    line-height: 1.5;
    background-color: white;
    border-bottom: 1px solid white;
    text-align: justify;
}

.block4 .collapsible .collapsible .collapsible-body {
    padding: 20px;
    line-height: 1.5;
    background-color: white;
    border-bottom: 1px solid white;
}

.block4 .collapsible .collapsible li:last-child {
    border-bottom: none;
}


.block4 .collapsible-body .collapsible {
    padding-left: 100px;
}

.block4 .collapsible-body h5 {
    font-weight: 700;
    font-size: 1.4rem;
}



.block4 .collection .collection-item.avatar:not(.circle-clipper)>.circle {
    width: 60px;
    height: 60px;
    left: 0px;
}

.block4 .collection .collection-item.avatar .title {
    font-size: 16px;
    display: block;
}

.block4 .collection .divider {
    margin: 10px 0;
}

/*------------------------------------------------------------------------------ BLOCK 5 ЭКСПЕРТЫ
*/

.block5 {
    padding: 80px 0;
}

.block5 h3 {
    font-weight: 600;
    color: #060552;
    font-size: 3rem;
    text-transform: uppercase;
}

.block5 .rotator-item {
    text-align: center;
}

.block5 .rotator-item .photo {
    margin-bottom: 23px;
    width: 152px;
    height: 152px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid 4px #00d4fe;
}

.block5 .rotator-item .name b {
    font-weight: 600;
    color: #060552;
    font-size: 1.4rem;
}

.block6 h4 {
    font-weight: 700;
    font-size: 1.6rem;
}

.block6 ul li {
    position: relative;
    margin-left: 20px;
}

.block6 ul li::before {
    content: "";
    display: block;
    height: 8px;
    width: 8px;
    border: 2px solid #da5e85;
    border-radius: 50%;
    position: absolute;
    left: -20px;
    top: 10px;
}




/*------------------------------------------------------------------------------ BLOCK 8 ПАРТНЕРЫ
*/

.block8 {
    padding: 80px 0;
}

.block8 h3 {
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
}

.part_item {
    display: block;
    margin-bottom: 20px;
}

/*------------------------------------------------------------------------------ BLOCK 9 ФОТО
*/

.block9 {
    padding: 80px 0;
}

.block9 h3 {
    font-weight: 600;
    color: #060552;
    font-size: 3rem;
    text-transform: uppercase;
}



/*------------------------------------------------------------------------------ PAGE
*/


.page nav {
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    height: 80px;
    line-height: 80px;
}

.page nav .brand-logo img {
    height: 60px;
    margin-top: 10px;
}

nav, nav .nav-wrapper i, nav a.sidenav-trigger, nav a.sidenav-trigger i {
    height: 80px;
    line-height: 80px;
}
  

.page h1 {
    font-weight: 600;
    color: #060552;
    font-size: 3rem;
    text-transform: uppercase;
}

.page .page-content {
    min-height: 600px;
}

.page .page-content blockquote {
    border-left-color: #da5e85;
}

.page .page-content h5 {
    font-weight: 600;
    color: #060552;
}

.page .page-content strong {
    font-weight: 600;
}

.page .page-content .pdf {
    display: inline-block;
    margin: 10px 10px 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px dashed #cbcbcb;
}

.page .page-content .size-file {
    color: #b5b5b5;
}



/*------------------------------------------------------------------------------ PAGE ДЕТСКАЯ КОНФЕРЕНЦИЯ
*/


.page .page-content .pro-card {
    padding: 0 20px;
}

.page .page-content .pro-card h3 {
    font-weight: 600;
    color: #060552;
    font-size: 2rem;
    text-transform: uppercase;
    margin-top: 0;
}

.page .page-content .pro-card .description {
    font-weight: 600;
}

.page .page-content .pro-card .introtext {
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.page .page-content .pro-card .content {
    text-align: justify;
}

.page .page-content .pro-card .content .collapsible {
    border-top: none;
    border-right: none;
    border-left: none;
    margin: .5rem 0 1rem 0;
    box-shadow: none;
}

.page .page-content .pro-card .content .collapsible .collapsible-header {
    padding: 10px 0;
}

.page .page-content .pro-card .content .collapsible .collapsible-header i{
    line-height: 1rem;
} 

.page .page-content .pro-card .fa-fw {
    margin-right: 10px;
    color: #b5b5b5;
}

.page .page-content .pro-card .content .collapsible .collapsible-body {
    border-bottom: none;
}


/*------------------------------------------------------------------------------ УЧАСТНИКИ
*/

.stat-conf {
	background: url('http://ito2017.bytic.ru/img/bg.png') repeat;
	background-color:rgba(0,0,0,.4);
	padding:8em 0;
}
.stat-conf h2 {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 300;
    padding-bottom: 50px;
}

.reg_ref {
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: solid #d32f2e 1px;
    font-size: 1.2em;
    line-height: 2.5em;
    font-weight: 300;
    margin-right: 0.7em;
}

.cont-conf-div {position: absolute;left: 0;right: 0;z-index: 2;top: 0;bottom: 0;}
.cont-conf {position: relative;}
.white-ts {background-color:rgba(255,255,255,.4);}

.parallax-container {height: 830px;}


.stat-conf-ring {color: #fff;height: 18em;width: 18em;margin: 0 auto;}
.stat-conf-ring .valign-wrapper {height: 100%;}
.stat-conf-ring .valign {text-align: center; width: 100%;}


.stat-conf-ring-count {font-size: 4em;margin: 0.4em;color: #fff;text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.75);}
.stat-conf-ring-txt {font-size: 1.5em;margin: 0;color: #fff;text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.75);}




.exponents {
    padding: 80px 0;
    background: #f4f5f6;
}

.exponents h3 {
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
}

.exponents .org_item {
    overflow:hidden;
    position:relative;
}

.exponents .org_item:hover {
    box-shadow: 0 6px 10px -4px rgb(0 0 0 / 15%);
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    -moz-transform: none;
}

.exponents .org_item .curtain {
    position:absolute;
    left:0;top:100%;
    width:100%;
    height:100%;
    transition: top .5s;
    background:#00d4ff;
    color:white;
    padding:24px;
}

.exponents .org_item .curtain .text-container {
    width:100%;height:100%;
    border:solid white 1px;
    display:flex;
}
.exponents .org_item .curtain .text-container .text {
    margin:auto;
}
.exponents .org_item:hover .curtain {
    top:0;
}



/*------------------------------------------------------------------------------ FOOTER
*/


footer.page-footer .container {
    padding: 80px 0;
}

footer.page-footer {
    background: #101352;
}

footer.page-footer h5 {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.6rem;
    text-transform: uppercase;
}

footer.page-footer .foot-info .fab {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

footer.page-footer .foot-info .fas {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}


footer.page-footer .footer-copyright {
    display: block;
    background-color: #0b1147;
    text-align: center;
    font-size: .8rem;
    line-height: 2rem;
}

/*------------------------------------------------------------------------------ MODAL INFO
*/


.modal.info-modal {
    padding: 40px;
}

.modal.info-modal h4 {
    text-align: center;
    font-weight: 600;
    color: #060552;
    font-size: 3rem;
    text-transform: uppercase;
}

.modal.info-modal h5 strong {
    font-weight: 700;
}



/*------------------------------------------------------------------------------ MEDIA
*/

@media (max-width: 1400px) {

    .block2 .number_values {
        margin: 30px 0;
    }

    .block2 .number_value {
        font-size: 3rem;
    }

    .block2 .number_value i {
        font-size: 20px;
    }

    .card-item {
        padding: 1rem;
    }

    .card-item .fas {
        font-size: 40px;
    }

    .block6 .blue-card {
        min-width: 400px;
    }

    .block6 .blue-card .blue-card-content {
        font-size: .7em;
    }
}


@media (max-width: 1200px) {

    ul.infoGraphic {
        flex-wrap: wrap;
    }

    .block6 .blue-card .blue-card-content {
        font-size: 1em;
    }
}



@media (max-width: 800px) {
    body {
        font-size: 15px;
    }

    .block-parralax.parallax-container {
        height: auto;
    }

    .block-parralax .flex-container {
        height: auto;
        margin-top: 80px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .block-parralax h1 {
        font-size: 4rem;
    }

    .block-parralax h2 {
        font-size: 1.2rem;
    }

    .block-info {
        padding: 20px 0;
    }

    .block-info .info {
        padding: 0;
    }

    .block-hello .parallax-container {
        padding: 20px 0;
    }

    .block-format {
        padding: 20px 0;
    }

    .block-format h3 {
        text-align: center;
    }

    .block-organizators {
        padding: 20px 0;
        background: #fff;
    }

    .block-organizators h3 {
        text-align: center;
    }

    .block-partners {
        padding: 0 ;
        background: #fff;
    }

    .block-partners h3 {
        text-align: center;
    }

    .exponents {
        padding: 20px 0;
    }

    .exponents h3 {
        text-align: center;
    }

    .exponents .container .row:last-child {
        text-align: center;
    }

    .block9 {
        padding: 20px 0;
    }

    .block9 h3 {
        text-align: center;
    }

    .history .container .row:last-child {
        text-align: center;
    }
    
    h3 {
        font-size: 2rem !important;
    }

    h4 {
        font-size: 1.1rem !important;
    }

    .block1 .brand-logo img {
        height: 90px;
    }

    .block1 h1 {
        font-size: 2rem;
        margin-top: 80px;
    }

    .block1 h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin: 2rem 0 1rem 0;
    }

    .block1 p {
        font-size: 14px;
        margin-bottom: 0;
    }

    .divider {
        margin: 30px 0;
    }

    .block2,
    .block4,
    .block5,
    .block6,
    footer.page-footer .container {
        padding: 10px 0;
    }

    .block2 .dark-blue-section {
        padding: 30px 0;
        margin: 30px 0;
    }

    .block2 .number_value {
        text-align: left;
    }

    .block2 .number_value i {
        left: 20%;
    }

    .block2 .card-item {
        height: auto;
    }

    .block2 .card-item p {
        font-size: 18px;
    }

    .block2 .info {
        padding: .1rem 1.5rem;
        font-size: 1.2rem;
    }

    .org_item {
        padding: 0;
        font-size: .7rem;
        height: 230px;
        background-color: transparent;
    }

    .block4 .collapsible-body .collapsible {
        padding-left: 0px;
    }

    .block4 .collapsible .collapsible-header span {
        font-weight: 400;
        font-size: 15px;
    }

    .owl-nav {
        display: none
    }
    
    
    .block6 .blue-card {
        margin-top: 40px;
        width: 100%;
        background: #060552;
    }
    
    .block6 .blue-card .blue-card-content {
        padding: 10%;
        font-size: 1rem;
    }

    footer.page-footer h5 {
        font-size: 1.2rem;
    }
    
    .page h1 {
        font-size: 1.4rem;
    }
    
    .hoverable:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .block14 .relative .absolute {
        bottom: -60px;
    }

}





































/*end*/
