index.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. input[type=text]::-ms-clear { display: none; width : 0; height: 0; }
  6. input[type=text]::-ms-reveal { display: none; width : 0; height: 0; }
  7. input::-webkit-search-decoration,
  8. input::-webkit-search-cancel-button,
  9. input::-webkit-search-results-button,
  10. input::-webkit-search-results-decoration { display: none; }
  11. hr {
  12. border: none;
  13. background-color: #707070;
  14. height: 1px;
  15. width: auto;
  16. margin: 0 auto;
  17. }
  18. @font-face {
  19. font-family: 'monsterrat_regular';
  20. src: url('fonts/monsterrat/Montserrat-Regular.ttf');
  21. }
  22. @font-face {
  23. font-family: 'monsterrat_bold';
  24. src: url('fonts/monsterrat/Montserrat-Bold.ttf');
  25. }
  26. .wrapper {
  27. max-width: 1200px;
  28. margin: 0 auto;
  29. background: linear-gradient(#ffffff, #d1e3ff, #a5c8ff);
  30. box-shadow: 0 0 60px #b5d2ff;
  31. padding: 0 20px;
  32. }
  33. .header {
  34. display: flex;
  35. max-width: 1042px;
  36. justify-content: space-between;
  37. margin-bottom: 29px !important;
  38. margin: 0 auto;
  39. padding: 20px 0 0 0;
  40. }
  41. .logo_name {
  42. display: flex;
  43. width: 340px;
  44. justify-content: space-between;
  45. align-items: center;
  46. }
  47. .logo_name > p {
  48. width: 218px;
  49. font-size: 20px;
  50. font-family: 'monsterrat_regular';
  51. }
  52. .header_buttons {
  53. width: 630px;
  54. margin-top: 20px;
  55. position: relative;
  56. }
  57. .top_header {
  58. width: 630px;
  59. }
  60. .top_header > h1 {
  61. font-family: 'monsterrat_bold';
  62. text-shadow: 0 5px 6px #00000063;
  63. font-size: 35px;
  64. text-align: center;
  65. }
  66. .top_buttons {
  67. width: 330px;
  68. display: flex;
  69. justify-content: space-between;
  70. position: absolute;
  71. right: 20px;
  72. }
  73. .top_buttons > button {
  74. font-family: 'monsterrat_regular';
  75. background-color: #ffffff;
  76. border: 1px solid #707070;
  77. box-shadow: 0 3px 6px #00000063;
  78. padding: 5px 25px;
  79. border-radius: 17px;
  80. font-size: 20px;
  81. height: 45px;
  82. }
  83. .top_buttons > button:hover {
  84. cursor: pointer;
  85. }
  86. #hr_between {
  87. margin: 0 20px;
  88. }
  89. .quick_links_search {
  90. display: flex;
  91. max-width: 1200px;
  92. height: 100px;
  93. margin: 0 auto;
  94. position: relative;
  95. }
  96. .quick_links_search > .link_buttons {
  97. width: 390px !important;
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. margin-right: 0px;
  102. }
  103. .hide_first_top_menu {
  104. position: absolute;
  105. top: 118.5px;
  106. width: 360px;
  107. height: 150px;
  108. background-color: #ffffff;
  109. border: 1px solid #707070;
  110. border-radius: 35px;
  111. box-shadow: 0 3px 6px #707070;
  112. display: flex;
  113. align-items: center;
  114. justify-content: center;
  115. display: none;
  116. }
  117. .hide_first_top_menu > ul {
  118. padding: 0;
  119. list-style-type: none;
  120. text-align: center;
  121. line-height: 2.5;
  122. font-family: 'monsterrat_regular';
  123. font-size: 20px;
  124. }
  125. .hide_first_top_menu > ul > li > a {
  126. text-decoration: none;
  127. color: #000000;
  128. }
  129. .hide_second_top_menu {
  130. position: absolute;
  131. top: 118.5px;
  132. width: 360px;
  133. height: 350px;
  134. background-color: #ffffff;
  135. border: 1px solid #707070;
  136. border-radius: 35px;
  137. box-shadow: 0 3px 6px #707070;
  138. display: flex;
  139. align-items: center;
  140. justify-content: center;
  141. display: none;
  142. z-index: 9 !important;
  143. }
  144. .hide_second_top_menu > ul {
  145. padding: 0;
  146. list-style-type: none;
  147. text-align: center;
  148. line-height: 2.5;
  149. font-family: 'monsterrat_regular';
  150. font-size: 20px;
  151. }
  152. .hide_second_top_menu > ul > li > a {
  153. text-decoration: none;
  154. color: #000000;
  155. }
  156. .link_buttons > button {
  157. font-family: 'monsterrat_regular';
  158. background-color: #ffffff;
  159. border: 1px solid #707070;
  160. box-shadow: 0 3px 6px #00000063;
  161. padding: 5px 25px;
  162. border-radius: 17px;
  163. font-size: 20px;
  164. height: 45px;
  165. }
  166. .link_buttons > button:hover {
  167. cursor: pointer;
  168. }
  169. .link_buttons > button[id='top_btn_2'] {
  170. padding: 5px 27px;
  171. width: 200px;
  172. }
  173. .quick_links_search > hr {
  174. border: none;
  175. width: 1px;
  176. background-color: #707070;
  177. height: 100px;
  178. margin: 0;
  179. }
  180. .quick_links_search > .search_field {
  181. width: 780px;
  182. display: flex;
  183. align-items: center;
  184. justify-content: center;
  185. }
  186. .search_field > form {
  187. width: 727px;
  188. height: 45px;
  189. display: flex;
  190. position: relative;
  191. border-radius: 17px;
  192. }
  193. .search_field > form > input[id="search_input_top"] {
  194. width: 727px;
  195. border-radius: 17px;
  196. border: 1px solid #707070;
  197. text-align: center;
  198. font-size: 20px;
  199. font-family: 'monsterrat_regular';
  200. }
  201. .search_field > form > button[id="send_btn_1"] {
  202. position: absolute;
  203. right: 0;
  204. border: none;
  205. background: none;
  206. height: 45px;
  207. width: 45px;
  208. }
  209. .search_field > form > button[id="send_btn_1"]:hover {
  210. cursor: pointer;
  211. }
  212. .search_field > form > button[id="send_btn_2"] {
  213. position: absolute;
  214. right: 0;
  215. border: none;
  216. background: none;
  217. height: 45px;
  218. width: 45px;
  219. display: none;
  220. }
  221. .search_field > form > button[id="send_btn_2"]:hover {
  222. cursor: pointer;
  223. }
  224. .page_header {
  225. max-width: 1200px;
  226. display: flex;
  227. align-items: center;
  228. justify-content: center;
  229. margin-top: 20px;
  230. font-family: 'monsterrat_regular';
  231. }
  232. main {
  233. height: 800px;
  234. max-width: 1200px;
  235. margin: 0 auto;
  236. margin-top: 20px;
  237. display: flex;
  238. justify-content: space-around;
  239. flex-wrap: wrap;
  240. padding-top: 30px;
  241. background-color: #ffffff;
  242. border-radius: 10px;
  243. overflow: scroll;
  244. -ms-overflow-style: none;
  245. scrollbar-width: none;
  246. }
  247. main::-webkit-scrollbar {
  248. display: none;
  249. }
  250. main > .course {
  251. height: 350px;
  252. width: 250px;
  253. border: 2px solid #707070;
  254. border-radius: 10px;
  255. display: flex;
  256. flex-direction: column;
  257. justify-content: space-between;
  258. align-items: center;
  259. position: relative;
  260. box-shadow: 0 0 10px #707070;
  261. margin-bottom: 30px;
  262. }
  263. main > .course > a:hover {
  264. transition: all .5s;
  265. }
  266. .course:hover > .course_img {
  267. filter: brightness(50%);
  268. transition: all .5s;
  269. }
  270. .course a:hover > .course_description p {
  271. opacity: 1 !important;
  272. transition: all .5s;
  273. }
  274. .course > a {
  275. display: flex;
  276. flex-direction: column;
  277. justify-content: space-between;
  278. align-items: center;
  279. text-decoration: none;
  280. color: #000000;
  281. transition: .5s;
  282. z-index: 2;
  283. width: 250px;
  284. height: 350px;
  285. }
  286. .course_img {
  287. width: 250px;
  288. height: 350px;
  289. overflow: hidden;
  290. position: absolute;
  291. z-index: 1;
  292. border-radius: 5px;
  293. transition: all .5s;
  294. }
  295. .course_img > #course_img_1 {
  296. position: relative;
  297. bottom: 150px;
  298. }
  299. .course_img > #course_img_2 {
  300. position: relative;
  301. bottom: -20px;
  302. right: 210px;
  303. transform: scale(1.2);
  304. }
  305. .course_img > #course_img_3 {
  306. position: relative;
  307. bottom: 0px;
  308. left: -50px;
  309. transform: scale(1.5);
  310. }
  311. .course_img > #course_img_4 {
  312. position: relative;
  313. left: -190px;
  314. }
  315. .course_img > #course_img_5 {
  316. position: relative;
  317. bottom: 0px;
  318. left: -380px;
  319. transform: scale(1.1);
  320. }
  321. .course_img > #course_img_6 {
  322. position: relative;
  323. left: -340px;
  324. bottom: 130px;
  325. transform: scale(0.6);
  326. }
  327. .course_img > #course_img_7 {
  328. position: relative;
  329. bottom: 0px;
  330. left: -180px;
  331. }
  332. .course_img > #course_img_8 {
  333. position: relative;
  334. bottom: 0px;
  335. left: -150px;
  336. }
  337. .course_img > #course_img_9 {
  338. position: relative;
  339. bottom: 0px;
  340. left: -100px;
  341. transform: scale(1.5);
  342. }
  343. a > .course_name {
  344. margin-top: 20px;
  345. width: 100%;
  346. text-align: center;
  347. }
  348. .course_name > h2 {
  349. font-family: 'monsterrat_regular';
  350. color: #ffffff;
  351. text-shadow: 0 0 5px #000000, 0 0 5px #000000;
  352. }
  353. a > .course_description {
  354. width: 100%;
  355. text-align: start;
  356. padding: 0 0 10px 20px;
  357. }
  358. .course_description > p {
  359. font-family: 'monsterrat_regular';
  360. line-height: 1.5;
  361. color: #ffffff;
  362. opacity: 0;
  363. transition: all .5s;
  364. }
  365. #left{
  366. float: left;
  367. }
  368. #right{
  369. margin-top: 20px;
  370. float: right;
  371. }
  372. footer {
  373. max-width: 1121px !important;
  374. margin: 0 auto;
  375. display: flex;
  376. justify-content: space-between;
  377. margin-top: 20px;
  378. flex-wrap: wrap;
  379. border-top: 1px solid #707070;
  380. padding: 20px 0;
  381. }
  382. #right > p, #left > p {
  383. font-family: 'monsterrat_regular';
  384. display: flex;
  385. align-items: center;
  386. }
  387. #left {
  388. display: inline-flex;
  389. justify-content: space-between;
  390. align-items: center;
  391. width: 460px;
  392. }
  393. #left img {
  394. float: left;
  395. }
  396. .fa-map {
  397. color: #00923e;
  398. }
  399. .fa-phone {
  400. color: #00923e;
  401. }
  402. @media (max-width: 1121px) {
  403. .wrapper {
  404. max-width: 1000px;
  405. }
  406. .top_header > h1 {
  407. font-size: 30px;
  408. text-align: center;
  409. }
  410. .top_buttons > button {
  411. height: 35px;
  412. }
  413. .quick_links_search {
  414. max-width: 1000px;
  415. height: 75px;
  416. }
  417. #hr_between {
  418. height: 75px;
  419. }
  420. .link_buttons > button {
  421. font-size: 16px;
  422. height: 35px;
  423. }
  424. .search_field {
  425. width: 500px;
  426. }
  427. .search_field > form {
  428. width: 650px;
  429. height: 35px;
  430. }
  431. #send_btn_1 {
  432. height: 35px;
  433. width: 35px;
  434. margin-right: 10px;
  435. }
  436. .hide_first_top_menu {
  437. top: 90px;
  438. width: 330px;
  439. height: 120px;
  440. }
  441. .hide_first_top_menu > ul {
  442. font-size: 16px;
  443. }
  444. .hide_second_top_menu {
  445. top: 90px;
  446. width: 330px;
  447. height: 280px;
  448. }
  449. .hide_second_top_menu > ul {
  450. font-size: 16px;
  451. }
  452. }
  453. @media (max-width: 1000px) {
  454. .wrapper {
  455. max-width: 850px;
  456. }
  457. .logo_name > p {
  458. font-size: 16px;
  459. width: 180px;
  460. }
  461. .top_header {
  462. width: 500px;
  463. }
  464. .top_header > h1 {
  465. font-size: 25px;
  466. }
  467. .top_buttons {
  468. width: 270px;
  469. }
  470. .top_buttons > button {
  471. height: 28px;
  472. font-size: 16px;
  473. }
  474. .quick_links_search {
  475. max-width: 850px;
  476. height: 75px;
  477. }
  478. #hr_between {
  479. height: 75px;
  480. }
  481. .link_buttons {
  482. width: 260px !important;
  483. }
  484. .link_buttons > button {
  485. font-size: 16px;
  486. height: 28px;
  487. font-size: 14px;
  488. }
  489. .search_field {
  490. width: 530px !important;
  491. }
  492. .search_field > form {
  493. width: 530px;
  494. height: 28px;
  495. }
  496. #send_btn_1 {
  497. display: none;
  498. }
  499. #send_btn_2 {
  500. display: block;
  501. width: 28px;
  502. height: 28px;
  503. }
  504. .link_buttons > button[id='top_btn_2'] {
  505. padding: 5px 20px;
  506. }
  507. .search_field > form > input[id="search_input_top"] {
  508. font-size: 16px;
  509. }
  510. .hide_first_top_menu {
  511. top: 90px;
  512. width: 280px;
  513. height: 105px;
  514. }
  515. .hide_first_top_menu > ul {
  516. font-size: 14px;
  517. }
  518. .hide_second_top_menu {
  519. top: 90px;
  520. width: 280px;
  521. height: 245px;
  522. }
  523. .hide_second_top_menu > ul {
  524. font-size: 14px;
  525. }
  526. }
  527. @media (max-width: 850px) {
  528. .wrapper {
  529. max-width: 650px;
  530. }
  531. .logo_name > img {
  532. transform: scale(0.8);
  533. }
  534. .header {
  535. max-width: 650px !important;
  536. margin-bottom: 10px !important;
  537. }
  538. .logo_name > p {
  539. font-size: 14px;
  540. width: 150px;
  541. }
  542. .header_buttons {
  543. width: 500px;
  544. }
  545. .header_buttons > .top_header {
  546. width: 400px;
  547. }
  548. .top_header > h1 {
  549. font-size: 22px;
  550. }
  551. .search_field {
  552. width: 350px !important;
  553. }
  554. .search_field > form {
  555. width: 350px;
  556. }
  557. #right {
  558. margin-top: 20px;
  559. margin: 0 auto;
  560. }
  561. }
  562. @media (max-width: 690px) {
  563. .header {
  564. flex-wrap: wrap;
  565. justify-content: center;
  566. margin-bottom: 15px !important;
  567. }
  568. .top_buttons {
  569. position: static;
  570. margin: 0 auto;
  571. }
  572. .logo_name {
  573. width: 270px;
  574. }
  575. .logo_name > p {
  576. font-size: 21px;
  577. width: 170px;
  578. }
  579. .header_buttons {
  580. margin-top: 10px !important;
  581. }
  582. .top_header {
  583. margin: 0 auto;
  584. }
  585. .quick_links_search {
  586. flex-wrap: wrap;
  587. max-width: 500px;
  588. justify-content: center;
  589. padding: 15px 0;
  590. }
  591. #hr_between {
  592. display: none;
  593. }
  594. .search_field {
  595. margin-top: 10px;
  596. }
  597. .hide_first_top_menu, .hide_second_top_menu {
  598. top: 60px;
  599. z-index: 1;
  600. width: 350px;
  601. border-radius: 10px;
  602. }
  603. #left {
  604. margin-left: 20px;
  605. }
  606. }
  607. @media (max-width: 490px) {
  608. #left > p {
  609. width: 150px;
  610. }
  611. #left {
  612. width: 300px;
  613. justify-content: space-around;
  614. margin: 0 auto;
  615. }
  616. #right {
  617. margin-top: 20px;
  618. }
  619. }
  620. @media (max-width: 420px) {
  621. .top_header {
  622. width: 250px !important;
  623. }
  624. .top_header > h1 {
  625. font-size: 23px;
  626. }
  627. .search_field, form {
  628. width: 250px !important;
  629. }
  630. .hide_first_top_menu, .hide_second_top_menu {
  631. width: 250px;
  632. }
  633. }
  634. @media (max-width: 350px) {
  635. #right {
  636. width: 250px !important;
  637. }
  638. .fa-map {
  639. margin-right: 10px;
  640. }
  641. }