_department.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .our_department_area{
  2. background: #F5FBFF;
  3. padding-top: 120px;
  4. padding-bottom: 90px;
  5. .single_department{
  6. background: #fff;
  7. margin-bottom: 30px;
  8. @include box-shadow(0 6px 10px rgba(0, 0, 0, .04));
  9. .department_thumb{
  10. overflow: hidden;
  11. border-top-right-radius: 5px;
  12. border-top-left-radius: 5px;
  13. img{
  14. width: 100%;
  15. @include transform(scale(1));
  16. @include transition(.3s);
  17. }
  18. }
  19. .department_content{
  20. padding: 22px 30px 24px 30px;
  21. h3{
  22. margin-bottom: 0;
  23. a{
  24. font-size: 22px;
  25. color: #1F1F1F;
  26. line-height: 33px;
  27. font-weight: 500;
  28. &:hover{
  29. color: #5DB2FF;
  30. }
  31. }
  32. }
  33. p{
  34. font-size: 16px;
  35. line-height: 28px;
  36. color: #727272;
  37. margin-top: 5px;
  38. margin-bottom: 10px;
  39. }
  40. a.learn_more{
  41. color: #5DB2FF;
  42. font-size: 16px;
  43. &:hover{
  44. text-decoration: underline;
  45. }
  46. }
  47. }
  48. &:hover{
  49. .department_thumb{
  50. img{
  51. @include transform(scale(1.2));
  52. }
  53. }
  54. }
  55. }
  56. }