Advertisement
Guest User

Untitled

a guest
Oct 11th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 64.59 KB | None | 0 0
  1. /* - table of content start
  2. ==================================================================================================== */
  3.  
  4. /* --------------------------------------------------
  5. The "Hello Resume" HTML5 Template
  6.  
  7. File:           CSS Base
  8. Version:        ----
  9. Last change:    ----
  10. Author:         ----
  11. -------------------------------------------------- */
  12.  
  13.  
  14. /* --------------------------------------------------
  15. * 1 = fonts load
  16. * 2 = global area
  17. * 3 = fixed-left/right side body
  18. * 4 = home (index page)
  19. * 5 = footer-section
  20. * 6 = Chooser page
  21. -------------------------------------------------- */
  22.  
  23. /* - table of content end
  24. ==================================================================================================== */
  25.  
  26.  
  27.  
  28.  
  29. /*  - 1 - fonts load start
  30. ==================================================================================================== */
  31. @import url('https://fonts.googleapis.com/css?family=Merienda:400,700|Raleway:300,300i,400,400i,700,700i|Roboto:300,300i,400,400i,700,700i');
  32.  
  33. body { font-family: 'Roboto', sans-serif; }
  34. h1,h2,h3,h4,h5,h6 { font-family: 'Raleway', sans-serif; }
  35. /*  - 1 - fonts load end
  36. ==================================================================================================== */
  37.  
  38.  
  39.  
  40.  
  41. /*  - 2 - global area start
  42. ==================================================================================================== */
  43. * { box-sizing: border-box; }
  44. body, html {
  45.   margin: 0;
  46.   padding: 30px;
  47.   color: #2f2f2f;
  48.   font-size: 16px;
  49.   line-height: 1.625;
  50.   letter-spacing: .5px;
  51.   background-color: #0f0f0f;
  52.   font-family: 'Roboto', sans-serif;
  53.   -webkit-font-smoothing: antialiased;
  54.   overflow-x:hidden;
  55. }
  56.  
  57. ::selection {
  58.   color: #fff;
  59.   background: #2196f3;
  60. }
  61.  
  62. .form-control:focus,
  63. button:visited,
  64. button.active,
  65. button:hover,
  66. button:focus,
  67. input:visited,
  68. input.active,
  69. input:hover,
  70. input:focus,
  71. a:hover,
  72. a:focus,
  73. a:visited,
  74. a.active{
  75.   outline: none;
  76.   box-shadow: none;
  77.   background: none;
  78.   text-decoration: none;
  79. }
  80.  
  81. p,
  82. ul.ul-li,
  83. ul.ul-li li,
  84. ul.ul-li li a {
  85.  margin: 0;
  86.  padding: 0;
  87.  color:#757575;
  88. }
  89. ul.ul-li {
  90.   width: 100%;
  91.   display: table;
  92. }
  93. ul.ul-li li {
  94.   list-style: none;
  95.   display: inline-block;
  96. }
  97. ul.ul-li-block li {
  98.  display: block;
  99. }
  100.  
  101. a {
  102.   text-decoration: none;
  103.   display: inline-block;
  104. }
  105. h1,h2,h3,h4,h5,h6 {
  106.   margin: 0;
  107.   padding: 0;
  108.   color: #ffffff;
  109.   font-weight: normal;
  110.   text-transform: capitalize;
  111.   font-family: 'Raleway', sans-serif;
  112. }
  113. img {
  114.   max-width: 100%;
  115.   height: auto;
  116. }
  117.  
  118. /* - padding / margin setting start
  119. ================================================== */
  120. .p-0 { padding: 0px; }
  121. .pt-0 { padding-top: 0px; }
  122. .pb-0 { padding-bottom: 0px; }
  123. .pr-0 { padding-right: 0px; }
  124. .pl-0 { padding-left: 0px; }
  125.  
  126. .m-0 { margin: 0px !important; }
  127. .mt-0 { margin-top: 0px; }
  128. .mb-30 { margin-bottom: 30px; }
  129. .mr-0 { margin-right: 0px; }
  130. .ml-0 { margin-left: 0px; }
  131.  
  132. /* - padding / margin setting end
  133. ================================================== */
  134.  
  135. /* - social button start
  136. ================================================== */
  137. ul.social-btn {
  138.   width: 100%;
  139.   display: table;
  140.   padding: 50px 0px;
  141.   text-align: center;
  142.   background:#222222;
  143. }
  144. ul.social-btn li {
  145.   margin: 5px;
  146.   width: 35px;
  147.   height: 35px;
  148.   opacity: 0.2;
  149.   border-radius: 100%;
  150.   display: inline-block;
  151.   background-color: rgb(0, 0, 0);
  152. }
  153. ul.social-btn li:hover {
  154.   opacity: 1;
  155.   background-color: #2196f3;
  156. }
  157. ul.social-btn li a {
  158.   width: 100%;
  159.   height: 100%;
  160.   display: block;
  161.   color: #ffffff;
  162.   line-height: 35px;
  163.   text-align: center;
  164. }
  165. /* - social button end
  166. ================================================== */
  167.  
  168. /* - post-mate2 start
  169. ================================================== */
  170. ul.post-mate2 {
  171.  width: 100%;
  172.  display: table;
  173. }
  174. ul.post-mate2 li {
  175.   position: relative;
  176.   font-style: italic;
  177.   display: inline-block;
  178.   text-transform: capitalize;
  179.   color:#757575;
  180. }
  181. ul.post-mate2 li:before {
  182.   top: 0;
  183.   right: 0;
  184.   content: '/';
  185.   position: absolute;
  186. }
  187. ul.post-mate2 li:last-child:before {
  188.   display: none;
  189. }
  190. .pm-r25 {
  191.   margin-right: 25px;
  192.   padding-right: 25px;
  193. }
  194. .pm-l25 {
  195.   margin-left: 25px;
  196.   padding-left: 25px;
  197. }
  198.  
  199. /* - post-mate2 end
  200. ================================================== */
  201.  
  202. /* - link button start
  203. ================================================== */
  204. button.custom-btn,
  205. a.custom-btn {
  206.   width: 230px;
  207.   height: 70px;
  208.   color: #ffffff;
  209.   font-size: 18px;
  210.   line-height: 70px;
  211.   text-align: center;
  212.   display: inline-block;
  213.   background-color: #2196f3;
  214.   text-transform: capitalize;
  215. }
  216. button.custom-btn > i,
  217. a.custom-btn > i {
  218.   margin-right: 15px;
  219. }
  220. button.custom-btn:hover,
  221. a.custom-btn:hover {
  222.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.2);
  223. }
  224. /* - link button end
  225. ================================================== */
  226.  
  227. /* - Section-title start
  228. ================================================== */
  229. .Section-title {
  230.   width: 100%;
  231.   display: table;
  232.   text-align: left;
  233.   position: relative;
  234.   margin-bottom: 80px;
  235. }
  236. .Section-title h2 {
  237.   z-index: 2;
  238.   font-size: 40px;
  239.   font-weight: 700;
  240.   padding: 15px 0px;
  241.   line-height: 0.65;
  242.   position: relative;
  243.   margin-bottom: 20px;
  244.   text-transform: capitalize;
  245. }
  246. .Section-title span {
  247.   left: 0;
  248.   top: -40px;
  249.   z-index: -1;
  250.   color: #f7f7f7;
  251.   font-size: 90px;
  252.   font-weight: 700;
  253.   position: absolute;
  254.   text-transform: uppercase;
  255.   font-family: 'Roboto', sans-serif;
  256. }
  257. .Section-title h2 > i {
  258.   color: #2196f3;
  259.   margin-right: 10px;
  260. }
  261.  
  262. /* title
  263. .................................................. */
  264. h2.title {
  265.   font-size: 18px;
  266.   font-weight: 700;
  267.   text-transform: uppercase;
  268.   font-family: 'Roboto', sans-serif;
  269. }
  270. /* - Section-title end
  271. ================================================== */
  272.  
  273. /* - all Transition start
  274. ================================================== */
  275. button,
  276. a {
  277.   -webkit-transition: all .4s ease-in-out;
  278.   -moz-transition: all .4s ease-in-out;
  279.   -ms-transition: all .4s ease-in-out;
  280.   -o-transition: all .4s ease-in-out;
  281.   transition: all .4s ease-in-out;
  282. }
  283. /* - all Transition end
  284. ================================================== */
  285.  
  286. .sec-p100-bg-bs {
  287.   padding: 100px;
  288.   background-color: #222222;
  289.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  290. }
  291.  
  292. .common-color { color: #2196f3; }
  293.  
  294. .photoshop-bg { background-color: #2196f3; }
  295. .photoshop-color { color: #2196f3; }
  296.  
  297. .jquery-bg { background-color: #26a69a; }
  298. .jquery-color { color: #26a69a; }
  299.  
  300. .php-bg { background-color: #ef5350; }
  301. .php-color { color: #ef5350; }
  302.  
  303. .html5-bg { background-color: #3f51b5; }
  304. .html5-color { color: #3f51b5; }
  305.  
  306. .css3-bg { background-color: #fbc02d; }
  307. .css3-color { color: #fbc02d; }
  308.  
  309. .marketing-bg { background-color: #ab47bc; }
  310. .marketing-color { color: #ab47bc; }
  311.  
  312. /* - 2 - global area end
  313. ==================================================================================================== */
  314.  
  315.  
  316.  
  317.  
  318.  
  319. /* - 3 - fixed-left/right side body start
  320. ==================================================================================================== */
  321. .fixed-left-side-body {
  322.   top: 60px;
  323.   bottom: 0;
  324.   left: 30px;
  325.   width: 24%;
  326.   float: left;
  327.   position: fixed;
  328.   min-height: 100%;
  329.   overflow-x: hidden;
  330.   background-color: #222222;
  331.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  332. }
  333. .fixed-left-side-body .profile {
  334.   padding: 80px 0px;
  335.   position: relative;
  336.   margin-bottom: 40px;
  337. }
  338. .fixed-left-side-body .profile-image {
  339.   padding: 0px 40px 0px 40px;
  340. }
  341. .fixed-left-side-body .profile-image > img {
  342.   width: 100%;
  343.   height: 100%;
  344.   display: block;
  345. }
  346. .fixed-left-side-body .profile-name {
  347.   padding: 45px 0px;
  348.   background-color: #2c2c2c;
  349.   box-shadow: 0px 10px 40px 15px rgba(1, 1, 1, 0.1);
  350. }
  351. .fixed-left-side-body .profile-name h1.user-name {
  352.   font-size: 34px;
  353.   margin-bottom: 10px;
  354.   font-family: 'Merienda', cursive;
  355. }
  356.  
  357.  
  358. .fixed-left-side-body .discription {
  359.   margin-bottom: 50px;
  360.   padding: 50px 40px 50px 60px;
  361.   border-top: 1px solid #393939;
  362.   border-bottom: 1px solid #393939;
  363. }
  364. .fixed-left-side-body .cv-btn {
  365.   text-align: center;
  366. }
  367.  
  368.  
  369. .fixed-left-side-body::-webkit-scrollbar {
  370.   width: 2px;
  371.   height: 100px;
  372. }
  373.  
  374. .fixed-left-side-body::-webkit-scrollbar-track {
  375.   width: 2px;
  376.   background-color: transparent;
  377. }
  378.  
  379. .fixed-left-side-body::-webkit-scrollbar-thumb {
  380.   background-color: transparent;
  381. }
  382.  
  383.  
  384. /* right-side-body
  385. .................................................. */
  386. .right-side-body {
  387.   width: 75%;
  388.   float: right;
  389.   position: relative;
  390.   padding-left: 30px;
  391. }
  392. /* - 3 - fixed-left/right side body end
  393. ==================================================================================================== */
  394.  
  395.  
  396.  
  397.  
  398.  
  399. /* - 4 - home (index page) start
  400. ==================================================================================================== */
  401. /* - 4.1 - header-section Start
  402. ================================================== */
  403. .header-section {
  404.   position: relative;
  405.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  406. }
  407.  
  408. .header-section nav.main-nav {
  409.   width: 100%;
  410.   height: 100px;
  411.   box-shadow: none;
  412.   line-height: 100px;
  413.   background-color: #ffffff;
  414. }
  415. .header-section nav.main-nav ul > li {
  416.   transform: scaleY(1);
  417.   z-index: 0;
  418.  
  419. }
  420. .header-section nav.main-nav ul > li.active{
  421.   z-index: 1;
  422.   transform: scaleY(1.3);
  423. }
  424. .header-section nav.main-nav ul > li.active > a:hover { background-color:transparent; }
  425.  
  426.  
  427. .header-section nav.main-nav ul > li > a {
  428.   color: #ffffff;
  429.   display: block;
  430.   padding: 0 32px;
  431.   text-transform: capitalize;
  432. }
  433.  
  434.  
  435. .header-section nav.main-nav .alternative-menu { display: none; }
  436.  
  437. .hello_fixed_nav_wrapper ul li a:hover, .hello_fixed_nav_wrapper ul li.active a{
  438.     background:#2196f3;
  439.     color:#ffffff !important;
  440. }
  441.  
  442. .hello_main_navigation ul li.active a{
  443.     background:#2196f3;
  444.     color:#ffffff !important;
  445. }
  446. .hello_main_navigation ul li a:hover, .hello_main_navigation ul li.active a{
  447.     background:#2196f3;
  448.     color:#ffffff !important;
  449. }
  450.  
  451. /* responsive side-nav
  452. .................................................. */
  453. ul.side-nav li.sn-user {
  454.   text-align: center;
  455.   padding: 50px 0px !important;
  456.   margin-bottom: 30px !important;
  457.   border-bottom: 1px solid #f0f0f0;
  458. }
  459. ul.side-nav li.sn-user span.sn-user-img {
  460.   width: 100px;
  461.   height: 100px;
  462.   display: table;
  463.   line-height: 0;
  464.   margin: 0 auto;
  465.   overflow: hidden;
  466.   text-align: center;
  467.   border-radius: 100%;
  468.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  469. }
  470. ul.side-nav li.sn-user span.sn-user-name {
  471.   color: #111111;
  472.   font-weight: 700;
  473.   text-transform: uppercase;
  474. }
  475. ul.side-nav li.sn-user > a.sn-cv-link {
  476.   width: 100%;
  477.   height: auto;
  478.   display: table;
  479.   line-height: 0;
  480.   text-align: center;
  481.   margin: 0 !important;
  482.   padding: 0 !important;
  483. }
  484. ul.side-nav li.sn-item > a {
  485.   font-size: 18px;
  486.   padding: 0px 40px !important;
  487. }
  488. ul.side-nav li.sn-item > a > i {
  489.   margin-right: 15px;
  490. }
  491. /* - 4.1 - header-section end
  492. ================================================== */
  493.  
  494.  
  495. /* - 4.2 - main-slider-section Start
  496. ================================================== */
  497. .main-slider-section {
  498.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  499. }
  500. .main-slider .item {
  501.   padding: 100px;
  502.   background-color: #222222;
  503. }
  504.  
  505. /* item-child-right
  506. .................................................. */
  507. .main-slider .item-child-right {
  508.   width: 335px;
  509.   height: 335px;
  510.   margin: 43px 0px;
  511.   text-align: center;
  512.   position: relative;
  513.   border-radius: 100%;
  514.   background-color: #222222;
  515.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  516. }
  517. .main-slider .item-child-right > a.chat {
  518.   width: 80px;
  519.   height: 80px;
  520.   color: #ffffff;
  521.   line-height: 80px;
  522.   font-size: 24px;
  523.   text-align: center;
  524.   border-radius: 100%;
  525.   background-color: rgb(239, 83, 80);
  526.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  527.  
  528.   position: absolute;
  529.   top: 36px;
  530.   left: -10px;
  531. }
  532. .main-slider .item-child-right > img {
  533.   width: 100%;
  534.   height: 100%;
  535.   display: block;
  536.   border-radius:100%;
  537. }
  538.  
  539. /* item-child-left
  540. .................................................. */
  541. .main-slider .item-child-left {
  542.   padding: 67.5px 0px;
  543. }
  544. .main-slider .item-child-left h2.hi {
  545.   font-size: 80px;
  546.   font-weight: 700;
  547. }
  548. .main-slider .item-child-left p.name {
  549.   color: #ffffff;
  550.   font-size: 46px;
  551. }
  552. .main-slider .item-child-left small.position {
  553.   width: 100%;
  554.   display: block;
  555.   color: #ffffff;
  556.   font-size: 24px;
  557.   font-weight: 300;
  558. }
  559.  
  560.  
  561. /* owl-dots
  562. .................................................. */
  563. .main-slider .owl-dots {
  564.   top: 50%;
  565.   right: 45px;
  566.   position: absolute;
  567.   transform: translateY(-50%);
  568. }
  569. .main-slider .owl-dots .owl-dot {
  570.   zoom: 1;
  571.   display: table;
  572. }
  573. .main-slider .owl-dots .owl-dot span {
  574.   width: 8px;
  575.   height: 8px;
  576.   display: block;
  577.   margin: 10px 0px;
  578.   border-radius: 0px;
  579.   background: #cdcdcd;
  580.   transform: scale(1);
  581.   transition: all .2s ease-in-out;
  582.   -webkit-backface-visibility: visible;
  583. }
  584. .main-slider .owl-dots .owl-dot.active span {
  585.   background: #2196f3;
  586.   transform: scale(1.7);
  587.   box-shadow: 0px 0px 25px 5px rgba(1, 1, 1, 0.1);
  588. }
  589. /* - 4.2 - main-slider-section Start
  590. ================================================== */
  591.  
  592.  
  593. /* - 4.3 - aboutme-section Start
  594. ================================================== */
  595. .personal-details-area {
  596.   margin-bottom: 60px;
  597. }
  598. .aboutme-section ul.service-list li {
  599.   width: 200px;
  600.   height: 200px;
  601.   padding: 30px;
  602.   overflow: hidden;
  603.   position: relative;
  604.   margin-right: 30px;
  605.   margin-bottom: 30px;
  606.   background-color: #2c2c2c;
  607.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  608. }
  609. .aboutme-section ul.service-list li:before {
  610.   left: 0;
  611.   right: 0;
  612.   bottom: 0;
  613.   content: '';
  614.   width: 100%;
  615.   height: 2px;
  616.   position: absolute;
  617.   transition: all .2s ease-in-out;
  618. }
  619. .aboutme-section ul.service-list li > i {
  620.   top: 40px;
  621.   left: 40px;
  622.   font-size: 40px;
  623.   position: absolute;
  624. }
  625. .aboutme-section ul.service-list li > span.service-name {
  626.   left: 40px;
  627.   bottom: 40px;
  628.   color: #ffffff;
  629.   font-size: 20px;
  630.   position: absolute;
  631.   text-transform: capitalize;
  632.   transition: all .2s ease-in-out;
  633. }
  634. .aboutme-section ul.service-list li > a.more {
  635.   top: 40px;
  636.   width: 45px;
  637.   right: -100%;
  638.   height: 35px;
  639.   color: #ffffff;
  640.   line-height: 35px;
  641.   text-align: center;
  642.   position: absolute;
  643.   background-color: #2196f3;
  644.   transition: all .2s ease-in-out;
  645. }
  646.  
  647. /* ---------- hover effects ---------- */
  648. .aboutme-section ul.service-list li:hover:before {
  649.   height: 60px;
  650. }
  651. .aboutme-section ul.service-list li:hover > span.service-name {
  652.   bottom: 15px;
  653.   color: #ffffff;
  654. }
  655. .aboutme-section ul.service-list li:hover > a.more {
  656.   right: 0%;
  657. }
  658.  
  659. /* ---------- colorzzz ---------- */
  660. .aboutme-section ul.service-list li.logodesign > i {color: #2196f3;}
  661. .aboutme-section ul.service-list li.logodesign:before {background-color: #2196f3;}
  662. .aboutme-section ul.service-list li.logodesign > a.more {background-color: #2196f3;}
  663.  
  664. .aboutme-section ul.service-list li.website > i {color: #ef5350;}
  665. .aboutme-section ul.service-list li.website:before {background-color: #ef5350;}
  666. .aboutme-section ul.service-list li.website > a.more {background-color: #ef5350;}
  667.  
  668. .aboutme-section ul.service-list li.softwares > i {color: #fbc02d;}
  669. .aboutme-section ul.service-list li.softwares:before {background-color: #fbc02d;}
  670. .aboutme-section ul.service-list li.softwares > a.more {background-color: #fbc02d;}
  671.  
  672. .aboutme-section ul.service-list li.applications > i {color: #ab47bc;}
  673. .aboutme-section ul.service-list li.applications:before {background-color: #ab47bc;}
  674. .aboutme-section ul.service-list li.applications > a.more {background-color: #ab47bc;}
  675.  
  676.  
  677. /* personal-details-right
  678. .................................................. */
  679. .aboutme-section .personal-details-right {
  680.   padding-bottom: 30px;
  681.   border-bottom: 1px solid #393939;
  682. }
  683. .aboutme-section .personal-details-right h2.title {
  684.   margin-bottom: 50px;
  685. }
  686. .aboutme-section .personal-details-right > table td {
  687.   padding: 11px 5px;
  688.   color:#ffffff;
  689. }
  690.  
  691. .td-w65 {
  692.   width: 65%;
  693.   color: #111111;
  694.   font-style: italic;
  695. }
  696. .td-w25 { width: 25%; }
  697. .td-w10 { width: 10%; }
  698.  
  699.  
  700. /* success
  701. .................................................. */
  702. .aboutme-section .success {
  703.   width: 100%;
  704.   padding: 30px;
  705.   display: table;
  706.   background-color: #2196f3;
  707.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  708. }
  709.  
  710. /* success-child-left
  711. .................................................. */
  712. .aboutme-section .success-child-left {
  713.   width: 50%;
  714.   float: left;
  715.   padding: 15px;
  716.   text-align: left;
  717. }
  718. .aboutme-section .success-child-left > i {
  719.   float: left;
  720.   color: #ffffff;
  721.   font-size: 70px;
  722.   margin-right: 30px;
  723. }
  724. .aboutme-section .success-child-left > p {
  725.   color: #ffffff;
  726.   font-size: 24px;
  727.   font-weight: 700;
  728.   line-height: 1.417;
  729. }
  730.  
  731. /* success-child-right
  732. .................................................. */
  733. .aboutme-section .success-child-right {
  734.   width: 50%;
  735.   float: right;
  736.   padding: 15px;
  737.   text-align: right;
  738. }
  739.  
  740. .aboutme-section .success a.hire-me {
  741.   width: 200px;
  742.   height: 70px;
  743.   color: #000000;
  744.   font-size: 18px;
  745.   line-height: 70px;
  746.   text-align: center;
  747.   text-transform: capitalize;
  748.   background-color: #ffffff;
  749. }
  750. .aboutme-section .success a.hire-me:hover {
  751.   background-color:#ffffff;
  752.   color:#000000;
  753. }
  754. /* - 4.3 - aboutme-section end
  755. ================================================== */
  756.  
  757.  
  758. /* - 4.4 - umfrage-section start
  759. ================================================== */
  760. .professional-skills-area {
  761.   margin-bottom: 90px;
  762. }
  763.  
  764. .professional-skills-area .tabs .indicator {
  765.   display: none;
  766. }
  767. .professional-skills-area ul.skills-tab {
  768.   margin-bottom: 60px;
  769.   background:#222222;
  770. }
  771.  
  772. .professional-skills-area ul.skills-tab li.tag-item {
  773.   float: left;
  774.   width: auto;
  775.   height: 53px;
  776.   line-height: 53px;
  777.   text-align: center;
  778. }
  779. .professional-skills-area ul.skills-tab li.tag-icon {
  780.   width: 30px;
  781.   height: 53px;
  782.   color: #ffffff;
  783.   text-align: left;
  784.   line-height: 53px;
  785. }
  786. .professional-skills-area ul.skills-tab li.tag-item a {
  787.   color: #ffffff;
  788.   padding: 0px 20px;
  789.   text-transform: lowercase;
  790.   -webkit-transition: all 0.5s;
  791.     -o-transition: all 0.5s;
  792.     -ms-transition: all 0.5s;
  793.     -moz-transition: all 0.5s;
  794.     transition: all 0.5s;
  795. }
  796. .professional-skills-area ul.skills-tab li.tag-item a:hover {
  797.   background-color: #2c2c2c;
  798.   color:#2196f3;
  799.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  800.   -webkit-transition: all 0.5s;
  801.     -o-transition: all 0.5s;
  802.     -ms-transition: all 0.5s;
  803.     -moz-transition: all 0.5s;
  804.     transition: all 0.5s;
  805. }
  806.  
  807. /* item-body
  808. .................................................. */
  809. #graphicdesign,
  810. #photography,
  811. #technology,
  812. #design,
  813. #webdevelopment,
  814. #application {
  815.   padding: 60px 60px;
  816.   background-color: #2c2c2c;
  817.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  818. }
  819.  
  820. #graphicdesign h2.title,
  821. #photography h2.title,
  822. #technology h2.title,
  823. #design h2.title,
  824. #webdevelopment h2.title,
  825. #application h2.title {
  826.   margin-bottom: 50px;
  827. }
  828.  
  829.  
  830. @-webkit-keyframes Rx-width-0 {
  831.  0% {
  832.   width: 0%;
  833. }
  834.  
  835. 100% {
  836.   width: 0%;
  837. }
  838. }
  839.  
  840. @-webkit-keyframes Rx-width-1 {
  841.  0% {
  842.   width: 0%;
  843. }
  844.  
  845. 100% {
  846.   width: 1%;
  847. }
  848. }
  849.  
  850. @-webkit-keyframes Rx-width-2 {
  851.  0% {
  852.   width: 0%;
  853. }
  854.  
  855. 100% {
  856.   width: 2%;
  857. }
  858. }
  859.  
  860. @-webkit-keyframes Rx-width-3 {
  861.  0% {
  862.   width: 0%;
  863. }
  864.  
  865. 100% {
  866.   width: 3%;
  867. }
  868. }
  869.  
  870. @-webkit-keyframes Rx-width-4 {
  871.  0% {
  872.   width: 0%;
  873. }
  874.  
  875. 100% {
  876.   width: 4%;
  877. }
  878. }
  879.  
  880. @-webkit-keyframes Rx-width-5 {
  881.  0% {
  882.   width: 0%;
  883. }
  884.  
  885. 100% {
  886.   width: 5%;
  887. }
  888. }
  889.  
  890. @-webkit-keyframes Rx-width-6 {
  891.  0% {
  892.   width: 0%;
  893. }
  894.  
  895. 100% {
  896.   width: 6%;
  897. }
  898. }
  899.  
  900. @-webkit-keyframes Rx-width-7 {
  901.  0% {
  902.   width: 0%;
  903. }
  904.  
  905. 100% {
  906.   width: 7%;
  907. }
  908. }
  909.  
  910. @-webkit-keyframes Rx-width-8 {
  911.  0% {
  912.   width: 0%;
  913. }
  914.  
  915. 100% {
  916.   width: 8%;
  917. }
  918. }
  919.  
  920. @-webkit-keyframes Rx-width-9 {
  921.  0% {
  922.   width: 0%;
  923. }
  924.  
  925. 100% {
  926.   width: 9%;
  927. }
  928. }
  929.  
  930. @-webkit-keyframes Rx-width-10 {
  931.  0% {
  932.   width: 0%;
  933. }
  934.  
  935. 100% {
  936.   width: 10%;
  937. }
  938. }
  939.  
  940. @-webkit-keyframes Rx-width-11 {
  941.  0% {
  942.   width: 0%;
  943. }
  944.  
  945. 100% {
  946.   width: 11%;
  947. }
  948. }
  949.  
  950. @-webkit-keyframes Rx-width-12 {
  951.  0% {
  952.   width: 0%;
  953. }
  954.  
  955. 100% {
  956.   width: 12%;
  957. }
  958. }
  959.  
  960. @-webkit-keyframes Rx-width-13 {
  961.  0% {
  962.   width: 0%;
  963. }
  964.  
  965. 100% {
  966.   width: 13%;
  967. }
  968. }
  969.  
  970. @-webkit-keyframes Rx-width-14 {
  971.  0% {
  972.   width: 0%;
  973. }
  974.  
  975. 100% {
  976.   width: 14%;
  977. }
  978. }
  979.  
  980. @-webkit-keyframes Rx-width-15 {
  981.  0% {
  982.   width: 0%;
  983. }
  984.  
  985. 100% {
  986.   width: 15%;
  987. }
  988. }
  989.  
  990. @-webkit-keyframes Rx-width-16 {
  991.  0% {
  992.   width: 0%;
  993. }
  994.  
  995. 100% {
  996.   width: 16%;
  997. }
  998. }
  999.  
  1000. @-webkit-keyframes Rx-width-18 {
  1001.  0% {
  1002.   width: 0%;
  1003. }
  1004.  
  1005. 100% {
  1006.   width: 17%;
  1007. }
  1008. }
  1009.  
  1010. @-webkit-keyframes Rx-width-18 {
  1011.  0% {
  1012.   width: 0%;
  1013. }
  1014.  
  1015. 100% {
  1016.   width: 18%;
  1017. }
  1018. }
  1019.  
  1020. @-webkit-keyframes Rx-width-19 {
  1021.  0% {
  1022.   width: 0%;
  1023. }
  1024.  
  1025. 100% {
  1026.   width: 19%;
  1027. }
  1028. }
  1029.  
  1030. @-webkit-keyframes Rx-width-20 {
  1031.  0% {
  1032.   width: 0%;
  1033. }
  1034.  
  1035. 100% {
  1036.   width: 20%;
  1037. }
  1038. }
  1039.  
  1040. @-webkit-keyframes Rx-width-21 {
  1041.  0% {
  1042.   width: 0%;
  1043. }
  1044.  
  1045. 100% {
  1046.   width: 21%;
  1047. }
  1048. }
  1049.  
  1050. @-webkit-keyframes Rx-width-22 {
  1051.  0% {
  1052.   width: 0%;
  1053. }
  1054.  
  1055. 100% {
  1056.   width: 22%;
  1057. }
  1058. }
  1059.  
  1060. @-webkit-keyframes Rx-width-23 {
  1061.  0% {
  1062.   width: 0%;
  1063. }
  1064.  
  1065. 100% {
  1066.   width: 23%;
  1067. }
  1068. }
  1069.  
  1070. @-webkit-keyframes Rx-width-24 {
  1071.  0% {
  1072.   width: 0%;
  1073. }
  1074.  
  1075. 100% {
  1076.   width: 24%;
  1077. }
  1078. }
  1079.  
  1080. @-webkit-keyframes Rx-width-25 {
  1081.  0% {
  1082.   width: 0%;
  1083. }
  1084.  
  1085. 100% {
  1086.   width: 25%;
  1087. }
  1088. }
  1089.  
  1090. @-webkit-keyframes Rx-width-26 {
  1091.  0% {
  1092.   width: 0%;
  1093. }
  1094.  
  1095. 100% {
  1096.   width: 26%;
  1097. }
  1098. }
  1099.  
  1100. @-webkit-keyframes Rx-width-27 {
  1101.  0% {
  1102.   width: 0%;
  1103. }
  1104.  
  1105. 100% {
  1106.   width: 27%;
  1107. }
  1108. }
  1109.  
  1110. @-webkit-keyframes Rx-width-28 {
  1111.  0% {
  1112.   width: 0%;
  1113. }
  1114.  
  1115. 100% {
  1116.   width: 28%;
  1117. }
  1118. }
  1119.  
  1120. @-webkit-keyframes Rx-width-29 {
  1121.  0% {
  1122.   width: 0%;
  1123. }
  1124.  
  1125. 100% {
  1126.   width: 29%;
  1127. }
  1128. }
  1129.  
  1130. @-webkit-keyframes Rx-width-30 {
  1131.  0% {
  1132.   width: 0%;
  1133. }
  1134.  
  1135. 100% {
  1136.   width: 30%;
  1137. }
  1138. }
  1139.  
  1140. @-webkit-keyframes Rx-width-31 {
  1141.  0% {
  1142.   width: 0%;
  1143. }
  1144.  
  1145. 100% {
  1146.   width: 31%;
  1147. }
  1148. }
  1149.  
  1150. @-webkit-keyframes Rx-width-32 {
  1151.  0% {
  1152.   width: 0%;
  1153. }
  1154.  
  1155. 100% {
  1156.   width: 32%;
  1157. }
  1158. }
  1159.  
  1160. @-webkit-keyframes Rx-width-33 {
  1161.  0% {
  1162.   width: 0%;
  1163. }
  1164.  
  1165. 100% {
  1166.   width: 33%;
  1167. }
  1168. }
  1169.  
  1170. @-webkit-keyframes Rx-width-34 {
  1171.  0% {
  1172.   width: 0%;
  1173. }
  1174.  
  1175. 100% {
  1176.   width: 34%;
  1177. }
  1178. }
  1179.  
  1180. @-webkit-keyframes Rx-width-35 {
  1181.  0% {
  1182.   width: 0%;
  1183. }
  1184.  
  1185. 100% {
  1186.   width: 35%;
  1187. }
  1188. }
  1189.  
  1190. @-webkit-keyframes Rx-width-36 {
  1191.  0% {
  1192.   width: 0%;
  1193. }
  1194.  
  1195. 100% {
  1196.   width: 36%;
  1197. }
  1198. }
  1199.  
  1200. @-webkit-keyframes Rx-width-37 {
  1201.  0% {
  1202.   width: 0%;
  1203. }
  1204.  
  1205. 100% {
  1206.   width: 37%;
  1207. }
  1208. }
  1209.  
  1210. @-webkit-keyframes Rx-width-38 {
  1211.  0% {
  1212.   width: 0%;
  1213. }
  1214.  
  1215. 100% {
  1216.   width: 38%;
  1217. }
  1218. }
  1219.  
  1220. @-webkit-keyframes Rx-width-39 {
  1221.  0% {
  1222.   width: 0%;
  1223. }
  1224.  
  1225. 100% {
  1226.   width: 39%;
  1227. }
  1228. }
  1229.  
  1230. @-webkit-keyframes Rx-width-40 {
  1231.  0% {
  1232.   width: 0%;
  1233. }
  1234.  
  1235. 100% {
  1236.   width: 40%;
  1237. }
  1238. }
  1239.  
  1240. @-webkit-keyframes Rx-width-41 {
  1241.  0% {
  1242.   width: 0%;
  1243. }
  1244.  
  1245. 100% {
  1246.   width: 41%;
  1247. }
  1248. }
  1249.  
  1250. @-webkit-keyframes Rx-width-42 {
  1251.  0% {
  1252.   width: 0%;
  1253. }
  1254.  
  1255. 100% {
  1256.   width: 42%;
  1257. }
  1258. }
  1259.  
  1260. @-webkit-keyframes Rx-width-43 {
  1261.  0% {
  1262.   width: 0%;
  1263. }
  1264.  
  1265. 100% {
  1266.   width: 43%;
  1267. }
  1268. }
  1269.  
  1270. @-webkit-keyframes Rx-width-44 {
  1271.  0% {
  1272.   width: 0%;
  1273. }
  1274.  
  1275. 100% {
  1276.   width: 44%;
  1277. }
  1278. }
  1279.  
  1280. @-webkit-keyframes Rx-width-45 {
  1281.  0% {
  1282.   width: 0%;
  1283. }
  1284.  
  1285. 100% {
  1286.   width: 45%;
  1287. }
  1288. }
  1289.  
  1290. @-webkit-keyframes Rx-width-46 {
  1291.  0% {
  1292.   width: 0%;
  1293. }
  1294.  
  1295. 100% {
  1296.   width: 46%;
  1297. }
  1298. }
  1299.  
  1300. @-webkit-keyframes Rx-width-47 {
  1301.  0% {
  1302.   width: 0%;
  1303. }
  1304.  
  1305. 100% {
  1306.   width: 47%;
  1307. }
  1308. }
  1309.  
  1310. @-webkit-keyframes Rx-width-48 {
  1311.  0% {
  1312.   width: 0%;
  1313. }
  1314.  
  1315. 100% {
  1316.   width: 48%;
  1317. }
  1318. }
  1319.  
  1320. @-webkit-keyframes Rx-width-49 {
  1321.  0% {
  1322.   width: 0%;
  1323. }
  1324.  
  1325. 100% {
  1326.   width: 49%;
  1327. }
  1328. }
  1329.  
  1330. @-webkit-keyframes Rx-width-50 {
  1331.  0% {
  1332.   width: 0%;
  1333. }
  1334.  
  1335. 100% {
  1336.   width: 50%;
  1337. }
  1338. }
  1339.  
  1340. @-webkit-keyframes Rx-width-51 {
  1341.  0% {
  1342.   width: 0%;
  1343. }
  1344.  
  1345. 100% {
  1346.   width: 51%;
  1347. }
  1348. }
  1349.  
  1350. @-webkit-keyframes Rx-width-52 {
  1351.  0% {
  1352.   width: 0%;
  1353. }
  1354.  
  1355. 100% {
  1356.   width: 52%;
  1357. }
  1358. }
  1359.  
  1360. @-webkit-keyframes Rx-width-53 {
  1361.  0% {
  1362.   width: 0%;
  1363. }
  1364.  
  1365. 100% {
  1366.   width: 53%;
  1367. }
  1368. }
  1369.  
  1370. @-webkit-keyframes Rx-width-54 {
  1371.  0% {
  1372.   width: 0%;
  1373. }
  1374.  
  1375. 100% {
  1376.   width: 54%;
  1377. }
  1378. }
  1379.  
  1380. @-webkit-keyframes Rx-width-55 {
  1381.  0% {
  1382.   width: 0%;
  1383. }
  1384.  
  1385. 100% {
  1386.   width: 55%;
  1387. }
  1388. }
  1389.  
  1390. @-webkit-keyframes Rx-width-56 {
  1391.  0% {
  1392.   width: 0%;
  1393. }
  1394.  
  1395. 100% {
  1396.   width: 56%;
  1397. }
  1398. }
  1399.  
  1400. @-webkit-keyframes Rx-width-57 {
  1401.  0% {
  1402.   width: 0%;
  1403. }
  1404.  
  1405. 100% {
  1406.   width: 57%;
  1407. }
  1408. }
  1409.  
  1410. @-webkit-keyframes Rx-width-58 {
  1411.  0% {
  1412.   width: 0%;
  1413. }
  1414.  
  1415. 100% {
  1416.   width: 58%;
  1417. }
  1418. }
  1419.  
  1420. @-webkit-keyframes Rx-width-59 {
  1421.  0% {
  1422.   width: 0%;
  1423. }
  1424.  
  1425. 100% {
  1426.   width: 59%;
  1427. }
  1428. }
  1429.  
  1430. @-webkit-keyframes Rx-width-60 {
  1431.  0% {
  1432.   width: 0%;
  1433. }
  1434.  
  1435. 100% {
  1436.   width: 60%;
  1437. }
  1438. }
  1439.  
  1440. @-webkit-keyframes Rx-width-61 {
  1441.  0% {
  1442.   width: 0%;
  1443. }
  1444.  
  1445. 100% {
  1446.   width: 61%;
  1447. }
  1448. }
  1449.  
  1450. @-webkit-keyframes Rx-width-62 {
  1451.  0% {
  1452.   width: 0%;
  1453. }
  1454.  
  1455. 100% {
  1456.   width: 62%;
  1457. }
  1458. }
  1459.  
  1460. @-webkit-keyframes Rx-width-63 {
  1461.  0% {
  1462.   width: 0%;
  1463. }
  1464.  
  1465. 100% {
  1466.   width: 63%;
  1467. }
  1468. }
  1469.  
  1470. @-webkit-keyframes Rx-width-64 {
  1471.  0% {
  1472.   width: 0%;
  1473. }
  1474.  
  1475. 100% {
  1476.   width: 64%;
  1477. }
  1478. }
  1479.  
  1480. @-webkit-keyframes Rx-width-65 {
  1481.  0% {
  1482.   width: 0%;
  1483. }
  1484.  
  1485. 100% {
  1486.   width: 65%;
  1487. }
  1488. }
  1489.  
  1490. @-webkit-keyframes Rx-width-66 {
  1491.  0% {
  1492.   width: 0%;
  1493. }
  1494.  
  1495. 100% {
  1496.   width: 66%;
  1497. }
  1498. }
  1499.  
  1500. @-webkit-keyframes Rx-width-67 {
  1501.  0% {
  1502.   width: 0%;
  1503. }
  1504.  
  1505. 100% {
  1506.   width: 67%;
  1507. }
  1508. }
  1509.  
  1510. @-webkit-keyframes Rx-width-68 {
  1511.  0% {
  1512.   width: 0%;
  1513. }
  1514.  
  1515. 100% {
  1516.   width: 68%;
  1517. }
  1518. }
  1519.  
  1520. @-webkit-keyframes Rx-width-69 {
  1521.  0% {
  1522.   width: 0%;
  1523. }
  1524.  
  1525. 100% {
  1526.   width: 69%;
  1527. }
  1528. }
  1529.  
  1530. @-webkit-keyframes Rx-width-70 {
  1531.  0% {
  1532.   width: 0%;
  1533. }
  1534.  
  1535. 100% {
  1536.   width: 70%;
  1537. }
  1538. }
  1539.  
  1540. @-webkit-keyframes Rx-width-71 {
  1541.  0% {
  1542.   width: 0%;
  1543. }
  1544.  
  1545. 100% {
  1546.   width: 71%;
  1547. }
  1548. }
  1549.  
  1550. @-webkit-keyframes Rx-width-72 {
  1551.  0% {
  1552.   width: 0%;
  1553. }
  1554.  
  1555. 100% {
  1556.   width: 72%;
  1557. }
  1558. }
  1559.  
  1560. @-webkit-keyframes Rx-width-73 {
  1561.  0% {
  1562.   width: 0%;
  1563. }
  1564.  
  1565. 100% {
  1566.   width: 73%;
  1567. }
  1568. }
  1569.  
  1570. @-webkit-keyframes Rx-width-74 {
  1571.  0% {
  1572.   width: 0%;
  1573. }
  1574.  
  1575. 100% {
  1576.   width: 74%;
  1577. }
  1578. }
  1579.  
  1580. @-webkit-keyframes Rx-width-75 {
  1581.  0% {
  1582.   width: 0%;
  1583. }
  1584.  
  1585. 100% {
  1586.   width: 75%;
  1587. }
  1588. }
  1589.  
  1590. @-webkit-keyframes Rx-width-76 {
  1591.  0% {
  1592.   width: 0%;
  1593. }
  1594.  
  1595. 100% {
  1596.   width: 76%;
  1597. }
  1598. }
  1599.  
  1600. @-webkit-keyframes Rx-width-78 {
  1601.  0% {
  1602.   width: 0%;
  1603. }
  1604.  
  1605. 100% {
  1606.   width: 78%;
  1607. }
  1608. }
  1609.  
  1610. @-webkit-keyframes Rx-width-79 {
  1611.  0% {
  1612.   width: 0%;
  1613. }
  1614.  
  1615. 100% {
  1616.   width: 79%;
  1617. }
  1618. }
  1619.  
  1620. @-webkit-keyframes Rx-width-80 {
  1621.  0% {
  1622.   width: 0%;
  1623. }
  1624.  
  1625. 100% {
  1626.   width: 80%;
  1627. }
  1628. }
  1629.  
  1630. @-webkit-keyframes Rx-width-81 {
  1631.  0% {
  1632.   width: 0%;
  1633. }
  1634.  
  1635. 100% {
  1636.   width: 81%;
  1637. }
  1638. }
  1639.  
  1640. @-webkit-keyframes Rx-width-82 {
  1641.  0% {
  1642.   width: 0%;
  1643. }
  1644.  
  1645. 100% {
  1646.   width: 82%;
  1647. }
  1648. }
  1649.  
  1650. @-webkit-keyframes Rx-width-83 {
  1651.  0% {
  1652.   width: 0%;
  1653. }
  1654.  
  1655. 100% {
  1656.   width: 83%;
  1657. }
  1658. }
  1659.  
  1660. @-webkit-keyframes Rx-width-84 {
  1661.  0% {
  1662.   width: 0%;
  1663. }
  1664.  
  1665. 100% {
  1666.   width: 84%;
  1667. }
  1668. }
  1669.  
  1670. @-webkit-keyframes Rx-width-85 {
  1671.  0% {
  1672.   width: 0%;
  1673. }
  1674.  
  1675. 100% {
  1676.   width: 85%;
  1677. }
  1678. }
  1679.  
  1680. @-webkit-keyframes Rx-width-86 {
  1681.  0% {
  1682.   width: 0%;
  1683. }
  1684.  
  1685. 100% {
  1686.   width: 86%;
  1687. }
  1688. }
  1689.  
  1690. @-webkit-keyframes Rx-width-87 {
  1691.  0% {
  1692.   width: 0%;
  1693. }
  1694.  
  1695. 100% {
  1696.   width: 87%;
  1697. }
  1698. }
  1699.  
  1700. @-webkit-keyframes Rx-width-88 {
  1701.  0% {
  1702.   width: 0%;
  1703. }
  1704.  
  1705. 100% {
  1706.   width: 88%;
  1707. }
  1708. }
  1709.  
  1710. @-webkit-keyframes Rx-width-89 {
  1711.  0% {
  1712.   width: 0%;
  1713. }
  1714.  
  1715. 100% {
  1716.   width: 89%;
  1717. }
  1718. }
  1719.  
  1720. @-webkit-keyframes Rx-width-90 {
  1721.  0% {
  1722.   width: 0%;
  1723. }
  1724.  
  1725. 100% {
  1726.   width: 90%;
  1727. }
  1728. }
  1729.  
  1730. @-webkit-keyframes Rx-width-91 {
  1731.  0% {
  1732.   width: 0%;
  1733. }
  1734.  
  1735. 100% {
  1736.   width: 91%;
  1737. }
  1738. }
  1739.  
  1740. @-webkit-keyframes Rx-width-92 {
  1741.  0% {
  1742.   width: 0%;
  1743. }
  1744.  
  1745. 100% {
  1746.   width: 92%;
  1747. }
  1748. }
  1749.  
  1750. @-webkit-keyframes Rx-width-93 {
  1751.  0% {
  1752.   width: 0%;
  1753. }
  1754.  
  1755. 100% {
  1756.   width: 93%;
  1757. }
  1758. }
  1759.  
  1760. @-webkit-keyframes Rx-width-94 {
  1761.  0% {
  1762.   width: 0%;
  1763. }
  1764.  
  1765. 100% {
  1766.   width: 94%;
  1767. }
  1768. }
  1769.  
  1770. @-webkit-keyframes Rx-width-95 {
  1771.  0% {
  1772.   width: 0%;
  1773. }
  1774.  
  1775. 100% {
  1776.   width: 95%;
  1777. }
  1778. }
  1779.  
  1780. @-webkit-keyframes Rx-width-96 {
  1781.  0% {
  1782.   width: 0%;
  1783. }
  1784.  
  1785. 100% {
  1786.   width: 96%;
  1787. }
  1788. }
  1789.  
  1790. @-webkit-keyframes Rx-width-97 {
  1791.  0% {
  1792.   width: 0%;
  1793. }
  1794.  
  1795. 100% {
  1796.   width: 97%;
  1797. }
  1798. }
  1799.  
  1800. @-webkit-keyframes Rx-width-98 {
  1801.  0% {
  1802.   width: 0%;
  1803. }
  1804.  
  1805. 100% {
  1806.   width: 98%;
  1807. }
  1808. }
  1809.  
  1810. @-webkit-keyframes Rx-width-99 {
  1811.  0% {
  1812.   width: 0%;
  1813. }
  1814.  
  1815. 100% {
  1816.   width: 99%;
  1817. }
  1818. }
  1819.  
  1820. @-webkit-keyframes Rx-width-100 {
  1821.  0% {
  1822.   width: 0%;
  1823. }
  1824.  
  1825. 100% {
  1826.   width: 100%;
  1827. }
  1828. }
  1829.  
  1830.  
  1831.  
  1832. .Rx-width-0 {
  1833.   -webkit-animation-name: Rx-width-0;
  1834.   -o-animation-name: Rx-width-0;
  1835.   animation-name: Rx-width-0;
  1836.   animation-fill-mode: forwards;
  1837. }
  1838.  
  1839.  
  1840. .Rx-width-1 {
  1841.   -webkit-animation-name: Rx-width-1;
  1842.   -o-animation-name: Rx-width-1;
  1843.   animation-name: Rx-width-1;
  1844.   animation-fill-mode: forwards;
  1845. }
  1846.  
  1847. .Rx-width-2 {
  1848.   -webkit-animation-name: Rx-width-2;
  1849.   -o-animation-name: Rx-width-2;
  1850.   animation-name: Rx-width-2;
  1851.   animation-fill-mode: forwards;
  1852. }
  1853.  
  1854. .Rx-width-3 {
  1855.   -webkit-animation-name: Rx-width-3;
  1856.   -o-animation-name: Rx-width-3;
  1857.   animation-name: Rx-width-3;
  1858.   animation-fill-mode: forwards;
  1859. }
  1860.  
  1861. .Rx-width-4 {
  1862.   -webkit-animation-name: Rx-width-4;
  1863.   -o-animation-name: Rx-width-4;
  1864.   animation-name: Rx-width-4;
  1865.   animation-fill-mode: forwards;
  1866. }
  1867.  
  1868. .Rx-width-5 {
  1869.   -webkit-animation-name: Rx-width-5;
  1870.   -o-animation-name: Rx-width-5;
  1871.   animation-name: Rx-width-5;
  1872.   animation-fill-mode: forwards;
  1873. }
  1874.  
  1875. .Rx-width-5 {
  1876.   -webkit-animation-name: Rx-width-5;
  1877.   -o-animation-name: Rx-width-5;
  1878.   animation-name: Rx-width-5;
  1879.   animation-fill-mode: forwards;
  1880. }
  1881.  
  1882. .Rx-width-6 {
  1883.   -webkit-animation-name: Rx-width-6;
  1884.   -o-animation-name: Rx-width-6;
  1885.   animation-name: Rx-width-6;
  1886.   animation-fill-mode: forwards;
  1887. }
  1888. .Rx-width-7 {
  1889.   -webkit-animation-name: Rx-width-7;
  1890.   -o-animation-name: Rx-width-7;
  1891.   animation-name: Rx-width-7;
  1892.   animation-fill-mode: forwards;
  1893. }
  1894.  
  1895. .Rx-width-8 {
  1896.   -webkit-animation-name: Rx-width-8;
  1897.   -o-animation-name: Rx-width-8;
  1898.   animation-name: Rx-width-8;
  1899.   animation-fill-mode: forwards;
  1900. }
  1901.  
  1902. .Rx-width-9 {
  1903.   -webkit-animation-name: Rx-width-9;
  1904.   -o-animation-name: Rx-width-9;
  1905.   animation-name: Rx-width-9;
  1906.   animation-fill-mode: forwards;
  1907. }
  1908.  
  1909. .Rx-width-10 {
  1910.   -webkit-animation-name: Rx-width-10;
  1911.   -o-animation-name: Rx-width-10;
  1912.   animation-name: Rx-width-10;
  1913.   animation-fill-mode: forwards;
  1914. }
  1915.  
  1916. .Rx-width-11 {
  1917.   -webkit-animation-name: Rx-width-11;
  1918.   -o-animation-name: Rx-width-11;
  1919.   animation-name: Rx-width-11;
  1920.   animation-fill-mode: forwards;
  1921. }
  1922.  
  1923. .Rx-width-12 {
  1924.   -webkit-animation-name: Rx-width-12;
  1925.   -o-animation-name: Rx-width-12;
  1926.   animation-name: Rx-width-12;
  1927.   animation-fill-mode: forwards;
  1928. }
  1929.  
  1930. .Rx-width-13 {
  1931.   -webkit-animation-name: Rx-width-13;
  1932.   -o-animation-name: Rx-width-13;
  1933.   animation-name: Rx-width-13;
  1934.   animation-fill-mode: forwards;
  1935. }
  1936.  
  1937. .Rx-width-14 {
  1938.   -webkit-animation-name: Rx-width-14;
  1939.   -o-animation-name: Rx-width-14;
  1940.   animation-name: Rx-width-14;
  1941.   animation-fill-mode: forwards;
  1942. }
  1943.  
  1944. .Rx-width-15 {
  1945.   -webkit-animation-name: Rx-width-15;
  1946.   -o-animation-name: Rx-width-15;
  1947.   animation-name: Rx-width-15;
  1948.   animation-fill-mode: forwards;
  1949. }
  1950.  
  1951. .Rx-width-16 {
  1952.   -webkit-animation-name: Rx-width-16;
  1953.   -o-animation-name: Rx-width-16;
  1954.   animation-name: Rx-width-16;
  1955.   animation-fill-mode: forwards;
  1956. }
  1957.  
  1958. .Rx-width-17 {
  1959.   -webkit-animation-name: Rx-width-17;
  1960.   -o-animation-name: Rx-width-17;
  1961.   animation-name: Rx-width-17;
  1962.   animation-fill-mode: forwards;
  1963. }
  1964.  
  1965. .Rx-width-18 {
  1966.   -webkit-animation-name: Rx-width-18;
  1967.   -o-animation-name: Rx-width-18;
  1968.   animation-name: Rx-width-18;
  1969.   animation-fill-mode: forwards;
  1970. }
  1971.  
  1972. .Rx-width-19 {
  1973.   -webkit-animation-name: Rx-width-19;
  1974.   -o-animation-name: Rx-width-19;
  1975.   animation-name: Rx-width-19;
  1976.   animation-fill-mode: forwards;
  1977. }
  1978.  
  1979. .Rx-width-20 {
  1980.   -webkit-animation-name: Rx-width-20;
  1981.   -o-animation-name: Rx-width-20;
  1982.   animation-name: Rx-width-20;
  1983.   animation-fill-mode: forwards;
  1984. }
  1985.  
  1986. .Rx-width-21 {
  1987.   -webkit-animation-name: Rx-width-21;
  1988.   -o-animation-name: Rx-width-21;
  1989.   animation-name: Rx-width-21;
  1990.   animation-fill-mode: forwards;
  1991. }
  1992.  
  1993. .Rx-width-22 {
  1994.   -webkit-animation-name: Rx-width-22;
  1995.   -o-animation-name: Rx-width-22;
  1996.   animation-name: Rx-width-22;
  1997.   animation-fill-mode: forwards;
  1998. }
  1999.  
  2000. .Rx-width-23 {
  2001.   -webkit-animation-name: Rx-width-23;
  2002.   -o-animation-name: Rx-width-23;
  2003.   animation-name: Rx-width-23;
  2004.   animation-fill-mode: forwards;
  2005. }
  2006.  
  2007. .Rx-width-24 {
  2008.   -webkit-animation-name: Rx-width-24;
  2009.   -o-animation-name: Rx-width-24;
  2010.   animation-name: Rx-width-24;
  2011.   animation-fill-mode: forwards;
  2012. }
  2013.  
  2014. .Rx-width-25 {
  2015.   -webkit-animation-name: Rx-width-25;
  2016.   -o-animation-name: Rx-width-25;
  2017.   animation-name: Rx-width-25;
  2018.   animation-fill-mode: forwards;
  2019. }
  2020.  
  2021. .Rx-width-26 {
  2022.   -webkit-animation-name: Rx-width-26;
  2023.   -o-animation-name: Rx-width-26;
  2024.   animation-name: Rx-width-26;
  2025.   animation-fill-mode: forwards;
  2026. }
  2027.  
  2028. .Rx-width-27 {
  2029.   -webkit-animation-name: Rx-width-27;
  2030.   -o-animation-name: Rx-width-27;
  2031.   animation-name: Rx-width-27;
  2032.   animation-fill-mode: forwards;
  2033. }
  2034.  
  2035.  
  2036. .Rx-width-28 {
  2037.   -webkit-animation-name: Rx-width-28;
  2038.   -o-animation-name: Rx-width-28;
  2039.   animation-name: Rx-width-28;
  2040.   animation-fill-mode: forwards;
  2041. }
  2042.  
  2043. .Rx-width-29 {
  2044.   -webkit-animation-name: Rx-width-29;
  2045.   -o-animation-name: Rx-width-29;
  2046.   animation-name: Rx-width-29;
  2047.   animation-fill-mode: forwards;
  2048. }
  2049.  
  2050. .Rx-width-30 {
  2051.   -webkit-animation-name: Rx-width-30;
  2052.   -o-animation-name: Rx-width-30;
  2053.   animation-name: Rx-width-30;
  2054.   animation-fill-mode: forwards;
  2055. }
  2056.  
  2057. .Rx-width-31 {
  2058.   -webkit-animation-name: Rx-width-31;
  2059.   -o-animation-name: Rx-width-31;
  2060.   animation-name: Rx-width-31;
  2061.   animation-fill-mode: forwards;
  2062. }
  2063.  
  2064. .Rx-width-32 {
  2065.   -webkit-animation-name: Rx-width-32;
  2066.   -o-animation-name: Rx-width-32;
  2067.   animation-name: Rx-width-32;
  2068.   animation-fill-mode: forwards;
  2069. }
  2070.  
  2071. .Rx-width-33 {
  2072.   -webkit-animation-name: Rx-width-33;
  2073.   -o-animation-name: Rx-width-33;
  2074.   animation-name: Rx-width-33;
  2075.   animation-fill-mode: forwards;
  2076. }
  2077.  
  2078. .Rx-width-34 {
  2079.   -webkit-animation-name: Rx-width-34;
  2080.   -o-animation-name: Rx-width-34;
  2081.   animation-name: Rx-width-34;
  2082.   animation-fill-mode: forwards;
  2083. }
  2084.  
  2085. .Rx-width-35 {
  2086.   -webkit-animation-name: Rx-width-35;
  2087.   -o-animation-name: Rx-width-35;
  2088.   animation-name: Rx-width-35;
  2089.   animation-fill-mode: forwards;
  2090. }
  2091.  
  2092. .Rx-width-36 {
  2093.   -webkit-animation-name: Rx-width-36;
  2094.   -o-animation-name: Rx-width-36;
  2095.   animation-name: Rx-width-36;
  2096.   animation-fill-mode: forwards;
  2097. }
  2098.  
  2099. .Rx-width-37 {
  2100.   -webkit-animation-name: Rx-width-37;
  2101.   -o-animation-name: Rx-width-37;
  2102.   animation-name: Rx-width-37;
  2103.   animation-fill-mode: forwards;
  2104. }
  2105.  
  2106. .Rx-width-38 {
  2107.   -webkit-animation-name: Rx-width-38;
  2108.   -o-animation-name: Rx-width-38;
  2109.   animation-name: Rx-width-38;
  2110.   animation-fill-mode: forwards;
  2111. }
  2112.  
  2113. .Rx-width-39 {
  2114.   -webkit-animation-name: Rx-width-39;
  2115.   -o-animation-name: Rx-width-39;
  2116.   animation-name: Rx-width-39;
  2117.   animation-fill-mode: forwards;
  2118. }
  2119.  
  2120. .Rx-width-40 {
  2121.   -webkit-animation-name: Rx-width-40;
  2122.   -o-animation-name: Rx-width-40;
  2123.   animation-name: Rx-width-40;
  2124.   animation-fill-mode: forwards;
  2125. }
  2126.  
  2127. .Rx-width-41 {
  2128.   -webkit-animation-name: Rx-width-41;
  2129.   -o-animation-name: Rx-width-41;
  2130.   animation-name: Rx-width-41;
  2131.   animation-fill-mode: forwards;
  2132. }
  2133.  
  2134. .Rx-width-42 {
  2135.   -webkit-animation-name: Rx-width-42;
  2136.   -o-animation-name: Rx-width-42;
  2137.   animation-name: Rx-width-42;
  2138.   animation-fill-mode: forwards;
  2139. }
  2140.  
  2141. .Rx-width-43 {
  2142.   -webkit-animation-name: Rx-width-43;
  2143.   -o-animation-name: Rx-width-43;
  2144.   animation-name: Rx-width-43;
  2145.   animation-fill-mode: forwards;
  2146. }
  2147.  
  2148. .Rx-width-44 {
  2149.   -webkit-animation-name: Rx-width-44;
  2150.   -o-animation-name: Rx-width-44;
  2151.   animation-name: Rx-width-44;
  2152.   animation-fill-mode: forwards;
  2153. }
  2154.  
  2155. .Rx-width-45 {
  2156.   -webkit-animation-name: Rx-width-45;
  2157.   -o-animation-name: Rx-width-45;
  2158.   animation-name: Rx-width-45;
  2159.   animation-fill-mode: forwards;
  2160. }
  2161.  
  2162. .Rx-width-46 {
  2163.   -webkit-animation-name: Rx-width-46;
  2164.   -o-animation-name: Rx-width-46;
  2165.   animation-name: Rx-width-46;
  2166.   animation-fill-mode: forwards;
  2167. }
  2168.  
  2169. .Rx-width-47 {
  2170.   -webkit-animation-name: Rx-width-47;
  2171.   -o-animation-name: Rx-width-47;
  2172.   animation-name: Rx-width-47;
  2173.   animation-fill-mode: forwards;
  2174. }
  2175.  
  2176. .Rx-width-48 {
  2177.   -webkit-animation-name: Rx-width-48;
  2178.   -o-animation-name: Rx-width-48;
  2179.   animation-name: Rx-width-48;
  2180.   animation-fill-mode: forwards;
  2181. }
  2182.  
  2183. .Rx-width-49 {
  2184.   -webkit-animation-name: Rx-width-49;
  2185.   -o-animation-name: Rx-width-49;
  2186.   animation-name: Rx-width-49;
  2187.   animation-fill-mode: forwards;
  2188. }
  2189.  
  2190. .Rx-width-50 {
  2191.   -webkit-animation-name: Rx-width-50;
  2192.   -o-animation-name: Rx-width-50;
  2193.   animation-name: Rx-width-50;
  2194.   animation-fill-mode: forwards;
  2195. }
  2196.  
  2197. .Rx-width-51 {
  2198.   -webkit-animation-name: Rx-width-51;
  2199.   -o-animation-name: Rx-width-51;
  2200.   animation-name: Rx-width-51;
  2201.   animation-fill-mode: forwards;
  2202. }
  2203.  
  2204. .Rx-width-52 {
  2205.   -webkit-animation-name: Rx-width-52;
  2206.   -o-animation-name: Rx-width-52;
  2207.   animation-name: Rx-width-52;
  2208.   animation-fill-mode: forwards;
  2209. }
  2210.  
  2211. .Rx-width-53 {
  2212.   -webkit-animation-name: Rx-width-53;
  2213.   -o-animation-name: Rx-width-53;
  2214.   animation-name: Rx-width-53;
  2215.   animation-fill-mode: forwards;
  2216. }
  2217.  
  2218. .Rx-width-54 {
  2219.   -webkit-animation-name: Rx-width-54;
  2220.   -o-animation-name: Rx-width-54;
  2221.   animation-name: Rx-width-54;
  2222.   animation-fill-mode: forwards;
  2223. }
  2224.  
  2225. .Rx-width-55 {
  2226.   -webkit-animation-name: Rx-width-55;
  2227.   -o-animation-name: Rx-width-55;
  2228.   animation-name: Rx-width-55;
  2229.   animation-fill-mode: forwards;
  2230. }
  2231.  
  2232. .Rx-width-56 {
  2233.   -webkit-animation-name: Rx-width-56;
  2234.   -o-animation-name: Rx-width-56;
  2235.   animation-name: Rx-width-56;
  2236.   animation-fill-mode: forwards;
  2237. }
  2238.  
  2239. .Rx-width-57 {
  2240.   -webkit-animation-name: Rx-width-57;
  2241.   -o-animation-name: Rx-width-57;
  2242.   animation-name: Rx-width-57;
  2243.   animation-fill-mode: forwards;
  2244. }
  2245.  
  2246. .Rx-width-58 {
  2247.   -webkit-animation-name: Rx-width-58;
  2248.   -o-animation-name: Rx-width-58;
  2249.   animation-name: Rx-width-58;
  2250.   animation-fill-mode: forwards;
  2251. }
  2252.  
  2253. .Rx-width-59 {
  2254.   -webkit-animation-name: Rx-width-59;
  2255.   -o-animation-name: Rx-width-59;
  2256.   animation-name: Rx-width-59;
  2257.   animation-fill-mode: forwards;
  2258. }
  2259.  
  2260. .Rx-width-60 {
  2261.   -webkit-animation-name: Rx-width-60;
  2262.   -o-animation-name: Rx-width-60;
  2263.   animation-name: Rx-width-60;
  2264.   animation-fill-mode: forwards;
  2265. }
  2266.  
  2267. .Rx-width-61 {
  2268.   -webkit-animation-name: Rx-width-61;
  2269.   -o-animation-name: Rx-width-61;
  2270.   animation-name: Rx-width-61;
  2271.   animation-fill-mode: forwards;
  2272. }
  2273.  
  2274. .Rx-width-62 {
  2275.   -webkit-animation-name: Rx-width-62;
  2276.   -o-animation-name: Rx-width-62;
  2277.   animation-name: Rx-width-62;
  2278.   animation-fill-mode: forwards;
  2279. }
  2280.  
  2281. .Rx-width-63 {
  2282.   -webkit-animation-name: Rx-width-63;
  2283.   -o-animation-name: Rx-width-63;
  2284.   animation-name: Rx-width-63;
  2285.   animation-fill-mode: forwards;
  2286. }
  2287.  
  2288. .Rx-width-64 {
  2289.   -webkit-animation-name: Rx-width-64;
  2290.   -o-animation-name: Rx-width-64;
  2291.   animation-name: Rx-width-64;
  2292.   animation-fill-mode: forwards;
  2293. }
  2294.  
  2295. .Rx-width-65 {
  2296.   -webkit-animation-name: Rx-width-65;
  2297.   -o-animation-name: Rx-width-65;
  2298.   animation-name: Rx-width-65;
  2299.   animation-fill-mode: forwards;
  2300. }
  2301.  
  2302. .Rx-width-66 {
  2303.   -webkit-animation-name: Rx-width-66;
  2304.   -o-animation-name: Rx-width-66;
  2305.   animation-name: Rx-width-66;
  2306.   animation-fill-mode: forwards;
  2307. }
  2308.  
  2309. .Rx-width-67 {
  2310.   -webkit-animation-name: Rx-width-67;
  2311.   -o-animation-name: Rx-width-67;
  2312.   animation-name: Rx-width-67;
  2313.   animation-fill-mode: forwards;
  2314. }
  2315.  
  2316. .Rx-width-68 {
  2317.   -webkit-animation-name: Rx-width-68;
  2318.   -o-animation-name: Rx-width-68;
  2319.   animation-name: Rx-width-68;
  2320.   animation-fill-mode: forwards;
  2321. }
  2322.  
  2323. .Rx-width-69 {
  2324.   -webkit-animation-name: Rx-width-69;
  2325.   -o-animation-name: Rx-width-69;
  2326.   animation-name: Rx-width-69;
  2327.   animation-fill-mode: forwards;
  2328. }
  2329.  
  2330. .Rx-width-70 {
  2331.   -webkit-animation-name: Rx-width-70;
  2332.   -o-animation-name: Rx-width-70;
  2333.   animation-name: Rx-width-70;
  2334.   animation-fill-mode: forwards;
  2335. }
  2336.  
  2337. .Rx-width-71 {
  2338.   -webkit-animation-name: Rx-width-71;
  2339.   -o-animation-name: Rx-width-71;
  2340.   animation-name: Rx-width-71;
  2341.   animation-fill-mode: forwards;
  2342. }
  2343.  
  2344. .Rx-width-72 {
  2345.   -webkit-animation-name: Rx-width-72;
  2346.   -o-animation-name: Rx-width-72;
  2347.   animation-name: Rx-width-72;
  2348.   animation-fill-mode: forwards;
  2349. }
  2350.  
  2351. .Rx-width-73 {
  2352.   -webkit-animation-name: Rx-width-73;
  2353.   -o-animation-name: Rx-width-73;
  2354.   animation-name: Rx-width-73;
  2355.   animation-fill-mode: forwards;
  2356. }
  2357.  
  2358. .Rx-width-74 {
  2359.   -webkit-animation-name: Rx-width-74;
  2360.   -o-animation-name: Rx-width-74;
  2361.   animation-name: Rx-width-74;
  2362.   animation-fill-mode: forwards;
  2363. }
  2364.  
  2365. .Rx-width-75 {
  2366.   -webkit-animation-name: Rx-width-75;
  2367.   -o-animation-name: Rx-width-75;
  2368.   animation-name: Rx-width-75;
  2369.   animation-fill-mode: forwards;
  2370. }
  2371.  
  2372. .Rx-width-76 {
  2373.   -webkit-animation-name: Rx-width-76;
  2374.   -o-animation-name: Rx-width-76;
  2375.   animation-name: Rx-width-76;
  2376.   animation-fill-mode: forwards;
  2377. }
  2378.  
  2379. .Rx-width-77 {
  2380.   -webkit-animation-name: Rx-width-77;
  2381.   -o-animation-name: Rx-width-77;
  2382.   animation-name: Rx-width-77;
  2383.   animation-fill-mode: forwards;
  2384. }
  2385.  
  2386. .Rx-width-78 {
  2387.   -webkit-animation-name: Rx-width-78;
  2388.   -o-animation-name: Rx-width-78;
  2389.   animation-name: Rx-width-78;
  2390.   animation-fill-mode: forwards;
  2391. }
  2392.  
  2393. .Rx-width-79 {
  2394.   -webkit-animation-name: Rx-width-79;
  2395.   -o-animation-name: Rx-width-79;
  2396.   animation-name: Rx-width-79;
  2397.   animation-fill-mode: forwards;
  2398. }
  2399.  
  2400. .Rx-width-80 {
  2401.   -webkit-animation-name: Rx-width-80;
  2402.   -o-animation-name: Rx-width-80;
  2403.   animation-name: Rx-width-80;
  2404.   animation-fill-mode: forwards;
  2405. }
  2406.  
  2407. .Rx-width-81 {
  2408.   -webkit-animation-name: Rx-width-81;
  2409.   -o-animation-name: Rx-width-81;
  2410.   animation-name: Rx-width-81;
  2411.   animation-fill-mode: forwards;
  2412. }
  2413.  
  2414. .Rx-width-82 {
  2415.   -webkit-animation-name: Rx-width-82;
  2416.   -o-animation-name: Rx-width-82;
  2417.   animation-name: Rx-width-82;
  2418.   animation-fill-mode: forwards;
  2419. }
  2420.  
  2421. .Rx-width-83 {
  2422.   -webkit-animation-name: Rx-width-83;
  2423.   -o-animation-name: Rx-width-83;
  2424.   animation-name: Rx-width-83;
  2425.   animation-fill-mode: forwards;
  2426. }
  2427.  
  2428. .Rx-width-84 {
  2429.   -webkit-animation-name: Rx-width-84;
  2430.   -o-animation-name: Rx-width-84;
  2431.   animation-name: Rx-width-84;
  2432.   animation-fill-mode: forwards;
  2433. }
  2434.  
  2435. .Rx-width-85 {
  2436.   -webkit-animation-name: Rx-width-85;
  2437.   -o-animation-name: Rx-width-85;
  2438.   animation-name: Rx-width-85;
  2439.   animation-fill-mode: forwards;
  2440. }
  2441.  
  2442. .Rx-width-86 {
  2443.   -webkit-animation-name: Rx-width-86;
  2444.   -o-animation-name: Rx-width-86;
  2445.   animation-name: Rx-width-86;
  2446.   animation-fill-mode: forwards;
  2447. }
  2448.  
  2449. .Rx-width-87 {
  2450.   -webkit-animation-name: Rx-width-87;
  2451.   -o-animation-name: Rx-width-87;
  2452.   animation-name: Rx-width-87;
  2453.   animation-fill-mode: forwards;
  2454. }
  2455.  
  2456. .Rx-width-88 {
  2457.   -webkit-animation-name: Rx-width-88;
  2458.   -o-animation-name: Rx-width-88;
  2459.   animation-name: Rx-width-88;
  2460.   animation-fill-mode: forwards;
  2461. }
  2462.  
  2463. .Rx-width-89 {
  2464.   -webkit-animation-name: Rx-width-89;
  2465.   -o-animation-name: Rx-width-89;
  2466.   animation-name: Rx-width-89;
  2467.   animation-fill-mode: forwards;
  2468. }
  2469.  
  2470. .Rx-width-90 {
  2471.   -webkit-animation-name: Rx-width-90;
  2472.   -o-animation-name: Rx-width-90;
  2473.   animation-name: Rx-width-90;
  2474.   animation-fill-mode: forwards;
  2475. }
  2476.  
  2477. .Rx-width-91 {
  2478.   -webkit-animation-name: Rx-width-91;
  2479.   -o-animation-name: Rx-width-91;
  2480.   animation-name: Rx-width-91;
  2481.   animation-fill-mode: forwards;
  2482. }
  2483.  
  2484. .Rx-width-92 {
  2485.   -webkit-animation-name: Rx-width-92;
  2486.   -o-animation-name: Rx-width-92;
  2487.   animation-name: Rx-width-92;
  2488.   animation-fill-mode: forwards;
  2489. }
  2490.  
  2491. .Rx-width-93 {
  2492.   -webkit-animation-name: Rx-width-93;
  2493.   -o-animation-name: Rx-width-93;
  2494.   animation-name: Rx-width-93;
  2495.   animation-fill-mode: forwards;
  2496. }
  2497.  
  2498. .Rx-width-94 {
  2499.   -webkit-animation-name: Rx-width-94;
  2500.   -o-animation-name: Rx-width-94;
  2501.   animation-name: Rx-width-94;
  2502.   animation-fill-mode: forwards;
  2503. }
  2504.  
  2505. .Rx-width-95 {
  2506.   -webkit-animation-name: Rx-width-95;
  2507.   -o-animation-name: Rx-width-95;
  2508.   animation-name: Rx-width-95;
  2509.   animation-fill-mode: forwards;
  2510. }
  2511.  
  2512. .Rx-width-96 {
  2513.   -webkit-animation-name: Rx-width-96;
  2514.   -o-animation-name: Rx-width-96;
  2515.   animation-name: Rx-width-96;
  2516.   animation-fill-mode: forwards;
  2517. }
  2518.  
  2519. .Rx-width-97 {
  2520.   -webkit-animation-name: Rx-width-97;
  2521.   -o-animation-name: Rx-width-97;
  2522.   animation-name: Rx-width-97;
  2523.   animation-fill-mode: forwards;
  2524. }
  2525.  
  2526. .Rx-width-98 {
  2527.   -webkit-animation-name: Rx-width-98;
  2528.   -o-animation-name: Rx-width-98;
  2529.   animation-name: Rx-width-98;
  2530.   animation-fill-mode: forwards;
  2531. }
  2532.  
  2533. .Rx-width-99 {
  2534.   -webkit-animation-name: Rx-width-99;
  2535.   -o-animation-name: Rx-width-99;
  2536.   animation-name: Rx-width-99;
  2537.   animation-fill-mode: forwards;
  2538. }
  2539.  
  2540. .Rx-width-100 {
  2541.   -webkit-animation-name: Rx-width-100;
  2542.   -o-animation-name: Rx-width-100;
  2543.   animation-name: Rx-width-100;
  2544.   animation-fill-mode: forwards;
  2545. }
  2546.  
  2547. .single_experties {
  2548.   width: 100%;
  2549.   display: table;
  2550.   margin-bottom: 25px;
  2551. }
  2552. .skilled-tittle {
  2553.   width: 30%;
  2554.   float: left;
  2555.   color:#757575;
  2556. }
  2557. .progress{
  2558.   width: 70%;
  2559.   height: 5px;
  2560.   float: right;
  2561.   border-radius: 0;
  2562.   margin-top: 10px;
  2563.   overflow: visible;
  2564.   background-color: #424242;
  2565. }
  2566. .progress-bar {
  2567.   height: 5px;
  2568.   position: relative;
  2569. }
  2570. .progress-bar > span {
  2571.   right: -4%;
  2572.   bottom: 10px;
  2573.   font-weight: 700;
  2574.   position: absolute;
  2575. }
  2576.  
  2577. ul.chart-list li {
  2578.   width: 170px;
  2579.   height: 170px;
  2580.   margin-right: 17px;
  2581.   text-align: center;
  2582. }
  2583. ul.chart-list li:last-child {
  2584.   margin-right: 0px;
  2585. }
  2586. /* - 4.4 - umfrage-section end
  2587. ================================================== */
  2588.  
  2589.  
  2590.  
  2591. /* - 4.5 - education-section start
  2592. ================================================== */
  2593. .education-section .accordion {
  2594.   border: none;
  2595.   margin: 0px;
  2596.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  2597. }
  2598.  
  2599. /* accordion-header
  2600. .................................................. */
  2601. .education-section .accordion .accordion-header {
  2602.   width: 100%;
  2603.   margin: 0px;
  2604.   padding: 0px;
  2605.   border: none;
  2606.   display: table;
  2607.   position: relative;
  2608.   border-bottom: 1px solid #424242;
  2609. }
  2610. .education-section .accordion .accordion-header > span.icon {
  2611.   float: left;
  2612.   width: 80px;
  2613.   height: 80px;
  2614.   text-align: center;
  2615.   display: inline-block;
  2616.   border-right: 1px solid #424242;
  2617. }
  2618. .education-section .accordion .accordion-header i {
  2619.   margin: 0;
  2620.   float: none;
  2621.   line-height: 80px;
  2622.   display: inline-block;
  2623. }
  2624. .education-section .accordion .accordion-header > p {
  2625.   display: table;
  2626.   color: #757575;
  2627.   font-size: 16px;
  2628.   padding: 17px 40px;
  2629.   text-transform: uppercase;
  2630. }
  2631.  
  2632. /* accordion-body
  2633. .................................................. */
  2634. .education-section .accordion .accordion-body {
  2635.   border: none;
  2636.   padding: 50px 60px;
  2637.   background-color: #212121;
  2638.   border-top: 1px solid #424242;
  2639.   border-bottom: 1px solid #424242;
  2640. }
  2641. .education-section .accordion .accordion-body > span {
  2642.   color: #818181;
  2643. }
  2644.  
  2645. /* -------------------------------------------------------
  2646.  accordion effects
  2647.  ------------------------------------------------------- */
  2648.  .education-section .accordion .accordion-header:before {
  2649.   top: 50%;
  2650.   right: 30px;
  2651.   position: absolute;
  2652.   font-family: 'FontAwesome';
  2653.   transition: all .3s ease-in-out;
  2654.   transform: translateY(-50%) rotate(-180deg);
  2655. }
  2656. .education-section .accordion .accordion-header:before {
  2657.   content: "\f067";
  2658. }
  2659. .education-section .accordion .accordion-header.active:before {
  2660.   content: "\f068";
  2661.   transform: translateY(-50%) rotate(0deg);
  2662. }
  2663. .education-section .accordion .acco-clr1:before,
  2664. .education-section .accordion .acco-clr1 > .icon { color: #2196f3; }
  2665.  
  2666. .education-section .accordion .acco-clr2:before,
  2667. .education-section .accordion .acco-clr2 > .icon { color: #26a69a; }
  2668.  
  2669. .education-section .accordion .acco-clr3:before,
  2670. .education-section .accordion .acco-clr3 > .icon { color: #ef5350; }
  2671.  
  2672. .education-section .accordion .acco-clr4:before,
  2673. .education-section .accordion .acco-clr4 > .icon { color: #fbc02d; }
  2674.  
  2675. .education-section .accordion .acco-clr5:before,
  2676. .education-section .accordion .acco-clr5 > .icon { color: #ab47bc; }
  2677. /* - 4.5 - education-section end
  2678. ================================================== */
  2679.  
  2680.  
  2681.  
  2682. /* - 4.5 - my-portfolio-section start
  2683. ================================================== */
  2684. .my-portfolio-section .button-group {
  2685.   width: 100%;
  2686.   height: 80px;
  2687.   padding-left: 40px;
  2688.   margin-bottom: 80px;
  2689.   background-color: #2c2c2c;
  2690.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  2691. }
  2692.  
  2693. .my-portfolio-section .button-group .button {
  2694.   z-index: 0;
  2695.   float: left;
  2696.   border: none;
  2697.   color: #ffffff;
  2698.   background: none;
  2699.   line-height: 80px;
  2700.   padding: 0px 40px;
  2701.   transform: scaleY(1);
  2702.   display: inline-block;
  2703.   text-transform: capitalize;
  2704. }
  2705. .my-portfolio-section .button-group .button:hover {
  2706.   background-color: #2196f3;
  2707. }
  2708. .my-portfolio-section .button-group .button.is-checked {
  2709.   z-index: 1;
  2710.   color: #ffffff;
  2711.   transform: scaleY(1.3);
  2712.   background-color: #2196f3;
  2713.   box-shadow: 0px 10px 30px 0px rgba(1, 1, 1, 0.2);
  2714. }
  2715.  
  2716. /* portfolio-search
  2717. .................................................. */
  2718. .portfolio-search {
  2719.   width: 35%;
  2720.   height: 100%;
  2721.   display: table;
  2722.   position: relative;
  2723.   border-left: 1px solid #f0f0f0;
  2724. }
  2725. .portfolio-search > .label-icon {
  2726.   top: 50%;
  2727.   right: 35px;
  2728.   color: #111111;
  2729.   font-size: 20px;
  2730.   position: absolute;
  2731.   transform: translateY(-50%);
  2732. }
  2733. .portfolio-search #search {
  2734.   margin: 0;
  2735.   width: 100%;
  2736.   height: 100%;
  2737.   border: none;
  2738.   display: block;
  2739.   padding: 0 0 0 35px;
  2740. }
  2741. .portfolio-search input[type=search]:focus:not([readonly]) {
  2742.   box-shadow: none;
  2743.   border-bottom: none;
  2744. }
  2745. .portfolio-search input[type=search]:focus:not([readonly]) + .label-icon {
  2746.   color: #2196f3;
  2747. }
  2748.  
  2749.  
  2750. /* ---- isotope ---- */
  2751.  
  2752. .my-portfolio-section .grid {
  2753.   width: 100%;
  2754.   display: table;
  2755.   margin-bottom: 80px;
  2756. }
  2757.  
  2758. .my-portfolio-section .element-item {
  2759.   margin: 0;
  2760.   padding: 0;
  2761.   float: left;
  2762.   height: 320px;
  2763.   width: 33.333%;
  2764.   display: inline-block;
  2765. }
  2766. .my-portfolio-section .element-item .ei-child {
  2767.   z-index: 0;
  2768.   width: 100%;
  2769.   height: 100%;
  2770.   display: block;
  2771.   overflow: hidden;
  2772.   position: relative;
  2773.   transform: scale(1);
  2774.   transition: all .4s ease-in-out;
  2775. }
  2776. .my-portfolio-section .element-item img {
  2777.   width: 100%;
  2778.   height: 100%;
  2779.   display: block;
  2780. }
  2781. .my-portfolio-section .element-item a.more {
  2782.   width: 45px;
  2783.   right: -100%;
  2784.   bottom: 40px;
  2785.   height: 35px;
  2786.   color: #ffffff;
  2787.   line-height: 35px;
  2788.   text-align: center;
  2789.   position: absolute;
  2790.   background-color: #2196f3;
  2791. }
  2792. .my-portfolio-section .element-item .ei-child:hover {
  2793.   z-index: 1;
  2794.   transform: scale(1.1);
  2795.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  2796. }
  2797. .my-portfolio-section .element-item .ei-child:hover a.more {
  2798.   right: 0%;
  2799. }
  2800.  
  2801.  
  2802. .my-portfolio-section a.custom-btn {
  2803.   margin: 0 auto;
  2804.   left: 50%;
  2805.   transform: translateX(-50%);
  2806. }
  2807. /* - 4.5 - my-portfolio-section end
  2808. ================================================== */
  2809.  
  2810.  
  2811.  
  2812. /* - 4.5 - testomonial-section start
  2813. ================================================== */
  2814. #testomonial-carousel {
  2815.   height: 368px;
  2816.   margin-bottom: 100px;
  2817. }
  2818. #testomonial-carousel .item{
  2819.     top:-20px;
  2820. }
  2821. .hello_testi_slider_wrapper .owl-carousel .owl-item{
  2822.         position: relative !important;
  2823.     top: 13px !important;
  2824.     padding-bottom: 62px !important;
  2825. }
  2826. #testomonial-carousel .owl-carousel .item{
  2827.         position: relative;
  2828.     top: 18px;
  2829.     padding-bottom: 100px;
  2830. }
  2831. #testomonial-carousel .item .testomonial-img {
  2832.   z-index: 1;
  2833.   width: 33%;
  2834.   float: left;
  2835.   height: 100%;
  2836.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  2837. }
  2838. #testomonial-carousel .item .testomonial-contant {
  2839.   width:calc(100% - 33%);
  2840.   float: right;
  2841.   height: 100%;
  2842.   margin-top: 0;
  2843.   background-color: #2c2c2c;
  2844.   padding: 60px 120px 110px 60px;
  2845.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  2846. }
  2847. #testomonial-carousel .item .testomonial-contant > h2 {
  2848.   font-size: 24px;
  2849.   font-weight: 700;
  2850.   margin-bottom: 30px;
  2851. }
  2852. #testomonial-carousel .item .testomonial-contant > h2 > span {
  2853.   color: #2196f3;
  2854.   font-size: 16px;
  2855.   font-weight: 400;
  2856. }
  2857. #testomonial-carousel .item .testomonial-contant > p {
  2858.   font-style: italic;
  2859.   margin-bottom: 30px;
  2860. }
  2861. #testomonial-carousel .item .testomonial-contant > a {
  2862.   font-style: italic;
  2863. }
  2864.  
  2865. /* owl-nav
  2866. .................................................. */
  2867. #testomonial-carousel .owl-nav {
  2868.   top: 0;
  2869.   bottom: 0;
  2870.   margin: 0;
  2871.   right: 0;
  2872.   width: 80px;
  2873.   padding: 30px 0px;
  2874.   position: absolute;
  2875.  
  2876. }
  2877. #testomonial-carousel .owl-prev,
  2878. #testomonial-carousel .owl-next {
  2879.   margin: 0;
  2880.   padding: 0;
  2881.   width: 100%;
  2882.   height: 50%;
  2883.   display: table;
  2884.   overflow: hidden;
  2885.   text-align: center;
  2886.   border-radius: 0px;
  2887.   background: #2c2c2c;
  2888.   border-left: 1px solid #f0f0f0;
  2889. }
  2890.  
  2891. #testomonial-carousel .owl-prev:before,
  2892. #testomonial-carousel .owl-next:before {
  2893.   left: 0;
  2894.   right: 0;
  2895.   height: 43%;
  2896.   color: #ffffff;
  2897.   display: block;
  2898.   font-size: 30px;
  2899.   position: absolute;
  2900.   line-height: 160px;
  2901.   background: #2c2c2c;
  2902.   font-family: 'FontAwesome';
  2903. }
  2904. #testomonial-carousel .owl-prev:before {
  2905.   content: "\f100";
  2906. }
  2907. #testomonial-carousel .owl-next:before {
  2908.   content: "\f101";
  2909. }
  2910. #testomonial-carousel .owl-prev:hover:before,
  2911. #testomonial-carousel .owl-next:hover:before {
  2912.   background: #424242;
  2913. }
  2914.  
  2915. #testomonial-carousel .owl-dots {
  2916.   display: none;
  2917. }
  2918.  
  2919.  
  2920. /* brand-list
  2921. .................................................. */
  2922. ul.brand-list li {
  2923.   z-index: 0;
  2924.   width: 20%;
  2925.   height: 120px;
  2926.   text-align: center;
  2927.   transform: scale(1);
  2928.   transition: all .4s ease-in-out;
  2929.   border-right: 2px solid #393939;
  2930. }
  2931. ul.brand-list li:last-child {
  2932.   border-right: none;
  2933. }
  2934. ul.brand-list li:hover {
  2935.   z-index: 1;
  2936.   transform: scale(1.3);
  2937.   border-right: 2px solid transparent;
  2938.   background-color: #2c2c2c;
  2939.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  2940. }
  2941.  
  2942. ul.brand-list li > a {
  2943.   width: 100%;
  2944.   height: 100%;
  2945.   opacity: .30;
  2946.   display: block;
  2947.   padding: 20px 0px;
  2948.   line-height: 120px;
  2949. }
  2950. ul.brand-list li:hover > a {
  2951.   opacity: 1;
  2952. }
  2953. /* - 4.5 - testomonial-section end
  2954. ================================================== */
  2955.  
  2956. .circle {
  2957.   height: 120px;
  2958.   width: 120px;
  2959.   float: left;
  2960.   position: relative;
  2961.   margin-right: 20px;
  2962. }
  2963. .skill-piechart:last-child .circle {
  2964.   margin-right: 0;
  2965. }
  2966. .circle strong {
  2967.   position: absolute;
  2968.   text-align: center;
  2969.   top: 42%;
  2970.   left: 0;
  2971.   right: 0;
  2972.   color:#ffffff;
  2973. }
  2974. /* - 4.6 - experience-section start
  2975. ================================================== */
  2976. /* experience-left
  2977. .................................................. */
  2978. .experience-left {
  2979.   z-index: 0;
  2980.   position: relative;
  2981.   padding: 60px 60px;
  2982.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  2983. }
  2984. .experience-left-item-area {
  2985.   z-index: 1;
  2986.   height: 820px;
  2987.   padding: 0px 30px;
  2988.   overflow-y: scroll;
  2989. }
  2990. .border-left {
  2991.   padding: 20px 30px 0px 30px;
  2992.   border-left: 2px solid #424242;
  2993. }
  2994. .experience-left-item-area::-webkit-scrollbar {
  2995.   width: 2px;
  2996.   height: 100px;
  2997. }
  2998.  
  2999. .experience-left-item-area::-webkit-scrollbar-track {
  3000.   width: 2px;
  3001.   background-color: #424242;
  3002. }
  3003.  
  3004. .experience-left-item-area::-webkit-scrollbar-thumb {
  3005.   background-color: #2196f3;
  3006. }
  3007.  
  3008. .experience-left .experience-item {
  3009.   position: relative;
  3010.   margin-bottom: 80px;
  3011. }
  3012. .experience-left .experience-item:last-child {
  3013.   margin-bottom: 0px;
  3014. }
  3015.  
  3016. .experience-left .experience-item:before,
  3017. .experience-left .experience-item:after {
  3018.   content: '';
  3019.   position: absolute;
  3020. }
  3021.  
  3022. .experience-left .experience-item:before {
  3023.   top: -3px;
  3024.   left: -44px;
  3025.   width: 25px;
  3026.   height: 25px;
  3027.   border-radius: 100%;
  3028.   border: 3px solid red;
  3029.   background-color: transparent;
  3030. }
  3031.  
  3032. .experience-left .experience-item:after {
  3033.   top: 4px;
  3034.   left: -37px;
  3035.   width: 11px;
  3036.   height: 11px;
  3037.   border-radius: 100%;
  3038.   background-color: red;
  3039. }
  3040.  
  3041. .experience-left .experience-item .post-mate {
  3042.   margin: 20px 0px;
  3043. }
  3044.  
  3045. .experience-left .experience-item .post-mate li span.current {
  3046.   color: #ffffff;
  3047.   padding: 5px 10px;
  3048. }
  3049.  
  3050. .experience-left .experience-item a {
  3051.   margin-top: 25px;
  3052.   font-style: italic;
  3053. }
  3054.  
  3055. .experience-item.exp1:before { border-color: #2196f3; }
  3056. .experience-item.exp1:after { background-color: #2196f3; }
  3057.  
  3058. .experience-item.exp2:before { border-color: #26a69a; }
  3059. .experience-item.exp2:after { background-color: #26a69a; }
  3060.  
  3061. .experience-item.exp3:before { border-color: #ef5350; }
  3062. .experience-item.exp3:after { background-color: #ef5350; }
  3063.  
  3064.  
  3065.  
  3066. /* experience-right
  3067. .................................................. */
  3068. .experience-right {
  3069.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  3070. }
  3071.  
  3072. .experience-right .achivement {
  3073.   padding: 67px 50px 60px 60px;
  3074.   border-bottom: 1px solid #424242;
  3075. }
  3076. .experience-right .achivement:last-child {
  3077.   border-bottom: none;
  3078. }
  3079.  
  3080. .experience-right .achivement h2 {
  3081.   margin-bottom: 30px;
  3082. }
  3083. .experience-right .achivement h2>.thumb {
  3084.   float: left;
  3085.   color: #4f4f4f;
  3086.   font-size: 54px;
  3087.   font-weight: 700;
  3088.   margin-top: -13px;
  3089.   margin-right: 10px;
  3090. }
  3091. .experience-right .achivement h2>.thumb.achived-color {
  3092.   color: #fbc02d !important;
  3093. }
  3094.  
  3095. /* - 4.6 - experience-section end
  3096. ================================================== */
  3097.  
  3098.  
  3099.  
  3100. /* - 4.7 - -section start
  3101. ================================================== */
  3102. .latest-news-section .news-item { margin-bottom: 80px; }
  3103.  
  3104. .latest-news-section .news-image,
  3105. .latest-news-section .news-contant {
  3106.   width: 50%;
  3107. }
  3108.  
  3109. .latest-news-section .news-image {
  3110.   z-index: 1;
  3111.   position: relative;
  3112.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  3113. }
  3114. .latest-news-section .news-image > img {
  3115.   width: 100%;
  3116.   height: 100%;
  3117.   display: block;
  3118. }
  3119.  
  3120. .latest-news-section .news-image.b4-1:before,
  3121. .latest-news-section .news-image.b4-2:before {
  3122.   top: 60px;
  3123.   right: -16%;
  3124.   height: 4px;
  3125.   width: 86px;
  3126.   content: '';
  3127.   z-index: -1;
  3128.   position: absolute;
  3129.   background-color: #2196f3;
  3130. }
  3131. .latest-news-section .news-image.b4-1:before {
  3132.   right: -15%;
  3133. }
  3134. .latest-news-section .news-image.b4-2:before {
  3135.   left: -15%;
  3136. }
  3137.  
  3138. .latest-news-section .news-contant {
  3139.   padding: 115px 60px 0px 60px;
  3140. }
  3141. .latest-news-section .news-contant ul.post-mate2,
  3142. .latest-news-section .news-contant > p {
  3143.   margin-bottom: 23px;
  3144. }
  3145.  
  3146. .latest-news-section ul.pagination {
  3147.   width: 60%;
  3148.   height: 70px;
  3149.   display: table;
  3150.   margin: 0 auto;
  3151.   margin-top: 40px;
  3152.   text-align: center;
  3153.   background-color: #2c2c2c;
  3154.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  3155. }
  3156. .latest-news-section ul.pagination li {
  3157.   z-index: 0;
  3158.   width: 70px;
  3159.   height: 100%;
  3160.   text-align: center;
  3161.   transform: scaleY(1);
  3162. }
  3163. .latest-news-section ul.pagination li:hover {
  3164.   background-color: #424242;
  3165. }
  3166. .latest-news-section ul.pagination li a {
  3167.   width: 100%;
  3168.   height: 100%;
  3169.   display: block;
  3170.   line-height: 70px;
  3171. }
  3172. .latest-news-section ul.pagination li.left-arrow {
  3173.   border-right: 1px solid rgba(238, 238, 238, 0.26);
  3174. }
  3175. .latest-news-section ul.pagination li.right-arrow {
  3176.   border-left: 1px solid rgba(238, 238, 238, 0.26);
  3177. }
  3178.  
  3179. .latest-news-section ul.pagination li.active {
  3180.   z-index: 1;
  3181.   color: #ffffff;
  3182.   border-radius: 0px;
  3183.   transform: scaleY(1.3);
  3184.   background-color: #2196f3;
  3185.   box-shadow: 0px 10px 30px 0px rgba(1, 1, 1, 0.2);
  3186. }
  3187. /* - 4.7 - -section end
  3188. ================================================== */
  3189.  
  3190.  
  3191. /* - 4.8 - contact-me-section start
  3192. ================================================== */
  3193. .contact-me-section .contact-left .cont-item {
  3194.   width: 100%;
  3195.   height: 206px;
  3196.   display: table;
  3197.   padding: 60px 60px;
  3198.   margin-bottom: 30px;
  3199.   transition: all .4s ease-in-out;
  3200. }
  3201. .contact-me-section .contact-left .cont-item:last-child {
  3202.   margin-bottom: 0px;
  3203. }
  3204. .contact-me-section .contact-left .cont-item:hover {
  3205.   background-color: #2c2c2c;
  3206.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  3207. }
  3208. .contact-me-section .contact-left .cont-item p {
  3209.   font-style: italic;
  3210. }
  3211. .contact-me-section .contact-left .cont-item p > span {
  3212.   float: left;
  3213.   width: 110px;
  3214.   margin-right: 25px;
  3215.   position: relative;
  3216. }
  3217. .contact-me-section .contact-left .cont-item p > span:after {
  3218.   top: 0;
  3219.   right: 0;
  3220.   content: ':';
  3221.   color: #828282;
  3222.   position: absolute;
  3223. }
  3224.  
  3225. /* contact-right
  3226. .................................................. */
  3227. .contact-me-section .contact-right {
  3228.   padding: 60px 60px;
  3229.   background-color: #2196f3;
  3230.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  3231. }
  3232. .contact-me-section .contact-right h2.title {
  3233.   color: #ffffff;
  3234. }
  3235. .contact-me-section .contact-right .input-field {
  3236.   padding: 0;
  3237.   margin: 0 0 30px 0;
  3238. }
  3239. .contact-me-section .contact-right .input-field input,
  3240. .contact-me-section .contact-right .input-field textarea {
  3241.   color: #ffffff;
  3242.   border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  3243. }
  3244. .contact-me-section .contact-right .input-field label {
  3245.   color: rgba(255, 255, 255, 0.5);
  3246. }
  3247. .contact-me-section .contact-right .input-field textarea {
  3248.   min-height: 126px;
  3249. }
  3250.  
  3251. .contact-me-section .contact-right a.custom-btn {
  3252.   color: #111111;
  3253.   background-color: #ffffff;
  3254. }
  3255.  
  3256. .contact-me-section .contact-right .input-field input:focus,
  3257. .contact-me-section .contact-right .input-field textarea:focus {
  3258.   border-bottom: 1px solid #ffffff;
  3259.   box-shadow: 0 1px 0 0 #ffffff;
  3260. }
  3261. .contact-me-section .contact-right .input-field input:focus + label,
  3262. .contact-me-section .contact-right .input-field textarea:focus + label {
  3263.   color: #ffffff;
  3264. }
  3265. /* - 4.8 - contact-me-section end
  3266. ================================================== */
  3267.  
  3268. /* - 4 - home (index page) end
  3269. ==================================================================================================== */
  3270.  
  3271.  
  3272.  
  3273.  
  3274.  
  3275. /* - 5 - footer-section start
  3276. ==================================================================================================== */
  3277. .footer-section {
  3278.   width: 100%;
  3279.   height: 100px;
  3280.   display: table;
  3281.   position: relative;
  3282.   line-height:100px;
  3283.   padding-left:20px;
  3284.   background-color: #222222;
  3285.   box-shadow: 0px 10px 40px 0px rgba(1, 1, 1, 0.1);
  3286. }
  3287.  
  3288. /* back to top
  3289. .................................................. */
  3290. .backtotop {
  3291.   top: 0;
  3292.   right: 0;
  3293.   bottom: 0;
  3294.   width: 100px;
  3295.   height: 100px;
  3296.   text-align: center;
  3297.   position: absolute;
  3298.   background-color: #424242;
  3299. }
  3300. .backtotop a.scroll {
  3301.   width: 100%;
  3302.   height: 100%;
  3303.   color: #ffffff;
  3304.   display: block;
  3305.   font-size: 24px;
  3306.   line-height: 100px;
  3307. }
  3308. /* - 5 - footer-section end
  3309. ==================================================================================================== */
  3310.  
  3311.  
  3312.  
  3313.  
  3314. /* - 6 - Start of Chooser page
  3315. ==================================================================================================== */
  3316. .chooser-head {
  3317.   text-align: center;
  3318. }
  3319. .chooser-head {
  3320.   text-align: center;
  3321.   padding: 200px;
  3322.   background-color: #26a69a;
  3323. }
  3324. .chooser-title h2 {
  3325.   font-size: 50px;
  3326.   font-weight: 700;
  3327.   color: #ffffff;
  3328.   padding-bottom: 15px;
  3329. }
  3330. .chooser-head .title-dec {
  3331.   font-size: 24px;
  3332.   color: #ffffff;
  3333. }
  3334. .view-demo-btn {
  3335.   margin-top: 30px;
  3336. }
  3337. body.clearfix.chooser {
  3338.   margin: 0;
  3339.   padding: 0;
  3340. }
  3341. .demo-title h3 {
  3342.   font-size: 30px;
  3343.   letter-spacing: 2px;
  3344.   line-height: 24px;
  3345.   margin: 0;
  3346.   position: relative;
  3347.   text-transform: uppercase;
  3348.   padding-bottom: 13px;
  3349.   font-weight: 700;
  3350. }
  3351. .demo-title {
  3352.   position: relative;
  3353.   text-align: center;
  3354.   padding-top: 70px;
  3355.   margin-bottom: 45px;
  3356. }
  3357. .demo-title::before {
  3358.   width: 64px;
  3359.   height: 1px;
  3360.   background: #dddddd;
  3361.   margin-left: -32px;
  3362.   bottom: 0px;
  3363.   left: 50%;
  3364.   content: "";
  3365.   position: absolute;
  3366. }
  3367. .dmeo-item-title h3 {
  3368.   font-size: 18px;
  3369.   font-weight: 700;
  3370.   font-style: italic;
  3371.   text-align: center;
  3372.   margin-top: 15px;
  3373. }
  3374. .dmeo-item-list {
  3375.   box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  3376.   padding-bottom: 10px;
  3377.   text-align: center;
  3378. }
  3379. .dmeo-item-list.half {
  3380.   text-align: center;
  3381.   max-width: 370px;
  3382.   margin: 0 auto;
  3383.  
  3384. }
  3385. .preview i {
  3386.   color: #2196f3;
  3387.   font-style: italic;
  3388.   font-weight: 700;
  3389.   color: #ffffff;
  3390. }
  3391. .preview i span {
  3392.   margin-left: 10px;
  3393. }
  3394. .dmeo-item-list {
  3395.   position: relative;
  3396.   margin-bottom: 45px;
  3397. }
  3398. .img-ovelay {
  3399.   position: relative;
  3400. }
  3401. .overlay {
  3402.   position: absolute;
  3403.   top: 0;
  3404.   height: 98%;
  3405.   width: 100%;
  3406.   background-color: rgba(32, 148, 243, 0.8);
  3407.   opacity: 0;
  3408.   transition: .3s all ease-in-out;
  3409. }
  3410. .preview {
  3411.   position: absolute;
  3412.   top: 30%;
  3413.   left: 0;
  3414.   right: 0;
  3415.   opacity: 0;
  3416.   transition: .3s all ease-in-out;
  3417.   text-align: center;
  3418. }
  3419. .dmeo-item-list:hover .overlay {
  3420.   opacity: 1;
  3421. }
  3422. .dmeo-item-list:hover .preview {
  3423.   opacity: 1;
  3424.   top: 40%;
  3425. }
  3426. .other-demo-item {
  3427.   background-color: #ffffff;
  3428.   padding-bottom: 70px;
  3429. }
  3430. .choose-demo,
  3431. .other-demo-item-2{
  3432.   padding-bottom: 70px;
  3433. }
  3434. /* - 6 - End of Chooser page
  3435. ==================================================================================================== */
  3436.  
  3437. /*-- main menu fixed--*/
  3438.  
  3439. .hello_menu_fixed_main_wrapper{
  3440.     position:fixed;
  3441.     z-index:1000;
  3442.     left:0;
  3443.     right:0;
  3444.     background:#222222;
  3445.     top:0;
  3446.     display: none;
  3447.         -o-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.10);
  3448.     -ms-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.10);
  3449.     -moz-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.10);
  3450.     -webkit-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.10);
  3451.     box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.10);
  3452. }
  3453. .menu_fixed{
  3454.     position:fixed;
  3455.     background:#222222;
  3456.     z-index:10;
  3457.     left:0;
  3458.     right:0;
  3459.     top:0;
  3460. }
  3461. .hello_logo_wrapper{
  3462.     float:left;
  3463. }
  3464. .hello_fixed_nav_wrapper{
  3465.     float:right;
  3466.     position: relative;
  3467.     left: -46px;
  3468. }
  3469. .hello_nav_fixed ul{
  3470.     float:right;
  3471. }
  3472. .hello_logo{
  3473.     z-index:1000 !important;
  3474. }
  3475. .hello_logo img{
  3476.     position:relative;
  3477.     top: 10px;
  3478.     left: 47px;
  3479. }
  3480.  
  3481. span.tab{
  3482.     padding: 0 10px;
  3483. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement